git.delta.rocks / unique-network / refs/commits / 5a3f942b588a

difftreelog

ci move forkless-nodata to baedeker

Yaroslav Bolyukin2023-09-08parent: #129199c.patch.diff
in: master

5 files changed

modified.docker/Dockerfile-uniquediffbeforeafterboth
48 cd unique-chain && \48 cd unique-chain && \
49 echo "Using runtime features '$RUNTIME_FEATURES'" && \49 echo "Using runtime features '$RUNTIME_FEATURES'" && \
50 CARGO_INCREMENTAL=0 cargo build --release --features="$RUNTIME_FEATURES" --locked && \50 CARGO_INCREMENTAL=0 cargo build --release --features="$RUNTIME_FEATURES" --locked && \
51 mv ./target/release/unique-collator /unique_parachain/unique-chain/51 mv ./target/release/unique-collator /unique_parachain/unique-chain/ && \
52 cd target/release/wbuild && find . -name "*.wasm" -exec sh -c 'mkdir -p "../../../wasm/$(dirname {})"; cp {} "../../../wasm/{}"' \;
5253
53# ===== BIN ======54# ===== BIN ======
5455
55FROM ubuntu:22.04 as builder-polkadot56FROM ubuntu:22.04 as builder-polkadot
5657
57COPY --from=builder-polkadot-bin /unique_parachain/unique-chain/unique-collator /bin/unique-collator58COPY --from=builder-polkadot-bin /unique_parachain/unique-chain/unique-collator /bin/unique-collator
59COPY --from=builder-polkadot-bin /unique_parachain/unique-chain/wasm /wasm
58ENTRYPOINT ["/bin/unique-collator"]60ENTRYPOINT ["/bin/unique-collator"]
5961
added.github/actions/extractDocker/action.ymldiffbeforeafterboth

no changes

