https://github.com/generationsoftware/pt-v5-nft-sweepstakes-helpers
https://github.com/generationsoftware/pt-v5-nft-sweepstakes-helpers
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/generationsoftware/pt-v5-nft-sweepstakes-helpers
- Owner: GenerationSoftware
- License: mit
- Created: 2024-06-19T20:30:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-18T20:23:32.000Z (about 2 years ago)
- Last Synced: 2025-03-02T05:22:23.389Z (over 1 year ago)
- Language: TypeScript
- Size: 128 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# v5-batch-create-fake-users
Creates thousands (hundreds of thousands?) of fake users via multicall sends on testnets (Sepolia/Mumbai/etc) for testing the v5 hyperstructure.
## 💾  Installation
Install dependencies:
```
yarn
```
Make sure you have `direnv` installed and copy `.envrc.example` to `.envrc`:
```
cp .envrc.example .envrc
```
Fill in your own values for `.envrc`, then run:
```
direnv allow
```
**NOTE**: For the `PRIVATE_KEY` env variable we recommend using a fresh wallet specifically for testnets and not your production wallets!
```
Example usage:
```
`$ tsx ./index.ts --total=100 --name='NFT Test' --description='This is just a test' --imageUrl='https://arweave.net/lo2NVO4upUtInwmGYKRdsJZ2rRurqwWnmpUi5USvQFs'`
```
```