-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DAO-402: minime factory and standard bounties as app (#1398)
* add minime factory and move standard bounties as app * fix to stop on publish error
- Loading branch information
yuetloo
authored
Oct 22, 2021
1 parent
050bac2
commit 785fae4
Showing
44 changed files
with
200 additions
and
173 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"path": "contracts/MiniMeTokenFactory.sol", | ||
"environments": { | ||
"default": { | ||
"registry": "0x5f6f7e8cc7346a11ca2def8f827b7a0b612c56a1", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "rpc" | ||
}, | ||
"harmony": { | ||
"registry": "0x5d0d0212199b2c041483226b20f1e4ed6ca4a4de", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "harmony" | ||
}, | ||
"harmonyTest": { | ||
"registry": "0xbc7828fa8665c637901ad5abd5c7e647c9ab140f", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "harmonyTest" | ||
}, | ||
"mainnet": { | ||
"registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "mainnet" | ||
}, | ||
"rinkeby": { | ||
"registry": "0x98Df287B6C145399Aaa709692c8D308357bC085D", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "rinkeby" | ||
}, | ||
"ropsten": { | ||
"registry": "0x6afe2cacee211ea9179992f89dc61ff25c61e923", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "ropsten" | ||
}, | ||
"staging": { | ||
"registry": "0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "rinkeby" | ||
}, | ||
"mumbai": { | ||
"registry": "0x431f0eed904590b176f9ff8c36a1c4ff0ee9b982", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "mumbai" | ||
}, | ||
"matic": { | ||
"registry": "0x3c70a0190d09f34519e6e218364451add21b7d4b", | ||
"appName": "minime-factory.aragonpm.eth", | ||
"network": "matic" | ||
} | ||
}, | ||
"roles": [] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pragma solidity 0.4.24; | ||
|
||
import "@aragon/apps-shared-minime/contracts/MiniMeToken.sol"; | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('@aragon/hardhat-config') |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "MiniMeTokenFactory", | ||
"author": "Aragon Association", | ||
"description": "Factory of Minime tokens", | ||
"changelog_url": "https://github.com/aragon/aragon-apps/releases", | ||
"details_url": "/meta/details.md", | ||
"source_url": "https://github.com/aragon/aragon-apps/blob/master/apps/minime-factory", | ||
"icons": [ | ||
{ "src": "/meta/icon.svg", "sizes": "56x56" } | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "@aragon/apps-minime-factory", | ||
"version": "1.0.0", | ||
"author": "Aragon Association <[email protected]>", | ||
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)", | ||
"files": [ | ||
"/arapp.json", | ||
"/manifest.json", | ||
"/hardhat-config.js", | ||
"/public", | ||
"/contracts" | ||
], | ||
"scripts": { | ||
"compile": "hardhat compile" | ||
}, | ||
"devDependencies": { | ||
"@aragon/hardhat-aragon": "^1.0.0", | ||
"@aragon/hardhat-config": "^1.0.0", | ||
"@nomiclabs/hardhat-ethers": "^2.0.2", | ||
"@nomiclabs/hardhat-etherscan": "^2.1.6", | ||
"ethers": "^5.4.7", | ||
"hardhat": "^2.6.5" | ||
}, | ||
"dependencies": { | ||
"@aragon/apps-shared-minime": "^1.0.2" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Minime Token Factory | ||
|
||
Lightly modified. See [original](https://github.com/Giveth/minime). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
artifacts |
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"path": "contracts/StandardBounties.sol", | ||
"environments": { | ||
"default": { | ||
"registry": "0x5f6f7e8cc7346a11ca2def8f827b7a0b612c56a1", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "rpc" | ||
}, | ||
"harmony": { | ||
"registry": "0x5d0d0212199b2c041483226b20f1e4ed6ca4a4de", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "harmony" | ||
}, | ||
"harmonyTest": { | ||
"registry": "0xbc7828fa8665c637901ad5abd5c7e647c9ab140f", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "harmonyTest" | ||
}, | ||
"mainnet": { | ||
"registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "mainnet" | ||
}, | ||
"rinkeby": { | ||
"registry": "0x98Df287B6C145399Aaa709692c8D308357bC085D", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "rinkeby" | ||
}, | ||
"ropsten": { | ||
"registry": "0x6afe2cacee211ea9179992f89dc61ff25c61e923", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "ropsten" | ||
}, | ||
"staging": { | ||
"registry": "0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "rinkeby" | ||
}, | ||
"mumbai": { | ||
"registry": "0x431f0eed904590b176f9ff8c36a1c4ff0ee9b982", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "mumbai" | ||
}, | ||
"matic": { | ||
"registry": "0x3c70a0190d09f34519e6e218364451add21b7d4b", | ||
"appName": "standard-bounties.aragonpm.eth", | ||
"network": "matic" | ||
} | ||
}, | ||
"roles": [] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const config = require('@aragon/hardhat-config') | ||
config.solidity.version = '0.5.0' | ||
|
||
module.exports = config |
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "StandardBounties", | ||
"author": "Aragon Association", | ||
"description": "A generalized set of contracts to issue bounties", | ||
"changelog_url": "https://github.com/aragon/aragon-apps/releases", | ||
"details_url": "/meta/details.md", | ||
"source_url": "https://github.com/aragon/aragon-apps/blob/master/apps/standard-bounties", | ||
"icons": [ | ||
{ "src": "/meta/icon.svg", "sizes": "56x56" } | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "@aragon/apps-standard-bounties", | ||
"version": "1.0.0", | ||
"author": "Aragon Association <[email protected]>", | ||
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)", | ||
"files": [ | ||
"/arapp.json", | ||
"/manifest.json", | ||
"/hardhat-config.js", | ||
"/public", | ||
"/contracts" | ||
], | ||
"scripts": { | ||
"compile": "hardhat compile" | ||
}, | ||
"devDependencies": { | ||
"@aragon/hardhat-aragon": "^1.0.0", | ||
"@aragon/hardhat-config": "^1.0.0", | ||
"@nomiclabs/hardhat-ethers": "^2.0.2", | ||
"@nomiclabs/hardhat-etherscan": "^2.1.6", | ||
"ethers": "^5.4.7", | ||
"hardhat": "^2.6.5" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# StandardBounties | ||
A generalized set of contracts to issue bounties for any task, paying in any ERC20, ERC721, or ETH tokens. | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
shared/integrations/StandardBounties/migrations/1_initial_migration.js
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
shared/integrations/StandardBounties/migrations/2_deploy_contracts.js
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.