當前位置:首頁 > 物聯(lián)網(wǎng) > 區(qū)塊鏈
[導讀] 在本文中,我們將學習如何使用Web3Js自動處理生產(chǎn)環(huán)境中的區(qū)塊鏈斷開。下面描述的方法適用于Web3Js版本1.0.0-beta.35,但是對于穩(wěn)定的1.2 *版本也適用。 問

在本文中,我們將學習如何使用Web3Js自動處理生產(chǎn)環(huán)境中的區(qū)塊鏈斷開。下面描述的方法適用于Web3Js版本1.0.0-beta.35,但是對于穩(wěn)定的1.2 *版本也適用。

問題描述

如果您的團隊在生產(chǎn)中使用Web3Js,那么您必須意識到在Web3Js中沒有內(nèi)置的重新連接功能來處理區(qū)塊鏈斷開或重新啟動。因此,通常情況下,當連接下降時,需要重新啟動NodeJS服務以便再次連接到區(qū)塊鏈。這不是一個很實用的方法。

解決方案

讓我們看看我們?nèi)绾蝺?yōu)雅地處理NodeJS中區(qū)塊鏈斷開的情況。在Web3Js庫中,程序為我們提供了以下事件

連接——建立連接

錯誤——程序錯誤

結束——程序連接結束。

斷開連接后,我們可以利用終止事件重新啟動一個新的Web3Js連接。讓我們來看一個例子來理解這一點:

File connection.js

在這個文件中,我們將處理NodeJS和區(qū)塊鏈之間的連接。我們將有一個新區(qū)塊鏈連接,它將返回一個Web3活動連接對象。

const web3 = require(“web3”);

let hasProviderEnded = false, web3Instance, reconnecTInterval = 10000;

async funcTIon newBlockchainConnecTIon(webSocketProvider, endCallback) {

// create new provider

const provider = new web3.providers.WebsocketProvider(webSocketProvider);

hasProviderEnded = false;

// connect event fires when the connecTIon established successfully.

provider.on(‘connect’, () =》 console.log(“connected to blockchain”));

// error event fires whenever there is an error response from blockchain and this event also has an error object and message property of error gives us the specific reason for the error

provider.on(‘error’, (err) =》 console.log(err.message));

// end event fires whenever the connection end is detected. So Whenever this event fires we will try to reconnect to blockchain

provider.on(‘end’, async (err) =》 {

// handle multiple event calls sent by Web3JS library

if (hasProviderEnded) return;

// setting hashProviderEnded to true as sometimes the end event is fired multiple times by the provider

hasProviderEnded = true;

// reset the current provider

provider.reset();

// removing all the listeners of provider.

provider.removeAllListeners(“connect”);

provider.removeAllListeners(“error”);

provider.removeAllListeners(“end”);

setTimeout(() =》 {

// emitting the restart event after some time to allow blockchain to complete startup

// we are listening to this event in the other file and this callback will initialize a new connection

endCallback();

}, reconnectInterval);

});

if (web3Instance == undefined) web3Instance = new web3(provider);

else web3Instance.setProvider(provider);

return web3Instance;

}

module.exports = {

newBlockchainConnection

}

File app.js

const connection = require(“connection”);

const web3JSConnection;

const endCallback = async function () {

web3JSConnection = await connection.newBlockchainConnection(‘ws://127.0.0.1:8545’, customEvent);

});

async function getWeb3Connection() {

if (web3JSConnection == undefined) web3JSConnection = await connection.newBlockchainConnection(‘ws://127.0.0.1:8545’, endCallback);

return web3JSConnection;

}

module.exports = {

getWeb3Connection

}

總結

在區(qū)塊鏈斷開連接時,當提供程序觸發(fā)“終止”事件時,我們將在超時后觸發(fā)回調。然后,該事件反過來調用函數(shù)來創(chuàng)建一個新的區(qū)塊鏈連接。

需要注意的幾點:

· 有時,Web3Js為同一個連接點向您發(fā)送多個“終止”事件,因此我們必須檢查我們是否已經(jīng)處理過一次斷開事件。

· 使用“setProvider”在web3實例對象中設置新的提供程序,而不是創(chuàng)建一個新的web3實例。

· 重置提供程序并刪除活動偵聽器

· 重新連接的時間間隔必須至少是5秒,區(qū)塊鏈重啟大約需要5秒。

本站聲明: 本文章由作者或相關機構授權發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或將催生出更大的獨角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉型技術解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關鍵字: 汽車 人工智能 智能驅動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務能7×24不間斷運行,同時企業(yè)卻面臨越來越多業(yè)務中斷的風險,如企業(yè)系統(tǒng)復雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務連續(xù)性,提升韌性,成...

關鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質量流程IT總裁陶景文發(fā)表了演講。

關鍵字: 華為 12nm EDA 半導體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權最終是由生態(tài)的繁榮決定的。

關鍵字: 華為 12nm 手機 衛(wèi)星通信

要點: 有效應對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實提質增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務引領增長 以科技創(chuàng)新為引領,提升企業(yè)核心競爭力 堅持高質量發(fā)展策略,塑強核心競爭優(yōu)勢...

關鍵字: 通信 BSP 電信運營商 數(shù)字經(jīng)濟

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術學會聯(lián)合牽頭組建的NVI技術創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術創(chuàng)新聯(lián)...

關鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(集團)股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關鍵字: BSP 信息技術
關閉
關閉