{"id":19150376,"url":"https://github.com/block-chen/blocksdk-java","last_synced_at":"2025-05-07T05:23:30.392Z","repository":{"id":47874491,"uuid":"304219329","full_name":"Block-Chen/blocksdk-java","owner":"Block-Chen","description":"Past data inquiry, block inquiry, block chain information inquiry, address wallet creation, event web hook","archived":false,"fork":false,"pushed_at":"2023-09-15T08:31:18.000Z","size":31,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-19T18:33:52.794Z","etag":null,"topics":["bitcoin","bitcoin-api","bitcoin-wallet","dash","erc20","erc20-tokens","ethereum","ethereum-address","ethereum-api","litecoin","litecoin-wallet","monero","monero-api","monero-wallet"],"latest_commit_sha":null,"homepage":"https://blocksdk.com","language":"Java","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/Block-Chen.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-10-15T05:27:29.000Z","updated_at":"2024-05-31T07:29:28.000Z","dependencies_parsed_at":"2024-11-09T08:12:01.792Z","dependency_job_id":"f2a7d9b6-39b1-4698-bbcf-0b053044f9c3","html_url":"https://github.com/Block-Chen/blocksdk-java","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Block-Chen%2Fblocksdk-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Block-Chen%2Fblocksdk-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Block-Chen%2Fblocksdk-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Block-Chen%2Fblocksdk-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Block-Chen","download_url":"https://codeload.github.com/Block-Chen/blocksdk-java/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252819293,"owners_count":21809005,"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":["bitcoin","bitcoin-api","bitcoin-wallet","dash","erc20","erc20-tokens","ethereum","ethereum-address","ethereum-api","litecoin","litecoin-wallet","monero","monero-api","monero-wallet"],"created_at":"2024-11-09T08:11:48.951Z","updated_at":"2025-05-07T05:23:30.319Z","avatar_url":"https://github.com/Block-Chen.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JAVA REST API SDK for BLOCKSDK V3\n[![@BLOCKSDK on Facebook](https://img.shields.io/badge/facebook-%40BLOCKSDK-blue.svg)](https://www.facebook.com/blocksdk)\n![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)\n\n__BlockSDK JAVA__에 오신 것을 환영합니다. 이 저장소에는 BlockSDK의 JAVA SDK와 REST API용 샘플이 포함되어 있습니다.\n\n## 지원중인 블록체인 네트워크\n비트코인 , 라이트코인 , 비트코인 캐시 , 웹후크 는 V2버전 에서 지원되고 있습니다.\n```\n1.이더리움\n2.클레이튼  \n3.바이낸스 스마트 체인\n4.폴리곤\n5.아발란체\n6.이더리움 클래식\n```\n## 개발자 문서\n* [BlockSDK REST API V3 문서](https://documenter.getpostman.com/view/20292093/Uz5FKwxw)\n* [BlockSDK REST API V2 문서](https://dojava-v2.blocksdk.com/ko/#fa255f0ccc)\n* [BLOCKSDK JAVA SDK V3 문서](https://github.com/Block-Chen/blocksdk-java/wiki)\n\n## 시작하기\n\n### Maven\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.block-chen\u003c/groupId\u003e\n    \u003cartifactId\u003eblocksdk-java\u003c/artifactId\u003e\n    \u003cversion\u003e3.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n### Gradle\n```groovy\nimplementation 'io.github.block-chen:blocksdk-java:3.0.0'\n```\n\n## 코드 샘플\n\n### 이더리움 테스트넷 클라이언트 생성\n```java\nEthereum Client = new Ethereum(\"YOU_TLKEN\");\n```\n\n### 이더리움 메인넷 클라이언트 생성\n```java\nEthereum Client = new Ethereum(\"YOU_TLKEN\", \"https://mainnet-api.blocksdk.com\");\n```\n\n### 이더리움 블록체인 정보 가져오기\n```java\nMap\u003cString, Object\u003e data = Client.GetBlockchainInfo().join();\nSystem.out.println(data);\n```\n\n### 이더리움 특정 컨트렉트 NFT 목록 가져오기\n```java\nMap\u003cString, Object\u003e data = new HashMap\u003c\u003e();\ndata.put(\"contract_address\", \"0xf5de760f2e916647fd766b4ad9e85ff943ce3a2b\");\ndata.put(\"offset\", \"0\");\ndata.put(\"limit\", \"10\");\n\nMap\u003cString, Object\u003e result = Client.GetSingleNfts(data).join();\nSystem.out.println(result);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblock-chen%2Fblocksdk-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblock-chen%2Fblocksdk-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblock-chen%2Fblocksdk-java/lists"}