modified.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth
9# A workflow run is made up of one or more jobs that can run sequentially or in parallel9# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10jobs:10jobs:
11
11 prepare-execution-marix:12 prepare-execution-matrix:
1213
13 name: Prepare execution matrix14 name: execution matrix
1415
15 runs-on: self-hosted-ci16 runs-on: self-hosted-ci
16 outputs:17 outputs:
33 uses: CertainLach/create-matrix-action@v434 uses: CertainLach/create-matrix-action@v4
34 id: create_matrix35 id: create_matrix
35 with:36 with:
36 matrix: |37 matrix: |
37 network {quartz}, wasm_name {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}, relay_branch {${{ env.KUSAMA_MAINNET_BRANCH }}}38 network {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}, runtime_features {opal-runtime}, wasm_name {opal}
38 network {unique}, wasm_name {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}, relay_branch {${{ env.POLKADOT_MAINNET_BRANCH }}}39 network {sapphire}, mainnet_branch {${{ env.SAPPHIRE_MAINNET_BRANCH }}}, relay_branch {${{ env.UNIQUEEAST_MAINNET_BRANCH }}}, runtime_features {sapphire-runtime}, wasm_name {quartz}
39 network {opal}, wasm_name {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}40 network {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}, relay_branch {${{ env.KUSAMA_MAINNET_BRANCH }}}, runtime_features {quartz-runtime}, wasm_name {quartz}
40 network {sapphire}, wasm_name {quartz}, mainnet_branch {${{ env.SAPPHIRE_MAINNET_BRANCH }}}, relay_branch {${{ env.UNIQUEEAST_MAINNET_BRANCH }}}41 network {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}, relay_branch {${{ env.POLKADOT_MAINNET_BRANCH }}}, runtime_features {unique-runtime}, wasm_name {unique}
41
4242
43 forkless-nodata-build:43 forkless-nodata-build:
44 needs: prepare-execution-marix44
45 # The type of runner that the job will run on
46 runs-on: [self-hosted-ci,large]
47
48 timeout-minutes: 1380
49
50 name: ${{ matrix.network }}-nodata-build
51
52 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
53
54 strategy:
55 matrix:
56 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}
57
58 steps:
59 - name: Clean Workspace
60 uses: AutoModality/action-clean@v1.1.0
61
62 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
63 - uses: actions/checkout@v3.1.0
64 with:
65 ref: ${{ github.head_ref }} #Checking out head commit
66
67 - name: Read .env file
68 uses: xom9ikk/dotenv@v2
69
70 # Prepare SHA
71 - name: Prepare SHA
72 uses: ./.github/actions/prepare
73
74 - name: Log in to Docker Hub
75 uses: docker/login-action@v2.1.0
76 with:
77 username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}
78 password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}
79
80 # Build main image for FORKLESS-UPDATE-NODATA
81 - name: Generate ENV related extend Dockerfile file
82 uses: cuchi/jinja2-action@v1.2.0
83 with:
84 template: .docker/Dockerfile-parachain-upgrade.j2
85 output_file: .docker/Dockerfile-parachain-upgrade.${{ matrix.network }}.yml
86 variables: |
87 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
88 NETWORK=${{ matrix.network }}
89 MAINNET_BRANCH=${{ matrix.mainnet_branch }}
90 WASM_NAME=${{ matrix.wasm_name }}
91 POLKADOT_BUILD_BRANCH=${{ matrix.relay_branch }}
92 POLKADOT_LAUNCH_BRANCH=${{ env.POLKADOT_LAUNCH_BRANCH }}
93
94 - name: Show build Dockerfile
95 run: cat .docker/Dockerfile-parachain-upgrade.${{ matrix.network }}.yml
96
97 - name: Generate launch-config-forkless-nodata.json
98 uses: cuchi/jinja2-action@v1.2.0
99 with:
100 template: .docker/forkless-config/launch-config-forkless-nodata.j2
101 output_file: .docker/forkless-config/launch-config-forkless-nodata.json
102 variables: |
103 WASM_NAME=${{ matrix.wasm_name }}
104 RELAY_CHAIN_TYPE=${{ env.RELAY_CHAIN_TYPE }}
105
106 - name: Show launch-config-forkless configuration
107 run: cat .docker/forkless-config/launch-config-forkless-nodata.json
108
109 - name: Run find-and-replace to remove slashes from branch name
110 uses: mad9000/actions-find-and-replace-string@4
111 id: branchname
112 with:
113 source: ${{ github.head_ref }}
114 find: '/'
115 replace: '-'
116
117 - name: Set build SHA
118 shell: bash
119 run: |
120 echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV
121
122 - name: Build the stack
123 run: cd .docker/ && docker build --no-cache --file ./Dockerfile-parachain-upgrade.${{ matrix.network }}.yml --tag uniquenetwork/ci-forkless-nodata-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA ../
124
125 - name: Push docker image version
126 run: docker push uniquenetwork/ci-forkless-nodata-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA
127
128 - name: Remove builder cache
129 if: always() # run this step always
130 run: |
131 docker builder prune -f
132 docker system prune -f
133
134
135 forkless-nodata-tests:
136 needs: [prepare-execution-marix, forkless-nodata-build]45 needs: prepare-execution-matrix
137 # The type of runner that the job will run on46 # The type of runner that the job will run on
138 runs-on: [self-hosted-ci, large]47 runs-on: [self-hosted-ci,large]
13948
140 timeout-minutes: 60049 timeout-minutes: 1380
14150
142 name: ${{ matrix.network }}-nodata-tests51 name: ${{ matrix.network }}-nodata-build
14352
144 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.53 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
14554
146 strategy:55 strategy:
147 matrix:56 matrix:
148 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}57 include: ${{fromJson(needs.prepare-execution-matrix.outputs.matrix)}}
14958
150 steps:59 steps:
151 - name: Skip if pull request is in Draft
152 if: github.event.pull_request.draft == true
153 run: exit 1
15460
155 - name: Clean Workspace61 - name: Clean Workspace
156 uses: AutoModality/action-clean@v1.1.062 uses: AutoModality/action-clean@v1.1.0
160 with:66 with:
161 ref: ${{ github.head_ref }} #Checking out head commit67 ref: ${{ github.head_ref }} #Checking out head commit
16268
69 # Prepare SHA
163 - name: Prepare70 - name: Prepare SHA
164 uses: ./.github/actions/prepare71 uses: ./.github/actions/prepare
16572
166 - name: Set build SHA73 - name: Read .env file
167 shell: bash74 uses: xom9ikk/dotenv@v2
168 run: |
169 echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV
17075
171 - name: Run find-and-replace to remove slashes from branch name76 - name: Log in to Docker Hub
172 uses: mad9000/actions-find-and-replace-string@477 uses: docker/login-action@v2.1.0
173 id: branchname
174 with:78 with:
175 source: ${{ github.head_ref }}79 username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}
176 find: '/'80 password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}
177 replace: '-'
178
179 - name: Read .env file
180 uses: xom9ikk/dotenv@v2
18181
182 - name: Generate ENV related extend file for docker-compose82 - name: Generate ENV related extend Dockerfile file for POLKADOT
183 uses: cuchi/jinja2-action@v1.2.083 uses: cuchi/jinja2-action@v1.2.0
184 with:84 with:
185 template: .docker/docker-compose.forkless-nodata.j285 template: .docker/Dockerfile-polkadot.j2
186 output_file: .docker/docker-compose.forkless-nodata.${{ matrix.network }}.yml86 output_file: .docker/Dockerfile-polkadot.${{ matrix.relay_branch }}.yml
187 variables: |87 variables: |
188 NETWORK=${{ matrix.network }}88 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
189 BUILD_TAG=${{ steps.branchname.outputs.value }}-$BUILD_SHA89 POLKADOT_BUILD_BRANCH=${{ matrix.relay_branch }}
19090
191 - name: Show build configuration91 - name: Prepare polkadot
92 uses: ./.github/actions/buildContainer
93 id: polkadot
94 with:
95 container: uniquenetwork/builder-polkadot
96 tag: ${{ matrix.relay_branch }}
97 context: .docker
192 run: cat .docker/docker-compose.forkless-nodata.${{ matrix.network }}.yml98 dockerfile: Dockerfile-polkadot.${{ matrix.relay_branch }}.yml
99 dockerhub_username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}
100 dockerhub_token: ${{ secrets.CORE_DOCKERHUB_TOKEN }}
193101
194 - name: Log in to Docker Hub102 - name: Prepare mainnet
195 uses: docker/login-action@v2.1.0103 uses: ./.github/actions/buildContainer
104 id: mainnet
196 with:105 with:
106 container: uniquenetwork/ci-nodata-${{ matrix.network }}
107 tag: ${{ matrix.mainnet_branch }}
108 context: .docker
109 dockerfile: Dockerfile-unique-release
110 args: |
111 --build-arg RUNTIME_FEATURES=${{ matrix.runtime_features }}
112 --build-arg RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
113 --build-arg UNIQUE_VERSION=${{ matrix.mainnet_branch }}
197 username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}114 dockerhub_username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}
198 password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}115 dockerhub_token: ${{ secrets.CORE_DOCKERHUB_TOKEN }}
199
200 - name: Build the stack
201 run: docker-compose -f ".docker/docker-compose.forkless-nodata.${{ matrix.network }}.yml" up -d --remove-orphans --force-recreate --timeout 300
202116
203 - uses: actions/setup-node@v3.5.1117 - name: Prepare latest
118 uses: ./.github/actions/buildContainer
119 id: latest
204 with:120 with:
121 container: uniquenetwork/ci-nodata-${{ matrix.network }}
122 tag: ${{ env.REF_SLUG }}-${{ env.BUILD_SHA }}
123 context: .
124 dockerfile: .docker/Dockerfile-unique
205 node-version: 18125 args: |
126 --build-arg RUNTIME_FEATURES=${{ matrix.runtime_features }}
127 --build-arg RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
128 dockerhub_username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}
129 dockerhub_token: ${{ secrets.CORE_DOCKERHUB_TOKEN }}
206130
207 - name: Check if docker logs consist logs related to Runtime Upgrade testing.131 - name: Extract wasms
132 uses: ./.github/actions/extractDocker
208 if: success()133 id: wasms
134 with:
209 run: |135 image: ${{ steps.latest.outputs.name }}
210 counter=160
211 function check_container_status {
212 docker inspect -f {{.State.Running}} forkless-nodata
213 }
214 function do_docker_logs {
215 docker logs --details forkless-nodata 2>&1
216 }
217 function is_started {
218 if [ "$(check_container_status)" == "true" ]; then
219 echo "Container: forkless-nodata RUNNING";
220 echo "Check Docker logs"
221 DOCKER_LOGS=$(do_docker_logs)
222 if [[ ${DOCKER_LOGS} = *"🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"* ]];then
223 echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"
224 return 0
225 elif [[ ${DOCKER_LOGS} = *"🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"* ]];then
226 echo "🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"
227 return 1
228 else
229 echo "Message not found in logs output, repeating..."
230 return 1
231 fi
232 else
233 echo "Container forkless-nodata not RUNNING"
234 echo "Halting all future checks"
235 exit 1
236 fi
237 exit 0
238 }
239 while ! is_started; do
240 echo "Waiting for special message in log files "
241 sleep 30s
242 counter=$(( $counter - 1 ))
243 echo "Counter: $counter"
244 if [ "$counter" -gt "0" ]; then
245 continue
246 else
247 break
248 fi
249 done
250 echo "Halting script"
251 exit 0
252 shell: bash136 directory: /wasm
253137
254 - name: Collect Docker Logs138 - uses: actions/setup-node@v3.5.1
255 if: success() || failure()
256 uses: jwalton/gh-docker-logs@v2.2.1
257 with:139 with:
258 dest: './forkless-parachain-upgrade-nodata-logs.${{ matrix.network }}'140 node-version: 18
259141
260 - name: Show docker logs142 - name: Install baedeker
261 if: success() || failure()
262 run: cat './forkless-parachain-upgrade-nodata-logs.${{ matrix.network }}/forkless-nodata.log'143 uses: UniqueNetwork/baedeker-action/setup@built
263144
264 - name: Run Parallel tests145 - name: Setup library
265 working-directory: tests
266 run: |146 run: mkdir -p .baedeker/vendor/ && git clone https://github.com/UniqueNetwork/baedeker-library .baedeker/vendor/baedeker-library
267 yarn install
268 yarn add mochawesome
269 ./scripts/wait_for_first_block.sh
270 echo "Ready to start tests"
271 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}
272 env:
273 RPC_URL: http://127.0.0.1:9944/
274147
275 - name: Test Report Parallel148 - name: Start network
276 uses: phoenix-actions/test-reporting@v10149 uses: UniqueNetwork/baedeker-action@built
277 id: test-report-parallel150 id: bdk
278 if: success() || failure() # run this step even if previous step failed
279 with:151 with:
280 name: Report Parallel tests results - ${{ matrix.network }} # Name of the check run which will be created
281 path: tests/mochawesome-report/test-parallel-*.json # Path to test results152 jpath: |
153 .baedeker/vendor
282 reporter: mochawesome-json154 tla-str: |
155 relay_spec=rococo-local
283 fail-on-error: 'false'156 inputs: |
157 .baedeker/node-only.jsonnet
158 snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/polkadot':{dockerImage:'${{ steps.polkadot.outputs.name }}'}})
159 snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.mainnet.outputs.name }}'}}, extra_node_mixin = {legacyRpc: true})
284160
285 - name: Run Sequential tests161 - name: "Reconcile: runtime is upgraded"
286 working-directory: tests162 working-directory: tests
287 if: success() || failure()
288 run: |163 run: |
289 yarn install164 yarn
290 yarn add mochawesome165 ./scripts/wait_for_first_block.sh
291 ./scripts/wait_for_first_block.sh166 echo "Executing upgrade"
292 echo "Ready to start tests"167 yarn ts-node --esm src/util/authorizeEnactUpgrade.ts ${{ steps.wasms.outputs.dir }}/${{ matrix.wasm_name }}-runtime/${{ matrix.wasm_name }}_runtime.compact.compressed.wasm
293 NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}
294 env:168 env:
295 RPC_URL: http://127.0.0.1:9944/169 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}
296170
297 - name: Test Report Sequential171 - name: Run Parallel tests after forkless upgrade
298 uses: phoenix-actions/test-reporting@v10
299 id: test-report-sequential172 working-directory: tests
300 if: success() || failure() # run this step even if previous step failed173 run: |
174 ./scripts/wait_for_first_block.sh
175 echo "Ready to start tests"
176 NOW=$(date +%s) && yarn testParallel --reporter mochawesome --reporter-options reportFilename=test-parallel-${NOW}
301 with:177 env:
302 name: Report Sequential tests results - ${{ matrix.network }} # Name of the check run which will be created178 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}
303 path: tests/mochawesome-report/test-sequential-*.json # Path to test results
304 reporter: mochawesome-json
305 fail-on-error: 'false'
306179
307 - name: Stop running containers180 - name: Run Sequential tests after forkless upgrade
308 if: always() # run this step always181 if: success() || failure()
182 working-directory: ${{ matrix.mainnet_branch }}/tests
309 run: docker-compose -f ".docker/docker-compose.forkless-nodata.${{ matrix.network }}.yml" down183 run: NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}
184 env:
185 RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}
310186
311 - name: Remove builder cache187 - name: Remove builder cache
312 if: always() # run this step always188 if: always() # run this step always
313 run: |189 run: |
314 docker builder prune -f -a190 docker system prune -f
315 docker system prune -f
316 docker image prune -f -a
317191
modifiedtests/package.jsondiffbeforeafterboth
18 "eslint": "^8.45.0",18 "eslint": "^8.45.0",
19 "eslint-plugin-mocha": "^10.1.0",19 "eslint-plugin-mocha": "^10.1.0",
20 "mocha": "^10.1.0",20 "mocha": "^10.1.0",
21 "mochawesome": "^7.1.3",
21 "ts-node": "^10.9.1",22 "ts-node": "^10.9.1",
22 "typescript": "^5.1.6"23 "typescript": "^5.1.6"
23 },24 },
modifiedtests/yarn.lockdiffbeforeafterboth
1888 languageName: node1888 languageName: node
1889 linkType: hard1889 linkType: hard
18901890
1891"chalk@npm:^4.0.0, chalk@npm:^4.1.0":1891"chalk@npm:^4.0.0, chalk@npm:^4.1.0, chalk@npm:^4.1.2":
1892 version: 4.1.21892 version: 4.1.2
1893 resolution: "chalk@npm:4.1.2"1893 resolution: "chalk@npm:4.1.2"
1894 dependencies:1894 dependencies:
2269 languageName: node2269 languageName: node
2270 linkType: hard2270 linkType: hard
2271
2272"dateformat@npm:^4.5.1":
2273 version: 4.6.3
2274 resolution: "dateformat@npm:4.6.3"
2275 checksum: c3aa0617c0a5b30595122bc8d1bee6276a9221e4d392087b41cbbdf175d9662ae0e50d0d6dcdf45caeac5153c4b5b0844265f8cd2b2245451e3da19e39e3b65d
2276 languageName: node
2277 linkType: hard
22712278
2272"debug@npm:2.6.9, debug@npm:^2.2.0":2279"debug@npm:2.6.9, debug@npm:^2.2.0":
2273 version: 2.6.92280 version: 2.6.9
2394 languageName: node2401 languageName: node
2395 linkType: hard2402 linkType: hard
2403
2404"diff@npm:^5.0.0":
2405 version: 5.1.0
2406 resolution: "diff@npm:5.1.0"
2407 checksum: c7bf0df7c9bfbe1cf8a678fd1b2137c4fb11be117a67bc18a0e03ae75105e8533dbfb1cda6b46beb3586ef5aed22143ef9d70713977d5fb1f9114e21455fba90
2408 languageName: node
2409 linkType: hard
23962410
2397"dir-glob@npm:^3.0.1":2411"dir-glob@npm:^3.0.1":
2398 version: 3.0.12412 version: 3.0.1
2557 languageName: node2571 languageName: node
2558 linkType: hard2572 linkType: hard
25592573
2560"escape-html@npm:~1.0.3":2574"escape-html@npm:^1.0.3, escape-html@npm:~1.0.3":
2561 version: 1.0.32575 version: 1.0.3
2562 resolution: "escape-html@npm:1.0.3"2576 resolution: "escape-html@npm:1.0.3"
2563 checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb242577 checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb24
3158 languageName: node3172 languageName: node
3159 linkType: hard3173 linkType: hard
3174
3175"fs-extra@npm:^10.0.0":
3176 version: 10.1.0
3177 resolution: "fs-extra@npm:10.1.0"
3178 dependencies:
3179 graceful-fs: ^4.2.0
3180 jsonfile: ^6.0.1
3181 universalify: ^2.0.0
3182 checksum: dc94ab37096f813cc3ca12f0f1b5ad6744dfed9ed21e953d72530d103cea193c2f81584a39e9dee1bea36de5ee66805678c0dddc048e8af1427ac19c00fffc50
3183 languageName: node
3184 linkType: hard
31603185
3161"fs-extra@npm:^4.0.2":3186"fs-extra@npm:^4.0.2":
3162 version: 4.0.33187 version: 4.0.3
3233 languageName: node3258 languageName: node
3234 linkType: hard3259 linkType: hard
3260
3261"fsu@npm:^1.1.1":
3262 version: 1.1.1
3263 resolution: "fsu@npm:1.1.1"
3264 checksum: 470564b7586fab03ec7bbb13f3b15cf316d51919174b44e31718d4de2f7de4ce07dc180d62b984c144b7ec6e0cca2174c03985a5d8cbef70bd1ec12f1da8968d
3265 languageName: node
3266 linkType: hard
32353267
3236"function-bind@npm:^1.1.1":3268"function-bind@npm:^1.1.1":
3237 version: 1.1.13269 version: 1.1.1
3464 languageName: node3496 languageName: node
3465 linkType: hard3497 linkType: hard
34663498
3467"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.6":3499"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.6":
3468 version: 4.2.113500 version: 4.2.11
3469 resolution: "graceful-fs@npm:4.2.11"3501 resolution: "graceful-fs@npm:4.2.11"
3470 checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc73502 checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7
3966 languageName: node3998 languageName: node
3967 linkType: hard3999 linkType: hard
4000
4001"js-tokens@npm:^3.0.0 || ^4.0.0":
4002 version: 4.0.0
4003 resolution: "js-tokens@npm:4.0.0"
4004 checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78
4005 languageName: node
4006 linkType: hard
39684007
3969"js-yaml@npm:4.1.0, js-yaml@npm:^4.1.0":4008"js-yaml@npm:4.1.0, js-yaml@npm:^4.1.0":
3970 version: 4.1.04009 version: 4.1.0
4031 languageName: node4070 languageName: node
4032 linkType: hard4071 linkType: hard
4072
4073"jsonfile@npm:^6.0.1":
4074 version: 6.1.0
4075 resolution: "jsonfile@npm:6.1.0"
4076 dependencies:
4077 graceful-fs: ^4.1.6
4078 universalify: ^2.0.0
4079 dependenciesMeta:
4080 graceful-fs:
4081 optional: true
4082 checksum: 7af3b8e1ac8fe7f1eccc6263c6ca14e1966fcbc74b618d3c78a0a2075579487547b94f72b7a1114e844a1e15bb00d440e5d1720bfc4612d790a6f285d5ea8354
4083 languageName: node
4084 linkType: hard
40334085
4034"jsprim@npm:^1.2.2":4086"jsprim@npm:^1.2.2":
4035 version: 1.4.24087 version: 1.4.2
4090 languageName: node4142 languageName: node
4091 linkType: hard4143 linkType: hard
4144
4145"lodash.isempty@npm:^4.4.0":
4146 version: 4.4.0
4147 resolution: "lodash.isempty@npm:4.4.0"
4148 checksum: a8118f23f7ed72a1dbd176bf27f297d1e71aa1926288449cb8f7cef99ba1bc7527eab52fe7899ab080fa1dc150aba6e4a6367bf49fa4e0b78da1ecc095f8d8c5
4149 languageName: node
4150 linkType: hard
4151
4152"lodash.isfunction@npm:^3.0.9":
4153 version: 3.0.9
4154 resolution: "lodash.isfunction@npm:3.0.9"
4155 checksum: 99e54c34b1e8a9ba75c034deb39cedbd2aca7af685815e67a2a8ec4f73ec9748cda6ebee5a07d7de4b938e90d421fd280e9c385cc190f903ac217ac8aff30314
4156 languageName: node
4157 linkType: hard
4158
4159"lodash.isobject@npm:^3.0.2":
4160 version: 3.0.2
4161 resolution: "lodash.isobject@npm:3.0.2"
4162 checksum: 6c1667cbc4494d0a13a3617a4b23278d6d02dac520311f2bbb43f16f2cf71d2e6eb9dec8057315b77459df4890c756a256a087d3f4baa44a79ab5d6c968b060e
4163 languageName: node
4164 linkType: hard
4165
4166"lodash.isstring@npm:^4.0.1":
4167 version: 4.0.1
4168 resolution: "lodash.isstring@npm:4.0.1"
4169 checksum: eaac87ae9636848af08021083d796e2eea3d02e80082ab8a9955309569cb3a463ce97fd281d7dc119e402b2e7d8c54a23914b15d2fc7fff56461511dc8937ba0
4170 languageName: node
4171 linkType: hard
40924172
4093"lodash.merge@npm:^4.6.2":4173"lodash.merge@npm:^4.6.2":
4094 version: 4.6.24174 version: 4.6.2
4114 languageName: node4194 languageName: node
4115 linkType: hard4195 linkType: hard
4196
4197"loose-envify@npm:^1.4.0":
4198 version: 1.4.0
4199 resolution: "loose-envify@npm:1.4.0"
4200 dependencies:
4201 js-tokens: ^3.0.0 || ^4.0.0
4202 bin:
4203 loose-envify: cli.js
4204 checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4
4205 languageName: node
4206 linkType: hard
41164207
4117"lossless-json@npm:^2.0.9":4208"lossless-json@npm:^2.0.9":
4118 version: 2.0.114209 version: 2.0.11
4522 languageName: node4613 languageName: node
4523 linkType: hard4614 linkType: hard
4615
4616"mochawesome-report-generator@npm:^6.2.0":
4617 version: 6.2.0
4618 resolution: "mochawesome-report-generator@npm:6.2.0"
4619 dependencies:
4620 chalk: ^4.1.2
4621 dateformat: ^4.5.1
4622 escape-html: ^1.0.3
4623 fs-extra: ^10.0.0
4624 fsu: ^1.1.1
4625 lodash.isfunction: ^3.0.9
4626 opener: ^1.5.2
4627 prop-types: ^15.7.2
4628 tcomb: ^3.2.17
4629 tcomb-validation: ^3.3.0
4630 validator: ^13.6.0
4631 yargs: ^17.2.1
4632 bin:
4633 marge: bin/cli.js
4634 checksum: bbfafc781a5b5aa39a012e0bed7d50ac929f72a46dee640223e4398b5f2121bd552a58f1dd481c0133678650a2e4730a9f97b8a5f26f2956b66b5c0057eb9391
4635 languageName: node
4636 linkType: hard
4637
4638"mochawesome@npm:^7.1.3":
4639 version: 7.1.3
4640 resolution: "mochawesome@npm:7.1.3"
4641 dependencies:
4642 chalk: ^4.1.2
4643 diff: ^5.0.0
4644 json-stringify-safe: ^5.0.1
4645 lodash.isempty: ^4.4.0
4646 lodash.isfunction: ^3.0.9
4647 lodash.isobject: ^3.0.2
4648 lodash.isstring: ^4.0.1
4649 mochawesome-report-generator: ^6.2.0
4650 strip-ansi: ^6.0.1
4651 uuid: ^8.3.2
4652 peerDependencies:
4653 mocha: ">=7"
4654 checksum: 87730026de2a407752088e9baddc105660bfd228d491f9f6588784cd7a200712b40a4987232d3870a353bb5deec61ae6e080686fb2effe099da240067fe619d6
4655 languageName: node
4656 linkType: hard
45244657
4525"mock-fs@npm:^4.1.0":4658"mock-fs@npm:^4.1.0":
4526 version: 4.14.04659 version: 4.14.0
4838 languageName: node4971 languageName: node
4839 linkType: hard4972 linkType: hard
4973
4974"opener@npm:^1.5.2":
4975 version: 1.5.2
4976 resolution: "opener@npm:1.5.2"
4977 bin:
4978 opener: bin/opener-bin.js
4979 checksum: 33b620c0d53d5b883f2abc6687dd1c5fd394d270dbe33a6356f2d71e0a2ec85b100d5bac94694198ccf5c30d592da863b2292c5539009c715a9c80c697b4f6cc
4980 languageName: node
4981 linkType: hard
48404982
4841"optionator@npm:^0.9.3":4983"optionator@npm:^0.9.3":
4842 version: 0.9.34984 version: 0.9.3
5042 languageName: node5184 languageName: node
5043 linkType: hard5185 linkType: hard
5186
5187"prop-types@npm:^15.7.2":
5188 version: 15.8.1
5189 resolution: "prop-types@npm:15.8.1"
5190 dependencies:
5191 loose-envify: ^1.4.0
5192 object-assign: ^4.1.1
5193 react-is: ^16.13.1
5194 checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459
5195 languageName: node
5196 linkType: hard
50445197
5045"propagate@npm:^2.0.0":5198"propagate@npm:^2.0.0":
5046 version: 2.0.15199 version: 2.0.1
5178 languageName: node5331 languageName: node
5179 linkType: hard5332 linkType: hard
5333
5334"react-is@npm:^16.13.1":
5335 version: 16.13.1
5336 resolution: "react-is@npm:16.13.1"
5337 checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f
5338 languageName: node
5339 linkType: hard
51805340
5181"readable-stream@npm:^3.6.0":5341"readable-stream@npm:^3.6.0":
5182 version: 3.6.25342 version: 3.6.2
5806 languageName: node5966 languageName: node
5807 linkType: hard5967 linkType: hard
5968
5969"tcomb-validation@npm:^3.3.0":
5970 version: 3.4.1
5971 resolution: "tcomb-validation@npm:3.4.1"
5972 dependencies:
5973 tcomb: ^3.0.0
5974 checksum: 0b0bc3dab680274aeaadd8bd01528cffc7065e4ebb2b50ee354c3cc99b443530a7a7c9a3c7abf609d8e44927c51036fcef302d1bc743ff670fddbe04e8cc1e53
5975 languageName: node
5976 linkType: hard
5977
5978"tcomb@npm:^3.0.0, tcomb@npm:^3.2.17":
5979 version: 3.2.29
5980 resolution: "tcomb@npm:3.2.29"
5981 checksum: 484e39a06ce59f1752b7589cb5fce9a7f58bd34ba11a48045d5d955c7bb7133d5617f8bf2dcf2b27f06df0dffe3734097c15179c86e4f9e5bff224c99c90aa8c
5982 languageName: node
5983 linkType: hard
58085984
5809"text-table@npm:^0.2.0":5985"text-table@npm:^0.2.0":
5810 version: 0.2.05986 version: 0.2.0
6133 find-process: ^1.4.76309 find-process: ^1.4.7
6134 lossless-json: ^2.0.96310 lossless-json: ^2.0.9
6135 mocha: ^10.1.06311 mocha: ^10.1.0
6312 mochawesome: ^7.1.3
6136 solc: 0.8.206313 solc: 0.8.20
6137 ts-node: ^10.9.16314 ts-node: ^10.9.1
6138 typechain: ^8.2.06315 typechain: ^8.2.0
6148 languageName: node6325 languageName: node
6149 linkType: hard6326 linkType: hard
6327
6328"universalify@npm:^2.0.0":
6329 version: 2.0.0
6330 resolution: "universalify@npm:2.0.0"
6331 checksum: 2406a4edf4a8830aa6813278bab1f953a8e40f2f63a37873ffa9a3bc8f9745d06cc8e88f3572cb899b7e509013f7f6fcc3e37e8a6d914167a5381d8440518c44
6332 languageName: node
6333 linkType: hard
61506334
6151"unpipe@npm:1.0.0, unpipe@npm:~1.0.0":6335"unpipe@npm:1.0.0, unpipe@npm:~1.0.0":
6152 version: 1.0.06336 version: 1.0.0
6224 languageName: node6408 languageName: node
6225 linkType: hard6409 linkType: hard
6410
6411"uuid@npm:^8.3.2":
6412 version: 8.3.2
6413 resolution: "uuid@npm:8.3.2"
6414 bin:
6415 uuid: dist/bin/uuid
6416 checksum: 5575a8a75c13120e2f10e6ddc801b2c7ed7d8f3c8ac22c7ed0c7b2ba6383ec0abda88c905085d630e251719e0777045ae3236f04c812184b7c765f63a70e58df
6417 languageName: node
6418 linkType: hard
62266419
6227"uuid@npm:^9.0.0":6420"uuid@npm:^9.0.0":
6228 version: 9.0.06421 version: 9.0.0
6240 languageName: node6433 languageName: node
6241 linkType: hard6434 linkType: hard
6435
6436"validator@npm:^13.6.0":
6437 version: 13.11.0
6438 resolution: "validator@npm:13.11.0"
6439 checksum: d1e0c27022681420756da25bc03eb08d5f0c66fb008f8ff02ebc95812b77c6be6e03d3bd05cf80ca702e23eeb73dadd66b4b3683173ea2a0bc7cc72820bee131
6440 languageName: node
6441 linkType: hard
62426442
6243"varint@npm:^5.0.0":6443"varint@npm:^5.0.0":
6244 version: 5.0.26444 version: 5.0.2
6806 languageName: node7006 languageName: node
6807 linkType: hard7007 linkType: hard
68087008
6809"yargs@npm:^17.7.2":7009"yargs@npm:^17.2.1, yargs@npm:^17.7.2":
6810 version: 17.7.27010 version: 17.7.2
6811 resolution: "yargs@npm:17.7.2"7011 resolution: "yargs@npm:17.7.2"
6812 dependencies:7012 dependencies: