Build smart contracts, and get rid of those annoying squigglies while working with smart contracts on EOS based chains. This is your all in one toolkit to do everything EOS in the blink of an eye.
- Fix Smart Contract Header Issues
- Build Smart Contracts
- Deploy Smart Contracts
- Query Endpoints
- Wallet
- Send Transactions
Make sure you have docker installed while using this tool!
- Docker
- Microsoft C++ Extension
These can be accessed with (CTRL / CMD) + SHIFT + P
or through the Command Palette.
- Ultra: Build Contract
- Builds your smart contract
- Ultra: Add C++ Header Files for EOSIO
- Adds header files to your smart contract workspace
- Ultra: Scaffold Contract Legacy
- Creates a smart contract template based on legacy templating
- Ultra: Create Smart Contract
- Creates a smart contract template
- Ultra: API Query
- Query different networks.
- Ultra Main Network
- Ultra Test Network
- Antelope Mainnet
- Jungle Testnet
- Custom (Provide your own)
- Ultra: Create Transaction
- Asks for contract name, action, who is signing, and then creates a form
- Create a transaction for a specific account contract
- Auto-creates a form to fill out
- onSubmit sets up an eosjs instance to perform the transaction
- Ultra: Deploy Contract
- Deploy a compiled smart contract from the workspace
The wallet service allows you to store private keys inside of VSCode's global state with encryption. However, 1.2.2
of this extension is still missing signing transactions, and such. Will add soon.
- Ultra: Wallet - Create
- Creates a wallet with 'aes-256-cbc' encryption
- Ultra: Wallet - List Public Keys
- List all public keys available inside of the wallet
- Ultra: Wallet - Add Key
- Add a key to the existing wallet
- Ultra: Wallet - Destroy
- Destroy the wallet, will prompt before destroying, and remove all keys on confirmation
- Ultra: Wallet - Unlock
- Keep the wallet unlocked to easily sign transactions, and view keys.
- Ultra: Wallet - Lock
- Lock the wallet.
- Ultra: Wallet - Create Key
- Create a key, and print it to console.
- Q. What activates the prompt to install headers?
- A. Open any
.cpp
file and it will prompt you to add header files.
- A. Open any
- Q. It stopped working, what can I do to fix it?
- A. re-install this extension, and remove your
.vscode
, andlib
folder from your workspace folder.
- A. re-install this extension, and remove your
- Q. My smart contracts aren't compiling.
- A. Ensure that you can run
docker
from theCLI
. If not, install docker.
- A. Ensure that you can run
- Q. How do I select which contract to compile in a monorepo?
- A. Open the root
.cpp
file of the smart contract in VSCode, and have it as the active file.
- A. Open the root