{"id":25654380,"url":"https://github.com/pajicf/scroll-multisig-and-nft","last_synced_at":"2025-09-07T06:09:46.186Z","repository":{"id":171092949,"uuid":"586522220","full_name":"pajicf/scroll-multisig-and-nft","owner":"pajicf","description":"Scroll NFT and Multisig deployment Demo","archived":false,"fork":false,"pushed_at":"2023-05-08T15:54:28.000Z","size":57,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-23T20:32:31.427Z","etag":null,"topics":["ethereum","layer2","scroll","zkp"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pajicf.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-08T12:55:58.000Z","updated_at":"2023-12-08T21:17:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"a286de54-d922-4e87-9a81-93f293547911","html_url":"https://github.com/pajicf/scroll-multisig-and-nft","commit_stats":null,"previous_names":["pajicf/scroll-multisig-and-nft"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pajicf/scroll-multisig-and-nft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajicf%2Fscroll-multisig-and-nft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajicf%2Fscroll-multisig-and-nft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajicf%2Fscroll-multisig-and-nft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajicf%2Fscroll-multisig-and-nft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pajicf","download_url":"https://codeload.github.com/pajicf/scroll-multisig-and-nft/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajicf%2Fscroll-multisig-and-nft/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274002145,"owners_count":25205392,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"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":["ethereum","layer2","scroll","zkp"],"created_at":"2025-02-23T20:26:59.940Z","updated_at":"2025-09-07T06:09:46.180Z","avatar_url":"https://github.com/pajicf.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"./assets/banner.jpeg\" alt=\"Scroll Alpha NFT and Multisig Demo\"/\u003e\n\n# Scroll NFT and Multisig deployment Demo\n\n**This project is part of the more detailed blog post you can find [here](https://0xpajic.com/blog/scroll-layer2-nft-and-multisig-deployment/)**  \n\n## What's the repo about?\n\nIt demonstrates a few things:\n1. Scroll is **EVM Equivalent**, allowing us to use a bit more _\"niche\"_ tools at moment of writing this\n2. Create Multisig contract in [Vyper](https://vyper.readthedocs.io/en/stable/) using [Supersig](https://github.com/dmfxyz/supersig)\n3. Create NFT contract in Solidity using [OpenZeppelin libraries](https://github.com/OpenZeppelin/openzeppelin-contracts/)\n4. Use Brownie to:\n   - Deploy above contracts \n   - Test above contracts\n\nIf you aren't too keen on experimenting and would rather try out **Scroll** \nin [Hardhat](https://hardhat.org/) and [Solidity](https://docs.soliditylang.org/en/v0.8.17/), checkout the official guide [here](https://guide.scroll.io/user-guide/contract-deployment-tutorial).\n\n## Where are the final contracts deployed?\n\nThe contracts are deployed on [Scroll's](https://scroll.io/) Alpha testnet you can read more about [here](https://scroll.io/alpha).\n\n**TheNFT.sol:** [0x2b755B2D78156215Ac9dA3b2E09eB674B1493C92](https://blockscout.scroll.io/address/0x2b755B2D78156215Ac9dA3b2E09eB674B1493C92)  \n**Supersig.vy:** [0x6fD91afc1C7dCB72387da9a4A6B3108C6538CF85](https://blockscout.scroll.io/address/0x6fD91afc1C7dCB72387da9a4A6B3108C6538CF85)\n\n## What do I need to have before I start?\nTo run the project, you need:\n- Python 3.8 local development environment\n- Node.js 16 to run Ganache-cli\n- `brownie-eth` 1.19 installed. Guide [here](https://eth-brownie.readthedocs.io/en/stable/install.html)\n- `ganache-cli` 6.12 installed. And yes, don't use the newer `ganache` package since it has incompatibilities with brownie\n- Scroll network setup in your Brownie `network-config.yaml` file. Here's a short guide [here](https://github.com/pajicf/scroll-multisig-and-nft/blob/main/assets/network_config_guide.MD)\n- Good will 🙂\n\n## How do I run this project?\n1. `git clone https://github.com/pajicf/scroll-multisig-and-nft`  \n2. `cd scroll-multisig-and-nft`  \n3. `brownie test` - To run the tests\n4. `brownie compile` - To compile and build the smart contracts\n5. `brownie run ./scripts/deploy.py --network scroll-alpha` - To deploy the contracts  \n_!In the next steps don't forget to replace values with your own!_\n6. `brownie run ./scripts/transfer_ownership.py main [NFT_ADDRESS] [MULTISIG_ADDRESS] --network scroll-alpha` - To transfer NFT ownership to the multisig\n7. `brownie run ./scripts/multisig_script.py main [NFT_ADDRESS] [MULTISIG_ADDRESS] --network scroll-alpha` - To mint the NFT through the multisig\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpajicf%2Fscroll-multisig-and-nft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpajicf%2Fscroll-multisig-and-nft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpajicf%2Fscroll-multisig-and-nft/lists"}