Skip to content

Commit

Permalink
Removed indexed args from V1/V1U1 Commit Manager events
Browse files Browse the repository at this point in the history
  • Loading branch information
u-hubar committed Feb 8, 2024
1 parent 6e43119 commit dab8582
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions abi/CommitManagerV1.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,13 @@
"anonymous": false,
"inputs": [
{
"indexed": true,
"indexed": false,
"internalType": "address",
"name": "assetContract",
"type": "address"
},
{
"indexed": true,
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
Expand All @@ -221,7 +221,7 @@
"type": "uint16"
},
{
"indexed": true,
"indexed": false,
"internalType": "uint72",
"name": "identityId",
"type": "uint72"
Expand Down
10 changes: 5 additions & 5 deletions abi/CommitManagerV1U1.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,13 @@
"anonymous": false,
"inputs": [
{
"indexed": true,
"indexed": false,
"internalType": "address",
"name": "assetContract",
"type": "address"
},
{
"indexed": true,
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
Expand Down Expand Up @@ -258,7 +258,7 @@
"type": "uint256"
},
{
"indexed": true,
"indexed": false,
"internalType": "uint72",
"name": "identityId",
"type": "uint72"
Expand All @@ -277,13 +277,13 @@
"anonymous": false,
"inputs": [
{
"indexed": true,
"indexed": false,
"internalType": "address",
"name": "assetContract",
"type": "address"
},
{
"indexed": true,
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
Expand Down
6 changes: 3 additions & 3 deletions contracts/v1/CommitManagerV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ import {ServiceAgreementStructsV1} from "./structs/ServiceAgreementStructsV1.sol

contract CommitManagerV1 is Named, Versioned, ContractStatus, Initializable {
event CommitSubmitted(
address indexed assetContract,
uint256 indexed tokenId,
address assetContract,
uint256 tokenId,
bytes keyword,
uint8 hashFunctionId,
uint16 epoch,
uint72 indexed identityId,
uint72 identityId,
uint40 score
);

Expand Down
10 changes: 5 additions & 5 deletions contracts/v1/CommitManagerV1U1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ import {ServiceAgreementErrorsV1U1} from "./errors/ServiceAgreementErrorsV1U1.so

contract CommitManagerV1U1 is Named, Versioned, ContractStatus, Initializable {
event CommitSubmitted(
address indexed assetContract,
uint256 indexed tokenId,
address assetContract,
uint256 tokenId,
bytes keyword,
uint8 hashFunctionId,
uint16 epoch,
uint256 stateIndex,
uint72 indexed identityId,
uint72 identityId,
uint40 score
);
event StateFinalized(
address indexed assetContract,
uint256 indexed tokenId,
address assetContract,
uint256 tokenId,
bytes keyword,
uint8 hashFunctionId,
uint16 epoch,
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dkg-evm-module",
"version": "4.2.1",
"version": "4.2.2",
"description": "Smart contracts for OriginTrail V6",
"main": "index.ts",
"files": [
Expand Down

0 comments on commit dab8582

Please sign in to comment.