-
-
Notifications
You must be signed in to change notification settings - Fork 366
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
Enable Multi-chain capabilities in KodaDot #4257
Labels
$$
~51-150usd
A-multi-chain
interoperability issues across more parachains
A-search
related to search components
chief
p2
core functionality, or is affecting 60% of app
Comments
yangwao
added
A-search
related to search components
A-multi-chain
interoperability issues across more parachains
labels
Nov 5, 2022
This was referenced Nov 5, 2022
This was referenced Nov 22, 2022
Closed
First draft of schema Collection -- create table collection_entities with following columns
-- id (uuid, primary key, auto increment)
-- animation_url (text)
-- block_number (bigint)
-- chain (enum, default 'rmrk')
-- collection_id (text)
-- count (integer, default 0)
-- created_at (timestamp, default now())
-- floor_price (bigint, default 0)
-- hash (text)
-- image (text)
-- issuer (text, foreign key to creators table)
-- max (integer)
-- metadata (text)
-- name (text)
-- supply (integer, default 0)
-- updated_at (timestamp, default now())
-- version (integer, default 0) NFT: -- create table nft_entities with following columns
-- block_number (bigint)
-- chain (enum, default 'rmrk')
-- collection_id (text, foreign key to collection_entities table)
-- issuer (text, foreign key to creators table)
-- id (uuid, primary key, auto increment)
-- metadata (text)
-- name (text)
-- image (text)
-- animation_url (text)
-- created_at (timestamp, default now())
-- updated_at (timestamp, default now())
-- hash (text)
-- serial_number (integer)
-- version (integer, default 0) |
Closed
yangwao
changed the title
Multi chain search hack
Enabling Multi chain capabilities in KodaDot
Jan 5, 2023
Closed
Closed
yangwao
changed the title
Enabling Multi chain capabilities in KodaDot
Enable Multi-chain capabilities in KodaDot
Feb 16, 2023
@vikiival where would be a good place to start tackling these issues? |
Hello, here is the anon key
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
$$
~51-150usd
A-multi-chain
interoperability issues across more parachains
A-search
related to search components
chief
p2
core functionality, or is affecting 60% of app
Finally, we have an endpoint we can start to integrate multi-chain components.
At some point would be nice to have some component which would wrap and abstract the current endpoint in case we find Supabase is not sufficient for our case.
Endpoint
Follow up what can be done with new endpoint
If anyone wants to play with that here is the URL
You need to add
apiKey
header into your request. You can find the key in the discord group.Sample Query
Tasks
Once all the above done
Ref
The text was updated successfully, but these errors were encountered: