All Projects → microsoft → Vscode Azure Blockchain Ethereum

microsoft / Vscode Azure Blockchain Ethereum

Licence: other
Blockchain extension for VS Code

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vscode Azure Blockchain Ethereum

Vscode
Unibeautify for VSCode
Stars: ✭ 110 (-0.9%)
Mutual labels:  vscode, vscode-extension
Backend Ico Dashboard
Free & open-source dashboard for your next ICO, crowdsale or tokensale
Stars: ✭ 110 (-0.9%)
Mutual labels:  blockchain, ethereum
Smart Contract Sanctuary
🐦🌴🌴🌴🦕 A home for ethereum smart contracts. 🏠
Stars: ✭ 99 (-10.81%)
Mutual labels:  blockchain, ethereum
Indy Leaderboard
Example game leaderboard dApp utilizing EbakusDB on Ebakus blockchain
Stars: ✭ 103 (-7.21%)
Mutual labels:  blockchain, ethereum
Vscode Js Annotations
Javascript / Typescript Parameter Annotations for Visual Studio Code
Stars: ✭ 110 (-0.9%)
Mutual labels:  vscode, vscode-extension
Vscode Mdx Preview
MDX Preview for Visual Studio Code
Stars: ✭ 103 (-7.21%)
Mutual labels:  vscode, vscode-extension
Learn Solidity With Examples
A repo full of smart contracts written in Solidity
Stars: ✭ 106 (-4.5%)
Mutual labels:  blockchain, ethereum
Vscode Rss
An RSS reader embedded in Visual Studio Code
Stars: ✭ 102 (-8.11%)
Mutual labels:  vscode, vscode-extension
Ergo
The Language for Smart Legal Contracts
Stars: ✭ 108 (-2.7%)
Mutual labels:  blockchain, ethereum
Vscode Solidity Auditor
Solidity language support and visual security auditor for Visual Studio Code
Stars: ✭ 108 (-2.7%)
Mutual labels:  vscode, vscode-extension
Vscode Yuml
yUML extension for Visual Studio Code
Stars: ✭ 102 (-8.11%)
Mutual labels:  vscode, vscode-extension
I18n Ally
🌍 All in one i18n extension for VS Code
Stars: ✭ 1,931 (+1639.64%)
Mutual labels:  vscode, vscode-extension
Awesome Cryptocurrency Security
😎 Curated list about cryptocurrency security (reverse / exploit / fuzz..)
Stars: ✭ 102 (-8.11%)
Mutual labels:  blockchain, ethereum
Diadata
DIAdata.org platform
Stars: ✭ 103 (-7.21%)
Mutual labels:  blockchain, ethereum
Laserwave
A retro outrun / cyberpunk inspired VS Code theme
Stars: ✭ 102 (-8.11%)
Mutual labels:  vscode, vscode-extension
Vscode Winteriscoming
Dark theme with fun and bright foreground colors
Stars: ✭ 105 (-5.41%)
Mutual labels:  vscode, vscode-extension
Superblocks Lab
Superblocks Lab for DApp development
Stars: ✭ 100 (-9.91%)
Mutual labels:  blockchain, ethereum
Masterblockchain
Stars: ✭ 100 (-9.91%)
Mutual labels:  blockchain, ethereum
Truffle
A tool for developing smart contracts. Crafted with the finest cacaos.
Stars: ✭ 11,909 (+10628.83%)
Mutual labels:  blockchain, ethereum
Flowmaker
flowmaker: JS to SVG flowchart generation extension for Vscode in realtime written in typescript and also download the SVG through local node server. Extension:
Stars: ✭ 108 (-2.7%)
Mutual labels:  vscode, vscode-extension

Blockchain Development Kit for Ethereum

Version Installs Rating Build status

The extension simplifies how you create, build and deploy smart contracts on Ethereum ledgers.

  • If you are doing open source blockchain development, the extension has built in integration for open source tools such as Truffle, Infura, and OpenZeppelin. An Azure subscription is optional.
  • If you are doing Azure development, an Azure subscription is required, log into your Azure subscription or create a free account before you begin. Enjoy the same integration of open source tools with Azure Blockchain Service and other Azure hosted blockchain networks such as Hyperledger Besu or the enterprise supported PegaSys Plus network.

Open Source Ethereum development

Get started with smart contracts

Create a new smart contract project

The Blockchain Developer Kit was built to work effectively for both new users to Ethereum, but not get in the way for those familiar with the process. One of the primary goals is to help users create a project structure for these smart contracts, help in the compilation and building of these assets, deployment of these assets to blockchain endpoints as well as debugging of these contracts.

One of the frameworks that the extension leverages is Truffle Suite, a well known set of tools to assist in smart contract and Dapp development. Developers that are familiar with Truffle Suite may use the Truffle command line e.g., Truffle Init directly from the VS Code terminal, if they like.

For developers who are not familiar with Truffle, or prefer to use the Command Palette, the extension can easily scaffold out a project directory using the following steps.

  1. From the Command Palette, type Blockchain: New Solidity Project

  2. Select an empty directory to scaffold out your project.

  3. Choose a name for your contract.

  4. Press Enter.

    Command Palette - New Solidity Project

Build your smart contracts

Your newly scaffolded out directory includes a simple contract and all the necessary files to build and deploy a simple, working, contract to the blockchain endpoint. Use the following steps to build your contract

  1. Select your contract Solidity (.sol) file, right click and choose Build Contracts

    Right click shortcut - build contracts

Deploy to the Ethereum blockchain RPC endpoint

Once compiled, you will have your contract, contract metadata (e.g., contract ABI, bytecode) available in the smart contract .json file which will be located in the./build directory The next steps is to deploy these contracts to a blockchain network.

