合約量化跟單模式軟體開發邏輯詳情

lxqy1668發表於2023-04-21

回顧Web1.0時代和Web2.0時代,我們可以看出,每一個時代都會有一種型別的底層技術,並且有這樣一種底層技術觸發一系列的產業變革。既然Web1.0時代和Web2.0時代是這樣的,那麼,到了Web3.0時代,我們同樣可以遵循同樣一種發展脈絡來研判即將到來的Web3.0時代。I88智慧合約I928系統開發8024

  

  <!DOCTYPE html>

  

  <head>

  

  <title>Javascript Test</title>

  

  </head>

  

  <body>

  

  <button id="connectButton">

  

  </body>

  

  <script>

  

  async function connect(){

  

  if(typeof window.ethereum!=="undefined"){

  

  try{

  

  await window.ethereum.request({method:"eth_requestAccounts"});

  

  }catch(error){

  

  console.log(error);

  

  }

  

  }}

  

  </script>

  

  </html>

  

  // /hooks/useGswap.js

  

  import{

  

  ref,computed,toRefs,watch,watchEffect,

  

  }from'vue';

  

  import{GSWAPABI,POINTABI}from' /web3/abi';

  

  import{gswapAddress,poinAddress}from' /web3/config';

  

  export default function(props){

  

  const{web3,userAddress,connected}=toRefs(props);

  

  const contract=computed(

  

  ()=>new web3.value.eth.Contract(GSWAPABI,gswapAddress),

  

  );

  

  const pointContract=computed(()=>new web3.value.eth.Contract(POINTABI,poinAddress));

  

  //methods

  

  function balanceOf(){

  

  return pointContract.value.methods

  

  .balanceOf(userAddress.value)

  

  .call()

  

  .then((res)=>res);

  

  }

  

  //....

  

  return{

  

  balanceOf

  

  };

  

  }


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70020038/viewspace-2947546/,如需轉載,請註明出處,否則將追究法律責任。

相關文章