mirror of
https://github.com/tornadocash/provider.git
synced 2024-11-26 19:52:07 +01:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
|
// THIS IS OUTDATED
|
||
|
// TODO: update it
|
||
|
|
||
|
const Swarm = require("./..");
|
||
|
const fs = require("fs");
|
||
|
const path = require("path");
|
||
|
const privateKeyPath = path.join(process.cwd(), "swarmPrivateKey");
|
||
|
|
||
|
// Writes a temporary private key file to disk
|
||
|
fs.writeFileSync(privateKeyPath, "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef");
|
||
|
|
||
|
// To run Swarm locally, you need a running Geth
|
||
|
// node and an Ethereum account/password
|
||
|
const swarmSetup = {
|
||
|
privateKey: privateKeyPath,
|
||
|
dataDir: process.env.HOME + "/Library/Ethereum/testnet",
|
||
|
ensApi: process.env.HOME + "/Library/Ethereum/testnet/geth.ipc",
|
||
|
binPath: process.env.HOME + "/.swarm/swarm"
|
||
|
};
|
||
|
|
||
|
// Magically starts a local Swarm node
|
||
|
// Downloads binaries if necessary
|
||
|
Swarm.local(swarmSetup)(swarm => new Promise((resolve, reject) => {
|
||
|
// Removes the temporary private key file
|
||
|
fs.unlinkSync(privateKeyPath);
|
||
|
|
||
|
// Uploads data using the local node
|
||
|
swarm.upload("test").then(hash => {
|
||
|
console.log("Uploaded data. Address:", hash);
|
||
|
|
||
|
// Closes the Swarm process.
|
||
|
resolve();
|
||
|
}).catch(e => console.log(e));
|
||
|
}))
|
||
|
.then(() => console.log("Done!"))
|
||
|
.catch(e => console.log(e));
|