All Projects → forkdelta → coinmarketcap-ethtoken-db

forkdelta / coinmarketcap-ethtoken-db

Licence: other
A database of Ethereum tokens on CoinMarketCap.com in machine-friendly format

Programming Languages

python
139335 projects - #7 most used programming language
Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to coinmarketcap-ethtoken-db

niftygate
Drop-in Access Control via NFT Ownership
Stars: ✭ 61 (+144%)
Mutual labels:  erc20, ethereum-token
ethereum-kit-ios
Comprehensive EVM SDK (ex: Ethereum, Binance Smart Chain) for iOS, implemented on Swift. Create wallets, watch wallets (read-only), sync transactions, filter transactions by type (erc20, bep20, swap transactions etc.), swap using native DEX protocols, easily extendable to work with custom smart contracts, and full support for EIP1159.
Stars: ✭ 148 (+492%)
Mutual labels:  erc20, ethereum-tokens
Android-Wallet-Token-ERC20
Android Wallet (Token ERC20)
Stars: ✭ 30 (+20%)
Mutual labels:  ethereum-token, ethereum-tokens
dala-smart-contracts
Smart contracts for the Dala token sale and ERC20 token
Stars: ✭ 19 (-24%)
Mutual labels:  erc20, ethereum-token
starkgate-frontend
Bridge interface allows users to transfer ERC20 tokens from Ethereum to StarkNet and vice versa.
Stars: ✭ 75 (+200%)
Mutual labels:  erc20
awesome-ico-truths
Awesome Initial Coin Offerings (ICO) Truths - The Art of the Steal - The Scammers' Big Lies ++ ICO tokens are like bitcoins, ICOs are like IPOs, ICO White Papers are like "Due Diligence" Inverstor Prospectus, ...
Stars: ✭ 32 (+28%)
Mutual labels:  erc20
contracts
Off-the-shelf Solidity smart contracts
Stars: ✭ 100 (+300%)
Mutual labels:  erc20
cryptocharts
Cryptocurrency stats and charts displayed in your terminal.
Stars: ✭ 55 (+120%)
Mutual labels:  coinmarketcap
go-crypto-wallet
Cryptocurrency wallet for trading for Bitcoin, Bitcoin cash, Ethereum, ERC20, Ripple
Stars: ✭ 59 (+136%)
Mutual labels:  erc20
CoinMarketCap-Historical-Prices
Makes use of python3 and bs4 to scrape historical cryptocurrency prices, volume and market caps from coinmarketcap.com
Stars: ✭ 72 (+188%)
Mutual labels:  coinmarketcap
defi-dapps-solidity-smart-contracts
This is a Web 3 Smart Contract learning and teaching repo which will be used to teach students all across Pakistan.
Stars: ✭ 241 (+864%)
Mutual labels:  erc20
scpx-wallet
Scoop Wallet: Core open-source, multi-asset & cross-platform CLI
Stars: ✭ 18 (-28%)
Mutual labels:  erc20
zeneth
🏵️ Let Your ETH Chill — Gasless Ethereum account abstraction with Flashbots
Stars: ✭ 112 (+348%)
Mutual labels:  erc20
SmartHold-contracts
Ethereum Smart Contracts for locking your Ether and ERC20 tokens based on time and price conditions
Stars: ✭ 23 (-8%)
Mutual labels:  erc20
libcryptomarket
Powerful cryptocurrency market analysis toolkit
Stars: ✭ 43 (+72%)
Mutual labels:  coinmarketcap
CryptoCurrencyKit
A Swift crypto-currencies price library for accessing coinmarket APIs
Stars: ✭ 53 (+112%)
Mutual labels:  coinmarketcap
dollar
Gemini dollar contract source code
Stars: ✭ 79 (+216%)
Mutual labels:  erc20
wrc20-examples
This repository contains examples of WRC20 tokens written in different languages.
Stars: ✭ 12 (-52%)
Mutual labels:  erc20
storj-wallet
Storj Wallet for Windows, Mac and Linux. Send and Receive Storj ERC20 Token and Ethereum (unofficial)
Stars: ✭ 13 (-48%)
Mutual labels:  erc20
ethereum-erc20
Fungible token implementation for the Ethereum blockchain.
Stars: ✭ 27 (+8%)
Mutual labels:  erc20

⚠️ DO NOT send token addition requests ⚠️

