From f742e60a064fcd251895e5b908e67c69a04560c4 Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Wed, 30 Jul 2025 13:36:29 +0300 Subject: [PATCH 1/6] fix: correct typo in destination path variable for ncp --- frontend/scripts/contract-examples.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/scripts/contract-examples.js b/frontend/scripts/contract-examples.js index 01e1f9c57..d79ee6fdf 100644 --- a/frontend/scripts/contract-examples.js +++ b/frontend/scripts/contract-examples.js @@ -6,10 +6,10 @@ import fs from 'node:fs'; ncp.limit = 16; const source = path.resolve('../examples'); -const destionation = path.resolve('./src/assets/examples'); -if (existsSync(destionation)) { +const destination = path.resolve('./src/assets/examples'); +if (existsSync(destination)) { console.log('Contract Examples already exists'); - fs.rmSync(destionation, { recursive: true, force: true }); + fs.rmSync(destination, { recursive: true, force: true }); } ncp(source, destionation, From b652e67fc9e6fd70e5b87ccc5fe2b4766d61fd89 Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Wed, 30 Jul 2025 13:43:49 +0300 Subject: [PATCH 2/6] =?UTF-8?q?fix(json-box):=20correct=20typos=20'becase'?= =?UTF-8?q?=20=E2=86=92=20'because',=20'assing'=20=E2=86=92=20'assign'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/JsonViewer/json-box.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/JsonViewer/json-box.vue b/frontend/src/components/JsonViewer/json-box.vue index 44c1457fe..3b2628bac 100644 --- a/frontend/src/components/JsonViewer/json-box.vue +++ b/frontend/src/components/JsonViewer/json-box.vue @@ -34,7 +34,7 @@ export default { }; }, mounted() { - // not used becase we want to control the expand from the main props + // not used because we want to control the expand from the main props // this.expand = this.previewMode || (this.depth >= this.expandDepth ? false : true); }, methods: { @@ -54,7 +54,7 @@ export default { render() { let elements = []; let dataType; - // We have to check if it's a complex type or not and assing a type + // We have to check if it's a complex type or not and assign a type // the dataType is used to know which component to render as a child if (this.value === null || this.value === undefined) { dataType = JsonUndefined; From 467395b74b7d365601f2cfdfcf85b972f6232523 Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Wed, 30 Jul 2025 13:46:20 +0300 Subject: [PATCH 3/6] =?UTF-8?q?fix(useWebSocketClient):=20'disconnnect'=20?= =?UTF-8?q?=E2=86=92=20'disconnect'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/hooks/useWebSocketClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/hooks/useWebSocketClient.ts b/frontend/src/hooks/useWebSocketClient.ts index 3015a2b51..3df1a442d 100644 --- a/frontend/src/hooks/useWebSocketClient.ts +++ b/frontend/src/hooks/useWebSocketClient.ts @@ -12,7 +12,7 @@ export function useWebSocketClient() { }); webSocketClient.on('disconnect', () => { - console.log('webSocketClient.disconnnect', webSocketClient?.id); + console.log('webSocketClient.disconnect', webSocketClient?.id); }); return webSocketClient; From a9f16dd6e419751d9a8a006f171e13869fab8787 Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Wed, 30 Jul 2025 13:47:29 +0300 Subject: [PATCH 4/6] fix(useWebSocketClient.test.ts) disconnnect -> disconnect --- frontend/test/unit/hooks/useWebSocketClient.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/test/unit/hooks/useWebSocketClient.test.ts b/frontend/test/unit/hooks/useWebSocketClient.test.ts index fa636cee4..1d9f21eb4 100644 --- a/frontend/test/unit/hooks/useWebSocketClient.test.ts +++ b/frontend/test/unit/hooks/useWebSocketClient.test.ts @@ -47,7 +47,7 @@ describe('useWebSocketClient', () => { disconnectCallback(); } expect(consoleLogSpy).toHaveBeenCalledWith( - 'webSocketClient.disconnnect', + 'webSocketClient.disconnect', 'mocked-socket-id', ); From 516bc020f20818daa03a56814e066cea3309d122 Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Wed, 30 Jul 2025 13:49:25 +0300 Subject: [PATCH 5/6] =?UTF-8?q?fix(ideas.md):=20`stardard`=20=E2=86=92=20`?= =?UTF-8?q?standard`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/integration/icontracts/ideas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/icontracts/ideas.md b/tests/integration/icontracts/ideas.md index 6f511a24e..e5b4c85a9 100644 --- a/tests/integration/icontracts/ideas.md +++ b/tests/integration/icontracts/ideas.md @@ -21,7 +21,7 @@ secondary consumer contracts would plug into the "chainlink" contract to consume ## Lottery would require allowance -stardard ERC20 +standard ERC20 ## Proxy for upgrades From 2fc1abe9103c3a0335fb1854e0d299d8aa357235 Mon Sep 17 00:00:00 2001 From: NikolaiKryshnev <63440682+NikolaiKryshnev@users.noreply.github.com> Date: Wed, 30 Jul 2025 13:50:30 +0300 Subject: [PATCH 6/6] =?UTF-8?q?fix(intelligent=5Foracle.py):=20`individial?= =?UTF-8?q?`=20=E2=86=92=20`individual`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/integration/icontracts/contracts/intelligent_oracle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/icontracts/contracts/intelligent_oracle.py b/tests/integration/icontracts/contracts/intelligent_oracle.py index e83924323..8a2b9fa97 100644 --- a/tests/integration/icontracts/contracts/intelligent_oracle.py +++ b/tests/integration/icontracts/contracts/intelligent_oracle.py @@ -239,7 +239,7 @@ def evaluate_single_source() -> str: def evaluate_all_sources() -> str: task = f""" You are an AI Validator tasked with resolving a prediction market Oracle. Your goal is to determine - the correct outcome based on processed data from all of the individial data sources. Here are your inputs + the correct outcome based on processed data from all of the individual data sources. Here are your inputs ### Inputs