{"id":50416422,"url":"https://github.com/skyf0xx/kin-sdk-unity-tutorial-server-python","last_synced_at":"2026-05-31T06:03:31.228Z","repository":{"id":53661532,"uuid":"185922672","full_name":"skyf0xx/kin-sdk-unity-tutorial-server-python","owner":"skyf0xx","description":"Sample server code to work with the Kin Unity SDK client","archived":false,"fork":false,"pushed_at":"2022-12-08T05:05:31.000Z","size":20,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-18T00:01:23.796Z","etag":null,"topics":["blockhain","kin","unity"],"latest_commit_sha":null,"homepage":"https://stackoverflow.com/questions/56096526/how-to-set-up-and-use-the-kin-blockchain-in-a-unity-app-step-by-step","language":"Python","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/skyf0xx.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}},"created_at":"2019-05-10T05:13:31.000Z","updated_at":"2019-10-09T12:33:51.000Z","dependencies_parsed_at":"2023-01-24T11:25:11.995Z","dependency_job_id":null,"html_url":"https://github.com/skyf0xx/kin-sdk-unity-tutorial-server-python","commit_stats":null,"previous_names":["skyf0xx/kin-sdk-unity-tutorial-server-python"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/skyf0xx/kin-sdk-unity-tutorial-server-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyf0xx%2Fkin-sdk-unity-tutorial-server-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyf0xx%2Fkin-sdk-unity-tutorial-server-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyf0xx%2Fkin-sdk-unity-tutorial-server-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyf0xx%2Fkin-sdk-unity-tutorial-server-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skyf0xx","download_url":"https://codeload.github.com/skyf0xx/kin-sdk-unity-tutorial-server-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyf0xx%2Fkin-sdk-unity-tutorial-server-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33720900,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["blockhain","kin","unity"],"created_at":"2026-05-31T06:03:27.978Z","updated_at":"2026-05-31T06:03:31.220Z","avatar_url":"https://github.com/skyf0xx.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kin Unity SDK tutorial-server\nThis is a simple server side implementation of  [Kin's python SDK](https://github.com/kinecosystem/kin-sdk-python/tree/v2-master). It can work as a standalone implementation, or together with the client side wrapper provided in the [Kin Unity SDK tutorial](https://github.com/hitwill/kin-sdk-unity-tutorial/tree/master).\n\nWith this code, you can call [Kin's blockchain](https://www.kin.org/blockchainExplorer) to:\n1. Fund newly created accounts\n2. Send payments\n3. Whitelist transactions for the client\n\nYou can also extend it to suit your needs.\n\n![sample python code](https://i.imgur.com/T7JPJ3m.png)\n\n\n\n## Installation\n\n1. Clone to your localhost directory\n2. Use [pip](https://stackoverflow.com/questions/7225900/how-to-install-packages-using-pip-according-to-the-requirements-txt-file-from-a) to install dependencies in requirements.txt\n3. Modify the following variables in server.py\n```python\n    kin_env = TEST_ENVIRONMENT\n    unique_app_id = '1acd' #your app id assigned by Kin - you can use 1acd for testing\n    seed = os.environ['PRIVATE_KEY'] #private key (keep private/ store in .env file for production)\n    public_address = 'GCMVZ4B6P4QEZL727UH2A6ABA2AYY67GZC3NILDD2DVSZPRN4QQCRATG' #public key\n```\n\nYou can use [Kin's Laboratory](https://laboratory.kin.org/index.html#account-creator?network=test) to generate your seed and public address.\n\n4. Push to your server (Heroku recommended)\n\n\n## Usage\nSimply call the server with GET/POST to perform the following functions:\n1. [Fund a new account](https://github.com/kinecosystem/kin-sdk-python/tree/v2-master#creating-a-new-account)\n\n    GET: fund = 1\n\n   POST: address, memo, amount\n\n2. [Send a payment to an account](https://github.com/kinecosystem/kin-sdk-python/tree/v2-master#sending-kin)\n  \n   GET: request = 1\n\n   POST: address, id, memo, amount\n\n3. [Whitelist a transaction for the client](https://github.com/kinecosystem/kin-sdk-python/tree/v2-master#whitelist-a-transaction)\n\n   GET: whitelist = 1\n\n   POST: address, id, memo, amount\n\n#### Variables\n1. **address:** The blockchain address you wish to make a payment to\n2. **memo:** Memo to add to your transaction\n3. **amount:** Amount to send for your transaction\n4. **id:** A unique id for your client (optional)\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) for details.\n\n\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyf0xx%2Fkin-sdk-unity-tutorial-server-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskyf0xx%2Fkin-sdk-unity-tutorial-server-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyf0xx%2Fkin-sdk-unity-tutorial-server-python/lists"}