0xc6cde7c39eb2f0f0095f41570af89efc2c1ea828
Solidity v0.4.16+commit.d7661dd9
管理與風險
誰能修改規則?
No admin risk controls detected from the verified ABI.
概覽
讀取函式
Block #25,287,883 · just nowReturns the owner address at the specified index.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | uint256 |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | address | The address of the owner at the specified index.✨ AI |
Checks whether the given address is an owner of the multisig wallet.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | address |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | bool | True if the address is an owner, otherwise false.✨ AI |
Checks whether a specific owner has confirmed a particular transaction.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | uint256 | |
| — | address |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | bool | True if the owner confirmed the transaction, otherwise false.✨ AI |
Return the number of transactions that match the pending and executed filters.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| pending | bool | Include pending transactions. |
| executed | bool | Include executed transactions. |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| count | uint256 | Total number of transactions after filters are applied. |
Check whether the specified transaction has reached the required confirmations.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| transactionId | uint256 | Transaction ID. |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | bool | Confirmation status. |
Return the number of confirmations a specific transaction has received.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| transactionId | uint256 | Transaction ID. |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| count | uint256 | Number of confirmations. |
Fetches the stored transaction details for the given transaction id.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | uint256 |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| destination | address | destination: Address to which the transaction will be sent.✨ AI |
| value | uint256 | value: Amount of wei to transfer with the transaction.✨ AI |
| data | bytes | data: Payload data (call data) included with the transaction.✨ AI |
| executed | bool | executed: True if the transaction has already been executed.✨ AI |
Return the list of owners of this multisig wallet.✨ AI
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | address[] | List of owner addresses. |
Return transaction IDs in the index range from..to that match the pending and executed filters.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| from | uint256 | Index start position of transaction array. |
| to | uint256 | Index end position of transaction array. |
| pending | bool | Include pending transactions. |
| executed | bool | Include executed transactions. |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| _transactionIds | uint256[] | Returns array of transaction IDs. |
Return the list of owner addresses that confirmed the specified transaction.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| transactionId | uint256 | Transaction ID. |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| _confirmations | address[] | Returns array of owner addresses. |
Return the current count of transactions recorded by the multisig wallet.✨ AI
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | uint256 | Unsigned integer representing the total number of transactions stored in the contract.✨ AI |
Returns the maximum number of owners that the multisig wallet supports.✨ AI
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | uint256 | Maximum allowed number of owners (uint256).✨ AI |
Returns the current number of confirmations required to execute a transaction.✨ AI
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| — | uint256 | The current number of required confirmations for executing a transaction.✨ AI |
寫入函式
Remove an owner from the multisignature wallet.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| owner | address | Address of owner. |
Revoke a previously given confirmation for a pending transaction.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| transactionId | uint256 | Transaction ID. |
Adds a new owner to the multisig wallet.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| owner | address | Address of new owner. |
Update the number of confirmations required to execute transactions in the multisig wallet.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| _required | uint256 | Number of required confirmations. |
Confirm a pending transaction by adding your signature.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| transactionId | uint256 | Transaction ID. |
Submit a new transaction to be confirmed by the owners for sending ether or calling a contract.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| destination | address | Transaction target address. |
| value | uint256 | Transaction ether value. |
| data | bytes | Transaction data payload. |
回傳值
| 名稱 | 類型 | 描述 |
|---|---|---|
| transactionId | uint256 | Returns transaction ID. |
Replace an existing owner with a new address.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| owner | address | Address of new owner. |
| newOwner | address | Address that will replace the current owner.✨ AI |
Execute a submitted transaction identified by transactionId after it has the required confirmations.✨ AI
參數
| 名稱 | 類型 | 描述 |
|---|---|---|
| transactionId | uint256 | Transaction ID. |
事件
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| sender | address | ✓ | |
| transactionId | uint256 | ✓ |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| sender | address | ✓ | |
| transactionId | uint256 | ✓ |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| transactionId | uint256 | ✓ |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| transactionId | uint256 | ✓ |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| transactionId | uint256 | ✓ |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| sender | address | ✓ | |
| value | uint256 |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| owner | address | ✓ |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| owner | address | ✓ |
| 名稱 | 類型 | 已索引 | 描述 |
|---|---|---|---|
| required | uint256 |