{"id":18904321,"url":"https://github.com/mohdrashid/asset_transfer_corda","last_synced_at":"2025-06-15T07:33:26.587Z","repository":{"id":143972765,"uuid":"161599679","full_name":"mohdrashid/asset_transfer_corda","owner":"mohdrashid","description":"A simple CorDapp to transfer assets between parties in the presence of a validator","archived":false,"fork":false,"pushed_at":"2018-12-18T13:39:42.000Z","size":1176,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T01:30:59.712Z","etag":null,"topics":["cordapp","cordapp-template","dlt"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mohdrashid.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-13T07:21:52.000Z","updated_at":"2018-12-18T13:39:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"3d0acc36-8de6-49e2-821a-254c6bd3b7fb","html_url":"https://github.com/mohdrashid/asset_transfer_corda","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mohdrashid/asset_transfer_corda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohdrashid%2Fasset_transfer_corda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohdrashid%2Fasset_transfer_corda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohdrashid%2Fasset_transfer_corda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohdrashid%2Fasset_transfer_corda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mohdrashid","download_url":"https://codeload.github.com/mohdrashid/asset_transfer_corda/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohdrashid%2Fasset_transfer_corda/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259940720,"owners_count":22935287,"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":["cordapp","cordapp-template","dlt"],"created_at":"2024-11-08T09:08:05.207Z","updated_at":"2025-06-15T07:33:26.541Z","avatar_url":"https://github.com/mohdrashid.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CorDapp - Asset Transfer Use Case\n\n\n# Pre-Requisites\n\nSee https://docs.corda.net/getting-set-up.html.\n\n# Usage\n\n## Running the nodes\n\nSee https://docs.corda.net/tutorial-cordapp.html#running-the-example-cordapp.\n\n## Interacting with the nodes\n\n### Shell\n\nWhen started via the command line, each node will display an interactive shell:\n\n    Welcome to the Corda interactive shell.\n    Useful commands include 'help' to see what is available, and 'bye' to shut down the node.\n    \n    Tue Nov 06 11:58:13 GMT 2018\u003e\u003e\u003e\n\nYou can use this shell to interact with your node. For example, enter `run networkMapSnapshot` to see a list of \nthe other nodes on the network:\n\n    Tue Nov 06 11:58:13 GMT 2018\u003e\u003e\u003e run networkMapSnapshot\n    [\n      {\n      \"addresses\" : [ \"localhost:10002\" ],\n      \"legalIdentitiesAndCerts\" : [ \"O=Notary, L=London, C=GB\" ],\n      \"platformVersion\" : 3,\n      \"serial\" : 1541505484825\n    },\n      {\n      \"addresses\" : [ \"localhost:10005\" ],\n      \"legalIdentitiesAndCerts\" : [ \"O=PartyA, L=London, C=GB\" ],\n      \"platformVersion\" : 3,\n      \"serial\" : 1541505382560\n    },\n      {\n      \"addresses\" : [ \"localhost:10008\" ],\n      \"legalIdentitiesAndCerts\" : [ \"O=PartyB, L=New York, C=US\" ],\n      \"platformVersion\" : 3,\n      \"serial\" : 1541505384742\n    }\n    ]\n    \n    Tue Nov 06 12:30:11 GMT 2018\u003e\u003e\u003e \n\nYou can find out more about the node shell [here](https://docs.corda.net/shell.html).\n\n### Client\n\n`clients/src/main/java/com/template/Client.java` defines a simple command-line client that connects to a node via RPC \nand prints a list of the other nodes on the network.\n\n#### Running the client\n\n##### Via the command line\n\nRun the `runTemplateClient` Gradle task. By default, it connects to the node with RPC address `localhost:10006` with \nthe username `user1` and the password `test`.\n\n##### Via IntelliJ\n\nRun the `Run Template Client` run configuration. By default, it connects to the node with RPC address `localhost:10006` \nwith the username `user1` and the password `test`.\n\n### Webserver\n\n`clients/src/main/java/com/template/webserver/` defines a simple Spring webserver that connects to a node via RPC and \nallows you to interact with the node over HTTP.\n\nThe API endpoints are defined here:\n\n     clients/src/main/java/com/template/webserver/Controller.java\n\nAnd a static webpage is defined here:\n\n     clients/src/main/resources/static/\n\n#### Running the webserver\n\n##### Via the command line\n\nRun the `runTemplateServer` Gradle task. By default, it connects to the node with RPC address `localhost:10006` with \nthe username `user1` and the password `test`, and serves the webserver on port `localhost:10050`.\n\n##### Via IntelliJ\n\nRun the `Run Template Server` run configuration. By default, it connects to the node with RPC address `localhost:10006` \nwith the username `user1` and the password `test`, and serves the webserver on port `localhost:10050`.\n\n#### Interacting with the webserver\n\nThe static webpage is served on:\n\n    http://localhost:10050\n\nWhile the sole template endpoint is served on:\n\n    http://localhost:10050/customendpoint\n    \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohdrashid%2Fasset_transfer_corda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohdrashid%2Fasset_transfer_corda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohdrashid%2Fasset_transfer_corda/lists"}