Skip to content

Instantly share code, notes, and snippets.

View cleancoindev's full-sized avatar
🦦
OtterMarkets eh? *rolls eyes*

cleancoindev

🦦
OtterMarkets eh? *rolls eyes*
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
Note: For the actual contract source codes use the api endpoints at https://etherscan.io/apis#contracts
"Txhash","ContractAddress","ContractName"
"0x85da5f1e3d93f380674e2210416a552dd5520ec2785c16261f950e66c4321209","0x4b4701f3f827e1331fb22ff8e2beac24b17eb055","DISTX"
"0xd9bfae78b0dc777897a0e99bef998f1a3e89317e4849c9379a9c7c6613ace799","0xf58f90cb329f812f6d7c5a7b14ffccacbe9c034e","CurveVestingAdapter"
"0xacc4508639baad1b5d420948c1bca652df2f23e24af441d319b8f90ad4c1e15d","0xb2133d170b3bcab71358fc4eb2f95a384e5d328a","NexusStakingAdapter"
"0xf663b37dc0d975b1cb5f3bf74f476553da87bbf5fbd1573a2ede00f6ed18d847","0x303baa149efc0b3b47136177f27637f2c491e457","WalletImpl"
"0x18d1bff8ef51ffbbd388603b7550dc3de7ee99029569b65978bceb32b1f09778","0x8fd3d838ffceeb4ff4dd5b0221a99c3b1ddb9ac9","UniswapV2PriceOracle"
"0xd4bf1b6d87efa8d80dbce498113e7439cd901779ff2e23903204ff7456be11b6","0x7f628bdabde2c6c4cfc57f3f7683cd6034054e3a","OfficialGuardian"
"0xb2f9b7791021bca921f9ba9f3d9bc1513a637796fa8fe6de73b91c86f2585fef","0x035f99A18114621
const util = require('ethereumjs-util')
const Wallet = require('ethereumjs-wallet')
var possible = 'abcdef1234567890'
var basePrivateKey = '1cd3b30424316919712c48359829787eefa0d724a78274a506530dbb72'
var charsMissing = 64 - basePrivateKey.length
var targetPublicAddress = ' 0xe8Ca70C909905Ebbbe6a49c34797beF31d895241'
var missingPart = '';
for (var i = 0; i < charsMissing; i++) {
missingPart = missingPart.concat('f');
https://medium.com/pinata/how-to-build-substack-on-ipfs-a940a5caf812
@cleancoindev
cleancoindev / README.txt
Created May 18, 2021 04:10
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.6.6+commit.6c089d02.js&optimize=true&runs=1&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
@cleancoindev
cleancoindev / README.txt
Created May 28, 2021 07:24
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.8+commit.23d335f2.js&optimize=false&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS