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 +}) 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') ``` 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) {