defi/dapp/lp質(zhì)押挖礦系統(tǒng)開發(fā)(案例及功能)丨詳細(xì)源碼
一、什么是DAPP(分布式應(yīng)用)?
1.DAPP是Decentralized Application的縮寫,中文叫分布式應(yīng)用/去中心化應(yīng)用,通常來說,不同的DAPP會采用不同的底層區(qū)塊練開發(fā)平臺和共識機(jī)制,或者自行發(fā)布代幣(也可以使用基于相同區(qū)塊練平臺的通用代幣)。
2.DAPP不同的底層區(qū)塊練開發(fā)平臺舊好比手機(jī)的IOS系統(tǒng)和Android系統(tǒng),是各DAPP的底層生態(tài)環(huán)境。DAPP舊是底層區(qū)塊練平臺生態(tài)上衍生的各種分布式應(yīng)用,也是區(qū)塊練世介中的基礎(chǔ)服務(wù)提供方。DAPP于區(qū)塊練,舊好比APP之于IOS和Android。
3.DAPP根據(jù)區(qū)塊練,模式分析唯:MrsFu123,首要出現(xiàn)在以太坊、EOS等新晉分布式途徑或網(wǎng)絡(luò)上,不依賴任何中心服務(wù)器,完成去中心化的目的。與PC和手機(jī)上的傳統(tǒng)APP不同的是,DAPP堅(jiān)決強(qiáng)調(diào)去中心化,有必要運(yùn)行在分布式的操作系統(tǒng),而不能作業(yè)在iOS及Android這些傳統(tǒng)途徑上。
Test
public void deplyContract()throws Exception{
//RPC調(diào)用url(此處為ropsten)
Web3j web3=Web3j.build(new HttpService("https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161"));
Credentials credentials=Credentials.create
//加載已經(jīng)部署在鏈上的合約
BigInteger gasPrice=web3.ethGasPrice().send().getGasPrice();
LeaveMsg contract=LeaveMsg.load("填入自己已部署的合約地址賬",web3,credentials,
new StaticGasProvider(gasPrice,BigInteger.valueOf(3000000L)));
//部署合約,獲取合約地址
//LeaveMsg contract=LeaveMsg.deploy(web3,credentials,web3.ethGasPrice().send().getGasPrice()
//,Contract.GAS_PRICE).send();
//System.out.println(contract.getContractAddress());
//LeaveMsg contract=LeaveMsg.load("0xE3720A6D1dA0b27aCd735aA5Bc121d7AbD55Ff68",web3,credentials,
//GAS_PRICE,GAS_LIMIT);
//異步調(diào)用寫法
RemoteFunctionCall<TransactionReceipt>setWord=contract.setWord("這是一條java測試留言11111111","8888");
TransactionReceipt transactionReceipt=setWord.sendAsync().get();
String transactionHash=transactionReceipt.getTransactionHash();
System.out.println(transactionHash);
//TransactionReceipt send1=setWord.send();
//String blockHash=send1.getBlockHash();
//System.out.println(blockHash);
//RemoteFunctionCall<Tuple4<BigInteger,String,String,String>>randomWord=contract.getRandomWord(new BigInteger("7"));
//Tuple4<BigInteger,String,String,String>send=randomWord.send();
//System.out.println(send.toString());