摘要:做個有理想的碼農,坑定的有多少的了解下當下最火的技術,提到區塊鏈不懂也的了解下。有人說現在的區塊鏈哀聲遍野,在這個互聯網寒冬下,有多少的區塊鏈公司,在這個寒冬倒下,現在的各種的數字貨幣,炒幣的,挖礦的的,,烏煙瘴氣。。。。。
做個有理想的碼農 ,坑定的有多少的了解下當下最火的技術,提到區塊鏈 不懂也的 了解下。
有人說現在的區塊鏈哀聲遍野,在這個互聯網寒冬下,有多少的區塊鏈公司,在這個寒冬倒下,現在的各種的 數字貨幣,炒幣的,挖礦的的,,烏煙瘴氣。。。。。
進入正題,最近了解下 eos 寫了 然后調用 scatter錢包時個各種各樣的的錯,屬實讓人頭疼,這里我 我總結下了,給自己留個筆記
import iView from "iview"; import i18n from "@/locale" import config from "@/config" import ScatterJS from "scatterjs-core" import ScatterEOS from "scatterjs-plugin-eosjs" import Eos from "eosjs"; import {GetQueryString} from "../libs/geturl"; window.ScatterJS = null; // const eosconfig =process.env.NODE_ENV === "development" ? config.eosConfig.dev : config.eosConfig.pro; const eosconfig = GetQueryString("dev") != "true" ? config.eosConfig.pro : config.eosConfig.dev; class getscatter { static account; static eos; static scatter; static instance; constructor() { } ScatterSecureCall(func) { const network = ScatterJS.Network.fromJson(eosconfig); var app_name = "dada_poker"; if (ScatterJS.scatter.eos == null) { ScatterJS.plugins(new ScatterEOS()); } ScatterJS.scatter.connect(app_name).then(connected => { if (connected) { const scatter = ScatterJS.scatter; scatter.getIdentity({ accounts: [network] }).then(() => { const scatter = ScatterJS.scatter; const account = scatter.identity.accounts.find(x => x.blockchain === "eos"); const eosOptions = { expireInSeconds: 60 }; const eos = scatter.eos(network, Eos, eosOptions); func(scatter, account, eos); }).catch(error => { // document.getElementById("box").innerHTML = format_json(error); console.log(error); iView.Message.error({ top: 70, content: JSON.stringify(error), duration: 10 }); }); } else { console.log("The Scatter interface call failed! Please install the Scatter plugin or launch the Scatter app"); // document.getElementById("box").innerHTML = "Scatter接口調用失?。≌埌惭bScatter插件或者啟動Scatter應用程序。"; iView.Message.error({ top: 70, content: i18n.t("login_error"), duration: 10 }); } }) } eosGetIdentity(callback) { console.log("enter eosGetIdentity"); this.ScatterSecureCall((scatter, account, eos) => { console.log("[eosGetIdentity] account = ", account); this.account = account; this.eos = eos; this.scatter =scatter callback && callback(scatter, this.account, this.eos); }); } eosTransfer(to, quantity, memo, callback) { if (this.account == null || this.eos == null) { console.log("you must eosGetIdentity"); this.eosGetIdentity(() => { this.eosTransfer(to, quantity, memo, callback); }); } else { this.eos.contract("eosio.token").then(contract => { const transactionOptions = {authorization: [`${this.account.name}@${this.account.authority}`]}; contract.transfer(this.account.name, to, quantity, memo, transactionOptions).then(transaction => { console.log("eosTransfer transaction processed object: %d", transaction.processed); if (null != callback) { callback(transaction); } }).catch(error => { if (typeof error == "string") { error = JSON.parse(error); let errorMsg = error.error.details[0].message; iView.Message.error({ top: 70, content: errorMsg, duration: 10 }); // alert(errorMsg); //todo } iView.Message.error({ top: 70, content: error, duration: 10 }); }); }).catch(error => { console.log(error); iView.Message.error({ top: 70, content: error, duration: 10 }); }); } } eosRedeem(quantity, to, callback) { if (this.account == null || this.eos == null) { console.log("you must eosGetIdentity"); this.eosGetIdentity(() => { this.eosRedeem(quantity, memo, callback); }); } else { this.eos.contract(to).then(contract => { const transactionOptions = { authorization: [`${this.account.name}@${this.account.authority}`] }; contract.redeem(this.account.name, quantity, transactionOptions).then(transaction => { console.log("eosTransfer transaction processed object: ", transaction.processed); if (null != callback) { callback(transaction); } }).catch(error => { if (typeof error == "string") { error = JSON.parse(error); let errorMsg = error.error.details[0].message; iView.Message.error({ top: 70, content: errorMsg, duration: 10 }); } console.log(error); iView.Message.error({ top: 70, content: error, duration: 10 }); }) }).catch(error => { console.log(error); iView.Message.error({ top: 70, content: error, duration: 10 }); }); } } eosLogin(callback) { if (this.account == null || this.eos == null) { console.log(11); this.eosGetIdentity(() => { console.log(this.account); this.eosLogin(callback); }); } else { ScatterJS.login().then(res => { console.log(res); callback(res, this.account) }).catch((error) => { iView.Message.error({ top: 70, content: error, duration: 10 }); }) } } eosLogout(callback) { if (this.account == null || this.eos == null) { this.eosGetIdentity(() => { this.eosLogout(callback) }) } else { ScatterJS.logout().then(res => { try{//App this.scatter.isConnected() this.account = null; this.eos = null; }catch (e) {//瀏覽器 // throw new Error("瀏覽器插件") console.log(e); } callback && callback(res) window.ScatterJS = null; }).catch(error => { iView.Message.error({ top: 70, content: error, duration: 10 }); }) } } } const ScatterSecureCall = new getscatter(); export { // ScatterJS, ScatterSecureCall }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/24596.html
摘要:必備知識設置用于為區塊鏈簽署交易,并在不泄露密鑰的情況下向應用程序提供個人信息。 由于我一直在深入研究EOS dApp的開發,我看了不少好文章。在這里,我匯總了下做一些研究后得到的所有知識。在本文中,我將解釋如何使用EOSJS和scatter。我假設你對智能合約以及如何在EOS區塊鏈上部署它們有基本的了解,因為我將在本文中跳過該部分。 我們在構建什么? ?我們正在構建一個簡單的todo...
摘要:必備知識設置用于為區塊鏈簽署交易,并在不泄露密鑰的情況下向應用程序提供個人信息。 由于我一直在深入研究EOS dApp的開發,我看了不少好文章。在這里,我匯總了下做一些研究后得到的所有知識。在本文中,我將解釋如何使用EOSJS和scatter。我假設你對智能合約以及如何在EOS區塊鏈上部署它們有基本的了解,因為我將在本文中跳過該部分。 我們在構建什么? ?我們正在構建一個簡單的todo...
摘要:必備知識設置用于為區塊鏈簽署交易,并在不泄露密鑰的情況下向應用程序提供個人信息。 由于我一直在深入研究EOS dApp的開發,我看了不少好文章。在這里,我匯總了下做一些研究后得到的所有知識。在本文中,我將解釋如何使用EOSJS和scatter。我假設你對智能合約以及如何在EOS區塊鏈上部署它們有基本的了解,因為我將在本文中跳過該部分。 我們在構建什么? ?我們正在構建一個簡單的todo...
摘要:為本地配置的錢包。以太坊,主要是針對工程師使用進行區塊鏈以太坊開發的詳解。以太坊,主要是介紹使用進行智能合約開發交互,進行賬號創建交易轉賬代幣開發以及過濾器和交易等內容。這里是如何使用和在本地上開發 EOS區塊鏈的開發并不是立竿見影的,因為需要一些非顯而易見的組件,需要對它們進行配置和協同工作。 nodeos:塊生成器守護程序。 keosd:錢包守護進程,存儲私鑰。 eosio-cp...
摘要:了解系統架構之前我們先看看目前系統的主要組成部分系統的核心進程,也就是所謂的節點。 其實沒有那么復雜 相信關心 EOS 系統的同學肯定見過下面這張藍圖。對,目前只是一個藍圖,而且以 BM 的尿性,肯定在心理已經把這張圖改的面目全非了(比如圖中的 eosd 早就改名了)。所以這張圖只能作為未來 EOS 發展方向的參考而已,目前的 EOS 還遠沒有這么復雜和完善。 showImg(http...
閱讀 841·2021-11-16 11:56
閱讀 1653·2021-11-16 11:45
閱讀 3108·2021-10-08 10:13
閱讀 4094·2021-09-22 15:27
閱讀 726·2019-08-30 11:03
閱讀 642·2019-08-30 10:56
閱讀 945·2019-08-29 15:18
閱讀 1737·2019-08-29 14:05