{"id":28290043,"url":"https://github.com/tukwan/crypto-exchange","last_synced_at":"2026-04-14T10:32:36.212Z","repository":{"id":54541077,"uuid":"245220766","full_name":"tukwan/crypto-exchange","owner":"tukwan","description":"Crypto Exchange","archived":false,"fork":false,"pushed_at":"2021-02-11T21:10:19.000Z","size":1073,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-13T06:41:34.124Z","etag":null,"topics":["apexcharts","blockchain","bootstrap","ethereum","express","ganache","heroku","jest","react","redux","rselect","solidity","truffle","web3"],"latest_commit_sha":null,"homepage":"https://crypto-ex.herokuapp.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tukwan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-05T17:02:10.000Z","updated_at":"2020-07-07T17:40:07.000Z","dependencies_parsed_at":"2022-08-13T19:10:25.391Z","dependency_job_id":null,"html_url":"https://github.com/tukwan/crypto-exchange","commit_stats":null,"previous_names":["tukwan/crypto-exchange"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tukwan/crypto-exchange","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tukwan%2Fcrypto-exchange","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tukwan%2Fcrypto-exchange/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tukwan%2Fcrypto-exchange/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tukwan%2Fcrypto-exchange/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tukwan","download_url":"https://codeload.github.com/tukwan/crypto-exchange/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tukwan%2Fcrypto-exchange/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31793212,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["apexcharts","blockchain","bootstrap","ethereum","express","ganache","heroku","jest","react","redux","rselect","solidity","truffle","web3"],"created_at":"2025-05-22T02:12:08.179Z","updated_at":"2026-04-14T10:32:36.197Z","avatar_url":"https://github.com/tukwan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Crypto Exchange\n\nDecentralized exchange for trading Ethereum (ERC-20) token and ETH. \n\n## Demo\n\n* https://crypto-ex.herokuapp.com (Rinkeby Testnet)\n\n\u003cimg src=\"https://i.ibb.co/BZXw5Mn/Screen-Shot-2020-07-07-at-18-25-44.png\" width=\"50%\"\u003e\n\n## Run Scripts\n```json\n\"start\": \"node server.js\",\n\"dev\": \"react-scripts start\",\n\"build\": \"react-scripts build\",\n\"cov\": \"truffle run coverage\",\n\"test\": \"react-scripts test\",\n\"eject\": \"react-scripts eject\"\n```\n\n## Built With\n* Solidity\n* Truffle\n* Ganache \n* Node\n* Express\n* React\n* Redux\n* Reselect\n* Web3\n* Bootstrap\n* Apexcharts\n* Heroku\n* Jest\n\n## Project Tree\n```\n.\n├── migrations\n│   ├── 1_initial_migration.js\n│   └── 2_deploy_contracts.js\n├── public\n│   └── index.html\n├── scripts\n│   └── seed-exchange.js\n├── src\n│   ├── abis\n│   │   ├── Escrow.json\n│   │   ├── Exchange.json\n│   │   ├── InnerContract.json\n│   │   ├── Library.json\n│   │   ├── Migrations.json\n│   │   ├── SafeMath.json\n│   │   ├── TestContract.json\n│   │   ├── Timelock.json\n│   │   └── Token.json\n│   ├── components\n│   │   ├── App.css\n│   │   ├── App.js\n│   │   ├── Balance.js\n│   │   ├── Content.js\n│   │   ├── MyTransactions.js\n│   │   ├── Navbar.js\n│   │   ├── NewOrder.js\n│   │   ├── OrderBook.js\n│   │   ├── PriceChart.config.js\n│   │   ├── PriceChart.js\n│   │   ├── Spinner.js\n│   │   └── Trades.js\n│   ├── contracts\n│   │   ├── lib\n│   │   │   └── SafeMath.sol\n│   │   ├── Exchange.sol\n│   │   ├── Migrations.sol\n│   │   └── Token.sol\n│   ├── store\n│   │   ├── actions.js\n│   │   ├── configureStore.js\n│   │   ├── interactions.js\n│   │   ├── reducers.js\n│   │   └── selectors.js\n│   ├── helpers.js\n│   └── index.js\n├── test\n│   ├── Exchange.test.js\n│   ├── helpers.js\n│   └── Token.test.js\n├── .babelrc\n├── .eslintrc\n├── .gitignore\n├── .soliumrc.json\n├── package.json\n├── README.md\n├── server.js\n├── truffle-config.js\n└── yarn.lock\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftukwan%2Fcrypto-exchange","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftukwan%2Fcrypto-exchange","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftukwan%2Fcrypto-exchange/lists"}