{"id":21221797,"url":"https://github.com/primitivefinance/rmm-core-dapptools","last_synced_at":"2026-04-14T17:32:10.007Z","repository":{"id":45184254,"uuid":"409375168","full_name":"primitivefinance/rmm-core-dapptools","owner":"primitivefinance","description":"Rmm protocol core contracts in dapptools testing environment.","archived":false,"fork":false,"pushed_at":"2022-01-02T22:46:10.000Z","size":56,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-15T01:14:53.468Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Solidity","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/primitivefinance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-09-22T22:34:59.000Z","updated_at":"2022-04-02T03:13:11.000Z","dependencies_parsed_at":"2022-07-26T16:32:00.621Z","dependency_job_id":null,"html_url":"https://github.com/primitivefinance/rmm-core-dapptools","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"foundry-rs/forge-template","purl":"pkg:github/primitivefinance/rmm-core-dapptools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primitivefinance%2Frmm-core-dapptools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primitivefinance%2Frmm-core-dapptools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primitivefinance%2Frmm-core-dapptools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primitivefinance%2Frmm-core-dapptools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/primitivefinance","download_url":"https://codeload.github.com/primitivefinance/rmm-core-dapptools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primitivefinance%2Frmm-core-dapptools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31808505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-20T22:33:47.422Z","updated_at":"2026-04-14T17:32:09.967Z","avatar_url":"https://github.com/primitivefinance.png","language":"Solidity","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003ch1 align=\"center\"\u003e DappTools Template \u003c/h1\u003e\n\n**Template repository for getting started quickly with DappTools**\n\n![Github Actions](https://github.com/gakonst/dapptools-template/workflows/Tests/badge.svg)\n\n## \n\n```\nlogin to user\n. \"$HOME/.nix-profile/etc/profile.d/nix.sh\"\nmake test\nmake testCDF\n```\n\n## Building and testing\n\n```sh\ngit clone https://github.com/gakonst/dapptools-template\ncd dapptools-template\nmake\nmake test\n```\n\n## Deploying\n\nContracts can be deployed via the `make deploy` command. Addresses are automatically\nwritten in a name-address json file stored under `out/addresses.json`.\n\nWe recommend testing your deployments and provide an example under [`scripts/test-deploy.sh`](./scripts/test-deploy.sh)\nwhich will launch a local testnet, deploy the contracts, and do some sanity checks.\n\nEnvironment variables under the `.env` file are automatically loaded (see [`.env.example`](./.env.example)).\nBe careful of the [precedence in which env vars are read](https://github.com/dapphub/dapptools/tree/2cf441052489625f8635bc69eb4842f0124f08e4/src/dapp#precedence).\n\nWe assume `ETH_FROM` is an address you own and is part of your keystore.\nIf not, use `ethsign import` to import your private key.\n\nSee the [`Makefile`](./Makefile#25) for more context on how this works under the hood\n\nWe use Alchemy as a remote node provider for the Mainnet \u0026 Rinkeby network deployments.\nYou must have set your API key as the `ALCHEMY_API_KEY` enviroment variable in order to\ndeploy to these networks\n\n### Mainnet\n\n```\nETH_FROM=0x3538b6eF447f244268BCb2A0E1796fEE7c45002D make deploy-mainnet\n```\n\n### Rinkeby\n\n```\nETH_FROM=0x3538b6eF447f244268BCb2A0E1796fEE7c45002D make deploy-rinkeby\n```\n\n### Custom Network\n\n```\nETH_RPC_URL=\u003cyour network\u003e make deploy\n```\n\n### Local Testnet\n\n```\n# on one terminal\ndapp testnet\n# get the printed account address from the testnet, and set it as ETH_FROM. Then:\nmake deploy\n```\n\n## Installing the toolkit\n\nIf you do not have DappTools already installed, you'll need to run the below\ncommands\n\n### Install Nix\n\n```sh\n# User must be in sudoers\ncurl -L https://nixos.org/nix/install | sh\n\n# Run this or login again to use Nix\n. \"$HOME/.nix-profile/etc/profile.d/nix.sh\"\n```\n\n### Install DappTools\n\n```sh\ncurl https://dapp.tools/install | sh\n```\n\n## DappTools Resources\n\n* [DappTools](https://dapp.tools)\n    * [Hevm Docs](https://github.com/dapphub/dapptools/blob/master/src/hevm/README.md)\n    * [Dapp Docs](https://github.com/dapphub/dapptools/tree/master/src/dapp/README.md)\n    * [Seth Docs](https://github.com/dapphub/dapptools/tree/master/src/seth/README.md)\n* [DappTools Overview](https://www.youtube.com/watch?v=lPinWgaNceM)\n* [Awesome-DappTools](https://github.com/rajivpo/awesome-dapptools)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimitivefinance%2Frmm-core-dapptools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprimitivefinance%2Frmm-core-dapptools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimitivefinance%2Frmm-core-dapptools/lists"}