This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| $ ./a | |
| Parent: 76922 | |
| Child: 76923, trying to trace parent: 76922 | |
| ptrace: Operation not permitted | |
| failed. Errno: 1 | |
| Parent: rip children | |
| */ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from web3 import Web3, HTTPProvider | |
| from eth_account import Account | |
| from eth_account.signers.local import LocalAccount | |
| from web3.middleware import construct_sign_and_send_raw_middleware | |
| from web3.middleware import geth_poa_middleware | |
| import os, time | |
| infura_key = os.getenv("INFURA") | |
| from_key = os.getenv("FROMKEY") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from web3 import Web3, HTTPProvider | |
| from eth_account import Account | |
| from eth_account.signers.local import LocalAccount | |
| from web3.middleware import construct_sign_and_send_raw_middleware | |
| from web3.middleware import geth_poa_middleware | |
| from flashbots import flashbot | |
| from ens.auto import ns | |
| import argparse, time, random, os, json, math |
NewerOlder