This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.20; | |
| contract TronMultiSigWallet { | |
| event Deposit(address indexed sender, uint amount, uint balance); | |
| event SubmitTransaction( | |
| address indexed owner, | |
| uint indexed txIndex, | |
| address indexed to, | |
| uint value, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ref: refs/heads/main |