gun-eth 1.2.4 → 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +26 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13,6 +13,32 @@ const SHINE_OPTIMISM_SEPOLIA = SHINE.address;
13
13
 
14
14
  let SHINE_CONTRACT_ADDRESS;
15
15
 
16
+ let customToken = "";
17
+
18
+ Gun.chain.setToken = function (token) {
19
+ if (typeof token === "string" && token.length > 0) {
20
+ customToken = token;
21
+ console.log("Token impostato con successo:", token);
22
+ } else {
23
+ console.error("Token non valido. Deve essere una stringa non vuota.");
24
+ }
25
+ return this;
26
+ };
27
+
28
+ Gun.on("opt", function (ctx) {
29
+ if (ctx.once) {
30
+ return;
31
+ }
32
+ ctx.on("out", function (msg) {
33
+ var to = this.to;
34
+ // Usa il token personalizzato
35
+ msg.headers = {
36
+ token: customToken,
37
+ };
38
+ to.next(msg); // passa al prossimo middleware
39
+ });
40
+ });
41
+
16
42
  // Aggiungi il metodo alla catena di Gun
17
43
  Gun.chain.verifySignature = async function (message, signature) {
18
44
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gun-eth",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "A GunDB plugin for Ethereum, and Web3",
5
5
  "main": "index.js",
6
6
  "scripts": {