泰山眾籌4.0阿凡達(dá)開發(fā),泰山眾籌阿凡達(dá)系統(tǒng)開發(fā)實(shí)現(xiàn)技術(shù)詳細(xì)
What is the new blockchain social retail system? The blockchain social new retail system is a decentralized platform to create a new trading model.Blockchain technology is a marketing system that can decentralize sales.Through it,an open marketing ecosystem is built for businesses to promote the sales ecological cycle.Through the blockchain mall system,a decentralized consumption data trading system is built to make transaction data more transparent and safer pragma solidity^0.5.0; contract MyRegistry{開發(fā)方案I35模式7o98開發(fā)o7I8 mapping(string=>address)public registry; function registerDomain(string memory domain)public{ //Can only reserve new unretistered domain names require(registry[domain]=address(0)); //Update the owner of this domain registry[domain]=msg.sender; } 第一行solidity pragma 一個pragma指令指示Solidity編譯器運(yùn)行智能合約的版本。系統(tǒng)案例:mrsfu123 下面的pragma指令顯示智能合約是為Solidity版本0.5.0編寫的。^符號表示Solidity程序不應(yīng)與低于0.5.0的版本使用。 pragma solidity^0.5.0; pragma指令始終位于源文件的本地,這意味著您必須將其添加到所有源文件中。 合約的名字就是myregistry。 Solidity中有3種主要類型的變量:局部變量、狀態(tài)變量和全局變量。 局部變量這些是在solidity函數(shù)中聲明的變量,它們不存儲在區(qū)塊鏈上。 狀態(tài)變量是在solidity函數(shù)之外聲明的變量,他們永遠(yuǎn)存儲在區(qū)塊鏈上。 Solidity全局變量是其他函數(shù)可以訪問的變量。它們保存有關(guān)區(qū)塊鏈及其交易屬性的信息。 第二行代碼的意思就是把它映射帶一個地址上,除此之外,在儲存上,智能合約可以執(zhí)行用戶輸入指令的函數(shù),可以通過寫一個字符串來進(jìn)行一個喚醒。 下面總的代碼就是來檢查,首先,這個域名有沒有被其他人所擁有,下一行就是更新存儲文件,比如說你就是這個域名的擁有者。 function registerDomain(string memory domain)public{ //Can only reserve new unretistered domain names require(registry[domain]=address(0)); //Update the owner of this domain registry[domain]=msg.sender; }