{"id":15039370,"url":"https://github.com/mirage-xyz/aptos-sdk","last_synced_at":"2026-03-17T23:01:30.286Z","repository":{"id":124435211,"uuid":"574804847","full_name":"mirage-xyz/aptos-sdk","owner":"mirage-xyz","description":"SKD for integration Aptos features to .NET and Unity platforms","archived":false,"fork":false,"pushed_at":"2023-02-06T12:21:03.000Z","size":202,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-11-27T13:13:24.820Z","etag":null,"topics":["aptos","c-sharp","dot-net","sdk","unity"],"latest_commit_sha":null,"homepage":"","language":"C#","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/mirage-xyz.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,"zenodo":null}},"created_at":"2022-12-06T05:25:30.000Z","updated_at":"2024-05-17T16:54:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"8163f450-8c09-4476-88bf-e6f593762cd0","html_url":"https://github.com/mirage-xyz/aptos-sdk","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mirage-xyz/aptos-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirage-xyz%2Faptos-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirage-xyz%2Faptos-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirage-xyz%2Faptos-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirage-xyz%2Faptos-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mirage-xyz","download_url":"https://codeload.github.com/mirage-xyz/aptos-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirage-xyz%2Faptos-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30634998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T22:38:22.569Z","status":"ssl_error","status_checked_at":"2026-03-17T22:38:11.804Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["aptos","c-sharp","dot-net","sdk","unity"],"created_at":"2024-09-24T20:42:35.365Z","updated_at":"2026-03-17T23:01:30.279Z","avatar_url":"https://github.com/mirage-xyz.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mirage Aptos SDK\n\nSKD for integration Aptos features to .NET and Unity platforms\n\nAptos is a layer 1 blockchain bringing a paradigm shift to Web3 through better technology and user experience. Built with Move to create a home for developers building next-gen applications.\n\n## Installation\n\nBuild package\n\n### .NET\n\n**NuGet** (_coming soon_)\n```bash\ndotnet add package AptosSDK --version 0.1.0\n```\n**Paket**\n\nYou can reference the library in the ``paket.dependencies`` file:\n```bash\npaket git git@github.com:mirage-xyz/aptos-sdk.git\n```\nTo read more about Paket options read the [link below](https://fsprojects.github.io/Paket/git-dependencies.html).\n\nYou can build package\n\n```bash\ndotnet build\n```\nor download it from [releases](https://github.com/mirage-xyz/aptos-sdk/releases);\n\n## References\n\nTo get references documentation please follow the [link](https://aptos-docs.mirage.xyz/api/Mirage.Aptos.SDK.html).\n\n## Examples\n\n### Transfer coins\n```csharp\nstring NodeUrl = \"https://fullnode.devnet.aptoslabs.com\";\nstring FaucetUrl = \"https://faucet.devnet.aptoslabs.com\";\n\nClient client = new Client(NodeUrl);\nFaucetClient faucetClient = new FaucetClient(FaucetUrl, _client);\nTokenClient tokenClient = new TokenClient(_client);\n\nvar from = new Account();\nvar to = new Account();\n\nawait _faucetClient.FundAccount(from, TopUpAmount);\n\nvar pendingTransaction = await _coinClient.Transfer(from, to, 1000);\n\nvar awaiter = new TransactionAwaiter(_client);\nvar transaction = await awaiter.WaitForTransactionWithResult(pendingTransaction.Hash);\n```\n\n### Create and transfer token\n\n#### Create collection\n\n```csharp\nvar description = \"Collection for test\";\nvar uri = \"https://mirage.xyz/\";\nvar collectionName = \"Mirage Aptos SDK\";\n\nvar transaction = await tokenClient.CreateCollection(from, collectionName, description, uri);\n\nvar collectionData = await _tokenClient.GetCollectionData(_from.Address, _collectionName);\n```\n\n#### Create token\n\n```csharp\nvar tokenName = \"Mirages's first token\";\nvar tokenDescription = \"Mirages's simple token\";\nvar transaction = await tokenClient.CreateToken(\n\tfrom,\n\tcollectionName,\n\ttokenName,\n\ttokenDescription,\n\t1,\n\t\"https://mirage.xyz/_next/static/videos/video-desktop-8511e2ee740953e08e74b95f401399f7.webm\"\n);\n\nvar tokenData = await tokenClient.GetTokenData(_from.Address, _collectionName, _tokenName);\n```\n\nTo get more examples check [examples project](AptosSDKTest).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmirage-xyz%2Faptos-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmirage-xyz%2Faptos-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmirage-xyz%2Faptos-sdk/lists"}