Only tokens listed on coinmarketcap.com appear here. All token information is automatically collected from coinmarketcap.com. If you want to add or update a token on CoinMarketCap, go to https://coinmarketcap.com and find the "Request Form" link at the bottom of the page. DO NOT send requests to add or update tokens here.

If you believe information in this repository does not accurately reflect information on coinmarketcap.com, feel free to open an issue or a pull request with code changes to the scraping script only.

coinmarketcap-ethtoken-db

A database of Ethereum tokens on CoinMarketCap.com in a machine-friendly format. Contains CoinMarketCap listings that link to an Ethereum tracker. Each entry includes basic information (name, symbol, CoinMarketCap ID and slug), links (including Twitter, Reddit, when available), and markets links. Not intended as a source for market data (see CoinMarketCap API for that).

Contributions welcome.

How to access the data

The base of the URLs for the following examples is https://forkdelta.app/.

REST-like API

GET /coinmarketcap-ethtoken-db/tokens/index.json

The index.json file contains abridged entries for every token, sorted by token address (effectively random).

Request:

GET /coinmarketcap-ethtoken-db/tokens/index.json

Response:

[
  {
    "id": 2617,
    "address": "0x001f0aa5da15585e5b2305dbab2bac425ea71007",
    "name": "IP Exchange",
    "symbol": "IPSX",
    "website_slug": "ip-exchange"
  },
  
]

GET /coinmarketcap-ethtoken-db/tokens/:address.json

A separate JSON file is available for every token, accessible as :address.json:

Request:

GET /coinmarketcap-ethtoken-db/tokens/0x001f0aa5da15585e5b2305dbab2bac425ea71007.json

Response:

{
  "address": "0x001f0aa5da15585e5b2305dbab2bac425ea71007",
  "id": 2617,
  "links": {
    "Announcement": "https://bitcointalk.org/index.php?topic=2897132.new#new",
    "Chat": "https://t.me/IPExchange",
    "Explorer": "https://etherscan.io/token/0x001f0aa5da15585e5b2305dbab2bac425ea71007",
    "Explorer 2": "https://ethplorer.io/address/0x001f0aa5da15585e5b2305dbab2bac425ea71007",
    "Reddit": "https://www.reddit.com/r/IPSX",
    "Twitter": "https://twitter.com/ipexchange1",
    "Website": "https://ip.sx/"
  },
  "markets": [
    {
      "exchange_name": "Bibox",
      "pair": "IPSX/ETH",
      "url": "https://www.bibox.com/exchange?coinPair=IPSX_ETH"
    }
    
  ],
  "name": "IP Exchange",
  "symbol": "IPSX",
  "website_slug": "ip-exchange"
}

One-shot API

The entire database is available as bundle.json, which contains a JSON array of all data included in the individual files.

Request:

GET /coinmarketcap-ethtoken-db/tokens/bundle.json

Response:

[
  {
    "address": "0x001f0aa5da15585e5b2305dbab2bac425ea71007",
    "id": 2617,
    "links": {
      
    },
    "markets": [
      
    ],
    "name": "IP Exchange",
    "symbol": "IPSX",
    "website_slug": "ip-exchange"
  },
  {
    "address": "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45",
    "id": 1861,
    "links": {
      
    },
    "markets": [
      
    ],
    "name": "Stox",
    "symbol": "STX",
    "website_slug": "stox"
  },
  
]

GET /coinmarketcap-ethtoken-db/tokens/deprecated.json

The deprecated.json file contains abridged entries for entries marked as deprecated. An entry is marked as deprecated if CoinMarketCap removes the link to the Ethereum address from the token description.

Request:

GET /coinmarketcap-ethtoken-db/tokens/deprecated.json

Response:

[
  {
    "id": 2617,
    "address": "0x001f0aa5da15585e5b2305dbab2bac425ea71007",
    "name": "IP Exchange",
    "symbol": "IPSX",
    "website_slug": "ip-exchange"
  },
  
]

Attribution

Data provided by coinmarketcap.com. If you use data contained in this repository, you must clearly cite coinmarketcap.com as the original source.

Am I allowed to use content (screenshots, data, graphs, etc.) for one of my personal projects and/or commercial use? Absolutely! Feel free to use any content as you see fit. We kindly ask that you cite us as a source. — https://coinmarketcap.com/faq/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].