{"id":13772800,"url":"https://github.com/waves-rust/waves-lib-rust","last_synced_at":"2025-05-11T05:33:34.668Z","repository":{"id":57671952,"uuid":"294114676","full_name":"waves-rust/waves-lib-rust","owner":"waves-rust","description":"Library to work with Waves blockchain :chains:","archived":true,"fork":false,"pushed_at":"2023-08-29T06:07:19.000Z","size":114,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-05T01:17:34.153Z","etag":null,"topics":["blockchain","rust","waves","wavesplatform"],"latest_commit_sha":null,"homepage":"https://docs.rs/wavesplatform","language":"Rust","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"petermz/WavesRs","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/waves-rust.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}},"created_at":"2020-09-09T13:02:18.000Z","updated_at":"2024-10-16T01:32:01.000Z","dependencies_parsed_at":"2024-08-03T17:17:26.305Z","dependency_job_id":null,"html_url":"https://github.com/waves-rust/waves-lib-rust","commit_stats":{"total_commits":61,"total_committers":3,"mean_commits":"20.333333333333332","dds":0.2786885245901639,"last_synced_commit":"965fc060a6a93e0a41888f9c50368e81c506ccaa"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waves-rust%2Fwaves-lib-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waves-rust%2Fwaves-lib-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waves-rust%2Fwaves-lib-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waves-rust%2Fwaves-lib-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/waves-rust","download_url":"https://codeload.github.com/waves-rust/waves-lib-rust/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253523689,"owners_count":21921815,"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":["blockchain","rust","waves","wavesplatform"],"created_at":"2024-08-03T17:01:07.967Z","updated_at":"2025-05-11T05:33:34.420Z","avatar_url":"https://github.com/waves-rust.png","language":"Rust","funding_links":[],"categories":["Frameworks and tools"],"sub_categories":["Client libraries"],"readme":"# waves-lib-rust\n\n![crates.io](https://img.shields.io/crates/v/wavesplatform.svg)\n![docs.rs](https://docs.rs/wavesplatform/badge.svg)\n\nLibrary to work with [Waves blockchain](https://waves.tech/)\n\n# Usage\n```rust\nuse std::time::{SystemTime, UNIX_EPOCH};\nuse wavesplatform::account::{PrivateKeyAccount, TESTNET};\nuse wavesplatform::base58::*;\nuse wavesplatform::seed::*;\nuse wavesplatform::transaction::*;\n\nfn main() {\n    let phrase = generate_phrase();\n    let account = PrivateKeyAccount::from_seed(\u0026phrase);\n    println!(\"My TESTNET address: {}\", account.public_key().to_address(TESTNET).to_string());\n\n    let ts = SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs() * 1000;\n    let tx = Transaction::new_alias(\u0026account.public_key(), \"rhino\", TESTNET, 100000, ts);\n    println!(\"ID is {}\", tx.id().to_string());\n    let ptx = account.sign_transaction(tx);\n    println!(\"Proofs are {:?}\", ptx.proofs.iter().map(|p| p.to_base58()).collect::\u003cVec\u003cString\u003e\u003e());\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaves-rust%2Fwaves-lib-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwaves-rust%2Fwaves-lib-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaves-rust%2Fwaves-lib-rust/lists"}