@layerzerolabs/oft-upgradeable-evm-contracts 0.2.100 → 0.2.102
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/.turbo/turbo-build.log +6 -6
- package/.turbo/turbo-lint.log +1 -50
- package/.turbo/turbo-test.log +183 -183
- package/package.json +14 -12
- package/turbo-snapshot.lock.json +1790 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layerzerolabs/oft-upgradeable-evm-contracts",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.102",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "LayerZero Labs reference EVM upgradeable OFT implementation",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
"@openzeppelin/contracts-upgradeable": "^5.0.2",
|
|
15
15
|
"ethers": "^5.8.0",
|
|
16
16
|
"solhint": "^6.0.1",
|
|
17
|
-
"@layerzerolabs/
|
|
18
|
-
"@layerzerolabs/oapp-evm-contracts": "0.2.
|
|
19
|
-
"@layerzerolabs/
|
|
20
|
-
"@layerzerolabs/
|
|
21
|
-
"@layerzerolabs/
|
|
22
|
-
"@layerzerolabs/
|
|
23
|
-
"@layerzerolabs/utils-
|
|
24
|
-
"@layerzerolabs/
|
|
25
|
-
"@layerzerolabs/
|
|
26
|
-
"@layerzerolabs/
|
|
17
|
+
"@layerzerolabs/oapp-upgradeable-evm-contracts": "0.2.102",
|
|
18
|
+
"@layerzerolabs/oapp-evm-contracts": "0.2.102",
|
|
19
|
+
"@layerzerolabs/solhint-configuration": "0.2.102",
|
|
20
|
+
"@layerzerolabs/oft-evm-contracts": "0.2.102",
|
|
21
|
+
"@layerzerolabs/test-utils-evm-contracts": "0.2.102",
|
|
22
|
+
"@layerzerolabs/typescript-configuration": "0.2.102",
|
|
23
|
+
"@layerzerolabs/utils-evm-contracts": "0.2.102",
|
|
24
|
+
"@layerzerolabs/tsup-configuration": "0.2.102",
|
|
25
|
+
"@layerzerolabs/utils-upgradeable-evm-contracts": "0.2.102",
|
|
26
|
+
"@layerzerolabs/vm-tooling-evm": "0.2.102"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public",
|
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
"compile:zksync": "pnpm lz-tool --env TS_NODE_COMPILER_OPTIONS='{\"module\":\"CommonJS\",\"moduleResolution\":\"node\"}' hardhat compile --config /hardhat/hardhat.default.config.js --network zksync-mainnet",
|
|
44
44
|
"generated:clean": "rm -rf ./artifacts ./artifacts-tron ./artifacts-zk ./hh-cache ./hh-cache-tron ./hh-cache-zk",
|
|
45
45
|
"lint": "solhint --config solhint.config.js 'contracts/**/*.sol' 'test/**/*.sol' --fix --noPrompt",
|
|
46
|
-
"test": "pnpm lz-tool forge test"
|
|
46
|
+
"test": "pnpm lz-tool forge test",
|
|
47
|
+
"test:snapshot:check": "pnpm exec turbo-snapshot check",
|
|
48
|
+
"test:snapshot:update": "pnpm exec turbo-snapshot update"
|
|
47
49
|
}
|
|
48
50
|
}
|