gun-eth 1.2.1 → 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- package/.yarn/cache/@adraffy-ens-normalize-npm-1.10.1-e60d7ca58d-0836f394ea.zip +0 -0
- package/.yarn/cache/@noble-curves-npm-1.2.0-9b40ee1239-bb798d7a66.zip +0 -0
- package/.yarn/cache/@noble-hashes-npm-1.3.2-1e619f9da0-fe23536b43.zip +0 -0
- package/.yarn/cache/@peculiar-asn1-schema-npm-2.3.13-7e52f15480-245cf39899.zip +0 -0
- package/.yarn/cache/@peculiar-json-schema-npm-1.1.12-f914d2ea65-b26ececdc2.zip +0 -0
- package/.yarn/cache/@peculiar-webcrypto-npm-1.5.0-4d84865c57-9022d7452d.zip +0 -0
- package/.yarn/cache/@types-node-npm-18.15.13-14d4d1b98f-79cc5a2b5f.zip +0 -0
- package/.yarn/cache/aes-js-npm-4.0.0-beta.5-c70da65547-cc2ea969d7.zip +0 -0
- package/.yarn/cache/asn1js-npm-3.0.5-cf5558af33-3b6af1bbad.zip +0 -0
- package/.yarn/cache/ethers-npm-6.13.2-177cd791bd-981860c736.zip +0 -0
- package/.yarn/cache/gun-npm-0.2020.1240-e808e9ee90-0effb70596.zip +0 -0
- package/.yarn/cache/pvtsutils-npm-1.3.5-b3122eabea-e734516b3c.zip +0 -0
- package/.yarn/cache/pvutils-npm-1.1.3-da8b07d6cf-2ee26a9e51.zip +0 -0
- package/.yarn/cache/tslib-npm-2.4.0-9cb6dc5030-8c4aa6a3c5.zip +0 -0
- package/.yarn/cache/tslib-npm-2.7.0-21668f5c21-1606d5c89f.zip +0 -0
- package/.yarn/cache/webcrypto-core-npm-1.8.0-b7c655d14a-4f128f5283.zip +0 -0
- package/.yarn/cache/ws-npm-7.5.10-878ccb886b-f9bb062abf.zip +0 -0
- package/.yarn/cache/ws-npm-8.17.1-f57fb24a2c-442badcce1.zip +0 -0
- package/.yarn/install-state.gz +0 -0
- package/gun-eth.js +270 -0
- package/index.js +1 -229
- package/package.json +3 -4
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
package/gun-eth.js
ADDED
@@ -0,0 +1,270 @@
|
|
1
|
+
/* const Gun = require("gun/gun");
|
2
|
+
const SEA = require("gun/sea");
|
3
|
+
const ethers = require("ethers");
|
4
|
+
const SHINE = require("./SHINE.json"); */
|
5
|
+
|
6
|
+
import Gun from "gun";
|
7
|
+
import SEA from "gun/sea";
|
8
|
+
import { ethers } from "ethers";
|
9
|
+
|
10
|
+
import SHINE from "./SHINE.json";
|
11
|
+
|
12
|
+
const SHINE_ABI = SHINE.abi;
|
13
|
+
const SHINE_OPTIMISM_SEPOLIA = SHINE.address;
|
14
|
+
|
15
|
+
let SHINE_CONTRACT_ADDRESS;
|
16
|
+
|
17
|
+
// Aggiungi il metodo alla catena di Gun
|
18
|
+
Gun.chain.verifySignature = async function (message, signature) {
|
19
|
+
try {
|
20
|
+
const recoveredAddress = ethers.verifyMessage(message, signature);
|
21
|
+
return recoveredAddress;
|
22
|
+
} catch (error) {
|
23
|
+
console.error("Errore durante la verifica della firma:", error);
|
24
|
+
return null;
|
25
|
+
}
|
26
|
+
};
|
27
|
+
|
28
|
+
Gun.chain.generatePassword = function (signature) {
|
29
|
+
try {
|
30
|
+
// Usa SHA-256 per derivare una password dalla firma
|
31
|
+
const hexSignature = ethers.hexlify(signature);
|
32
|
+
const hash = ethers.keccak256(hexSignature);
|
33
|
+
|
34
|
+
console.log("Password generata:", hash);
|
35
|
+
return hash;
|
36
|
+
} catch (error) {
|
37
|
+
console.error("Errore nella generazione della password:", error);
|
38
|
+
return null;
|
39
|
+
}
|
40
|
+
};
|
41
|
+
|
42
|
+
Gun.chain.createSignature = async function (message) {
|
43
|
+
try {
|
44
|
+
// Controlla se window.ethereum è disponibile (metamask o altro provider)
|
45
|
+
if (typeof window.ethereum !== "undefined") {
|
46
|
+
await window.ethereum.request({ method: "eth_requestAccounts" });
|
47
|
+
const provider = new ethers.BrowserProvider(window.ethereum);
|
48
|
+
const signer = await provider.getSigner();
|
49
|
+
const signature = await signer.signMessage(message);
|
50
|
+
console.log("Firma creata:", signature);
|
51
|
+
return signature;
|
52
|
+
} else {
|
53
|
+
throw new Error("Provider Ethereum non trovato");
|
54
|
+
}
|
55
|
+
} catch (error) {
|
56
|
+
console.error("Errore durante la creazione della firma:", error);
|
57
|
+
return null;
|
58
|
+
}
|
59
|
+
};
|
60
|
+
|
61
|
+
Gun.chain.createAndStoreEncryptedPair = async function (address, signature) {
|
62
|
+
try {
|
63
|
+
const gun = this;
|
64
|
+
const pair = await SEA.pair();
|
65
|
+
const encryptedPair = await SEA.encrypt(JSON.stringify(pair), signature);
|
66
|
+
|
67
|
+
await gun.get("users").get(address).put({ encryptedPair });
|
68
|
+
console.log("Pair crittografato e archiviato per:", address);
|
69
|
+
} catch (error) {
|
70
|
+
console.error(
|
71
|
+
"Errore durante la creazione e l'archiviazione del pair crittografato:",
|
72
|
+
error
|
73
|
+
);
|
74
|
+
}
|
75
|
+
};
|
76
|
+
|
77
|
+
Gun.chain.getAndDecryptPair = async function (address, signature) {
|
78
|
+
try {
|
79
|
+
const gun = this;
|
80
|
+
const encryptedData = await gun
|
81
|
+
.get("users")
|
82
|
+
.get(address)
|
83
|
+
.get("encryptedPair")
|
84
|
+
.then();
|
85
|
+
if (!encryptedData) {
|
86
|
+
throw new Error("Nessun dato crittografato trovato per questo indirizzo");
|
87
|
+
}
|
88
|
+
|
89
|
+
const decryptedPair = await SEA.decrypt(encryptedData, signature);
|
90
|
+
|
91
|
+
console.log(decryptedPair);
|
92
|
+
return decryptedPair;
|
93
|
+
} catch (error) {
|
94
|
+
console.error(
|
95
|
+
"Errore durante il recupero e la decrittazione del pair:",
|
96
|
+
error
|
97
|
+
);
|
98
|
+
return null;
|
99
|
+
}
|
100
|
+
};
|
101
|
+
|
102
|
+
Gun.chain.shine = function (chain, nodeId, data, callback) {
|
103
|
+
console.log("SHINE plugin called with:", { chain, nodeId, data });
|
104
|
+
|
105
|
+
if (typeof callback !== "function") {
|
106
|
+
console.error("Callback must be a function");
|
107
|
+
return this;
|
108
|
+
}
|
109
|
+
|
110
|
+
const gun = this;
|
111
|
+
|
112
|
+
// Seleziona l'indirizzo basato sulla catena
|
113
|
+
if (chain === "optimismSepolia") {
|
114
|
+
SHINE_CONTRACT_ADDRESS = SHINE_OPTIMISM_SEPOLIA;
|
115
|
+
} else {
|
116
|
+
throw new Error("Chain not supported");
|
117
|
+
}
|
118
|
+
|
119
|
+
// Funzione per ottenere il signer
|
120
|
+
const getSigner = async () => {
|
121
|
+
if (typeof window.ethereum !== "undefined") {
|
122
|
+
await window.ethereum.request({ method: "eth_requestAccounts" });
|
123
|
+
const provider = new ethers.BrowserProvider(window.ethereum);
|
124
|
+
return provider.getSigner();
|
125
|
+
} else {
|
126
|
+
throw new Error("Ethereum provider not found");
|
127
|
+
}
|
128
|
+
};
|
129
|
+
|
130
|
+
// Funzione per verificare on-chain
|
131
|
+
const verifyOnChain = async (nodeId, contentHash) => {
|
132
|
+
console.log("Verifying on chain:", { nodeId, contentHash });
|
133
|
+
const signer = await getSigner();
|
134
|
+
const contract = new ethers.Contract(
|
135
|
+
SHINE_CONTRACT_ADDRESS,
|
136
|
+
SHINE_ABI,
|
137
|
+
signer
|
138
|
+
);
|
139
|
+
const [isValid, timestamp, updater] = await contract.verifyData(
|
140
|
+
ethers.toUtf8Bytes(nodeId),
|
141
|
+
contentHash
|
142
|
+
);
|
143
|
+
console.log("Verification result:", { isValid, timestamp, updater });
|
144
|
+
return { isValid, timestamp, updater };
|
145
|
+
};
|
146
|
+
|
147
|
+
// Funzione per scrivere on-chain
|
148
|
+
const writeOnChain = async (nodeId, contentHash) => {
|
149
|
+
console.log("Writing on chain:", { nodeId, contentHash });
|
150
|
+
const signer = await getSigner();
|
151
|
+
const contract = new ethers.Contract(
|
152
|
+
SHINE_CONTRACT_ADDRESS,
|
153
|
+
SHINE_ABI,
|
154
|
+
signer
|
155
|
+
);
|
156
|
+
const tx = await contract.updateData(
|
157
|
+
ethers.toUtf8Bytes(nodeId),
|
158
|
+
contentHash
|
159
|
+
);
|
160
|
+
console.log("Transaction sent:", tx.hash);
|
161
|
+
const receipt = await tx.wait();
|
162
|
+
console.log("Transaction confirmed:", receipt);
|
163
|
+
return tx;
|
164
|
+
};
|
165
|
+
|
166
|
+
// Nuova funzione per ottenere l'ultimo record dalla blockchain
|
167
|
+
const getLatestRecord = async (nodeId) => {
|
168
|
+
const signer = await getSigner();
|
169
|
+
const contract = new ethers.Contract(
|
170
|
+
SHINE_CONTRACT_ADDRESS,
|
171
|
+
SHINE_ABI,
|
172
|
+
signer
|
173
|
+
);
|
174
|
+
const [contentHash, timestamp, updater] = await contract.getLatestRecord(
|
175
|
+
ethers.toUtf8Bytes(nodeId)
|
176
|
+
);
|
177
|
+
console.log("Latest record from blockchain:", {
|
178
|
+
nodeId,
|
179
|
+
contentHash,
|
180
|
+
timestamp,
|
181
|
+
updater,
|
182
|
+
});
|
183
|
+
return { contentHash, timestamp, updater };
|
184
|
+
};
|
185
|
+
|
186
|
+
// Processo SHINE
|
187
|
+
if (nodeId && !data) {
|
188
|
+
// Caso 1: Utente passa solo il nodo
|
189
|
+
gun.get(nodeId).once(async (existingData) => {
|
190
|
+
if (!existingData) {
|
191
|
+
if (callback) callback({ err: "Node not found in GunDB" });
|
192
|
+
return;
|
193
|
+
}
|
194
|
+
|
195
|
+
console.log("existingData", existingData);
|
196
|
+
|
197
|
+
// Usa il contentHash memorizzato invece di ricalcolarlo
|
198
|
+
const contentHash = existingData._contentHash;
|
199
|
+
console.log("contentHash", contentHash);
|
200
|
+
|
201
|
+
if (!contentHash) {
|
202
|
+
if (callback) callback({ err: "No content hash found for this node" });
|
203
|
+
return;
|
204
|
+
}
|
205
|
+
|
206
|
+
try {
|
207
|
+
const { isValid, timestamp, updater } = await verifyOnChain(
|
208
|
+
nodeId,
|
209
|
+
contentHash
|
210
|
+
);
|
211
|
+
const latestRecord = await getLatestRecord(nodeId);
|
212
|
+
|
213
|
+
if (isValid) {
|
214
|
+
if (callback)
|
215
|
+
callback({
|
216
|
+
ok: true,
|
217
|
+
message: "Data verified on blockchain",
|
218
|
+
timestamp,
|
219
|
+
updater,
|
220
|
+
latestRecord,
|
221
|
+
});
|
222
|
+
} else {
|
223
|
+
if (callback)
|
224
|
+
callback({
|
225
|
+
ok: false,
|
226
|
+
message: "Data not verified on blockchain",
|
227
|
+
latestRecord,
|
228
|
+
});
|
229
|
+
}
|
230
|
+
} catch (error) {
|
231
|
+
if (callback) callback({ err: error.message });
|
232
|
+
}
|
233
|
+
});
|
234
|
+
} else if (data && !nodeId) {
|
235
|
+
// Caso 2: Utente passa solo il testo (data)
|
236
|
+
const newNodeId = Gun.text.random();
|
237
|
+
const dataString = JSON.stringify(data);
|
238
|
+
const contentHash = ethers.keccak256(ethers.toUtf8Bytes(dataString));
|
239
|
+
|
240
|
+
gun
|
241
|
+
.get(newNodeId)
|
242
|
+
.put({ ...data, _contentHash: contentHash }, async (ack) => {
|
243
|
+
console.log("ack", ack);
|
244
|
+
if (ack.err) {
|
245
|
+
if (callback) callback({ err: "Error saving data to GunDB" });
|
246
|
+
return;
|
247
|
+
}
|
248
|
+
|
249
|
+
try {
|
250
|
+
const tx = await writeOnChain(newNodeId, contentHash);
|
251
|
+
if (callback)
|
252
|
+
callback({
|
253
|
+
ok: true,
|
254
|
+
message: "Data written to GunDB and blockchain",
|
255
|
+
nodeId: newNodeId,
|
256
|
+
txHash: tx.hash,
|
257
|
+
});
|
258
|
+
} catch (error) {
|
259
|
+
if (callback) callback({ err: error.message });
|
260
|
+
}
|
261
|
+
});
|
262
|
+
} else {
|
263
|
+
if (callback)
|
264
|
+
callback({
|
265
|
+
err: "Invalid input. Provide either nodeId or data, not both.",
|
266
|
+
});
|
267
|
+
}
|
268
|
+
|
269
|
+
return gun;
|
270
|
+
};
|
package/index.js
CHANGED
@@ -1,229 +1 @@
|
|
1
|
-
|
2
|
-
const SEA = require("gun/sea");
|
3
|
-
const ethers = require("ethers");
|
4
|
-
|
5
|
-
const SHINE = require("./SHINE.json");
|
6
|
-
const SHINE_ABI = SHINE.abi;
|
7
|
-
const SHINE_OPTIMISM_SEPOLIA = SHINE.address;
|
8
|
-
|
9
|
-
let SHINE_CONTRACT_ADDRESS;
|
10
|
-
|
11
|
-
// Aggiungi il metodo alla catena di Gun
|
12
|
-
Gun.chain.verifySignature = async function (message, signature) {
|
13
|
-
try {
|
14
|
-
const recoveredAddress = ethers.verifyMessage(message, signature);
|
15
|
-
return recoveredAddress;
|
16
|
-
} catch (error) {
|
17
|
-
console.error("Errore durante la verifica della firma:", error);
|
18
|
-
return null;
|
19
|
-
}
|
20
|
-
};
|
21
|
-
|
22
|
-
Gun.chain.generatePassword = function (signature) {
|
23
|
-
try {
|
24
|
-
// Usa SHA-256 per derivare una password dalla firma
|
25
|
-
const hexSignature = ethers.hexlify(signature);
|
26
|
-
const hash = ethers.keccak256(hexSignature);
|
27
|
-
|
28
|
-
console.log("Password generata:", hash);
|
29
|
-
return hash;
|
30
|
-
} catch (error) {
|
31
|
-
console.error("Errore nella generazione della password:", error);
|
32
|
-
return null;
|
33
|
-
}
|
34
|
-
};
|
35
|
-
|
36
|
-
Gun.chain.createSignature = async function (message) {
|
37
|
-
try {
|
38
|
-
// Controlla se window.ethereum è disponibile (metamask o altro provider)
|
39
|
-
if (typeof window.ethereum !== "undefined") {
|
40
|
-
await window.ethereum.request({ method: "eth_requestAccounts" });
|
41
|
-
const provider = new ethers.BrowserProvider(window.ethereum);
|
42
|
-
const signer = await provider.getSigner();
|
43
|
-
const signature = await signer.signMessage(message);
|
44
|
-
console.log("Firma creata:", signature);
|
45
|
-
return signature;
|
46
|
-
} else {
|
47
|
-
throw new Error("Provider Ethereum non trovato");
|
48
|
-
}
|
49
|
-
} catch (error) {
|
50
|
-
console.error("Errore durante la creazione della firma:", error);
|
51
|
-
return null;
|
52
|
-
}
|
53
|
-
};
|
54
|
-
|
55
|
-
Gun.chain.createAndStoreEncryptedPair = async function (address, signature) {
|
56
|
-
try {
|
57
|
-
const gun = this;
|
58
|
-
const pair = await SEA.pair();
|
59
|
-
const encryptedPair = await SEA.encrypt(JSON.stringify(pair), signature);
|
60
|
-
|
61
|
-
await gun.get("users").get(address).put({ encryptedPair });
|
62
|
-
console.log("Pair crittografato e archiviato per:", address);
|
63
|
-
} catch (error) {
|
64
|
-
console.error(
|
65
|
-
"Errore durante la creazione e l'archiviazione del pair crittografato:",
|
66
|
-
error
|
67
|
-
);
|
68
|
-
}
|
69
|
-
};
|
70
|
-
|
71
|
-
Gun.chain.getAndDecryptPair = async function (address, signature) {
|
72
|
-
try {
|
73
|
-
const gun = this;
|
74
|
-
const encryptedData = await gun
|
75
|
-
.get("users")
|
76
|
-
.get(address)
|
77
|
-
.get("encryptedPair")
|
78
|
-
.then();
|
79
|
-
if (!encryptedData) {
|
80
|
-
throw new Error("Nessun dato crittografato trovato per questo indirizzo");
|
81
|
-
}
|
82
|
-
|
83
|
-
const decryptedPair = await SEA.decrypt(encryptedData, signature);
|
84
|
-
|
85
|
-
console.log(decryptedPair);
|
86
|
-
return decryptedPair;
|
87
|
-
} catch (error) {
|
88
|
-
console.error(
|
89
|
-
"Errore durante il recupero e la decrittazione del pair:",
|
90
|
-
error
|
91
|
-
);
|
92
|
-
return null;
|
93
|
-
}
|
94
|
-
};
|
95
|
-
|
96
|
-
Gun.chain.shine = function (chain, nodeId, data, callback) {
|
97
|
-
console.log("SHINE plugin called with:", { chain, nodeId, data });
|
98
|
-
|
99
|
-
if (typeof callback !== "function") {
|
100
|
-
console.error("Callback must be a function");
|
101
|
-
return this;
|
102
|
-
}
|
103
|
-
|
104
|
-
const gun = this;
|
105
|
-
|
106
|
-
// Seleziona l'indirizzo basato sulla catena
|
107
|
-
if (chain === "optimismSepolia") {
|
108
|
-
SHINE_CONTRACT_ADDRESS = SHINE_OPTIMISM_SEPOLIA;
|
109
|
-
} else {
|
110
|
-
throw new Error("Chain not supported");
|
111
|
-
}
|
112
|
-
|
113
|
-
// Funzione per ottenere il signer
|
114
|
-
const getSigner = async () => {
|
115
|
-
if (typeof window.ethereum !== "undefined") {
|
116
|
-
await window.ethereum.request({ method: "eth_requestAccounts" });
|
117
|
-
const provider = new ethers.BrowserProvider(window.ethereum);
|
118
|
-
return provider.getSigner();
|
119
|
-
} else {
|
120
|
-
throw new Error("Ethereum provider not found");
|
121
|
-
}
|
122
|
-
};
|
123
|
-
|
124
|
-
// Funzione per verificare on-chain
|
125
|
-
const verifyOnChain = async (nodeId, contentHash) => {
|
126
|
-
const signer = await getSigner();
|
127
|
-
const contract = new ethers.Contract(
|
128
|
-
SHINE_CONTRACT_ADDRESS,
|
129
|
-
SHINE_ABI,
|
130
|
-
signer
|
131
|
-
);
|
132
|
-
const [isValid, timestamp, updater] = await contract.verifyData(
|
133
|
-
ethers.toUtf8Bytes(nodeId),
|
134
|
-
contentHash
|
135
|
-
);
|
136
|
-
return { isValid, timestamp, updater };
|
137
|
-
};
|
138
|
-
|
139
|
-
// Funzione per scrivere on-chain
|
140
|
-
const writeOnChain = async (nodeId, contentHash) => {
|
141
|
-
const signer = await getSigner();
|
142
|
-
const contract = new ethers.Contract(
|
143
|
-
SHINE_CONTRACT_ADDRESS,
|
144
|
-
SHINE_ABI,
|
145
|
-
signer
|
146
|
-
);
|
147
|
-
const tx = await contract.updateData(
|
148
|
-
ethers.toUtf8Bytes(nodeId),
|
149
|
-
contentHash
|
150
|
-
);
|
151
|
-
await tx.wait();
|
152
|
-
return tx;
|
153
|
-
};
|
154
|
-
|
155
|
-
// Processo SHINE
|
156
|
-
if (nodeId && !data) {
|
157
|
-
// Caso 1: Utente passa solo il nodo
|
158
|
-
gun.get(nodeId).once(async (existingData) => {
|
159
|
-
if (!existingData) {
|
160
|
-
if (callback) callback({ err: "Node not found in GunDB" });
|
161
|
-
return;
|
162
|
-
}
|
163
|
-
|
164
|
-
console.log("existingData", existingData);
|
165
|
-
|
166
|
-
const dataString = JSON.stringify(existingData);
|
167
|
-
console.log("dataString", dataString);
|
168
|
-
const contentHash = dataString;
|
169
|
-
console.log("contentHash", contentHash);
|
170
|
-
|
171
|
-
try {
|
172
|
-
const { isValid, timestamp, updater } = await verifyOnChain(
|
173
|
-
nodeId,
|
174
|
-
contentHash
|
175
|
-
);
|
176
|
-
if (isValid) {
|
177
|
-
if (callback)
|
178
|
-
callback({
|
179
|
-
ok: true,
|
180
|
-
message: "Data verified on blockchain",
|
181
|
-
timestamp,
|
182
|
-
updater,
|
183
|
-
});
|
184
|
-
} else {
|
185
|
-
if (callback)
|
186
|
-
callback({
|
187
|
-
ok: false,
|
188
|
-
message: "Data not verified on blockchain",
|
189
|
-
});
|
190
|
-
}
|
191
|
-
} catch (error) {
|
192
|
-
if (callback) callback({ err: error.message });
|
193
|
-
}
|
194
|
-
});
|
195
|
-
} else if (data && !nodeId) {
|
196
|
-
// Caso 2: Utente passa solo il testo (data)
|
197
|
-
const newNodeId = Gun.text.random();
|
198
|
-
const dataString = JSON.stringify(data);
|
199
|
-
const contentHash = ethers.keccak256(ethers.toUtf8Bytes(dataString));
|
200
|
-
|
201
|
-
gun.get(newNodeId).put(data, async (ack) => {
|
202
|
-
console.log("ack", ack);
|
203
|
-
if (ack.err) {
|
204
|
-
if (callback) callback({ err: "Error saving data to GunDB" });
|
205
|
-
return;
|
206
|
-
}
|
207
|
-
|
208
|
-
try {
|
209
|
-
const tx = await writeOnChain(newNodeId, contentHash);
|
210
|
-
if (callback)
|
211
|
-
callback({
|
212
|
-
ok: true,
|
213
|
-
message: "Data written to GunDB and blockchain",
|
214
|
-
nodeId: newNodeId,
|
215
|
-
txHash: tx.hash,
|
216
|
-
});
|
217
|
-
} catch (error) {
|
218
|
-
if (callback) callback({ err: error.message });
|
219
|
-
}
|
220
|
-
});
|
221
|
-
} else {
|
222
|
-
if (callback)
|
223
|
-
callback({
|
224
|
-
err: "Invalid input. Provide either nodeId or data, not both.",
|
225
|
-
});
|
226
|
-
}
|
227
|
-
|
228
|
-
return gun;
|
229
|
-
};
|
1
|
+
import "./gun-eth.js";
|
package/package.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "gun-eth",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.2",
|
4
4
|
"description": "A GunDB plugin for Ethereum, and Web3",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
|
-
"
|
11
|
-
"
|
10
|
+
"ethers": "^6.0.0",
|
11
|
+
"gun": "^0.2020.1239"
|
12
12
|
},
|
13
13
|
"author": "scobru",
|
14
14
|
"repository": {
|
@@ -16,7 +16,6 @@
|
|
16
16
|
"url": "git+https://github.com/scobru/gun-eth.git"
|
17
17
|
},
|
18
18
|
"license": "MIT",
|
19
|
-
"devDependencies": {},
|
20
19
|
"keywords": [
|
21
20
|
"gundb",
|
22
21
|
"web3",
|