互助公排雙軌開發(fā)丨DAPP互助公排雙軌模式系統(tǒng)開發(fā)案例詳細(xì)/方案邏輯/項(xiàng)目開發(fā)/源碼
DApp是指基于區(qū)塊練技術(shù)的去中心化應(yīng)用程序,它的特點(diǎn)是去中心化、透明、安全、不可篡改等特點(diǎn)。
DApp和APP的最大不同在于,DApp是基于區(qū)塊練技術(shù)的去中心化應(yīng)用程序,而APP是基于中心化服務(wù)器的應(yīng)用程序,DApp的數(shù)據(jù)存儲(chǔ)和處理都是分布式的,There is no centralized server,therefore it has higher security and reliability.
function mint(
address recipient,
int24 tickLower,
int24 tickUpper,
uint128 amount,
bytes calldata data
)external override lock returns(uint256 amount0,uint256 amount1){
require(amount>0);
(,int256 amount0Int,int256 amount1Int)=
_modifyPosition(
ModifyPositionParams({
owner:recipient,
tickLower:tickLower,
tickUpper:tickUpper,
liquidityDelta:int256(amount).toInt128()
})
);
amount0=uint256(amount0Int);
amount1=uint256(amount1Int);
uint256 balance0Before;
uint256 balance1Before;
//獲取當(dāng)前池中的x token,y token余額
if(amount0>0)balance0Before=balance0();
if(amount1>0)balance1Before=balance1();
//將需要的x token和y token數(shù)量傳給回調(diào)函數(shù),這里預(yù)期回調(diào)函數(shù)會(huì)將指定數(shù)量的token發(fā)送到合約中
IUniswapV3MintCallback(msg.sender).uniswapV3MintCallback(amount0,amount1,data);
//回調(diào)完成后,檢查發(fā)送至合約的token是否復(fù)合預(yù)期,如果不滿足檢查則回滾交易
if(amount0>0)require(balance0Before.add(amount0)<=balance0(),'M0');
if(amount1>0)require(balance1Before.add(amount1)<=balance1(),'M1');
emit Mint(msg.sender,recipient,tickLower,tickUpper,amount,amount0,amount1);
}