메뉴 건너뛰기

XEDITION

Board

Wrapped MTV (WMTV) Is Now Live!

MarilynJaramillo8 2022.05.10 09:27 조회 수 : 6

MultiVAC released their wrapped token, WMTV, on the 19th of February. The following are answers to some commonly asked questions you may have about wrapped tokens:
1. How do you use WMTV?

Wrapped MTV: 0x8e321596267a4727746b2f48bc8736db5da26977

On Metamask’s asset page, click the "import token" button found at the bottom. Then enter the above address and click to import WMTV. Now you can directly transfer MTV to this address and you will receive the corresponding amount in WMTV!
2. What’s the use of WMTV?

Wrapped MTV (WMTV) can be used for swapping as well as in many other DeFi contracts. We have built WMTV for the purpose of being able to better develop the MTV DeFi ecosystem moving forward.
3. Does WMTV have public source code anywhere?

We followed WETH’s code, but changed the token name and symbol.

The following is the source code:

pragma solidity ^0.4.18;

contract WETH9
string public name = "Wrapped MultiVAC";
string public symbol = "WMTV";
uint8 public decimals = 18;

event Approval(address indexed src, address indexed guy, uint wad);
event Transfer(address indexed src, address indexed dst, uint wad);
event Deposit(address indexed dst, uint wad);
event Withdrawal(address indexed src, uint wad);

mapping (address => uint) public balanceOf;
mapping (address => mapping (address => uint)) public allowance;

function() public payable
deposit();

function deposit() public payable
balanceOf[msg.sender] += msg.value;
emit Deposit(msg.sender, msg.value);

function withdraw(uint wad) public
require(balanceOf[msg.sender] >= wad);
balanceOf[msg.sender] -= wad;
msg.sender.transfer(wad);
emit Withdrawal(msg.sender, wad);


function totalSupply() public view returns (uint)
return address(this).balance;


function approve(address guy, uint wad) public returns (bool)
allowance[msg.sender][guy] = wad;
emit Approval(msg.sender, guy, wad);
return true;


function transfer(address dst, uint wad) public returns (bool)
return transferFrom(msg.sender, dst, wad);


function transferFrom(address src, address dst, uint wad)
public
returns (bool)

require(balanceOf[src] >= wad);

if (src != msg.sender && allowance[src][msg.sender] != uint(-1))
require(allowance[src][msg.sender] >= wad);
allowance[src][msg.sender] -= wad;


balanceOf[src] -= wad;
balanceOf[dst] += wad;

emit Transfer(src, dst, wad);

return true;


ABOUT MULTIVAC:

MultiVAC is a high-throughput flexible blockchain platform based on all-dimensional sharding. It’s a next-generation public blockchain platform built for integration with large-scale decentralized applications.

MultiVAC is developing the first solution in the world characterized by speediness, efficiency, and all-dimensional sharding to expand its capacity in computation, transmission, and storage. It realizes the maximum throughput while maintaining decentralization and without sacrificing security.

If you have any type of inquiries relating to where and ways to make use of cryptocurrency news now, you can call us at our web-site.
번호 제목 글쓴이 날짜 조회 수
3242 Ferdinand Hails Sterling After City Star's Display At Sheffield United CathernMartinelli145 2021.07.04 6
3241 Materials Spiritual Wealth Attained By Way Of Meditation-Concentration Efren06K315800285436 2021.07.27 6
3240 FBI Warns Of Large 'scale' In US Ransomware Attack MyrnaCho623779970867 2021.08.21 6
3239 How I Improved My Free Jerseys Cheap In At Some Point CharleneOsman7490 2021.10.22 6
3238 Audio Optimization - Five Tips To Optimize Audio Files DaniHigh949864915 2021.11.15 6
3237 5 Methods To Maintain Your Sneaker Release Increasing Without The Need Of Burning The Midnight Oil Sherlyn81S126413665 2021.11.16 6
3236 Philip Morris Boss Defends Plans To Buy UK Pharma Firm Vectura Group NicholeTompkins0 2021.12.12 6
3235 National Tomorrow Learning Card Dean53610368792 2022.01.19 6
3234 Excellent Online Gambling Agent Strategies 794 RosalineEstell09 2022.01.21 6
3233 Teknik Menang Main Slot Online DevonBarnette02219 2022.01.25 6
3232 It is football's neve... RoseanneMchugh3 2022.02.13 6
3231 Trusted Casino 31756 GloriaStrom4092 2022.03.09 6
3230 Best Online Casino Slot Expertise 491885 PaulineSneddon66 2022.03.12 6
3229 Good Online Slot Gambling Agent 979239 KobyMcCrae152828340 2022.03.14 6
3228 4G Clinical Raises Over $230 Mln Growth Equity From Goldman Sachs AnnmarieV814405888 2022.03.17 6
3227 O Que É Único Pip? YDJBianca312211075 2022.04.17 6
3226 Apple Daily Journalist Arrested At Hong Kong Airport ValentinPlayfair9 2022.05.18 6
3225 Steven Gerrard's Attitude To Calling Out Players Is Straightforward ArtEichelberger83049 2022.05.22 6
3224 In 10 Minutes, I Will Give You The Reality About 0 JanetV15390811073058 2022.06.02 6
3223 Ligo Partners AntoineUes2719181268 2023.04.11 6
위로