@evvm/testnet-contracts 1.0.4 → 1.0.5
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/contracts/evvm/lib/SignatureUtils.sol +2 -2
- package/contracts/nameService/NameService.sol +1 -1
- package/contracts/nameService/lib/SignatureUtils.sol +2 -2
- package/contracts/staking/lib/SignatureUtils.sol +2 -2
- package/contracts/treasuryTwoChains/lib/SignatureUtils.sol +2 -2
- package/package.json +5 -5
- /package/{lib → library}/AdvancedStrings.sol +0 -0
- /package/{lib → library}/Erc191TestBuilder.sol +0 -0
- /package/{lib → library}/SignatureRecover.sol +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// SPDX-License-Identifier: EVVM-NONCOMMERCIAL-1.0
|
|
2
2
|
// Full license terms available at: https://www.evvm.info/docs/EVVMNoncommercialLicense
|
|
3
3
|
|
|
4
|
-
import {SignatureRecover} from "@evvm/testnet-contracts/
|
|
5
|
-
import {AdvancedStrings} from "@evvm/testnet-contracts/
|
|
4
|
+
import {SignatureRecover} from "@evvm/testnet-contracts/library/SignatureRecover.sol";
|
|
5
|
+
import {AdvancedStrings} from "@evvm/testnet-contracts/library/AdvancedStrings.sol";
|
|
6
6
|
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
|
|
7
7
|
|
|
8
8
|
pragma solidity ^0.8.0;
|
|
@@ -58,7 +58,7 @@ pragma solidity ^0.8.0;
|
|
|
58
58
|
|
|
59
59
|
import {Evvm} from "@evvm/testnet-contracts/contracts/evvm/Evvm.sol";
|
|
60
60
|
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
|
|
61
|
-
import {AdvancedStrings} from "@evvm/testnet-contracts/
|
|
61
|
+
import {AdvancedStrings} from "@evvm/testnet-contracts/library/AdvancedStrings.sol";
|
|
62
62
|
import {ErrorsLib} from "@evvm/testnet-contracts/contracts/nameService/lib/ErrorsLib.sol";
|
|
63
63
|
import {SignatureUtils} from "@evvm/testnet-contracts/contracts/nameService/lib/SignatureUtils.sol";
|
|
64
64
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// SPDX-License-Identifier: EVVM-NONCOMMERCIAL-1.0
|
|
2
2
|
// Full license terms available at: https://www.evvm.info/docs/EVVMNoncommercialLicense
|
|
3
3
|
|
|
4
|
-
import {SignatureRecover} from "@evvm/testnet-contracts/
|
|
5
|
-
import {AdvancedStrings} from "@evvm/testnet-contracts/
|
|
4
|
+
import {SignatureRecover} from "@evvm/testnet-contracts/library/SignatureRecover.sol";
|
|
5
|
+
import {AdvancedStrings} from "@evvm/testnet-contracts/library/AdvancedStrings.sol";
|
|
6
6
|
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
|
|
7
7
|
|
|
8
8
|
pragma solidity ^0.8.0;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// SPDX-License-Identifier: EVVM-NONCOMMERCIAL-1.0
|
|
2
2
|
// Full license terms available at: https://www.evvm.info/docs/EVVMNoncommercialLicense
|
|
3
3
|
|
|
4
|
-
import {SignatureRecover} from "@evvm/testnet-contracts/
|
|
5
|
-
import {AdvancedStrings} from "@evvm/testnet-contracts/
|
|
4
|
+
import {SignatureRecover} from "@evvm/testnet-contracts/library/SignatureRecover.sol";
|
|
5
|
+
import {AdvancedStrings} from "@evvm/testnet-contracts/library/AdvancedStrings.sol";
|
|
6
6
|
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
|
|
7
7
|
|
|
8
8
|
pragma solidity ^0.8.0;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// SPDX-License-Identifier: EVVM-NONCOMMERCIAL-1.0
|
|
2
2
|
// Full license terms available at: https://www.evvm.info/docs/EVVMNoncommercialLicense
|
|
3
3
|
|
|
4
|
-
import {SignatureRecover} from "@evvm/testnet-contracts/
|
|
5
|
-
import {AdvancedStrings} from "@evvm/testnet-contracts/
|
|
4
|
+
import {SignatureRecover} from "@evvm/testnet-contracts/library/SignatureRecover.sol";
|
|
5
|
+
import {AdvancedStrings} from "@evvm/testnet-contracts/library/AdvancedStrings.sol";
|
|
6
6
|
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
|
|
7
7
|
|
|
8
8
|
pragma solidity ^0.8.0;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evvm/testnet-contracts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "EVVM Testnet Contracts - Smart contracts and tools for scalable, modular, and cross-chain EVM virtualization",
|
|
5
5
|
"files": [
|
|
6
6
|
"contracts/**/*.sol",
|
|
7
|
-
"interfaces/**/*.sol",
|
|
8
|
-
"
|
|
7
|
+
"interfaces/**/*.sol",
|
|
8
|
+
"library/**/*.sol",
|
|
9
9
|
"README.md",
|
|
10
10
|
"LICENSE"
|
|
11
11
|
],
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "npm run copy-files",
|
|
39
|
-
"copy-files": "cp -r src/contracts . && cp -r src/interfaces . && cp -r src/
|
|
40
|
-
"clean": "rm -rf contracts interfaces
|
|
39
|
+
"copy-files": "cp -r src/contracts . && cp -r src/interfaces . && cp -r src/library .",
|
|
40
|
+
"clean": "rm -rf contracts interfaces library",
|
|
41
41
|
"prepare-publish": "npm run copy-files && npm pack",
|
|
42
42
|
"publish-package": "npm run copy-files && npm publish && npm run clean",
|
|
43
43
|
"compile": "forge build",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|