Skip to content

Commit

Permalink
[evm contracts] add version to entropy and executor (#1240)
Browse files Browse the repository at this point in the history
* add version to entropy and executor

* resolve
  • Loading branch information
Dev Kalra authored Jan 24, 2024
1 parent 7db31aa commit 70c6db0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,8 @@ contract EntropyUpgradable is
function entropyUpgradableMagic() public pure returns (uint32) {
return 0x66697265;
}

function version() public pure returns (string memory) {
return "0.1.0";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,8 @@ contract ExecutorUpgradable is
function entropyUpgradableMagic() public pure returns (uint32) {
return 0x66697288;
}

function version() public pure returns (string memory) {
return "0.1.0";
}
}

0 comments on commit 70c6db0

Please sign in to comment.