{"id":23263226,"url":"https://github.com/wavesplatform/provider-seed","last_synced_at":"2025-07-25T12:38:02.784Z","repository":{"id":38643472,"uuid":"230229553","full_name":"wavesplatform/provider-seed","owner":"wavesplatform","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-01T02:23:57.000Z","size":2837,"stargazers_count":1,"open_issues_count":20,"forks_count":6,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-07T19:44:35.397Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/wavesplatform.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}},"created_at":"2019-12-26T08:51:31.000Z","updated_at":"2022-02-01T14:40:14.000Z","dependencies_parsed_at":"2022-09-07T19:12:54.490Z","dependency_job_id":null,"html_url":"https://github.com/wavesplatform/provider-seed","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wavesplatform/provider-seed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fprovider-seed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fprovider-seed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fprovider-seed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fprovider-seed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wavesplatform","download_url":"https://codeload.github.com/wavesplatform/provider-seed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fprovider-seed/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267007826,"owners_count":24020267,"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-07-25T02:00:09.625Z","response_time":70,"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":[],"created_at":"2024-12-19T14:15:38.120Z","updated_at":"2025-07-25T12:38:02.747Z","avatar_url":"https://github.com/wavesplatform.png","language":"JavaScript","readme":"# ProviderSeed\r\n\r\n* [Overview](#overview)\r\n* [Getting Started](#getting-started)\r\n\r\n\u003ca id=\"overview\"\u003e\u003c/a\u003e\r\n## Overview\r\n\r\nProviderSeed implements a Signature Provider for [Signer](https://github.com/wavesplatform/signer) protocol library. ProviderSeed creates user account from SEED.\r\n\r\n\u003ca id=\"getting-started\"\u003e\u003c/a\u003e\r\n## Getting Started\r\n\r\n### 1. Library installation\r\n\r\nTo install Signer and ProviderSeed libraries use\r\n\r\n```bash\r\nnpm i @waves/signer @waves/provider-seed @waves/waves-transactions\r\n```\r\n\r\n### 2. Library initialization\r\n\r\nAdd library initialization to your app.\r\n\r\n* For Testnet:\r\n\r\n   ```js\r\n   import { Signer } from '@waves/signer';\r\n   import { ProviderSeed } from '@waves/provider-seed';\r\n   import { libs } from '@waves/waves-transactions';\r\n   \r\n   const seed = libs.crypto.randomSeed();\r\n   const signer = new Signer({\r\n     // Specify URL of the node on Testnet\r\n     NODE_URL: 'https://nodes-testnet.wavesnodes.com'\r\n   });\r\n   const provider = new ProviderSeed(seed);\r\n   signer.setProvider(provider);\r\n   ```\r\n\r\n* For Mainnet:\r\n\r\n   ```js\r\n   import { Signer } from '@waves/signer';\r\n   import { ProviderSeed } from '@waves/provider-seed';\r\n   import { libs } from '@waves/waves-transactions';\r\n   \r\n   const seed = libs.crypto.randomSeed();\r\n   const signer = new Signer();\r\n   const provider = new ProviderSeed(seed);\r\n   signer.setProvider(provider);\r\n   ```\r\n\r\n### 3. Basic example\r\n\r\nNow your application is ready to work with Waves Platform. Let's test it by implementing basic functionality. For example, we could try to authenticate user and transfer funds.\r\n\r\n```js\r\nconst user = await signer.login();\r\nconst [transfer] = await signer\r\n  .transfer({\r\n    amount: 1,\r\n    recipient: 'alias:T:merry',\r\n  })\r\n  .sign();\r\n```\r\n\r\nFor more information see [Signer documentation](https://github.com/wavesplatform/signer/blob/master/README.md).\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavesplatform%2Fprovider-seed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwavesplatform%2Fprovider-seed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavesplatform%2Fprovider-seed/lists"}