{"id":20030796,"url":"https://github.com/generationsoftware/pt-v5-user-faker","last_synced_at":"2026-06-13T07:32:35.906Z","repository":{"id":190243583,"uuid":"682233388","full_name":"GenerationSoftware/pt-v5-user-faker","owner":"GenerationSoftware","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-02T19:00:33.000Z","size":99,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-02T05:22:19.692Z","etag":null,"topics":["pooltogether","solidity"],"latest_commit_sha":null,"homepage":"","language":"Solidity","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GenerationSoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-23T18:23:34.000Z","updated_at":"2024-10-02T19:00:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"6048eb7e-b3ea-4902-93b6-e29c4b17bbde","html_url":"https://github.com/GenerationSoftware/pt-v5-user-faker","commit_stats":null,"previous_names":["generationsoftware/pt-v5-user-faker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GenerationSoftware/pt-v5-user-faker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenerationSoftware%2Fpt-v5-user-faker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenerationSoftware%2Fpt-v5-user-faker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenerationSoftware%2Fpt-v5-user-faker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenerationSoftware%2Fpt-v5-user-faker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GenerationSoftware","download_url":"https://codeload.github.com/GenerationSoftware/pt-v5-user-faker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenerationSoftware%2Fpt-v5-user-faker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34276501,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pooltogether","solidity"],"created_at":"2024-11-13T09:28:20.487Z","updated_at":"2026-06-13T07:32:35.889Z","avatar_url":"https://github.com/GenerationSoftware.png","language":"Solidity","funding_links":[],"categories":[],"sub_categories":[],"readme":"# User Faker\n\nCreates accounts for PoolTogether V5 vaults in batches.\n\n### Deployed On:\n\n- [Optimism Sepolia](https://sepolia-optimism.etherscan.io/address/0x4eDF4ECef7B1Ad2278f2d152b4f544b85265874c#code)\n- [Base Sepolia](https://sepolia.basescan.org/address/0x02ac689bb6ad0e07144a520c02e5fe3a3959dfa0)\n- [Arbitrum Sepolia](https://sepolia.arbiscan.io/address/0xc086edda021d9b90c09bd0092d47c36879c879fb)\n- [Sepolia](https://sepolia.etherscan.io/address/0xb02BB09C774a1eccA01259F68373894f6eFE7164)\n- [Scroll Sepolia](https://sepolia.scrollscan.com/address/0x8fa41112e3f3982c20a20378c8ca77bfa0ecc2a6)\n- [Gnosis Chiado](https://gnosis-chiado.blockscout.com/address/0x7e1Acab9273AFE96571B6C59DB669a1B7B914b40)\n- [Worldchain Sepolia](https://worldchain-sepolia.explorer.alchemy.com/address/0x4b9B0cC30eF739dbAa44457f36BBad8747Ad5629)\n\n## Usage\n\nCall `setFakeUsers(vault, count, tokenFaucet)` where `count` is the desired number of fake users.\n\nNote: gas limits account creation to about 50 per transaction. So to create 200 accounts, you'd need to run 4 transactions:\n\n```\nsetFakeUsers(vault, 50, tokenFaucet)\nsetFakeUsers(vault, 100, tokenFaucet)\nsetFakeUsers(vault, 150, tokenFaucet)\nsetFakeUsers(vault, 200, tokenFaucet)\n```\n\n# Foundry template\n\nTemplate to kickstart a Foundry project.\n\n## Getting started\n\nThe easiest way to get started is by clicking the [Use this template](https://github.com/pooltogether/foundry-template/generate) button at the top right of this page.\n\nIf you prefer to go the CLI way:\n\n```\nforge init my-project --template https://github.com/pooltogether/foundry-template\n```\n\n## Development\n\n### Installation\n\nYou may have to install the following tools to use this repository:\n\n- [Foundry](https://github.com/foundry-rs/foundry) to compile and test contracts\n- [direnv](https://direnv.net/) to handle environment variables\n- [lcov](https://github.com/linux-test-project/lcov) to generate the code coverage report\n\nInstall dependencies:\n\n```\nnpm i\n```\n\n### Env\n\nCopy `.envrc.example` and write down the env variables needed to run this project.\n\n```\ncp .envrc.example .envrc\n```\n\nOnce your env variables are setup, load them with:\n\n```\ndirenv allow\n```\n\n### Compile\n\nRun the following command to compile the contracts:\n\n```\nnpm run compile\n```\n\n### Coverage\n\nForge is used for coverage, run it with:\n\n```\nnpm run coverage\n```\n\nYou can then consult the report by opening `coverage/index.html`:\n\n```\nopen coverage/index.html\n```\n\n### Code quality\n\n[Husky](https://typicode.github.io/husky/#/) is used to run [lint-staged](https://github.com/okonet/lint-staged) and tests when committing.\n\n[Prettier](https://prettier.io) is used to format TypeScript and Solidity code. Use it by running:\n\n```\nnpm run format\n```\n\n[Solhint](https://protofire.github.io/solhint/) is used to lint Solidity files. Run it with:\n\n```\nnpm run hint\n```\n\n### CI\n\nA default Github Actions workflow is setup to execute on push and pull request.\n\nIt will build the contracts and run the test coverage.\n\nYou can modify it here: [.github/workflows/coverage.yml](.github/workflows/coverage.yml)\n\nFor the coverage to work, you will need to setup the `MAINNET_RPC_URL` repository secret in the settings of your Github repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenerationsoftware%2Fpt-v5-user-faker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgenerationsoftware%2Fpt-v5-user-faker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenerationsoftware%2Fpt-v5-user-faker/lists"}