@evvm/testnet-contracts 1.0.1 → 1.0.4
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/package.json +9 -4
- /package/{src/contracts → contracts}/evvm/Evvm.sol +0 -0
- /package/{src/contracts → contracts}/evvm/EvvmLegacy.sol +0 -0
- /package/{src/contracts → contracts}/evvm/lib/ErrorsLib.sol +0 -0
- /package/{src/contracts → contracts}/evvm/lib/EvvmStorage.sol +0 -0
- /package/{src/contracts → contracts}/evvm/lib/EvvmStructs.sol +0 -0
- /package/{src/contracts → contracts}/evvm/lib/SignatureUtils.sol +0 -0
- /package/{src/contracts → contracts}/nameService/NameService.sol +0 -0
- /package/{src/contracts → contracts}/nameService/lib/ErrorsLib.sol +0 -0
- /package/{src/contracts → contracts}/nameService/lib/SignatureUtils.sol +0 -0
- /package/{src/contracts → contracts}/staking/Estimator.sol +0 -0
- /package/{src/contracts → contracts}/staking/Staking.sol +0 -0
- /package/{src/contracts → contracts}/staking/lib/ErrorsLib.sol +0 -0
- /package/{src/contracts → contracts}/staking/lib/SignatureUtils.sol +0 -0
- /package/{src/contracts → contracts}/treasury/Treasury.sol +0 -0
- /package/{src/contracts → contracts}/treasury/lib/ErrorsLib.sol +0 -0
- /package/{src/contracts → contracts}/treasuryTwoChains/TreasuryExternalChainStation.sol +0 -0
- /package/{src/contracts → contracts}/treasuryTwoChains/TreasuryHostChainStation.sol +0 -0
- /package/{src/contracts → contracts}/treasuryTwoChains/lib/ErrorsLib.sol +0 -0
- /package/{src/contracts → contracts}/treasuryTwoChains/lib/ExternalChainStationStructs.sol +0 -0
- /package/{src/contracts → contracts}/treasuryTwoChains/lib/HostChainStationStructs.sol +0 -0
- /package/{src/contracts → contracts}/treasuryTwoChains/lib/SignatureUtils.sol +0 -0
- /package/{src/interfaces → interfaces}/IEstimator.sol +0 -0
- /package/{src/interfaces → interfaces}/IEvvm.sol +0 -0
- /package/{src/interfaces → interfaces}/INameService.sol +0 -0
- /package/{src/interfaces → interfaces}/IStaking.sol +0 -0
- /package/{src/interfaces → interfaces}/ITreasury.sol +0 -0
- /package/{src/interfaces → interfaces}/ITreasuryExternalChainStation.sol +0 -0
- /package/{src/interfaces → interfaces}/ITreasuryHostChainStation.sol +0 -0
- /package/{src/lib → lib}/AdvancedStrings.sol +0 -0
- /package/{src/lib → lib}/Erc191TestBuilder.sol +0 -0
- /package/{src/lib → lib}/SignatureRecover.sol +0 -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.4",
|
|
4
4
|
"description": "EVVM Testnet Contracts - Smart contracts and tools for scalable, modular, and cross-chain EVM virtualization",
|
|
5
5
|
"files": [
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
6
|
+
"contracts/**/*.sol",
|
|
7
|
+
"interfaces/**/*.sol",
|
|
8
|
+
"lib/**/*.sol",
|
|
9
9
|
"README.md",
|
|
10
10
|
"LICENSE"
|
|
11
11
|
],
|
|
@@ -35,6 +35,11 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
|
+
"build": "npm run copy-files",
|
|
39
|
+
"copy-files": "cp -r src/contracts . && cp -r src/interfaces . && cp -r src/lib .",
|
|
40
|
+
"clean": "rm -rf contracts interfaces lib",
|
|
41
|
+
"prepare-publish": "npm run copy-files && npm pack",
|
|
42
|
+
"publish-package": "npm run copy-files && npm publish && npm run clean",
|
|
38
43
|
"compile": "forge build",
|
|
39
44
|
"test": "forge test",
|
|
40
45
|
"deploy:anvil": "make deployLocalTestnet",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|