diff --git a/CHANGELOG.md b/CHANGELOG.md index dc84ff7..1dc7dd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -#### [v1.7.0-rc1](https://github.com/nevermined-io/components-catalog/compare/v1.6.5...v1.7.0-rc1) +#### [v1.7.0](https://github.com/nevermined-io/components-catalog/compare/v1.7.0-rc1...v1.7.0) + +> 13 June 2023 + +- return only agreementId when transaction fail [`#305`](https://github.com/nevermined-io/components-catalog/pull/305) +- feat: support arbitrum networks and update sdk version [`#306`](https://github.com/nevermined-io/components-catalog/pull/306) +- address comments [`31ba1f8`](https://github.com/nevermined-io/components-catalog/commit/31ba1f8f87fd6e4ea1233444e1969efda09539a5) +- Adding v1.7.0-rc1 Changelog updates [`8e1bd58`](https://github.com/nevermined-io/components-catalog/commit/8e1bd589a8897ddfedcc6ff7df4139a688a46422) +- Adding v1.6.5 Changelog updates [`49d88c0`](https://github.com/nevermined-io/components-catalog/commit/49d88c0196022b388e9ee47c3abba2669d2c55cb) + +#### [v1.7.0-rc1](https://github.com/nevermined-io/components-catalog/compare/v1.6.6...v1.7.0-rc1) > 13 June 2023 @@ -12,6 +22,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - fix doc lint issues [`0c66736`](https://github.com/nevermined-io/components-catalog/commit/0c66736dd2feb0233c80775e8561441b2ba1c78d) - addresss comment [`bac396d`](https://github.com/nevermined-io/components-catalog/commit/bac396d8801ca378515ec21e8b719d600194cee1) +#### [v1.6.6](https://github.com/nevermined-io/components-catalog/compare/v1.6.5...v1.6.6) + +> 13 June 2023 + +- feat: support arbitrum networks and update sdk version [`#306`](https://github.com/nevermined-io/components-catalog/pull/306) + #### [v1.6.5](https://github.com/nevermined-io/components-catalog/compare/v1.6.4...v1.6.5) > 2 June 2023 diff --git a/catalog/package.json b/catalog/package.json index 0b1c2a2..960b1fa 100644 --- a/catalog/package.json +++ b/catalog/package.json @@ -1,6 +1,6 @@ { "name": "@nevermined-io/catalog", - "version": "1.7.2", + "version": "1.7.3", "main": "./dist/index.js", "types": "./dist/index.d.ts", "dependencies": { diff --git a/catalog/src/services/account.ts b/catalog/src/services/account.ts index 2a9284e..ceff7ba 100644 --- a/catalog/src/services/account.ts +++ b/catalog/src/services/account.ts @@ -288,6 +288,7 @@ export const useAccountCollection = ( */ export const useUserProfile = ( walletAddress: string, + signMessage?: string, ): { /** Input error message */ inputError: string @@ -388,7 +389,7 @@ export const useUserProfile = ( const submitUserProfile = async () => { try { const userAccount = await sdk.accounts.getAccount(walletAddress) - await checkAuth(userAccount) + await checkAuth(userAccount, signMessage) if (!userProfile.nickname) { setInputError('Nickname is required') @@ -440,7 +441,7 @@ export const useUserProfile = ( setNewAddress('') } - const tokenAuth = await checkAuth(userAccount) + const tokenAuth = await checkAuth(userAccount, signMessage) setAddresses([...userProfileData.addresses]) diff --git a/providers/package.json b/providers/package.json index ab4bbb8..d02f397 100644 --- a/providers/package.json +++ b/providers/package.json @@ -1,7 +1,7 @@ { "name": "@nevermined-io/providers", "private": false, - "version": "1.7.2", + "version": "1.7.3", "main": "./dist/index.js", "types": "./dist/index.d.ts", "dependencies": {