Host your own Tor hidden service!
A super simple guide to spinning up a Tor hidden service. [tl;dr]
Ubuntu 20.04 LTS was used for the making of this guide.
you can install Tor using the following command
A super simple guide to spinning up a Tor hidden service. [tl;dr]
Ubuntu 20.04 LTS was used for the making of this guide.
you can install Tor using the following command
| package main | |
| import ( | |
| "crypto" | |
| "crypto/ed25519" | |
| "encoding/base32" | |
| "encoding/base64" | |
| "encoding/hex" | |
| "flag" | |
| "fmt" |
| 0x031B104934827D60aA9C4B6B579082ae090d9A51 |
| pragma solidity ^0.8.15; | |
| // SPDX-License-Identifier: MIT | |
| contract PaymentSplitter { | |
| address payable [] public recipients; | |
| event TransferReceived(address _from, uint _amount); | |
| constructor(address payable [] memory _addrs) { | |
| for(uint i=0; i<_addrs.length; i++){ | |
| recipients.push(_addrs[i]); |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) | |
| pragma solidity ^0.8.0; | |
| import "./IERC20.sol"; | |
| import "./extensions/IERC20Metadata.sol"; | |
| import "../../utils/Context.sol"; | |
| /** |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) | |
| pragma solidity ^0.8.0; | |
| import "./IERC20.sol"; | |
| import "./extensions/IERC20Metadata.sol"; | |
| import "../../utils/Context.sol"; | |
| /** |