diff --git a/MaxiOps/injectorScheduling/mainnet/SEND-GEAR-GEAR-Injector-v2.json b/MaxiOps/injectorScheduling/mainnet/SEND-GEAR-GEAR-Injector-v2.json new file mode 100644 index 000000000..59c4e4620 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/SEND-GEAR-GEAR-Injector-v2.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734595690566, + "meta": { + "name": "Transactions Batch", + "description": "Send GEAR for first 2 week program to GEAR injector v2", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xf280d79c5549790517c6a89a581203faad4fa5de5b39a01d01dc2309bdbf27fc" + }, + "transactions": [ + { + "to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "dst", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xfa7b21B30325DBbd4A71ee2B2EDE74A7d8A2c0E4", + "rawAmount": "158974370000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/SEND-GEAR-GEAR-Injector-v2.report.txt b/MaxiOps/injectorScheduling/mainnet/SEND-GEAR-GEAR-Injector-v2.report.txt new file mode 100644 index 000000000..0d5cadb53 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/SEND-GEAR-GEAR-Injector-v2.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/SEND-GEAR-GEAR-Injector-v2.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `77b550433ddeaf690a5a8451e83ca54acae93a4e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9de9d34a-47dd-414e-96f0-d11822ac8c9a) + +``` ++----------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------------------+-----+----------+ +| transfer | GEAR:0xBa3335588D9403515223F109EdC4eB7269a9Ab5D | maxiKeepers/injectorV2/GEAR:0xfa7b21B30325DBbd4A71ee2B2EDE74A7d8A2c0E4 | 158974.37 (RAW: 158974370000000000000000) | N/A | 0 | ++----------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------------------+-----+----------+ +``` diff --git a/action-scripts/brownie/scripts/reports.py b/action-scripts/brownie/scripts/reports.py index 3ce3a94da..88eccd7c4 100644 --- a/action-scripts/brownie/scripts/reports.py +++ b/action-scripts/brownie/scripts/reports.py @@ -622,6 +622,7 @@ def _parse_transfer(transaction: dict, **kwargs) -> Optional[dict]: or transaction["contractInputsValues"].get("value") or transaction["contractInputsValues"].get("wad") or transaction["contractInputsValues"].get("_value") + or transaction["contractInputsValues"].get("rawAmount") ) amount = int(raw_amount) / 10 ** token.decimals() if raw_amount else "N/A" symbol = token.symbol()