Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update EIP-725: contractCreated Event #4352

Merged
merged 1 commit into from
Oct 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions EIPS/eip-725.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ MUST be triggered when `execute` creates a new call using the `operationType` `0
#### ContractCreated

```solidity
event ContractCreated(address indexed contractAddress)
event ContractCreated(uint256 indexed _operation, address indexed _contractAddress, uint256 indexed _value);
```
MUST be triggered when `execute` creates a new contract using the `operationType` `1`, `2`.

Expand Down Expand Up @@ -175,7 +175,7 @@ pragma solidity >=0.5.0 <0.7.0;

//ERC165 identifier: `0x44c028fe`
interface IERC725X /* is ERC165, ERC173 */ {
event ContractCreated(address indexed contractAddress);
event ContractCreated(uint256 indexed operation, address indexed contractAddress, uint256 indexed value);
event Executed(uint256 indexed operation, address indexed to, uint256 indexed value, bytes data);

function execute(uint256 operationType, address to, uint256 value, bytes calldata data) external payable returns(bytes memory);
Expand Down