From a0138d0407bfd45a59934c87dc399dbf49bb68c9 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 23 Apr 2025 10:27:54 +0300 Subject: [PATCH 1/3] Update README.md --- packages/vda-web3-client/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vda-web3-client/README.md b/packages/vda-web3-client/README.md index 60a336b5..6da1d441 100644 --- a/packages/vda-web3-client/README.md +++ b/packages/vda-web3-client/README.md @@ -57,7 +57,7 @@ Configurations are a bit different for both modes: ``` ## Interacting with Contract -Developers can call any contract functions using instace created above. +Developers can call any contract functions using instance created above. ``` const ret = instance.identityOwner('0x12...5f') ``` From 6364818bc189ea523bd5f53c74a88fee77c5d05d Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 23 Apr 2025 10:30:44 +0300 Subject: [PATCH 2/3] Update utils.ts --- packages/vda-web3-client/src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vda-web3-client/src/utils.ts b/packages/vda-web3-client/src/utils.ts index 36548773..479ee92b 100644 --- a/packages/vda-web3-client/src/utils.ts +++ b/packages/vda-web3-client/src/utils.ts @@ -26,7 +26,7 @@ export function isVeridaContract(contractAddress: string) : boolean { /** * Get Polygon fee data to send the transactions - * @param gasStationUrl Gas station url to pull the gas inforamtion + * @param gasStationUrl Gas station url to pull the gas information * @returns Matic fee data */ export async function getMaticFee(gasStationUrl: string, mode: string) { From 7b7d84a9039136b24c516febc48ce37fdb392739 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 23 Apr 2025 10:35:20 +0300 Subject: [PATCH 3/3] Update storage.endpoints.tests.ts --- packages/client-ts/test/storage.endpoints.tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client-ts/test/storage.endpoints.tests.ts b/packages/client-ts/test/storage.endpoints.tests.ts index 08fa0d83..48d87d98 100644 --- a/packages/client-ts/test/storage.endpoints.tests.ts +++ b/packages/client-ts/test/storage.endpoints.tests.ts @@ -166,7 +166,7 @@ describe.skip('Storage endpoint tests', () => { assert.deepEqual(databaseList[ENDPOINT_1], databaseList[ENDPOINT_2], 'Endpoints have the same database list') // Confirm database usage matches - // Note: Often small discrepancies, so this tst is ignroed + // Note: Often small discrepancies, so this tst is ignored // console.log(usage) //assert.deepEqual(usage[ENDPOINT_1], usage[ENDPOINT_2], 'Endpoints have the same usage stats') }) @@ -262,4 +262,4 @@ describe.skip('Storage endpoint tests', () => { // @todo: add a new endpoint, let it sync then perform the same tests across all the endpoints }) -}) \ No newline at end of file +})