{"id":22364645,"url":"https://github.com/c0mm4nd/dart_fast_base58","last_synced_at":"2026-02-23T04:33:08.621Z","repository":{"id":56828703,"uuid":"254630251","full_name":"c0mm4nd/dart_fast_base58","owner":"c0mm4nd","description":"Fast Implementation of Base58 encoding","archived":false,"fork":false,"pushed_at":"2021-09-19T12:41:00.000Z","size":18,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-29T17:49:45.028Z","etag":null,"topics":["base58","bitcoin","dart"],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/c0mm4nd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-10T12:34:32.000Z","updated_at":"2023-01-09T07:53:25.000Z","dependencies_parsed_at":"2022-08-26T13:51:03.008Z","dependency_job_id":null,"html_url":"https://github.com/c0mm4nd/dart_fast_base58","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c0mm4nd%2Fdart_fast_base58","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c0mm4nd%2Fdart_fast_base58/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c0mm4nd%2Fdart_fast_base58/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c0mm4nd%2Fdart_fast_base58/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/c0mm4nd","download_url":"https://codeload.github.com/c0mm4nd/dart_fast_base58/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228155743,"owners_count":17878039,"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":["base58","bitcoin","dart"],"created_at":"2024-12-04T17:24:44.882Z","updated_at":"2026-02-23T04:33:08.564Z","avatar_url":"https://github.com/c0mm4nd.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fast Implementation of Base58 encoding\n\nBase algorithm is copied from https://github.com/trezor/trezor-crypto/blob/master/base58.c\n\nAnd updating optimization from https://github.com/mr-tron/base58\n\n## Usage\n\nA simple usage example:\n\n```dart\nimport 'dart:convert'; // for utf8\nimport 'package:fast_base58/fast_base58.dart';\n\nmain() {\n  var encodedStr = Base58Encode(utf8.encode('bitcoin'.codeUnits)); // Uint8List(raw bytes) to base58 string\n  print(encodedStr); // 4jJc4sAwPs\n\n  var decodedRaw = Base58Decode('4jJc4sAwPs'); // base58 string to Uint8List(raw bytes)\n  print(utf8.decode(decodedRaw)); // bitcoin\n}\n```\n\n## Features and bugs\n\nPlease file feature requests and bugs at the [issue tracker][tracker].\n\n[tracker]: http://github.com/maoxs2/dart_fast_base58\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc0mm4nd%2Fdart_fast_base58","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fc0mm4nd%2Fdart_fast_base58","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc0mm4nd%2Fdart_fast_base58/lists"}