메뉴 건너뛰기

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.
번호 제목 글쓴이 날짜 조회 수
206 Jim Rickards Blog ShirleyZ1314371 2022.07.10 1
205 Cryptocurrency Keywords MinervaSoria588 2022.07.10 1
204 Bitcoin Miners Create Invalid Forex After A Botched Upgrade RosalindWinston882 2022.07.10 1
203 Ohio Man Charged For Laundering $300 Million By Way Of Bitcoin 'mixer' NolaBaskett977695976 2022.07.08 1
202 Chiefs Tight End Sean Culkin To Convert Complete NFL Wage Into Bitcoin TroyCorfield960948 2022.07.08 1
201 The Brutal Reality About Bitcoin RandallEldred8795 2022.07.06 1
200 May Blockchain Be The Food Chain's Answer To Romaine Lettuce E. Coli And Other Outbreaks? KGJBroderick361413260 2022.07.05 1
199 For The First Time, Bitcoin Is More Priceless Than Gold DenesePinkham0441 2022.07.05 1
198 Bitcoin’s Energy Use Drops Following Price Plunge EloyDeegan521259 2022.07.05 1
197 Bitcoin Worth (BTC) France07559963132988 2022.07.05 1
196 I Switched From Android To IPhone And Found Out What My Friends Really Think EldenHolley157392240 2022.07.03 1
195 D-LNBot: A Scalable, Cost-Free And CovertHybrid Botnet On Bitcoin’s Lightning Network* VerlaBarrios41908921 2022.07.01 2
194 How Can You Find A Computer Video Card Optimized For Mining Bitcoins? JerroldCottee488 2022.06.30 1
193 The Cost Of Bitcoin Mining Has Never Really Increased GertrudeMarcum52 2022.06.23 0
192 Which Sentence Is An Example Of Subjective Statement In A Culinary Wasteland? MaryellenTrice1980 2022.06.22 0
191 Holding Bitcoin Longer: The Dynamic Hedging Skills Of Bitcoin RosieDawkins2422 2022.06.21 0
190 How Do Hobos Make Their Gravy? BeverlySeppelt96 2022.06.21 0
189 Seven Straightforward Techniques For Ethanim Uncovered JulianaDaughtry8 2022.06.16 1
188 Do Not Get As Well Excited. You Will Not Be Done With Ethanim ThedaMcDavid65897 2022.06.16 1
187 How To Use Social Proof In Your Marketing? RoxanaHaller87608 2022.06.14 1
위로