{"id":19303810,"url":"https://github.com/web3w/hd-address-verify","last_synced_at":"2026-05-16T00:09:25.648Z","repository":{"id":111890066,"uuid":"281904052","full_name":"web3w/hd-address-verify","owner":"web3w","description":"BTC series, ETH,TRX address validation ","archived":false,"fork":false,"pushed_at":"2024-06-18T18:31:19.000Z","size":187,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-05T23:42:18.421Z","etag":null,"topics":["address-validation","bitcoin","blockchain","btc"],"latest_commit_sha":null,"homepage":"","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/web3w.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2020-07-23T09:07:03.000Z","updated_at":"2023-10-16T10:28:21.000Z","dependencies_parsed_at":"2024-11-09T23:28:01.075Z","dependency_job_id":"635afd05-0dcd-4515-aeb3-c44be8b6f009","html_url":"https://github.com/web3w/hd-address-verify","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"web3w/hd-address","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web3w%2Fhd-address-verify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web3w%2Fhd-address-verify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web3w%2Fhd-address-verify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web3w%2Fhd-address-verify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/web3w","download_url":"https://codeload.github.com/web3w/hd-address-verify/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240404751,"owners_count":19796064,"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":["address-validation","bitcoin","blockchain","btc"],"created_at":"2024-11-09T23:27:38.480Z","updated_at":"2025-11-17T00:01:22.961Z","avatar_url":"https://github.com/web3w.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hd-address-verify\n\nBTC series, ETH,TRX address validation.  \n\n[![NPM version](https://img.shields.io/npm/v/hd-address-verify?style=flat-square)](https://www.npmjs.com/package/hd-address-verify)\n\n\n### Install\n```\nnpm i hd-address-verify\n```\n## Basic Usage\n```javascript\n    const addressVerify = require(\"hd-address-verify\")\n    const hdData = {\n        \"BTC\": \"1442MZYQMh17ZoWdLMferxM4U9ppqGQbuK\",\n        \"BTC_TEST\": \"miZyecdPAiSNLuzF3ve2gsZPL9RXjA51JS\",\n        \"BCH\": \"12Ut7DckjmdzU4Kx8cZeCfsyqufcrTFkFq\",\n        \"BCH_TEST\": \"mgzqQGhjYo5FFAoZrBY22b6JhuGKmm3fb9\",\n        \"LTC\": \"LbspHRvEu8PpyMq2EpR7rJNN5D3kzzsk9a\",\n        \"LTC_TEST\": \"mxApKGhPdVb2VfcUnFQCQCWvizHBmQ8MCV\",\n        \"ETH\": \"0xe4fa4CEFEa4ebfB79f4527a71EEF983700119d58\",\n        \"TRX\": \"TQawSTYUsWvibpQURRUxJhUcLZdEbuFdGT\",\n    }\n    let example = () =\u003e {\n        //BTC\n        let isBtcAdrr = addressVerify.BTC(hdData.BTC)\n        console.log(\"BTC address verify\", isBtcAdrr, hdData.BTC)\n        let isBtcTestAdrr = addressVerify.BTC_TEST(hdData.BTC_TEST)\n        console.log(\"BTC_TEST address verify\", isBtcTestAdrr, hdData.BTC_TEST)\n    \n        //BCH\n        let isBchAdrr = addressVerify.BTC(hdData.BCH)\n        console.log(\"BCH address verify\", isBchAdrr, hdData.BCH)\n        let isBchTestAdrr = addressVerify.BTC_TEST(hdData.BTC_TEST)\n        console.log(\"BCH_TEST address verify\", isBchTestAdrr, hdData.BTC_TEST)\n    \n        //LTC\n        let isLtcAdrr = addressVerify.BTC(hdData.LTC)\n        console.log(\"LTC address verify\", isLtcAdrr, hdData.LTC)\n        let isLtcTestAdrr = addressVerify.BTC_TEST(hdData.LTC_TEST)\n        console.log(\"LTC_TEST address verify\", isLtcTestAdrr, hdData.LTC_TEST)\n    \n        //ETH\n        let isEthAdrr = addressVerify.ETH(hdData.ETH)\n        console.log(\"ETH address verify\", isEthAdrr, hdData.ETH)\n    \n        //TRX\n        let isTrxAdrr = addressVerify.TRX(hdData.TRX)\n        console.log(\"TRX address verify\", isTrxAdrr, hdData.TRX)\n    \n        //Address error\n        let isTrxAdrrErr = addressVerify.TRX(hdData.TRX+\"1\")\n        console.log(\"TRX address verify\", isTrxAdrrErr, hdData.TRX+\"1\")\n    }\n```\nauthor address\n```js\n\"BTC\": \"1HthGRdzxunKAiMSazDdL8PZhE4qWpeBNK\", \n\"BCH\": \"12owPGh3cXLk8HevCEx5fZAMPqZPBgvgmX\",\n\"LTC\": \"LchXCPCtYTKUvksjf5RvkZhCwvYQrYewaa\",\n\"ETH\": \"0x4E04823FDF08E862201a4cfA595dc1Ec72AdF3Ab\",\n\"TRX\": \"TZFH9KReZpsWZZ9Q2bVyXGQtmvVL3PV8gE\",\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb3w%2Fhd-address-verify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweb3w%2Fhd-address-verify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb3w%2Fhd-address-verify/lists"}