{"id":13695979,"url":"https://github.com/ArkEcosystemArchive/ark-java","last_synced_at":"2025-05-03T13:34:01.361Z","repository":{"id":109706599,"uuid":"87857207","full_name":"ArkEcosystemArchive/ark-java","owner":"ArkEcosystemArchive","description":"Library for interacting with an Ark Ecosystem Blockchain using the JVM.","archived":true,"fork":false,"pushed_at":"2018-07-19T18:37:40.000Z","size":254,"stargazers_count":15,"open_issues_count":2,"forks_count":13,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-01-20T00:02:39.469Z","etag":null,"topics":["android","ark","blockchain","java","jvm"],"latest_commit_sha":null,"homepage":"","language":"Groovy","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArkEcosystemArchive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2017-04-10T21:00:37.000Z","updated_at":"2023-01-28T20:16:46.000Z","dependencies_parsed_at":"2023-04-02T13:33:51.469Z","dependency_job_id":null,"html_url":"https://github.com/ArkEcosystemArchive/ark-java","commit_stats":null,"previous_names":["arkecosystem/ark-java"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArkEcosystemArchive%2Fark-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArkEcosystemArchive%2Fark-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArkEcosystemArchive%2Fark-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArkEcosystemArchive%2Fark-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArkEcosystemArchive","download_url":"https://codeload.github.com/ArkEcosystemArchive/ark-java/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252196020,"owners_count":21709757,"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":["android","ark","blockchain","java","jvm"],"created_at":"2024-08-02T18:00:35.268Z","updated_at":"2025-05-03T13:34:01.053Z","avatar_url":"https://github.com/ArkEcosystemArchive.png","language":"Groovy","funding_links":[],"categories":["Libraries"],"sub_categories":[],"readme":"# ark-java\n:coffee: Lite client library in Java\n\n[ ![Download](https://api.bintray.com/packages/arkecosystem/ark-java/client/images/download.svg) ](https://bintray.com/arkecosystem/ark-java/client/_latestVersion)\n\n# Authors\nFX Thoorens fx@ark.io\n\n\n# Installation\n## Using Java\n- Download the ```.jar``` from the Maven repository `https://dl.bintray.com/arkecosystem/ark-java/`\n- Add it to your project and `import io.ark.*`\n\n### Maven\nAdd this under `\u003cdependencies\u003e`\n```\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.ark.lite\u003c/groupId\u003e\n  \u003cartifactId\u003eclient\u003c/artifactId\u003e\n  \u003cversion\u003e0.3\u003c/version\u003e\n  \u003cscope\u003ecompile\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle\nAdd this line under `dependencies`\n```\ncompile 'io.ark.lite:client:0.3'\n```\n\nSee an example gradle app here: https://github.com/arkecosystem/ark-java-example\n\n## Using Groovy\nInstall groovy: http://groovy-lang.org/install.html\n\nExample:\n```\n@GrabResolver(name='ark-java', root='https://dl.bintray.com/arkecosystem/ark-java/')\n@Grab('io.ark.lite:client:0.3')\n\nimport io.ark.core.*\n\n// grab mainnet network settings and warm it up\ndef mainnet = Network.Mainnet\nmainnet.warmup()\n\n// create a transaction\ndef transaction = Transaction.createTransaction(\"AXoXnFi4z1Z6aFvjEYkDVCtBGW2PaRiM25\", 133380000000, \"This is first transaction from JAVA\", \"this is a top secret passphrase\")\n\n// Post transaction to a peer\ndef peer = mainnet.randomPeer\nprintln peer \u003c\u003c transaction\n\n// broadcast transaction to several peers on mainnet\nprintln mainnet \u003c\u003c transaction\n```\n\nRun the example Groovy code by doing:\n`groovy example/Example.groovy`\n\n## Security\n\nIf you discover a security vulnerability within this library, please send an e-mail to security@ark.io. All security vulnerabilities will be promptly addressed.\n\n# License\n\nThe MIT License (MIT)\n\nCopyright (c) 2017 Ark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FArkEcosystemArchive%2Fark-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FArkEcosystemArchive%2Fark-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FArkEcosystemArchive%2Fark-java/lists"}