Merge branch 'main' into feat/enableSnapshotPro

This commit is contained in:
Sudheer 2021-06-23 22:09:01 +05:30 committed by GitHub
commit a8150f0209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 57 additions and 12 deletions

File diff suppressed because one or more lines are too long

View File

View File

View File

@ -0,0 +1,33 @@
{
"cname": "aavegotchi",
"name": "Aavegotchi",
"description": "",
"path": "aavegotchi.eth",
"previousPaths": [],
"folder": "aavegotchi.eth",
"type": "snapshot",
"suffix": "GHST",
"coinGeckoPriceString": "aavegotchi",
"tokenContractAddress": "0x3F382DbD960E3a9bbCeaE22651E88158d2791550",
"isEnabled": false,
"hasOnchain": false,
"claim": {
"isClaimed": false,
"claimer": "",
"signature": ""
},
"isHybrid": false,
"hasDelegation": false,
"snapshotSpaceName": "aavegotchi.eth",
"invalidSnapshots": [],
"branding": {
"primaryColor": "",
"accentColor": ""
},
"discourseForum": {
"url": "https://dao.aavegotchi.com",
"categoryId": "6"
},
"safeAddress": null,
"treasuryAddresses": ["0xffe6280ae4e864d9af836b562359fd828ece8020"]
}

View File

View File

View File

@ -18,5 +18,6 @@
"branding": {},
"discourseForum": {},
"safeAddress": null,
"treasuryAddresses": ["0x3d9819210a31b4961b30ef54be2aed79b9c9cd3b", "0x2775b1c75658Be0F640272CCb8c72ac986009e38"]
"treasuryAddresses": ["0x3d9819210a31b4961b30ef54be2aed79b9c9cd3b", "0x2775b1c75658Be0F640272CCb8c72ac986009e38"],
"disableTreasuryNav": true
}

View File

@ -7,7 +7,7 @@
"folder": "fei",
"type": "compoundish",
"suffix": "FEI",
"coinGeckoPriceString": "",
"coinGeckoPriceString": "fei-protocol",
"tokenContractAddress": "0x956F47F50A910163D8BF957Cf5846D573E7f87CA",
"isEnabled": false,
"hasOnchain": false,
@ -23,5 +23,6 @@
"url": "",
"categoryId": ""
},
"safeAddress": null
"safeAddress": null,
"disableTreasuryNav": true
}

View File

@ -7,7 +7,7 @@
"folder": "gitcoin",
"type": "compoundish",
"suffix": "GTC",
"coinGeckoPriceString": "",
"coinGeckoPriceString": "gitcoin",
"tokenContractAddress": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f",
"isEnabled": false,
"hasOnchain": false,
@ -23,5 +23,6 @@
"url": "",
"categoryId": ""
},
"safeAddress": null
"safeAddress": null,
"disableTreasuryNav": true
}

View File

@ -23,5 +23,6 @@
"url": "",
"categoryId": ""
},
"safeAddress": null
"safeAddress": null,
"disableTreasuryNav": true
}

View File

@ -23,5 +23,6 @@
"url": "",
"categoryId": ""
},
"safeAddress": null
"safeAddress": null,
"disableTreasuryNav": true
}

View File

@ -23,5 +23,6 @@
"url": "",
"categoryId": ""
},
"safeAddress": null
"safeAddress": null,
"disableTreasuryNav": true
}

View File

@ -24,5 +24,6 @@
"categoryId": ""
},
"safeAddress": null,
"treasuryAddresses": ["0x42cd8312d2bce04277dd5161832460e95b24262e", "0x21950e281bde1714ffd1062ed17c56d4d8de2359"]
"treasuryAddresses": ["0x42cd8312d2bce04277dd5161832460e95b24262e", "0x21950e281bde1714ffd1062ed17c56d4d8de2359"],
"disableTreasuryNav": true
}

View File

@ -23,5 +23,6 @@
"url": "",
"categoryId": ""
},
"safeAddress": null
"safeAddress": null,
"disableTreasuryNav": true
}

View File

@ -26,5 +26,6 @@
"branding": {},
"discourseForum": {},
"safeAddress": null,
"treasuryAddresses": ["0x1a9c8182c09f50c8318d769245bea52c32be35bc", "0x4750c43867ef5f89869132eccf19b9b6c4286e1a"]
"treasuryAddresses": ["0x1a9c8182c09f50c8318d769245bea52c32be35bc", "0x4750c43867ef5f89869132eccf19b9b6c4286e1a"],
"disableTreasuryNav": true
}

View File

@ -46,7 +46,8 @@ printf '{
"url": "",
"categoryId": ""
},
"safeAddress": null
"safeAddress": null,
"disableTreasuryNav": false
}' >| ./protocols/$1/index.json
fi

View File

@ -34,6 +34,7 @@ export const ProtocolIo = t.type({
]),
safeAddress: t.union([t.string, t.null]),
treasuryAddresses: t.union([t.array(t.string), t.undefined]),
disableTreasuryNav: t.union([t.boolean, t.undefined]),
});
export const ProtocolForScreeenerIo = t.type({