MultiVAC Dev Docs
  • About MultiVAC
    • History of MultiVAC
    • Testnet 1.0
    • Testnet 2.0
    • Testnet 3.0
  • Infrastructure Overview
  • Technology Details
    • The Whitepaper: Technical Overview
    • The Yellowpaper: Sharding Details
    • The Purplepaper: Contract Model
  • Use MetaMask to Access MultiVAC Mainnet
  • Check Information on Explorer
  • Deploy Smart Contracts on MultiVAC
  • Connect to MultiVAC via Web3
  • API Differences Between MultiVAC and Ethereum
  • MultiVAC's Long-Term Vision
Powered by GitBook
On this page

Deploy Smart Contracts on MultiVAC

Smart Contracts

PreviousCheck Information on ExplorerNextConnect to MultiVAC via Web3

Last updated 3 years ago

Links:

Demo Code:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract MRCTokenSample is ERC20{
    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }
}

MultiVAC Explorer
Remix