For new users, this can be hard to understand, because there are multiple steps that need to occur for the deployment to be successful. To ease this burden the extension provide a simple model to deploy to various networks. By default, this will be a local network, using Ganache. The extension will start and run an instance of ganache for the user. The options to initiate this deployment are below.

  1. Select your contract Solidity (.sol) file, right click and choose Deploy Contracts

    Right click smart contract - deploy contract


Deploy with Truffle Ganache locally

For rapid development of smart contracts, having the ability deploy contracts to a blockchain quickly to test and debug is a key principle. One of the most popular models to achive this is using Truffle Ganache, which acts as a local blockchain/blockchain emulator to allow this quick deployment and iteration that is ideal for developers.

The extension has integrated Ganache directly into the IDE to further lower the bar to entry, and allow even faster development iteration. By default, there is nothing to configure, and the following steps can be used.

  1. After selecting to deploy the contracts, either from the Command Pallette or by right clicking on the contract and selecting Deploy contracts, a dropdown will be presented with options for where to deploy the contract. By default there will be a single entry on this list named development.

  2. After selecting development, the IDE will create a new instance of Truffle Ganache, which will use the default configuration for the project as the target. The IDE will then deploy the contracts to this instance.

    Truffle default deployment

OPTIONAL: If there is a need to control this Ganache instance more or change the configuration, there are some other options that can be used that the IDE can help with as well.

  1. If there is a need to run the Ganache instance on a port other than the default of 8545, a new Local Network can be created and the port configuration added for this. The steps do this are:

    a. Expand the Blockchain view in the extension by clicking the name.

    b. Next click Create a new network.

    c. Select Local Service

    d. Provide a name for this service that will be referenced when targeting it from deployment.

    e. Enter the port number to use for this local network.

    Custom local service


Deploy with Infura to Ethereum mainnet and testnets

If you are a developer that would like to target public testnet and mainnet for Ethereum, the ability to leverage Infura from inside the IDE is provided via this extension.

For those that aren't familiar with Infura, it provides the tools and infrastructure that allow developers to easily take their blockchain application from testing to scaled deployment - with simple, reliable access to Ethereum mainnet and testnets, and also has support for IPFS. Details can be found on the Getting started with Infura blog and on the Infura Docs pages.

To use Infura, the first step is to either create or connect to an existing Infura project. The IDE will step through this process.

  1. Expand the Blockchain view in the extension by clicking the name.

  2. Next click Create a new network.

  3. Select Infura Service.

  4. At this point the extension will prompt you for credentials to sign into Infura. Simply click the sign in button. Don't worry if you don't already have an Infura account, because you can create one if needed.

  5. On the Infura login page, login with your Infura account credentials. If you don't already have an Infura account, simply click the Sign Up link at the bottom.

  6. After signing into Infura, you will be askted for authorization to share your Infura projects with the extension. Click Authorize.

  7. Next close the browser window and you will back in the IDE. A prompt will be presented to allow you to enter a project name. Enter the desired name for this.

  8. Next select the availability of the project inside Infura (public or private). By default, public is the option used.

  9. After a few seconds, the Blockchain view will show a new Infura Service, with your project nested under, and under this will the various endpoints that Infura provides.

  10. Now that a connection to Infura has been created, this network can easily be targeted when deploying contracts. When right clicking and deploying contracts, a set of options will be added for these new Infura destinations.

  11. Simply select the desired target network endpoint and the extension will deploy the contracts to this location.

Infura deploy


Deploy with Hyperledger Besu

Hyperledger Besu is a popular Ethereum client that is unique in that it offers a client that can be used in either public networks, such as Ethereum mainnet or private, consortium based networks. It can be deployed a variety of ways, and recently a preview has been made available in Azure.

Currently, the Hyperledger Besu is fully compatible with the extension, however the provisioning of the nodes is not yet fully integrated. To connect to a running Besu node with the extension, you can do the following:

  1. Deploy Hyperledger Besu locally or in the cloud (see links in above).

  2. Retrieve the JSON rpc endpoint that will be used to communicate with the Besu network. This varies based on the deployment model, for Azure deployments these can be retrieved from the output parameters from the deployment.

  3. Update the configuration manually. This is shown in the video below. The extension has the ability to use an HD Wallet provider that simply requires a file with a mnemonic to function.

Add the following to the configuration:

besu: {
   network_id: "*",
   gas: 0,
   gasPrice: 0,
   provider: new HDWalletProvider(
     fs.readFileSync("<path to a file with a mnemonic>", "utf-8"),
     "<besu jsonrpc endpoint>"
   ),
 },

Besu deploy


Deploy with Azure Blockchain Service to cloud

If you are a developer that would like to target a network that leverages Azure, this option is also available. The option to create new networks or connect to existing ones are is available, the same as with Infura and Local networks!

  1. Click -> Create a new network in the AZURE BLOCKCHAIN tab, or type Azure Blockchain: Create a new network in the Command Palette.

  2. Choose your subscription, resource group and region to deploy to.

  3. Enter the name of your Consortium

  4. Wait until your resource has been created in Azure. Note: Deploying the Azure Blockchain Service takes quite some time to complete. Please check the deployment status in the Azure portal.

Create and Azure Blockchain Service


System Requirements

  • Supported Operating Systems
  • Windows 10
  • Mac OSX
  • VS Code 1.36.1 (or greater)
  • Python 2.7.15
  • Node 10.15.x
  • Git 2.10.x

Our Wiki page includes a comprehensive getting started guide with detailed usage instructions for this plugin

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Telemetry

VS Code collects usage data and sends it to Microsoft to help improve our products and services. Read our privacy statement to learn more. If you don’t wish to send usage data to Microsoft, you can set the telemetry.enableTelemetry setting to false. Learn more in our FAQ.


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].