{"id":28497648,"url":"https://github.com/bitriel/bitrielwallet-chainlist","last_synced_at":"2025-07-03T10:30:33.003Z","repository":{"id":294615288,"uuid":"987532580","full_name":"bitriel/BitrielWallet-ChainList","owner":"bitriel","description":null,"archived":true,"fork":false,"pushed_at":"2025-05-30T08:10:10.000Z","size":13680,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-08T13:06:29.444Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bitriel.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-21T08:02:47.000Z","updated_at":"2025-06-02T16:44:37.000Z","dependencies_parsed_at":"2025-05-21T09:39:26.975Z","dependency_job_id":null,"html_url":"https://github.com/bitriel/BitrielWallet-ChainList","commit_stats":null,"previous_names":["bitriel/bitrielwallet-chainlist"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bitriel/BitrielWallet-ChainList","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitriel%2FBitrielWallet-ChainList","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitriel%2FBitrielWallet-ChainList/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitriel%2FBitrielWallet-ChainList/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitriel%2FBitrielWallet-ChainList/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitriel","download_url":"https://codeload.github.com/bitriel/BitrielWallet-ChainList/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitriel%2FBitrielWallet-ChainList/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263307724,"owners_count":23446332,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-08T13:06:31.185Z","updated_at":"2025-07-03T10:30:32.987Z","avatar_url":"https://github.com/bitriel.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BitrielWallet-ChainList\n**This is the repository to integrate, contain all information about projects/chains/assets available on Bitriel's products.** \u003cbr\u003e\n\n## Scope of this project\n- Provide a coherent schema and interfaces for projects/chains/assets across blockchains\n- Showing relationships between projects/chains/assets\n- Track development status\n- Provide metadata/on-chain information about chains and assets\n- Provide general, non-tech information (website, description, social media,...) about chains and assets\n- Allowing partners/teams to easily integrate with Bitriel products\n\n## Schema\n```mermaid\nerDiagram\n    CHAIN {\n        string slug  \"contains basic, general, non-tech information about a blockchain\"\n        string name\n        string logo\n        string description\n        enum status \"ACTIVE | INACTIVE | STOPPED: to show the current state of a chain\"\n    }\n\n    EVM_CHAIN {\n        int chainId\n        string hexChainId\n        string blockExplorer\n    }\n\n    SUBSTRATE_CHAIN {\n        int paraId\n        string genesisHash\n        int addressPrefix\n        string category \"RELAYCHAIN | PARACHAIN\"\n    }\n\n    CHAIN_PROVIDER {\n        string endpoint\n        string providerMode\n    }\n\n    CHAIN_ASSET {\n        string originChain FK \"The chain which token originated from\"\n        int multiChainAssetId FK \"points to a multi-chain asset\"\n        string symbol\n        int decimals\n        string priceId \"higher priority than multi-chain asset's priceId - using CoinGecko\"\n        string minAmount\n\n        enum assetType \"NATIVE | ERC20 | ERC721 | PSP34 | PSP22 | LOCAL\"\n    }\n\n    MULTI_CHAIN_ASSET {\n        string originChainAssetId FK \"point to the origin asset\"\n        string slug\n        string name\n        string symbol\n        string origin\n        string priceId\n    }\n\n    ASSET_REF {\n        int id_ PK \"showing how a token can be converted to another\"\n        string srcTokenId FK\n        string destTokenId FK\n        string path \"XCM | SWAP : path which asset can be converted\"\n    }\n\n    PROJECT_CATEGORY {\n        string category\n    }\n\n    PROJECT {\n        string name\n        string description\n        string appUrl\n        string discord\n        string twitter\n        string github\n        string telegram\n        string website\n        enum status\n    }\n\n    CHAIN ||--o| EVM_CHAIN : is\n    CHAIN ||--o| SUBSTRATE_CHAIN : is\n    CHAIN_ASSET }|--|| MULTI_CHAIN_ASSET: \"can be\"\n    CHAIN_ASSET ||--|| MULTI_CHAIN_ASSET: \"originate from\"\n    ASSET_REF }o--o{ CHAIN_ASSET : has\n    CHAIN ||--|{ CHAIN_ASSET : has\n    CHAIN }o--o{ PROJECT : has\n    PROJECT }|--|{ PROJECT_CATEGORY : belongs\n    CHAIN_PROVIDER }|--|| CHAIN : has\n    PROJECT }o--o{ CHAIN_ASSET: has\n```\n**Note: The current interfaces and json files do not necessarily follow this exact schema. The schema demonstrates the abstraction and relationships of the data**\n\n### Explanation\n- **Chain**: A blockchain, can be Polkadot, Kusama, Ethereum,...\n- **EVM_Chain, SUBSTRATE_CHAIN**: blockchain type, contains technical information about a blockchain, a blockchain can be a mix between many types\n- **Chain asset**: a token, NFT collection,... that originates from a blockchain\n- **Multichain asset**: a high-level abstraction representation of an asset across many blockchains, it might have an on-chain origin or not\n- **Asset reference**: showing path in which an asset can be converted to another\n- **Project**: products for end-user building upon a blockchain, can be a dApp, a media team,...\n\n**Please refer to [this guide](https://github.com/bitriel/BitrielWallet-ChainList/wiki/Start-contributing-to-the-project) to start contributing to the project**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitriel%2Fbitrielwallet-chainlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitriel%2Fbitrielwallet-chainlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitriel%2Fbitrielwallet-chainlist/lists"}