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 | |
| from eth_account import Account | |
| import json | |
| import string | |
| import random | |
| # import qrcode | |
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
| import os | |
| import requests | |
| from bs4 import BeautifulSoup | |
| from urllib.parse import urljoin | |
| from tqdm import tqdm | |
| # pip install requests beautifulsoup4 tqdm | |
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
| [base] | |
| name=CentOS-7 - Base | |
| baseurl=https://archive.kernel.org/centos-vault/7.9.2009/os/$basearch/ | |
| gpgcheck=1 | |
| gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | |
| enabled=1 | |
| [updates] | |
| name=CentOS-7 - Updates | |
| baseurl=https://archive.kernel.org/centos-vault/7.9.2009/updates/$basearch/ |
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
| pragma solidity ^0.8.20; | |
| contract MultiSendETH { | |
| function multiSendEqual( | |
| address payable[] calldata _addresses, | |
| uint256 _amountEther | |
| ) external payable { | |
| require(_addresses.length > 0, "no addresses"); | |
| require( | |
| _amountEther * _addresses.length <= msg.value, |
OlderNewer