dao/dapp/defi合約代幣燃燒通縮流動(dòng)性質(zhì)押LP挖礦項(xiàng)目系統(tǒng)開(kāi)發(fā)技術(shù)方案詳細(xì)/案例源碼版
區(qū)塊鏈作為一種新型的技術(shù)組合,綜合了P2P網(wǎng)絡(luò)、共識(shí)算法、非對(duì)稱(chēng)加密、智能合約等新型技術(shù),是一種在對(duì)等網(wǎng)絡(luò)(也稱(chēng)分布式網(wǎng)絡(luò)、點(diǎn)對(duì)點(diǎn)網(wǎng)絡(luò))環(huán)境下,Through transparent and trusted rules,a traceable block chain data structure is constructed,which has the typical characteristics of distributed peer-to-peer,chained data blocks,anti forgery and Tamper resistance,traceability,transparency and credibility,and high reliability.
區(qū)塊鏈技術(shù)就是一種數(shù)據(jù)庫(kù)技術(shù),每個(gè)區(qū)塊就像一個(gè)硬盤(pán),把信息全部保存下來(lái),再通過(guò)密碼學(xué)技術(shù)進(jìn)行加密,這些被保存起來(lái)的數(shù)據(jù)是不能被篡改的。
區(qū)塊鏈就是把加密數(shù)據(jù)(區(qū)塊)按照時(shí)間順序進(jìn)行疊加(鏈)生成的永久、不可逆向修改的記錄。某種意義上說(shuō),區(qū)塊鏈技術(shù)是互聯(lián)網(wǎng)時(shí)代一種新的“信息傳遞”技術(shù),
區(qū)塊鏈(Blockchain)是一種由多方共同維護(hù),使用密碼學(xué)保證傳輸和訪問(wèn)安全,能夠?qū)崿F(xiàn)數(shù)據(jù)一致存儲(chǔ)、難以篡改、防止抵賴(lài)的記賬技術(shù),也稱(chēng)為分布式賬本技術(shù)(Distributed Ledger Technology)。Essentially,blockchain is a reliable database that is collectively maintained and distributed through decentralization and trustworthiness.
pragma solidity=0.5.16;
import'./interfaces/IUniswapV2Factory.sol';
import'./UniswapV2Pair.sol';
contract UniswapV2Factory is IUniswapV2Factory{
address public feeTo;
address public feeToSetter;
mapping(address=>mapping(address=>address))public getPair;
address[]public allPairs;
event PairCreated(address indexed token0,address indexed token1,address pair,uint);
//初始化就設(shè)定好誰(shuí)是設(shè)定手續(xù)費(fèi)接收的人的設(shè)定者
constructor(address _feeToSetter)public{
feeToSetter=_feeToSetter;
}
//獲取一共有多少個(gè)交易對(duì)
function allPairsLength()external view returns(uint){
return allPairs.length;
}
//創(chuàng)建交易對(duì)函數(shù)
//創(chuàng)建交易對(duì)只是創(chuàng)建一個(gè)交易對(duì)地址,還沒(méi)有往里面添加代幣數(shù)量
function createPair(address tokenA,address tokenB)external returns(address pair){
//必須是兩個(gè)不一樣的ERC20合約地址
require(tokenA!=tokenB,'UniswapV2:IDENTICAL_ADDRESSES');
//讓tokenA和tokenB的地址從小到大排列
(address token0,address token1)=tokenA<tokenB?(tokenA,tokenB):(tokenB,tokenA);
//token地址不能是0
require(token0!=address(0),'UniswapV2:ZERO_ADDRESS');
//必須是uniswap中未創(chuàng)建過(guò)的pair
require(getPair[token0][token1]==address(0),'UniswapV2:PAIR_EXISTS');//single check is sufficient
//獲取模板合約UniswapV2Pair的creationCode
bytes memory bytecode=type(UniswapV2Pair).creationCode;
//以?xún)蓚€(gè)token的地址作為種子生產(chǎn)salt
bytes32 salt=keccak256(abi.encodePacked(token0,token1));
//直接調(diào)用匯編創(chuàng)建合約
assembly{
pair:=create2(0,add(bytecode,32),mload(bytecode),salt)
}
//初始化剛剛創(chuàng)建的合約
IUniswapV2Pair(pair).initialize(token0,token1);
//交易對(duì)映射填充
//記錄剛剛創(chuàng)建的合約對(duì)應(yīng)的pair
getPair[token0][token1]=pair;
getPair[token1][token0]=pair;
allPairs.push(pair);
emit PairCreated(token0,token1,pair,allPairs.length);
}
//設(shè)置接收手續(xù)費(fèi)的人,只能設(shè)置者能設(shè)置
//用于設(shè)置feeTo地址,只有feeToSetter才可以設(shè)置。
function setFeeTo(address _feeTo)external{
require(msg.sender==feeToSetter,'UniswapV2:FORBIDDEN');
feeTo=_feeTo;
}
//設(shè)置接收手續(xù)費(fèi)的人的設(shè)置者,只能上一個(gè)設(shè)置者進(jìn)行設(shè)置,也就是設(shè)置權(quán)利轉(zhuǎn)交
//用于設(shè)置feeToSetter地址,必須是現(xiàn)任feeToSetter才可以設(shè)置。
function setFeeToSetter(address _feeToSetter)external{
require(msg.sender==feeToSetter,'UniswapV2:FORBIDDEN');
feeToSetter=_feeToSetter;
}
}