Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,30 @@ 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

- pass account by argument instead of get from the list [`4c663e9`](https://github.com/nevermined-io/components-catalog/commit/4c663e922bada1cb26d10adbbc39586379711979)
- 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
Expand Down
2 changes: 1 addition & 1 deletion catalog/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
5 changes: 3 additions & 2 deletions catalog/src/services/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ export const useAccountCollection = (
*/
export const useUserProfile = (
walletAddress: string,
signMessage?: string,
): {
/** Input error message */
inputError: string
Expand Down Expand Up @@ -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')
Expand Down Expand Up @@ -440,7 +441,7 @@ export const useUserProfile = (
setNewAddress('')
}

const tokenAuth = await checkAuth(userAccount)
const tokenAuth = await checkAuth(userAccount, signMessage)

setAddresses([...userProfileData.addresses])

Expand Down
2 changes: 1 addition & 1 deletion providers/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down