@evvm/testnet-contracts 3.0.2 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/library/EvvmService.sol +2 -2
- package/package.json +9 -9
package/library/EvvmService.sol
CHANGED
|
@@ -36,7 +36,7 @@ abstract contract EvvmService is CoreExecution, StakingServiceUtils {
|
|
|
36
36
|
* @dev Returns core.getEvvmID(). Prevents cross-chain replays.
|
|
37
37
|
* @return Unique EVVM instance identifier
|
|
38
38
|
*/
|
|
39
|
-
function getEvvmID()
|
|
39
|
+
function getEvvmID() public view returns (uint256) {
|
|
40
40
|
return core.getEvvmID();
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -45,7 +45,7 @@ abstract contract EvvmService is CoreExecution, StakingServiceUtils {
|
|
|
45
45
|
* @dev Returns core.getPrincipalTokenAddress(). Used for payment operations.
|
|
46
46
|
* @return Address of Principal Token (MATE)
|
|
47
47
|
*/
|
|
48
|
-
function getPrincipalTokenAddress()
|
|
48
|
+
function getPrincipalTokenAddress() public view returns (address) {
|
|
49
49
|
return core.getPrincipalTokenAddress();
|
|
50
50
|
}
|
|
51
51
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evvm/testnet-contracts",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "EVVM Testnet Contracts - Smart contracts and tools for scalable, modular, and cross-chain EVM virtualization",
|
|
6
6
|
"files": [
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
"build-macos": "bun build cli/index.ts --compile --outfile .executables/evvm-darwin-x64 && bun build cli/index.ts --compile --outfile .executables/evvm-darwin-arm64"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@openzeppelin/contracts": "^
|
|
52
|
+
"@openzeppelin/contracts": "^4.9.6"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@hyperlane-xyz/core": "^3.
|
|
56
|
-
"chalk": "^5.
|
|
55
|
+
"@hyperlane-xyz/core": "^3.16.0",
|
|
56
|
+
"chalk": "^5.6.2",
|
|
57
57
|
"cli-loading-animation": "^1.0.6",
|
|
58
|
-
"dotenv": "^16.
|
|
58
|
+
"dotenv": "^16.6.1",
|
|
59
59
|
"execa": "^8.0.1",
|
|
60
60
|
"prompts": "^2.4.2",
|
|
61
|
-
"viem": "^2.
|
|
61
|
+
"viem": "^2.46.3"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@types/node": "^20.
|
|
64
|
+
"@types/node": "^20.19.35",
|
|
65
65
|
"@types/prompts": "^2.4.9",
|
|
66
|
-
"forge-std": "^1.
|
|
67
|
-
"typescript": "^5.3
|
|
66
|
+
"forge-std": "^1.1.2",
|
|
67
|
+
"typescript": "^5.9.3"
|
|
68
68
|
}
|
|
69
69
|
}
|