owned this note
owned this note
Published
Linked with GitHub
# Explorie API DOC
---
### Frontend Data Structure
```
NFT data = {
"721": {
"<policy_id>": {
"<asset_name>": { // Asset name -> unique id?
"name": <string>, // human readable name
"image": <uri | array>, // bitmap? how many types supported?
"mediaType": "image/<mime_sub_type>",
"description": <string | array>,
"geoLocation": "",
"files": [{ // What type of files supported for MVP
"name": <string>,
"mediaType": <mime_type>,
"src": <uri | array>,
<other_properties>
}],
<other properties>
company: <string> // SUGGESTED
collection: <string> // SUGGESTED
type: <string> // SUGGESTED voucher / collectable
rarity: <string | null> // SUGGESTED for collectables
}
}
"version": "1.0"
}
}
const NFT_CONTRACT = {
contract: "EXP_NFT" // TOKEN CONTRACT ID OR ADDRESS
image: "",
description: ""
}
companies: {
id: "Nike",
nfts: ["NFT CONTRACT ID"] // TOKEN CONTRACT ID OR ADDRESS
}
const REDUX_MAIN = {
user: {
name: "Sam Sammy",
email: "jonathanchowjh@gmail.com",
phone: "+6593857577",
password: "jdshja2hj2"
},
wallet: {
address: "39239299",
prvkey: "djsjahdjjdsa", // save in phone
pubkey: "djsjahdjjdsa", // save in phone
tokens: [
{ id: "EXP", amt: 398.328 }
],
nfts: [
{ id: "EXP_NFT#6167", contract: "EXP_NFT", title: "collectable", subtitle: "$1 off NFT", image: "", rarity: "legend", type: "collectable", company: "Nike" },
{ id: "EXP_NFT_VOUCHER#8372", contract: "EXP_NFT_VOUCHER", title: "voucher", subtitle: "$1 off NFT", image: "", type: "voucher", company: "Nike" }
]
},
companies: [
{ id: "Nike", nfts: ["NFT CONTRACT ID"] }
],
nfts: [
{ id: "EXP_NFT#6167", contract: "EXP_NFT", title: "collectable", subtitle: "$1 off NFT", image: "", rarity: "legend", type: "collectable", company: "Nike" },
{ id: "EXP_NFT_VOUCHER#8372", contract: "EXP_NFT_VOUCHER", title: "voucher", subtitle: "$1 off NFT", image: "", type: "voucher", company: "Nike" }
],
nftContracts: [
{ contract: "EXP_NFT", image: "", description: "" }
]
marketplace: {
buyOrders: [
{
order: "BUY",
price: 10.3,
token: { id: "EXP_NFT#6167", contract: "EXP_NFT", title: "collectable", subtitle: "$1 off NFT", image: "", rarity: "legend", type: "collectable", company: "Nike" }
},
],
sellOrders: [
{
order: "SELL",
price: 10.3,
token: { id: "EXP_NFT#6167", contract: "EXP_NFT", title: "collectable", subtitle: "$1 off NFT", image: "", rarity: "legend", type: "collectable", company: "Nike" }
},
],
myOrders: [
{
order: "BUY",
price: 10.3,
token: { id: "EXP_NFT#6167", contract: "EXP_NFT", title: "collectable", subtitle: "$1 off NFT", image: "", rarity: "legend", type: "collectable", company: "Nike" }
}
]
}
map: {}
}
```