{"id":18354604,"url":"https://github.com/mrfearless/sia-library","last_synced_at":"2025-08-19T08:11:14.840Z","repository":{"id":129304142,"uuid":"191218015","full_name":"mrfearless/Sia-Library","owner":"mrfearless","description":"Sia Library - a library written in assembler for accessing Sia rpc api endpoints (https://sia.tech/docs/)","archived":false,"fork":false,"pushed_at":"2019-06-23T00:11:52.000Z","size":139,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-13T16:36:16.760Z","etag":null,"topics":["assembly","blockchain","cloud-storage","masm","radasm","rpc","rpc-library","sia","siacoin","uasm","x64","x86"],"latest_commit_sha":null,"homepage":"","language":"Assembly","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrfearless.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,"zenodo":null}},"created_at":"2019-06-10T17:49:42.000Z","updated_at":"2024-08-19T19:21:40.000Z","dependencies_parsed_at":"2023-07-28T07:46:14.281Z","dependency_job_id":null,"html_url":"https://github.com/mrfearless/Sia-Library","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrfearless/Sia-Library","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfearless%2FSia-Library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfearless%2FSia-Library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfearless%2FSia-Library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfearless%2FSia-Library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrfearless","download_url":"https://codeload.github.com/mrfearless/Sia-Library/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfearless%2FSia-Library/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271121168,"owners_count":24702723,"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","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"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":["assembly","blockchain","cloud-storage","masm","radasm","rpc","rpc-library","sia","siacoin","uasm","x64","x86"],"created_at":"2024-11-05T22:04:38.942Z","updated_at":"2025-08-19T08:11:14.832Z","avatar_url":"https://github.com/mrfearless.png","language":"Assembly","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ![](./assets/sialogo.png) Sia Library\r\n\r\nSia Library - a library written in assembler (for x86 and x64) for accessing Sia rpc api endpoints.\r\n\r\n\u003e Sia is a decentralized storage platform secured by blockchain technology.\r\n\u003e\r\n\r\nSia: https://sia.tech/get-started\r\n\r\n\r\n# Installation \u0026 Usage\r\n\r\n* Download the latest release for whichever assembler and architecture you require:\r\n    - [Sia-Library-x86.zip](https://github.com/mrfearless/Sia-Library/blob/master/releases/Sia-Library-x86.zip?raw=true)\r\n    - [Sia-Library-x64.zip](https://github.com/mrfearless/Sia-Library/blob/master/releases/Sia-Library-x64.zip?raw=true)\r\n* Copy `Sia.inc` to your `masm32\\include` folder for Sia Library x86, or `uasm\\include` for Sia Library x64 (or wherever your include files are located)\r\n* Copy `Sia.lib` to your `masm32\\lib` folder for Sia Library x86, or `uasm\\lib\\x64` for Sia Library x64 (or wherever your libraries are located)\r\n* Add the following to your project:\r\n```assembly\r\ninclude Sia.inc\r\nincludelib Sia.lib\r\n```\r\n\r\n\r\n# Functions\r\n\r\nBasic documentation on the functions in this library are located on the wiki [here](https://github.com/mrfearless/libraries/wiki/Sia-Library-Functions)\r\n\r\n\r\n# Resources\r\n\r\nIncluded with the releases are additional RadASM autocomplete / intellisense type files. Each `*.api.txt` file contains instructions as to where to paste their contents. \r\n\r\nThe Sia Library makes use of the following required libraries:\r\n\r\n- [RPC Library](https://github.com/mrfearless/libraries/tree/master/RPC)\r\n- [cJSON Library](https://github.com/mrfearless/libraries/tree/master/cJSON)\r\n\r\nOther resources may be required to build the libraries:\r\n\r\n- [RadASM IDE](http://www.softpedia.com/get/Programming/File-Editors/RadASM.shtml)\r\n- [MASM32 SDK](http://www.masm32.com/download.htm)\r\n- [UASM - x86/x64 assembler](http://www.terraspace.co.uk/uasm.html)\r\n- [WinInc - include files for x64 assembler](http://www.terraspace.co.uk/WinInc209.zip)\r\n- [UASM-with-RadASM](https://github.com/mrfearless/UASM-with-RadASM)\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrfearless%2Fsia-library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrfearless%2Fsia-library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrfearless%2Fsia-library/lists"}