Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Item

Content

Page URL

/integrate/how

Page Title

FIO Protocol - How to Integrate

Design

https://www.figma.com/file/n33HwJfIuwy068A7G0Bdpg/FIO-Website?type=design&node-id=711-14062

Section Content

Resolve FIO Handles

Allow your users to use a FIO Handle instead of a public address when sending crypto or NFTs inside your application. Then look up specific public address on specific chain using a simple REST API call:Should make this interactive

Code Block
languagebash
curl --request POST \
     --url https://fio.blockpane.com/v1/chain/get_pub_address \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "fio_address": "vitalik@safu",
  "chain_code": "ETH",
  "token_code": "ETH"
}

...