Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(blockchainAPI): adding optional chainId parameter for the identity #253

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
11 changes: 8 additions & 3 deletions docs/specs/servers/blockchain/blockchain-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@

Used to lookup ENS name and avatar for the Ethereum address.

`GET /v1/identity/{address}?projectId={projectId}`
`GET /v1/identity/{address}`

* `address` - Ethereum address to lookup for the ENS name and avatar.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did overlook this, do we need to say that is a Ethereum address and is for ENS name?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch @zoruka ! We should remove this since the address can be Solana etc. starting from this change.


#### Query parameters:

* `address` - (Optional) Ethereum address to lookup for the ENS name and avatar.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixing this, address is not an optional parameter but is required.

* `projectId` - The project identifier.
* `chainId` - (Optional) CAIP-2 chain identifier to use for the address.
If it's not set the Ethereum mainnet and ENS resolution is used.
Comment on lines +16 to +17
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clearly specifies the default. ENS resolution is unrelated

Suggested change
* `chainId` - (Optional) CAIP-2 chain identifier to use for the address.
If it's not set the Ethereum mainnet and ENS resolution is used.
* `chainId` - (Optional) CAIP-2 chain identifier to use for the address. Defaults to `eip155:1`


#### Success response body:

Expand All @@ -25,7 +30,7 @@ Used to lookup ENS name and avatar for the Ethereum address.

#### Response error codes:

* `400 Bad request` - Wrong requested address format.
* `400 Bad request` - Wrong requested address format or unsupported chain ID.

## Hexless account profiles API

Expand Down