From eb49abbd1d9e8f04be599ec027efc8e5e5cdcc1a Mon Sep 17 00:00:00 2001 From: scobru Date: Sun, 6 Oct 2024 23:07:40 +0200 Subject: [PATCH] add authentication token --- gun-eth/index.js | 19 +++++++------------ gun-eth/package.json | 2 +- 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/gun-eth/index.js b/gun-eth/index.js index 1ac9cf8..bdcdcbf 100644 --- a/gun-eth/index.js +++ b/gun-eth/index.js @@ -25,18 +25,13 @@ Gun.chain.setToken = function (token) { return this; }; -Gun.on("opt", function (ctx) { - if (ctx.once) { - return; - } - ctx.on("out", function (msg) { - var to = this.to; - // Usa il token personalizzato - msg.headers = { - token: customToken, - }; - to.next(msg); // passa al prossimo middleware - }); +ctx.on("put", function (msg) { + const to = this.to; + // Usa il token personalizzato + msg.headers = { + token: customToken, + }; + to.next(msg); // passa al prossimo middleware }); // Aggiungi il metodo alla catena di Gun diff --git a/gun-eth/package.json b/gun-eth/package.json index 2311ade..e5e2e41 100644 --- a/gun-eth/package.json +++ b/gun-eth/package.json @@ -1,6 +1,6 @@ { "name": "gun-eth", - "version": "1.2.5", + "version": "1.2.6", "description": "A GunDB plugin for Ethereum, and Web3", "main": "index.js", "scripts": {