{"id":23263169,"url":"https://github.com/wavesplatform/ride-vscode","last_synced_at":"2025-08-20T18:35:02.519Z","repository":{"id":32981973,"uuid":"148632930","full_name":"wavesplatform/ride-vscode","owner":"wavesplatform","description":null,"archived":false,"fork":false,"pushed_at":"2023-07-25T09:12:45.000Z","size":3301,"stargazers_count":13,"open_issues_count":15,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-08-09T18:55:15.777Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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":"2018-09-13T12:16:12.000Z","updated_at":"2022-10-17T09:55:51.000Z","dependencies_parsed_at":"2023-01-14T22:55:29.130Z","dependency_job_id":null,"html_url":"https://github.com/wavesplatform/ride-vscode","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/wavesplatform/ride-vscode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fride-vscode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fride-vscode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fride-vscode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fride-vscode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wavesplatform","download_url":"https://codeload.github.com/wavesplatform/ride-vscode/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesplatform%2Fride-vscode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271363904,"owners_count":24746789,"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-20T02:00:09.606Z","response_time":69,"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:04.016Z","updated_at":"2025-08-20T18:35:02.025Z","avatar_url":"https://github.com/wavesplatform.png","language":"TypeScript","readme":"# Waves Ride language extention and Waves JS Console for Visual Studio Code\n## Ride compiler version 1.4.18-94668465c91abb4403f0d28ba6031191e88de65f\n\nRide is the language used in Waves blockchain to create smart accounts. This extention provides:\n* Syntax highlighting\n* Code completion for global functions and fields\n* Snippets\n* Interactive console for Waves blockchain\n\n# Usage\n\nExtention recognizes \".ride\" files\n\n## Code completion\n\nUse standard Ctrl/Command + Space to autocomplete. Global functions, variables, transaction types are supported. Pattern\nmatching and if/else statements supported via snippets\n### ![](assets/completion.gif \"Code completion\")\n## Error highlighting\n\nCurrently shows first compilation error. Invalid base64 and base58 strings are highlighted via syntax highlighting\n### ![](assets/error.gif \"Error highlighting\")\n## Interactive console\n\nTo open interactive console run \"Start Waves JS Console\" task via command palette (Shift + Command + P).\nWaves JS Console is a javascript console with convenient functions to interact with blockchain.\nConsole provides help method for this functions. \n### ![](assets/repl.gif \"Waves JS Console\")\n\n#### Available functions\n##### Transactions:\nYou can create and sign transactions.  All functions take transaction parameters and optional seed to sign.\nIf no seed is provided, default one from settings will be used. For more detailed list check [@waves/waves-transactions](https://wavesplatform.github.io/waves-transactions/) library, that is used internally\n\n* alias(txParams, seed?) - create and sign createAlias transaction\n* issue(txParams, seed?) - create and sign issue transaction\n* reissue(txParams, seed?) - create and sign reissue transaction\n* lease(txParams, seed?) - create and sign lease transaction\n* cancelLease(txParams, seed?) - create and sign cancelLease transaction\n* burn(txParams, seed?) - create and sign burn transaction\n* transfer(txParams, seed?) - create and sign transfer transaction\n* massTransfer(txParams, seed?) - create and sign massTransfer transaction\n* setScript(txParams, seed?) - create and sign setScript transaction\n* data(txParams, seed?) - create and sign data transaction\n### ![](assets/dataTx.gif \"Tx example\")\n\n##### Addresses and keys:\nYou can generate keyPairs from seed. If no seed is provided, default one from settings will be used.\n* keyPair(seed?) - create key pair. Both private and public\n* privateKey(seed?) - create private key\n* publicKey(seed?) - create public key\n* address(seed?) - create address from seed\n### ![](assets/addresses-keys.gif \"Addresses and keys\")\n\n##### Code interaction:\nYou can interact with code.\n* contract() - retrieves text from current active editor with .ride file\n* file(fileName) - retrieves text from open editor with .ride file by file name\n* compile(text) - compiles contract code\n### ![](assets/code-interaction.gif \"Error highlighting\")\n\n##### Blockchain interaction:\nYou can broadcast transaction to blockchain or publish current script\n* broadcast(tx, apiBase?) - send transaction to waves node\n* deploy() - shortcut to broadcast(setScript({script:compile(contract())}))\n\n#### Settings\nDefault chain id\n```\n\"rideExtention.repl.CHAIN_ID\": \"T\"\n```\nDefault seed\n```\n\"rideExtention.repl.SEED\": \"our default example seed for ride extention plugin inside visual studio code\"\n```\nNode URL\n```\n\"rideExtention.repl.API_BASE\": \"https://nodes-testnet.wavesnodes.com\"\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavesplatform%2Fride-vscode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwavesplatform%2Fride-vscode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavesplatform%2Fride-vscode/lists"}