diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..87600d5ce1 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,46 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at fabien@bonustrack.co. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000000..88fa5c83b8 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,31 @@ +### Opening an issue + +You should usually open an issue in the following situations: + +* Report an error you can’t solve yourself +* Discuss a high-level topic or idea (for example, community, vision or policies) +* Propose a new feature or other project idea + +Tips for communicating on issues: + +* **If you see an open issue that you want to tackle,** comment on the issue to let people know you’re on it. That way, people are less likely to duplicate your work. +* **If an issue was opened a while ago,** it’s possible that it’s being addressed somewhere else, or has already been resolved, so comment to ask for confirmation before starting work. +* **If you opened an issue, but figured out the answer later on your own,** comment on the issue to let people know, then close the issue. Even documenting that outcome is a contribution to the project. + +### Opening a pull request + +You should usually open a pull request in the following situations: + +* Submit trivial fixes (for example, a typo, a broken link or an obvious error) +* Start work on a contribution that was already asked for, or that you’ve already discussed, in an issue + +A pull request doesn’t have to represent finished work. It’s usually better to open a pull request early on, so others can watch or give feedback on your progress. Just mark it as a “WIP” (Work in Progress) in the subject line. You can always add more commits later. + +If the project is on GitHub, here’s how to submit a pull request: + +* **Fork the repository** and clone it locally. Connect your local to the original repository by adding it as a remote. Pull in changes from this repository often so that you stay up to date so that when you submit your pull request, merge conflicts will be less likely. +* **Create a branch** for your edits. +* **Reference any relevant issues** or supporting documentation in your PR (for example, “Closes #37.”) +* **Include screenshots of the before and after** if your changes include differences in HTML/CSS. Drag and drop the images into the body of your pull request. +* **Test your changes!** Run your changes against any existing tests if they exist and create new ones when needed. Whether tests exist or not, make sure your changes don’t break the existing project. +* **Contribute in the style of the project** to the best of your abilities. This may mean using indents, semi-colons or comments differently than you would in your own repository, but makes it easier for the maintainer to merge, others to understand and maintain in the future. diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000000..103b7d947f --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: ['https://gitcoin.co/grants/1093/snapshot'] diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..3ec7ec9efa --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,5 @@ +### Expected behavior + +### Actual behavior + +### Steps to reproduce the behavior diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..494a71ff49 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ +#### Hi! What is your PR about? + +- [ ] Add or edit a skin +- [ ] Add a custom domain for your space +- [ ] Add an alias to migrate your space diff --git a/.github/workflows/jsoncheck.yml b/.github/workflows/jsoncheck.yml new file mode 100644 index 0000000000..1942d8fa02 --- /dev/null +++ b/.github/workflows/jsoncheck.yml @@ -0,0 +1,16 @@ +name: JSON check + +on: + push: + paths: + - '**.json' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: json-syntax-check + uses: limitusus/json-syntax-check@v2 + with: + pattern: "\\.json$" diff --git a/.github/workflows/new-alias.yml b/.github/workflows/new-alias.yml new file mode 100644 index 0000000000..bf2109df19 --- /dev/null +++ b/.github/workflows/new-alias.yml @@ -0,0 +1,40 @@ +name: New Alias + +on: + workflow_dispatch: + inputs: + oldspace: + description: 'Old Space Id' + required: true + default: '' + type: string + newspace: + description: 'New Space Id' + required: true + default: '' + type: string + +jobs: + new-alias: + name: New Alias + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: New Alias + run: node scripts/newAlias.ts ${{ inputs.oldspace }} ${{ inputs.newspace }} + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v3 + with: + commit-message: Space migration from ${{ inputs.oldspace }} to ${{ inputs.newspace }} + title: Space migration from ${{ inputs.oldspace }} to ${{ inputs.newspace }} + body: | + - spaces/aliases.json updated + + Auto-generated by Github Actions + branch: space-migration-${{ inputs.oldspace }}-${{ inputs.newspace }} diff --git a/LICENSE b/LICENSE index 1ba41a3e52..a0bb12504f 100755 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) Fabien Marino +Copyright (c) Snapshot Labs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package-lock.json b/package-lock.json index a36a3059ef..39843de6e5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,13 @@ { - "name": "@bonustrack/snapshot-spaces", + "name": "@snapshot-labs/snapshot-spaces", "version": "0.1.0", - "lockfileVersion": 1 + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "@snapshot-labs/snapshot-spaces", + "version": "0.1.0", + "license": "MIT" + } + } } diff --git a/package.json b/package.json index 37920a8454..910b8a3f08 100755 --- a/package.json +++ b/package.json @@ -1,9 +1,10 @@ { - "name": "@bonustrack/snapshot-spaces", + "name": "@snapshot-labs/snapshot-spaces", "version": "0.1.0", - "repository": "bonustrack/snapshot-spaces", + "repository": "snapshot-labs/snapshot-spaces", "license": "MIT", "files": [ - "spaces" + "spaces", + "skins" ] } diff --git a/scripts/newAlias.ts b/scripts/newAlias.ts new file mode 100644 index 0000000000..8e5496617c --- /dev/null +++ b/scripts/newAlias.ts @@ -0,0 +1,23 @@ +const aliases = require('../spaces/aliases.json'); +const https = require('https'); + +const args = process.argv.slice(2); +if (args.length === 2) { + const oldSpace = args[0]; + const newSpace = args[1]; + + if (!oldSpace.endsWith('.eth') || !newSpace.endsWith('.eth')) { + console.error('Invalid arguments') + process.exit(1); + } + + if (aliases[oldSpace]) { + console.error('Alias already exists for ' + oldSpace) + process.exit(1); + } + + aliases[oldSpace] = newSpace + require('fs').writeFileSync('spaces/aliases.json', JSON.stringify(aliases, null, 2), 'utf8'); +} else { + console.log('Usage: node scripts/newAlias.ts '); +} diff --git a/spaces/aave/skin.scss b/skins/aave.scss similarity index 96% rename from spaces/aave/skin.scss rename to skins/aave.scss index e65d8bcaee..4f416ce885 100644 --- a/spaces/aave/skin.scss +++ b/skins/aave.scss @@ -8,7 +8,7 @@ --header-bg: #f7f7f7; --block-bg: white; - #topnav { + #navbar { border-bottom: 4px solid black !important; border-image-slice: 1; border-image-source: linear-gradient(to left, #b6509e, #2ebac6); diff --git a/skins/aavegotchi.scss b/skins/aavegotchi.scss new file mode 100644 index 0000000000..8b29ea978f --- /dev/null +++ b/skins/aavegotchi.scss @@ -0,0 +1,16 @@ +.aavegotchi { + --primary-color: #04b7bc; + --bg-color: #4c1f7d; + --text-color: white; + --link-color: white; + --heading-color: white; + --border-color: rgba(255, 255, 255, 0.2); + --header-bg: #f741f0; + --block-bg: transparent; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #f741f0, #04b7bc); + } +} diff --git a/skins/achievmintry.scss b/skins/achievmintry.scss new file mode 100644 index 0000000000..350bc8ea50 --- /dev/null +++ b/skins/achievmintry.scss @@ -0,0 +1,11 @@ +.achievmintry { + --primary-color: #6e1fb1; + --bg-color: #f8fbf3; + --text-color: #111111; + --link-color:#6e1fb1; + --heading-color: #6e1fb1; + --border-color: #cc3385; + --header-bg: #f8fbf3; + --block-bg: transparent; + } + \ No newline at end of file diff --git a/skins/acoconutbsc.scss b/skins/acoconutbsc.scss new file mode 100644 index 0000000000..2ed9a1d316 --- /dev/null +++ b/skins/acoconutbsc.scss @@ -0,0 +1,10 @@ +.acoconutbsc { + --primary-color: #617835; + --bg-color: #080909; + --text-color: #ffffff; + --link-color: #617835; + --heading-color: #a5a5a5; + --border-color: transparent; + --header-bg: #1d1d1d; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/adex.scss b/skins/adex.scss new file mode 100644 index 0000000000..118debdd27 --- /dev/null +++ b/skins/adex.scss @@ -0,0 +1,20 @@ +.adex { + --primary-color: #ff4269; + --bg-color: #1a1825; + --text-color: #a6a6a6; + --link-color: #fafafa; + --heading-color: #fafafa; + --border-color: #a6a6a6; + --header-bg: #29253b; + --block-bg: #29253b; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient( + 90deg, + rgba(73, 69, 96, 1) 0%, + rgba(255, 66, 105, 1) 100% + ); + } +} diff --git a/skins/adventureland.scss b/skins/adventureland.scss new file mode 100644 index 0000000000..ff3b477e48 --- /dev/null +++ b/skins/adventureland.scss @@ -0,0 +1,9 @@ +.adventureland { + --primary-color: #67595E; + --header-bg: none; + --bg-color: #EEEEEE; + --border-color: #BDC2C4; + --text-color: #67595E; + --link-color: #74B7AC; + --heading-color: #74B7AC; +} diff --git a/skins/agdeportes.scss b/skins/agdeportes.scss new file mode 100644 index 0000000000..7ae6dd039e --- /dev/null +++ b/skins/agdeportes.scss @@ -0,0 +1,9 @@ +.agdeportes { + --primary-color: #ffde25; + --bg-color: #020213; + --text-color: #f1f1f1; + --link-color: #e0d20e; + --heading-color: #ffde25; + --border-color: #3e2905; + --header-bg: #020213; +} diff --git a/skins/airswap.scss b/skins/airswap.scss new file mode 100644 index 0000000000..fded3449e3 --- /dev/null +++ b/skins/airswap.scss @@ -0,0 +1,10 @@ +.airswap { + --primary-color: #2b71ff; + --bg-color: #fff; + --text-color: #333; + --link-color: #111; + --heading-color: #111; + --border-color: #ddd; + --header-bg: #fff; + --block-bg: transparent; +} diff --git a/skins/aitech.scss b/skins/aitech.scss new file mode 100644 index 0000000000..f5cd687e3d --- /dev/null +++ b/skins/aitech.scss @@ -0,0 +1,10 @@ +.aitech { + --primary-color: #ffffff; + --bg-color: #000000; + --text-color: #d0d0d0; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #3f07a4; + --header-bg: #3f07a4; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/akropolis-delphi.scss b/skins/akropolis-delphi.scss new file mode 100644 index 0000000000..14a9b9c275 --- /dev/null +++ b/skins/akropolis-delphi.scss @@ -0,0 +1,13 @@ +.light-mode .akropolis-delphi { + --bg-color: white; +} + +.akropolis-delphi { + --primary-color: #594CF2; + --bg-color: #13131B; + --text-color: #AEAEB1; + --link-color: #fff; + --border-color: #29293A; + --header-bg: #28283F; + --heading-color: #ffffff; +} diff --git a/skins/alchemistdefi.scss b/skins/alchemistdefi.scss new file mode 100644 index 0000000000..ded08f9789 --- /dev/null +++ b/skins/alchemistdefi.scss @@ -0,0 +1,10 @@ +.alchemistdefi { + --primary-color: #384aff; + --bg-color: #fcf7e8; + --text-color: #4262e9; + --link-color: #1b308a; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/alpaca.scss b/skins/alpaca.scss new file mode 100644 index 0000000000..e6a4976156 --- /dev/null +++ b/skins/alpaca.scss @@ -0,0 +1,9 @@ +.alpaca { + --primary-color: #31C77F; + --bg-color: #EFEEEE; + --text-color: #464646; + --link-color: #31C77F; + --heading-color: #202020; + --border-color: #e0e0e0; + --header-bg: #ffffff; +} diff --git a/skins/alpha.scss b/skins/alpha.scss new file mode 100644 index 0000000000..a832869e96 --- /dev/null +++ b/skins/alpha.scss @@ -0,0 +1,10 @@ +.alpha { + --primary-color: #29b2ff; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/altrucoin.scss b/skins/altrucoin.scss new file mode 100644 index 0000000000..18b5ecac32 --- /dev/null +++ b/skins/altrucoin.scss @@ -0,0 +1,10 @@ +.altrucoin { + --primary-color: #48A8F9; + --bg-color: #00142C; + --text-color: #A0AAB8; + --link-color: #48A8F9; + --heading-color: #ffffff; + --border-color: #1d2f3d; + --header-bg: #011936; + } + \ No newline at end of file diff --git a/skins/amp.scss b/skins/amp.scss new file mode 100644 index 0000000000..7c5d3285ff --- /dev/null +++ b/skins/amp.scss @@ -0,0 +1,16 @@ +.amp { + --primary-color: #ca3390; + --bg-color: #ffffff; + --text-color: #000000; + --link-color: #ca3390; + --heading-color: #000000; + --border-color: #000000; + --header-bg: #ffffff; + --block-bg: white; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #c9328f, #9b30c5); + } +} diff --git a/skins/ampleforth.scss b/skins/ampleforth.scss new file mode 100644 index 0000000000..fc4e5fecec --- /dev/null +++ b/skins/ampleforth.scss @@ -0,0 +1,10 @@ +.ampleforth { + --primary-color: #ff2d55; + --bg-color: radial-gradient(circle, rgba(235,173,185,1) 0%, rgba(150,149,233,1) 100%); + --text-color: white; + --link-color: #f1dbdf; + --heading-color: white; + --border-color: white; + --header-bg: transparent; + --block-bg: transparent; +} diff --git a/spaces/anjmol/skin.scss b/skins/anjmol.scss similarity index 100% rename from spaces/anjmol/skin.scss rename to skins/anjmol.scss diff --git a/skins/apeswap.scss b/skins/apeswap.scss new file mode 100644 index 0000000000..16f84cf332 --- /dev/null +++ b/skins/apeswap.scss @@ -0,0 +1,10 @@ +.apeswap { + --primary-color: #FFB300; + --bg-color: #fff; + --text-color: #333; + --link-color: #333; + --heading-color: #333; + --border-color: #FFB300; + --header-bg: #FFB300; + --block-bg: transparent +} diff --git a/skins/apetroop.scss b/skins/apetroop.scss new file mode 100644 index 0000000000..bcfe88de4f --- /dev/null +++ b/skins/apetroop.scss @@ -0,0 +1,9 @@ +.apetroop { + --primary-color: #eef372; + --bg-color: #09161c; + --link-color: #fff; + --heading-color: #fff; + --border-color: #d1d5da; + --header-bg: #09161c; + --block-bg: rgba(0, 0, 0, 0.2); +} \ No newline at end of file diff --git a/skins/apy.scss b/skins/apy.scss new file mode 100644 index 0000000000..7a9dcd3a86 --- /dev/null +++ b/skins/apy.scss @@ -0,0 +1,16 @@ +.apy { + --primary-color: #673ab7; + --bg-color: #1a1a1a; + --text-color: #808080; + --link-color: #d0d0d0; + --heading-color: #d0d0d0; + --border-color: #333; + --header-bg: #202020; + --block-bg: #1a1a1a; + + #navbar { + border-bottom: 2px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #483dc2, #d556f5); + } +} diff --git a/spaces/aragon-rinkeby/skin.scss b/skins/aragon.scss similarity index 100% rename from spaces/aragon-rinkeby/skin.scss rename to skins/aragon.scss diff --git a/spaces/aragonchina/skin.scss b/skins/aragonchina.scss similarity index 100% rename from spaces/aragonchina/skin.scss rename to skins/aragonchina.scss diff --git a/spaces/arckyf/skin.scss b/skins/arckyf.scss similarity index 100% rename from spaces/arckyf/skin.scss rename to skins/arckyf.scss diff --git a/skins/artizen.scss b/skins/artizen.scss new file mode 100644 index 0000000000..3a84490abb --- /dev/null +++ b/skins/artizen.scss @@ -0,0 +1,10 @@ +.artizen { + --primary-color: #1ACC6C; + --bg-color: white; + --text-color: #203030; + --link-color: #06AA59; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/aurigami-finance.scss b/skins/aurigami-finance.scss new file mode 100644 index 0000000000..fac681b1b4 --- /dev/null +++ b/skins/aurigami-finance.scss @@ -0,0 +1,3 @@ +.aurigami-finance { + --primary-color: #1db954; +} diff --git a/skins/badger.scss b/skins/badger.scss new file mode 100644 index 0000000000..7790b7a704 --- /dev/null +++ b/skins/badger.scss @@ -0,0 +1,9 @@ +.badger { + --primary-color: #F2A52B; + --bg-color: #13131B; + --text-color: #AEAEB1; + --link-color: #F2A52B; + --heading-color: #FFFFFF; + --border-color: #44341b; + --header-bg: #1f1f29; +} diff --git a/spaces/bake/skin.scss b/skins/bake.scss similarity index 100% rename from spaces/bake/skin.scss rename to skins/bake.scss diff --git a/spaces/balancer/skin.scss b/skins/balancer.scss similarity index 100% rename from spaces/balancer/skin.scss rename to skins/balancer.scss diff --git a/skins/ballena.scss b/skins/ballena.scss new file mode 100644 index 0000000000..a4714fd5d4 --- /dev/null +++ b/skins/ballena.scss @@ -0,0 +1,14 @@ +.ballena { + --primary-color: #f16340; + --bg-color: #1d3149; + --text-color: #00b5eb; + --link-color: #d8f2fe; + --heading-color: #fafafa; + --border-color: #49befa; + --header-bg: #1d3149; + --block-bg: #121e2c; + + #navbar { + border-bottom: 1px solid #d8f2fe !important; + } +} diff --git a/skins/bamboodefi.scss b/skins/bamboodefi.scss new file mode 100644 index 0000000000..57ded879c6 --- /dev/null +++ b/skins/bamboodefi.scss @@ -0,0 +1,10 @@ +.bamboodefi { + --primary-color: #7ac949; + --bg-color: white; + --text-color: black; + --link-color: black; + --heading-color: #111; + --border-color: #7ac949; + --header-bg: #7ac949; + --block-bg: transparent; +} diff --git a/skins/bancor.scss b/skins/bancor.scss new file mode 100644 index 0000000000..032f78c655 --- /dev/null +++ b/skins/bancor.scss @@ -0,0 +1,25 @@ +.bancor { + --primary-color: #10bbd8; + --bg-color: #18181a; + --text-color: #ffffff; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #000000; + --header-bg: #18181a; + --block-bg: transparent; + + #navbar { + background-color: #18181a; + border-bottom: 1px solid #ffffff !important; + } + + #navbar a, + #navbar .text-gray { + color: #ffffff !important; + } + + #navbar button { + border-color: #ffffff; + color: #ffffff; + } +} diff --git a/skins/barnbridge.scss b/skins/barnbridge.scss new file mode 100644 index 0000000000..0497b0dafb --- /dev/null +++ b/skins/barnbridge.scss @@ -0,0 +1,9 @@ +.barnbridge { + --primary-color: #FF4339; + --bg-color: #FFFFFF; + --text-color: #060A0D; + --link-color: #FF4339; + --heading-color: #060A0D; + --border-color: #E3E4E6; + --header-bg: #F8F8F9; +} diff --git a/spaces/based/skin.scss b/skins/based.scss similarity index 86% rename from spaces/based/skin.scss rename to skins/based.scss index b20e414c58..a60a1b82b7 100644 --- a/spaces/based/skin.scss +++ b/skins/based.scss @@ -3,7 +3,7 @@ --header-bg: #296788; --bg-color: #296788; --border-color: #F7ACB2; - --text-color: #fff; + --text-color: #F7ACB2; --link-color: #fff; --heading-color: #F7ACB2; } diff --git a/skins/basedloans.scss b/skins/basedloans.scss new file mode 100644 index 0000000000..93983c67fe --- /dev/null +++ b/skins/basedloans.scss @@ -0,0 +1,10 @@ +.basedloans { + --primary-color: #f8d754; + --bg-color: #009bca; + --text-color: #d9fbf1; + --link-color: #d5faf3; + --heading-color: #ffffff; + --border-color: #ffa7ab; + --header-bg: #007099; + --block-bg: transparent; +} \ No newline at end of file diff --git a/spaces/bee2/skin.scss b/skins/bee2.scss similarity index 100% rename from spaces/bee2/skin.scss rename to skins/bee2.scss diff --git a/skins/benchmark.scss b/skins/benchmark.scss new file mode 100644 index 0000000000..3f1de4c490 --- /dev/null +++ b/skins/benchmark.scss @@ -0,0 +1,14 @@ +.benchmark { + --primary-color: #2cf48b; + --bg-color: #000000; + --text-color: white; + --link-color: white; + --heading-color: white; + --border-color: #2cf48b; + --header-bg: #2a2e35; + --block-bg: transparent; + + #navbar { + border-bottom: 4px solid #2cf48b !important; + } +} diff --git a/skins/betswirl.scss b/skins/betswirl.scss new file mode 100644 index 0000000000..69892027c4 --- /dev/null +++ b/skins/betswirl.scss @@ -0,0 +1,15 @@ +.betswirl { + --primary-color: #5965f1; + --bg-color: #101420; + --text-color: #ffffff; + --link-color: white; + --heading-color: #fff; + --border-color: #818cf6; + --header-bg: #151b2b; + --block-bg: #151b2b; + + #navbar { + background-color: #151b2b; + border: none !important; + } +} diff --git a/skins/bgldao.scss b/skins/bgldao.scss new file mode 100644 index 0000000000..0dd95512b4 --- /dev/null +++ b/skins/bgldao.scss @@ -0,0 +1,16 @@ +.bgldao { + --primary-color: #ff5581; + --bg-color: #f0eeff; + --text-color: #707070; + --link-color: #00005e; + --heading-color: #8c55ff; + --border-color: #d1d5da; + --header-bg: #f0eeff; + --block-bg: white; + + #navbar { + border-bottom: 4px solid #00005e !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #00005e, #8c55ff); + } +} diff --git a/skins/blackpink.scss b/skins/blackpink.scss new file mode 100644 index 0000000000..c658f423d0 --- /dev/null +++ b/skins/blackpink.scss @@ -0,0 +1,10 @@ +.blackpink { + --primary-color: #EC6997; + --bg-color: #070307; + --text-color: #fff; + --link-color: #EC6997; + --heading-color: #4ED8DE; + --border-color: #424242; + --header-bg: #262626; + --block-bg: #0F0C0D; +} diff --git a/skins/blackpoolhq.scss b/skins/blackpoolhq.scss new file mode 100644 index 0000000000..977bb0eb61 --- /dev/null +++ b/skins/blackpoolhq.scss @@ -0,0 +1,10 @@ +.blackpoolhq { + --primary-color: #a1a1a1; + --bg-color: #000; + --text-color: #b1b1b1; + --link-color: #fff; + --heading-color: #fff; + --border-color: #888; + --header-bg: #000; + --block-bg: transparent; +} diff --git a/skins/blockzerolabs.scss b/skins/blockzerolabs.scss new file mode 100644 index 0000000000..7c9ec3b782 --- /dev/null +++ b/skins/blockzerolabs.scss @@ -0,0 +1,9 @@ +.blockzerolabs { + --primary-color: #5ad98d; + --bg-color: #000; + --text-color: #586069; + --link-color: #fff; + --heading-color: #fff; + --border-color: #353d45; + --header-bg: #151617; +} diff --git a/skins/bloody.scss b/skins/bloody.scss new file mode 100644 index 0000000000..057a37759d --- /dev/null +++ b/skins/bloody.scss @@ -0,0 +1,9 @@ +.bloody { + --primary-color: #000000; + --bg-color: #fc4448; + --text-color: #611215; + --link-color: #000000; + --heading-color: #000000; + --border-color: #ffffff80; + --header-bg: #fc4b50; +} diff --git a/spaces/boosted-finance/skin.scss b/skins/boosted-finance.scss similarity index 100% rename from spaces/boosted-finance/skin.scss rename to skins/boosted-finance.scss diff --git a/skins/breederdao-space.scss b/skins/breederdao-space.scss new file mode 100644 index 0000000000..a5aff98a19 --- /dev/null +++ b/skins/breederdao-space.scss @@ -0,0 +1,10 @@ +.breederdao-space { + --primary-color: #00e9ba; + --bg-color: #080b1d; + --text-color: #ffffff; + --link-color: #00e9ba; + --heading-color: #00e9ba; + --border-color: #1f2959; + --header-bg: #1f2959; + --block-bg: transparent; +} diff --git a/skins/breederdao.scss b/skins/breederdao.scss new file mode 100644 index 0000000000..2aad48a559 --- /dev/null +++ b/skins/breederdao.scss @@ -0,0 +1,10 @@ +.breederdao { + --primary-color: #00E9BA; + --bg-color: #080B1D; + --text-color: #FFFFFF; + --link-color: #FFFFFF; + --heading-color: #00E9BA; + --border-color: #1F2959; + --header-bg: #1F2959; + --block-bg: transparent; +} diff --git a/skins/calciumcrew.scss b/skins/calciumcrew.scss new file mode 100644 index 0000000000..d2b2fd2d25 --- /dev/null +++ b/skins/calciumcrew.scss @@ -0,0 +1,10 @@ +.calciumcrew { + --primary-color: #3d3561; + --bg-color: #0c033a; + --text-color: #ffffff; + --link-color: #d8b4fe; + --heading-color: #0c033a; + --border-color: #3d3561; + --header-bg: #0c033a; + --block-bg: transparent; +} diff --git a/skins/capy.scss b/skins/capy.scss new file mode 100644 index 0000000000..a6ffb395c5 --- /dev/null +++ b/skins/capy.scss @@ -0,0 +1,10 @@ +.capy { + --primary-color: #7453fa; + --bg-color: white; + --text-color: #000; + --link-color: #7453fa; + --heading-color: #7453fa; + --border-color: #DDDDF9; + --header-bg: white; + --block-bg: #D2D2F3; +} \ No newline at end of file diff --git a/skins/cargo.scss b/skins/cargo.scss new file mode 100644 index 0000000000..812e62a279 --- /dev/null +++ b/skins/cargo.scss @@ -0,0 +1,10 @@ +.cargo { + --primary-color: #1766ff; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/carrotswap.scss b/skins/carrotswap.scss new file mode 100644 index 0000000000..a498c2bac1 --- /dev/null +++ b/skins/carrotswap.scss @@ -0,0 +1,9 @@ +.carrotswap { + --primary-color: hsla(0,0%,100%,0.13); + --bg-color: orange; + --text-color: #1e1e1e; + --link-color: #1e1e1e; + --heading-color: #1e1e1e; + --border-color: rgba(82, 103, 75, .49); + --header-bg: #f19d37; +} \ No newline at end of file diff --git a/skins/castello-community.scss b/skins/castello-community.scss new file mode 100644 index 0000000000..e331d3e4bd --- /dev/null +++ b/skins/castello-community.scss @@ -0,0 +1,10 @@ +.castello-community { + --primary-color: #277768; + --bg-color: #15171b; + --text-color: #8b949e; + --link-color: #EDC84F; + --heading-color: #fff; + --border-color: #2d2d2d; + --header-bg: #111; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/chadsvc.scss b/skins/chadsvc.scss new file mode 100644 index 0000000000..bb82bb0c52 --- /dev/null +++ b/skins/chadsvc.scss @@ -0,0 +1,9 @@ +.chadsvc { + --primary-color: #ffb5ff; + --header-bg: #124f45; + --bg-color: #124f45; + --border-color: #ffb5ff; + --text-color: #ffb5ff; + --link-color: #d85b86; + --heading-color: #ffb5ff; +} diff --git a/skins/charged-particles.scss b/skins/charged-particles.scss new file mode 100644 index 0000000000..acc959fb51 --- /dev/null +++ b/skins/charged-particles.scss @@ -0,0 +1,10 @@ +.charged-particles { + --primary-color: #b6004c; + --bg-color: #161726; + --text-color: #fff; + --link-color: #b9c3e8; + --heading-color: #b6004c; + --border-color: #5F6486; + --header-bg: #161726; + --block-bg: #161726; +} diff --git a/skins/chartex.scss b/skins/chartex.scss new file mode 100644 index 0000000000..f4bbfb034a --- /dev/null +++ b/skins/chartex.scss @@ -0,0 +1,10 @@ +.chartex { + --primary-color: #3b75f3; + --bg-color: #010629; + --text-color: #c2c5ca; + --link-color: #009ee2; + --heading-color: #3b75f3; + --border-color: #8fbde6; + --header-bg: #141821; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/choccyswap.scss b/skins/choccyswap.scss new file mode 100644 index 0000000000..06db94eab5 --- /dev/null +++ b/skins/choccyswap.scss @@ -0,0 +1,9 @@ +.choccyswap { + --primary-color: #d08d4d; + --bg-color: #351a1b; + --text-color: #fffdd2; + --link-color: #f8d29f; + --heading-color: #cd4d46; + --border-color: #d08d4d; + --header-bg: #6d3515; +} diff --git a/skins/clucoin.scss b/skins/clucoin.scss new file mode 100644 index 0000000000..1586591300 --- /dev/null +++ b/skins/clucoin.scss @@ -0,0 +1,16 @@ +.clucoin { + --primary-color: #ec008c; + --bg-color: #0a0909; + --text-color: #fff; + --link-color: #ec6997; + --heading-color: #ec008c; + --border-color: #424242; + --header-bg: 0a0909; + --block-bg: #0a0909; + + #navbar { + border-bottom: 4px solid #ec008c !important; + border-image-slice: 1; + border-image-source: linear-gradient(270deg, #ff008c, #bd0084); + } +} diff --git a/spaces/yearn/skin.scss b/skins/cofix.scss similarity index 95% rename from spaces/yearn/skin.scss rename to skins/cofix.scss index c5037c437e..b9165ac84d 100644 --- a/spaces/yearn/skin.scss +++ b/skins/cofix.scss @@ -1,4 +1,4 @@ -.yearn { +.cofix { --primary-color: #307fec; --bg-color: #f9fafb; --text-color: #949ca9; diff --git a/spaces/coin/skin.scss b/skins/coin.scss similarity index 100% rename from spaces/coin/skin.scss rename to skins/coin.scss diff --git a/skins/coinswap.scss b/skins/coinswap.scss new file mode 100644 index 0000000000..724c28a7c5 --- /dev/null +++ b/skins/coinswap.scss @@ -0,0 +1,10 @@ +.coinswap { + --primary-color: #12FFB8; + --bg-color: #16161D; + --text-color: white; + --link-color: rgba(255, 255, 255, 0.55); + --heading-color: white; + --border-color: rgba(255, 255, 255, 0.07); + --block-bg: rgba(255, 255, 255, 0.05); + --header-bg: rgba(255, 255, 255, 0.05); +} diff --git a/skins/complifi.scss b/skins/complifi.scss new file mode 100644 index 0000000000..ef88b1c784 --- /dev/null +++ b/skins/complifi.scss @@ -0,0 +1,21 @@ +.complifi { + --primary-color: #4aa1ff; + --bg-color: #fdfdfd; + --text-color: #0c1b32; + --link-color: #0c1b32; + --heading-color: #20150; + --border-color: #e0e0e0; + --header-bg: #ededf1; + --block-bg: #f5f5f7; +} + +.complifi-dark-mode { + --primary-color: #4aa1ff; + --bg-color: #05142c; + --text-color: #cccccc; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #2d3a4e; + --header-bg: #0c1b32; + --block-bg: #0c1b32; +} diff --git a/skins/complus.scss b/skins/complus.scss new file mode 100644 index 0000000000..5baf6d3ea8 --- /dev/null +++ b/skins/complus.scss @@ -0,0 +1,10 @@ +.complus { + --primary-color: #b22234; + --bg-color: #FFFFFF; + --text-color: #565b69; + --link-color: #000000; + --heading-color: #b22234; + --border-color: #e1e3e7; + --header-bg: #FFFFFF; + --block-bg: transparent; +} diff --git a/skins/conic.scss b/skins/conic.scss new file mode 100644 index 0000000000..8dc6f7c0ca --- /dev/null +++ b/skins/conic.scss @@ -0,0 +1,236 @@ +.conic { + --primary-color: #2079cf; + --bg-color: transparent; + --text-color: black; + --link-color: grey; + --heading-color: black; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: white; + + .bg-skin-bg { + background-color: white !important; + } + + #navbar { + background: repeating-linear-gradient( + to bottom, + #f4f4f4, + #eeeeee 2.5px, + #eeeeee 2.5px, + #f4f4f4 5px + ); + } + + #content { + background-image: url("https://conic.finance/static/media/background.29ed068f128f3334d0ac.jpg"); + background-repeat: no-repeat; + background-size: cover; + min-height: 100%; + } + + .modal .shell { + position: relative !important; + background-image: url(https://conic.finance/steel.jpg) !important; + background-repeat: repeat !important; + box-shadow: 0 5px 20px rgb(0 0 0 / 80%) !important; + border-top: solid 2px rgba(255, 255, 255, 0.8) !important; + border-bottom: solid 2px rgba(0, 0, 0, 0.8) !important; + border-radius: 1.2rem !important; + padding: 40px 0 0 0 !important; + border-right: none !important; + border-left: none !important; + overflow: hidden !important; + } + + .modal .shell::after { + content: ""; + width: 100px; + height: 30px; + position: absolute; + top: 8px; + left: 8px; + background-image: url(https://i.imgur.com/DhqVTnt.png); + background-size: 87px; + background-repeat: no-repeat; + } + + .bg-skin-block-bg { + position: relative !important; + background-image: url(https://conic.finance/steel.jpg) !important; + background-repeat: repeat !important; + box-shadow: 0 5px 20px rgb(0 0 0 / 80%) !important; + border-top: solid 2px rgba(255, 255, 255, 0.8) !important; + border-bottom: solid 2px rgba(0, 0, 0, 0.8) !important; + border-radius: 1.2rem !important; + padding: 40px 0 0 0 !important; + border-right: none !important; + border-left: none !important; + overflow: hidden !important; + } + + .bg-skin-block-bg::after { + content: ""; + width: 100px; + height: 30px; + position: absolute; + top: 8px; + left: 8px; + background-image: url(https://i.imgur.com/DhqVTnt.png); + background-size: 87px; + background-repeat: no-repeat; + } + + .bg-skin-block-bg > div { + background: repeating-linear-gradient( + to bottom, + #f4f4f4, + #eeeeee 2.5px, + #eeeeee 2.5px, + #f4f4f4 5px + ) !important; + border-radius: 0 !important; + padding: 24px !important; + } + + #content-left > div:nth-child(1) { + position: fixed; + top: 23px; + left: 23px; + height: 100px; + z-index: 100000; + } + + #content-left > div:nth-child(2) { + position: relative !important; + background-image: url(https://conic.finance/steel.jpg) !important; + background-repeat: repeat !important; + box-shadow: 0 5px 20px rgb(0 0 0 / 80%) !important; + border-top: solid 2px rgba(255, 255, 255, 0.8) !important; + border-bottom: solid 2px rgba(0, 0, 0, 0.8) !important; + border-radius: 1.2rem !important; + padding: 40px 0 0 0 !important; + border-right: none !important; + border-left: none !important; + overflow: hidden !important; + } + + #content-left > div:nth-child(2) > div { + background: repeating-linear-gradient( + to bottom, + #f4f4f4, + #eeeeee 2.5px, + #eeeeee 2.5px, + #f4f4f4 5px + ) !important; + border-radius: 0 !important; + padding: 24px !important; + margin-bottom: 0 !important; + } + + #content-left > div:nth-child(2)::after { + content: ""; + width: 100px; + height: 30px; + position: absolute; + top: 8px; + left: 8px; + background-image: url(https://i.imgur.com/DhqVTnt.png); + background-size: 87px; + background-repeat: no-repeat; + } + + #content-left > div:nth-child(2) > h1 { + width: calc(100% - 100px); + line-height: 1 !important; + position: absolute; + right: 0; + top: 9px; + text-align: center; + font-size: 18px; + } + + #content-left > div:nth-child(2) > div > div { + margin: 0 !important; + } + + #content-left > div:nth-child(2) > div > div > button { + bottom: 10px; + } + + .button { + position: relative !important; + display: flex !important; + padding: 0 15px !important; + display: flex !important; + justify-content: center !important; + align-items: center !important; + box-shadow: 0 1px 2px 0px rgb(0 0 0 / 50%) !important; + overflow: hidden !important; + cursor: pointer !important; + background: linear-gradient(to bottom, #d0d0d0, #fdfdfd) !important; + border-bottom: solid 2px #808080 !important; + border-top: solid 2px #979797 !important; + border-right: solid 2px #979797 !important; + border-left: solid 2px #979797 !important; + color: black !important; + height: auto !important; + padding: 2px 15px !important; + } + + .button::after { + content: ""; + position: absolute; + width: 100%; + top: 0; + left: 0; + height: 40%; + background: white; + border-bottom-right-radius: 0.7rem; + border-bottom-left-radius: 0.7rem; + opacity: 0.55; + } + + .button--primary { + position: relative !important; + display: flex !important; + padding: 0 15px !important; + display: flex !important; + justify-content: center !important; + align-items: center !important; + box-shadow: 0 1px 2px 0px rgb(0 0 0 / 50%) !important; + overflow: hidden !important; + cursor: pointer !important; + background: linear-gradient(to bottom, #2079cf, #a0e7fc) !important; + border-bottom: solid 2px #808080 !important; + border-top: solid 2px #211e8d !important; + border-right: solid 2px #5597d5 !important; + border-left: solid 2px #5597d5 !important; + color: black !important; + padding: 2px 15px !important; + } + + .button--primary::after { + content: ""; + position: absolute; + width: 100%; + top: 0; + left: 0; + height: 40%; + background: white; + border-bottom-right-radius: 0.7rem; + border-bottom-left-radius: 0.7rem; + opacity: 0.35; + } + + .button--primary:disabled { + cursor: not-allowed !important; + filter: saturate(0) brightness(1.2) !important; + opacity: 0.7 !important; + } + + .button > .absolute { + position: absolute; + left: 10px; + } +} diff --git a/skins/contribute.scss b/skins/contribute.scss new file mode 100644 index 0000000000..b4b069750e --- /dev/null +++ b/skins/contribute.scss @@ -0,0 +1,10 @@ +.contribute { + --primary-color: #444049; + --bg-color: #28252c; + --text-color: #ffffff; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #db3bae; + --header-bg: #444049; + --block-bg: transparent; +} diff --git a/skins/cover.scss b/skins/cover.scss new file mode 100644 index 0000000000..8add1ce347 --- /dev/null +++ b/skins/cover.scss @@ -0,0 +1,9 @@ +.cover { + --primary-color: #b69fff; + --header-bg: #21222c; + --bg-color: #21222c; + --border-color: #b69fff; + --text-color: #b69fff; + --link-color: #ffffff; + --heading-color: #ffffff; +} diff --git a/skins/cryptopugz.scss b/skins/cryptopugz.scss new file mode 100644 index 0000000000..0f42dbfa55 --- /dev/null +++ b/skins/cryptopugz.scss @@ -0,0 +1,10 @@ +.cryptopugz { + --primary-color: #000000; + --bg-color: #0b0414; + --text-color: #ffffff; + --link-color: #ffffff; + --heading-color: #bc38fd; + --border-color: #83ff00; + --header-bg: #202230; + --block-bg: transparent; +} diff --git a/skins/cuni.scss b/skins/cuni.scss new file mode 100644 index 0000000000..855e8775fa --- /dev/null +++ b/skins/cuni.scss @@ -0,0 +1,10 @@ +.cuni { + --primary-color: #00D395; + --bg-color: #F9FAFB; + --text-color: #141E27; + --link-color: #00D395; + --heading-color: #070A0E; + --border-color: #AAB8C1; + --header-bg: #F9FAFB; + --block-bg: transparent; +} diff --git a/spaces/curve/skin.scss b/skins/curve.scss similarity index 100% rename from spaces/curve/skin.scss rename to skins/curve.scss diff --git a/skins/cyberkongz.scss b/skins/cyberkongz.scss new file mode 100644 index 0000000000..d04cf00ae3 --- /dev/null +++ b/skins/cyberkongz.scss @@ -0,0 +1,10 @@ +.cyberkongz { + --primary-color: #384aff; + --bg-color: #0b0414; + --text-color: #ffffff; + --link-color: #ffffff; + --heading-color: #ff00e5; + --border-color: #ff00e5; + --header-bg: #202230; + --block-bg: transparent; +} diff --git a/skins/dalmatians.scss b/skins/dalmatians.scss new file mode 100644 index 0000000000..dd11213c39 --- /dev/null +++ b/skins/dalmatians.scss @@ -0,0 +1,8 @@ +.dalmatians { + --primary-color: #d8a437; + --bg-color: #000; + --text-color: #999; + --link-color: #d8a437; + --heading-color: #fff; + --header-bg: #201e1e; +} diff --git a/skins/daniell-mesquita.scss b/skins/daniell-mesquita.scss new file mode 100644 index 0000000000..d395e99f8a --- /dev/null +++ b/skins/daniell-mesquita.scss @@ -0,0 +1,10 @@ +.daniell-mesquita { + --primary-color: #f74174; + --bg-color: #f74174; + --text-color: #fff; + --link-color: #fff; + --heading-color: #fff; + --border-color: #04b7bc; + --header-bg: #04b7bc; + --block-bg: transparent; +} diff --git a/spaces/daosquare/skin.scss b/skins/daosquare.scss similarity index 85% rename from spaces/daosquare/skin.scss rename to skins/daosquare.scss index 72903306f8..096d5339db 100644 --- a/spaces/daosquare/skin.scss +++ b/skins/daosquare.scss @@ -3,7 +3,7 @@ --bg-color: #F4EEF3; --text-color: #1F0817; --link-color: #1F0817; - --heading-color: #FFE9EE; + --heading-color: #000000; --border-color: #FF547D; --header-bg: #FFE9EE; } diff --git a/skins/darkmatter.scss b/skins/darkmatter.scss new file mode 100644 index 0000000000..5057e88842 --- /dev/null +++ b/skins/darkmatter.scss @@ -0,0 +1,9 @@ +.darkmatter { + --primary-color: #8809ab; + --bg-color: white; + --text-color: black; + --link-color: black; + --heading-color: black; + --border-color: #d905f5; + --header-bg: #d905f5; + } \ No newline at end of file diff --git a/skins/dawn.scss b/skins/dawn.scss new file mode 100644 index 0000000000..27bb5ecc1a --- /dev/null +++ b/skins/dawn.scss @@ -0,0 +1,7 @@ +.dawn { + --primary-color: #fc8071; + --block-bg: white; + --text-color: #0b0521; + --heading-color: #140b38; + --bg-color: #f9fafb; +} diff --git a/skins/debaseonomics.scss b/skins/debaseonomics.scss new file mode 100644 index 0000000000..e5e3c7f32c --- /dev/null +++ b/skins/debaseonomics.scss @@ -0,0 +1,10 @@ +.debaseonomics { + --primary-color: #923db3; + --bg-color: #212429; + --text-color: #f7f7f7; + --link-color: #f5468e; + --heading-color: #ff803f; + --border-color: #f7f7f7; + --header-bg: #212429; + --block-bg: transparent; +} diff --git a/skins/defiat.scss b/skins/defiat.scss new file mode 100644 index 0000000000..ef2f8de9dc --- /dev/null +++ b/skins/defiat.scss @@ -0,0 +1,10 @@ +.defiat { + --primary-color: #8355ff; + --bg-color: #221c57; + --text-color: #c2c5ca; + --link-color: #ba54f5; + --heading-color: #8355ff; + --header-bg: #1f2251; + --border-color: #e1e1e1; + --block-bg: #1f2251; +} \ No newline at end of file diff --git a/skins/depocket.scss b/skins/depocket.scss new file mode 100644 index 0000000000..d9b7f2f205 --- /dev/null +++ b/skins/depocket.scss @@ -0,0 +1,9 @@ +.depocket { + --primary-color: #f1712a; + --header-bg: none; + --bg-color: #f5f3f3; + --border-color: #e2d6cf; + --text-color: #2767AB; + --link-color: #2767ab; + --heading-color: #14559C; +} diff --git a/skins/derivadao.scss b/skins/derivadao.scss new file mode 100644 index 0000000000..7cece07e71 --- /dev/null +++ b/skins/derivadao.scss @@ -0,0 +1,9 @@ +.derivadao { + --primary-color: #ffffff; + --bg-color: #182039; + --text-color: #ffffff; + --link-color: #ef88aa; + --heading-color: #ffffff; + --border-color: #e2e8f0; + --header-bg: #161d33; +} diff --git a/skins/deversifi.scss b/skins/deversifi.scss new file mode 100644 index 0000000000..482c470196 --- /dev/null +++ b/skins/deversifi.scss @@ -0,0 +1,10 @@ +.deversifi { + --primary-color: #5500FC; + --bg-color: #0A1017; + --text-color: #B0C0E0; + --link-color: #FFFFFF; + --heading-color: #FFFFFF; + --border-color: #4C5978; + --header-bg: #0A1017; + --block-bg: #27324B; +} diff --git a/skins/dewo.scss b/skins/dewo.scss new file mode 100644 index 0000000000..bcb475a2ec --- /dev/null +++ b/skins/dewo.scss @@ -0,0 +1,10 @@ +.dewo { + --primary-color: #002460; + --bg-color: white; + --text-color: #076BDB; + --link-color: #111111; + --heading-color: #002460; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/dextfprotocol.scss b/skins/dextfprotocol.scss new file mode 100644 index 0000000000..c97a05231c --- /dev/null +++ b/skins/dextfprotocol.scss @@ -0,0 +1,9 @@ +.dextfprotocol { + --primary-color: #00ff00; + --bg-color: #0f1011; + --text-color: #586069; + --link-color: white; + --heading-color: white; + --border-color: #353d45; + --header-bg: #151617; +} diff --git a/spaces/dfi/skin.scss b/skins/dfi.scss similarity index 100% rename from spaces/dfi/skin.scss rename to skins/dfi.scss diff --git a/skins/dforce.scss b/skins/dforce.scss new file mode 100644 index 0000000000..c7189edaa2 --- /dev/null +++ b/skins/dforce.scss @@ -0,0 +1,10 @@ +.dforce { + --primary-color: #fa9b00; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: #f6f8fa; + --block-bg: transparent; +} diff --git a/skins/dfv.scss b/skins/dfv.scss new file mode 100644 index 0000000000..4e33ed3b5f --- /dev/null +++ b/skins/dfv.scss @@ -0,0 +1,10 @@ +.dfv { + --primary-color: #545454; + --header-bg: white; + --bg-color: #f3f4f4; + --border-color: #545454; + --text-color: #545454; + --link-color: #545454; + --heading-color: #545454; + --block-bg: transparent; +} diff --git a/skins/dhedge.scss b/skins/dhedge.scss new file mode 100644 index 0000000000..8f8fd5ba49 --- /dev/null +++ b/skins/dhedge.scss @@ -0,0 +1,9 @@ +.dhedge { + --primary-color: #00A0D0; + --bg-color: #0E0E0E; + --text-color: #C4C4C4; + --link-color: #00A0D0; + --heading-color: #FFFFFF; + --border-color: #1D1D3D; + --header-bg: #0A0225; +} diff --git a/skins/diadata.scss b/skins/diadata.scss new file mode 100644 index 0000000000..cbe30a1c85 --- /dev/null +++ b/skins/diadata.scss @@ -0,0 +1,9 @@ +.diadata { + --primary-color: #4f33ff; + --bg-color: #141414; + --text-color: #CCE0F4; + --link-color: #ff7096; + --heading-color: #CCE0F4; + --border-color: #00CCB7; + --header-bg: #141414; +} \ No newline at end of file diff --git a/skins/dinoswap.css b/skins/dinoswap.css new file mode 100644 index 0000000000..05a69ed0ad --- /dev/null +++ b/skins/dinoswap.css @@ -0,0 +1,10 @@ +.dinoswap { + --primary-color: #94cc76; + --bg-color: #ede6de; + --text-color: #527a2a; + --link-color: #405f21; + --heading-color: #527a2a; + --border-color: rgba(255, 255, 255, 0.2); + --header-bg: #eff5f1; + --block-bg: transparent; +} diff --git a/skins/dittomoney.scss b/skins/dittomoney.scss new file mode 100644 index 0000000000..d6fc4b352c --- /dev/null +++ b/skins/dittomoney.scss @@ -0,0 +1,11 @@ +.dittomoney { + --primary-color: #ed7ac0; + --bg-color: #424242; + --block-bg: transparent; + --text-color: #ffffff; + --border-color: #424242; + --link-color: #ed7ac0; + --heading-color: #ed7ac0; + --header-bg: #222222; + --block-bg: transparent; +} diff --git a/skins/dmc.scss b/skins/dmc.scss new file mode 100644 index 0000000000..15f92c7aeb --- /dev/null +++ b/skins/dmc.scss @@ -0,0 +1,10 @@ +.dmc { + --primary-color: #76EC1F; + --bg-color: white; + --text-color: #A5F986; + --link-color: #FCEB2D; + --heading-color: #A5F986; + --border-color: #51C028; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/dogeswap.scss b/skins/dogeswap.scss new file mode 100644 index 0000000000..1a7772cb85 --- /dev/null +++ b/skins/dogeswap.scss @@ -0,0 +1,9 @@ +.dogeswap { + --primary-color: #f1712a; + --header-bg: #ffbd49; + --bg-color: #fff; + --border-color: #fcf1e8; + --text-color: #f0791d; + --link-color: #f0791d; + --heading-color: #000; +} diff --git a/spaces/domo/skin.scss b/skins/domo.scss similarity index 95% rename from spaces/domo/skin.scss rename to skins/domo.scss index 5f090ced75..da6a636644 100644 --- a/spaces/domo/skin.scss +++ b/skins/domo.scss @@ -1,9 +1,9 @@ -.domo { - --primary-color: #00d0fc; - --bg-color: #f6f9fc; - --text-color: #6f7ca6; - --link-color: #20232c; - --heading-color: #20232c; - --border-color: #dde4e8; - --header-bg: #ffffff; +.domo { + --primary-color: #00d0fc; + --bg-color: #f6f9fc; + --text-color: #6f7ca6; + --link-color: #20232c; + --heading-color: #20232c; + --border-color: #dde4e8; + --header-bg: #ffffff; } \ No newline at end of file diff --git a/skins/dorg.scss b/skins/dorg.scss new file mode 100644 index 0000000000..aeba1530eb --- /dev/null +++ b/skins/dorg.scss @@ -0,0 +1,9 @@ +.dorg { + --primary-color: #1AAF71; + --bg-color: #000F3C; + --text-color: #ffffff99; + --link-color: #fff; + --heading-color: #1AAF71; + --border-color: #ffffff21; + --header-bg: transparent; +} \ No newline at end of file diff --git a/skins/dracula.scss b/skins/dracula.scss new file mode 100644 index 0000000000..2c36663f83 --- /dev/null +++ b/skins/dracula.scss @@ -0,0 +1,10 @@ +.dracula { + --primary-color: #dfeeff; + --header-bg: #221b24; + --bg-color: #14161a; + --border-color: #606870; + --text-color: #a0acba; + --link-color: #dfeeff; + --heading-color: #dfeeff; + --block-bg: #19181e; +} diff --git a/skins/dsgn.scss b/skins/dsgn.scss new file mode 100644 index 0000000000..efd49c0907 --- /dev/null +++ b/skins/dsgn.scss @@ -0,0 +1,10 @@ +.dsgn { + --primary-color: rgb(255, 66, 66); + --bg-color: #212529; + --text-color: #71777E; + --link-color: white; + --heading-color: white; + --border-color: #242629; + --header-bg: black; + --block-bg: transparent; +} diff --git a/skins/dsla.scss b/skins/dsla.scss new file mode 100644 index 0000000000..7d4072050f --- /dev/null +++ b/skins/dsla.scss @@ -0,0 +1,9 @@ +.dsla { + --primary-color: #2196f3; + --bg-color: #01070d; + --text-color: #8b949e; + --link-color: #fafafa; + --heading-color: #fafafa; + --border-color: #3d4752; + --header-bg: #01070d; +} \ No newline at end of file diff --git a/skins/easybake.scss b/skins/easybake.scss new file mode 100644 index 0000000000..71b3f0b5e4 --- /dev/null +++ b/skins/easybake.scss @@ -0,0 +1,10 @@ +.easybake { + --primary-color: #a993ff; + --bg-color: white; + --text-color: #000; + --link-color: #8262ff; + --heading-color: #7453fa; + --border-color: #cdcdf3; + --header-bg: white; + --block-bg: #D2D2F3; +} diff --git a/skins/egg.scss b/skins/egg.scss new file mode 100644 index 0000000000..09b2b8c707 --- /dev/null +++ b/skins/egg.scss @@ -0,0 +1,9 @@ +.egg { + --primary-color: #047f04; + --bg-color: #c0c0c0; + --text-color: #2f2f2f; + --link-color: #0d0d0d; + --heading-color: #0d0d0d; + --border-color: #6b6b6b; + --header-bg: #3465a3; +} diff --git a/skins/elementfinance.scss b/skins/elementfinance.scss new file mode 100644 index 0000000000..fd110317aa --- /dev/null +++ b/skins/elementfinance.scss @@ -0,0 +1,16 @@ +.elementfinance { + --primary-color: #005ebe; + --bg-color: #f1f5fe; + --text-color: #979797; + --link-color: #75c7ee; + --heading-color: #75c7ee; + --border-color: #d1d5da; + --header-bg: #f7f7f7; + --block-bg: white; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #78d3e2, #005ebe); + } +} diff --git a/skins/emptysetgold.scss b/skins/emptysetgold.scss new file mode 100644 index 0000000000..8949313043 --- /dev/null +++ b/skins/emptysetgold.scss @@ -0,0 +1,9 @@ +.emptysetgold { + --primary-color: #ffcf71; + --bg-color: #1a1611; + --text-color: white; + --link-color: #ffcf71; + --heading-color: lightgrey; + --border-color: #26272c; + --header-bg: #26272c; +} diff --git a/skins/esprezzo.scss b/skins/esprezzo.scss new file mode 100644 index 0000000000..98731647f5 --- /dev/null +++ b/skins/esprezzo.scss @@ -0,0 +1,9 @@ +.esprezzo { + --primary-color: #FF284F; + --bg-color: #201C38; + --text-color: #FFF; + --link-color: #FF8AA4; + --heading-color: #EAEEF1; + --border-color: #FF4F6F; + --header-bg: #0B1124; +} diff --git a/skins/etgfinance.scss b/skins/etgfinance.scss new file mode 100644 index 0000000000..c83733dafb --- /dev/null +++ b/skins/etgfinance.scss @@ -0,0 +1,9 @@ +.etgfinance { + --primary-color: #384aff; + --bg-color: #0f1011; + --text-color: #586069; + --link-color: white; + --heading-color: white; + --border-color: #353d45; + --header-bg: #151617; +} \ No newline at end of file diff --git a/skins/evoland.scss b/skins/evoland.scss new file mode 100644 index 0000000000..6a9c639768 --- /dev/null +++ b/skins/evoland.scss @@ -0,0 +1,9 @@ +.evoland { + --primary-color:#479bff; + --header-bg:#000000; + --bg-color:#1b182f; + --border-color:#1d506e; + --text-color:#0eb7c7; + --link-color:#479bff; + --heading-color:#6ff +} diff --git a/spaces/example/skin.scss b/skins/example.scss similarity index 94% rename from spaces/example/skin.scss rename to skins/example.scss index c1ac446fac..2d8ed8df7f 100644 --- a/spaces/example/skin.scss +++ b/skins/example.scss @@ -1,4 +1,4 @@ -.name { +.example { --primary-color: #384aff; --bg-color: white; --text-color: #586069; diff --git a/skins/expectchaos.scss b/skins/expectchaos.scss new file mode 100644 index 0000000000..87ae3fd405 --- /dev/null +++ b/skins/expectchaos.scss @@ -0,0 +1,10 @@ +.expectchaos { + --primary-color: #d2023e; + --bg-color: #000; + --text-color: #8b949e; + --link-color: #f5f5f5; + --heading-color: #e2e2e2; + --border-color: #424242; + --header-bg: #111; + --block-bg: transparent; +} diff --git a/skins/fairmoon.scss b/skins/fairmoon.scss new file mode 100644 index 0000000000..2dadbc5bef --- /dev/null +++ b/skins/fairmoon.scss @@ -0,0 +1,10 @@ +.fairmoon { + --primary-color: #0e78b2; + --header-bg: #3c88a8; + --bg-color: #091744; + --border-color: #3c88a8; + --text-color: #FFFFFF; + --link-color: #d3e1e4; + --heading-color: #FFFFFF; + --block-bg: transparent; +} diff --git a/spaces/farm/skin.scss b/skins/farm.scss similarity index 100% rename from spaces/farm/skin.scss rename to skins/farm.scss diff --git a/skins/fei.scss b/skins/fei.scss new file mode 100644 index 0000000000..363db850a9 --- /dev/null +++ b/skins/fei.scss @@ -0,0 +1,10 @@ +.fei { + --primary-color: #178DD0; + --bg-color: #080C24; + --header-bg: #080C24; + --heading-color: white; + --text-color: #e4e4e4; + --link-color: #0084CE; + --border-color: #d1d5da; + --block-bg: transparent; +} diff --git a/skins/flamingo.scss b/skins/flamingo.scss new file mode 100644 index 0000000000..3c469ef3ca --- /dev/null +++ b/skins/flamingo.scss @@ -0,0 +1,9 @@ +.flamingo { + --primary-color: #000000; + --header-bg: #000000; + --bg-color: #534f44; + --border-color: #FF69B4; + --text-color: #FFFFFF; + --link-color: #89cff0; + --heading-color: #89cff0; +} diff --git a/skins/flush.scss b/skins/flush.scss new file mode 100644 index 0000000000..af84b3641f --- /dev/null +++ b/skins/flush.scss @@ -0,0 +1,9 @@ +.flush { + --primary-color: #7970bf; + --header-bg: #1a1721; + --bg-color: #241f2c; + --border-color: rgba(0, 0, 0,.5); + --text-color: rgba(255, 255, 255, .7); + --link-color: #FFF; + --heading-color: #FFF; +} diff --git a/skins/fnx.scss b/skins/fnx.scss new file mode 100644 index 0000000000..399999f3d3 --- /dev/null +++ b/skins/fnx.scss @@ -0,0 +1,9 @@ +.fnx { + --primary-color: #f1712a; + --header-bg: #f7f4f2; + --bg-color: #f0e9e7; + --border-color: #e2d6cf; + --text-color: #aa9585; + --link-color: #5b3926; + --heading-color: #5b3926; +} diff --git a/skins/fortube.scss b/skins/fortube.scss new file mode 100644 index 0000000000..727457e58f --- /dev/null +++ b/skins/fortube.scss @@ -0,0 +1,10 @@ +.fortube { + --primary-color: #1f9685; + --bg-color:#f2f9fa; + --text-color: #38c1ad; + --link-color: #000000; + --heading-color: #909c9b; + --border-color: #5bd8c6; + --header-bg: none; + --block-bg: transparent; +} diff --git a/skins/forward.scss b/skins/forward.scss new file mode 100644 index 0000000000..67405a6656 --- /dev/null +++ b/skins/forward.scss @@ -0,0 +1,10 @@ +.forward { + --primary-color: #6EC1E4; + --bg-color: #f8fbf3; + --text-color: #7A7A7A; + --link-color:#111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: #f8fbf3; + --block-bg: white; + } \ No newline at end of file diff --git a/skins/frankendefi.scss b/skins/frankendefi.scss new file mode 100644 index 0000000000..2594adc1e3 --- /dev/null +++ b/skins/frankendefi.scss @@ -0,0 +1,10 @@ +.frankendefi { + --primary-color: #CCF66C; + --bg-color: #05090B; + --text-color: #d4d8ca; + --link-color: #CCF66C; + --heading-color: #B9DE62; + --border-color: #516471; + --header-bg: #3C4E5A; + --block-bg: #16242E; +} \ No newline at end of file diff --git a/skins/fries.scss b/skins/fries.scss new file mode 100644 index 0000000000..b59eb3e4e7 --- /dev/null +++ b/skins/fries.scss @@ -0,0 +1,10 @@ +.fries { + --primary-color: #e59400; + --bg-color: #020213; + --text-color: #ffb800; + --link-color: #ae7e02; + --heading-color: #ffb800; + --border-color: #3e2905; + --header-bg: #020213; + --block-bg: transparent; +} diff --git a/skins/frontier.scss b/skins/frontier.scss new file mode 100644 index 0000000000..becce48c7c --- /dev/null +++ b/skins/frontier.scss @@ -0,0 +1,10 @@ +.frontier { + --primary-color: #ad6037; + --bg-color: white; + --text-color: #2a1f21; + --link-color: #ad6037; + --heading-color: #291a18; + --border-color: #e9e8e8; + --header-bg: #f8eee4; + --block-bg: transparent; +} diff --git a/skins/galleon.scss b/skins/galleon.scss new file mode 100644 index 0000000000..09f2666e95 --- /dev/null +++ b/skins/galleon.scss @@ -0,0 +1,10 @@ +.galleon { + --primary-color: #178DD0; + --bg-color: #080C24; + --header-bg: #080C24; + --heading-color: white; + --text-color: #e4e4e4; + --link-color: #0084CE; + --border-color: #d1d5da; + --block-bg: transparent; +} diff --git a/skins/gamer.scss b/skins/gamer.scss new file mode 100644 index 0000000000..c0184e8bd6 --- /dev/null +++ b/skins/gamer.scss @@ -0,0 +1,10 @@ +.gamer { + --primary-color: #800080; + --bg-color: #8B77D9; + --text-color: #ffffff; + --link-color: #ffffff; + --heading-color: #5b2839; + --border-color: #d6d0d1; + --header-bg: #534782; +} + diff --git a/skins/gatenet.scss b/skins/gatenet.scss new file mode 100644 index 0000000000..7146ab9deb --- /dev/null +++ b/skins/gatenet.scss @@ -0,0 +1,11 @@ +.gatenet, .gatenet-dark-mode{ + --primary-color: #c550e4; + --bg-color: #0e1757; + --text-color: #fff; + --link-color: #c550e4; + --heading-color: #FFF; + --border-color: #e0e0e0; + --header-bg: #0e1757; + --block-bg: transparent; + --shadow-color: #0001; +} diff --git a/spaces/gem/skin.scss b/skins/gem.scss similarity index 100% rename from spaces/gem/skin.scss rename to skins/gem.scss diff --git a/skins/gene-finance.scss b/skins/gene-finance.scss new file mode 100644 index 0000000000..d9249afbfe --- /dev/null +++ b/skins/gene-finance.scss @@ -0,0 +1,9 @@ +.gene-finance { + --primary-color: #307fec; + --bg-color : #f9fafb; + --text-color : #949ca9; + --link-color : #212529; + --heading-color: #212529; + --border-color : #e1e1e1; + --header-bg : white; +} diff --git a/skins/gitcoin.scss b/skins/gitcoin.scss new file mode 100644 index 0000000000..8dc959d812 --- /dev/null +++ b/skins/gitcoin.scss @@ -0,0 +1,10 @@ +.gitcoin { + --primary-color: #0FCE7C; + --bg-color: #ffffff; + --text-color: #586069; + --link-color: #111111; + --heading-color: #0FCE7C; + --border-color: #e1e3e7; + --header-bg: white; + --block-bg: transparent; +} diff --git a/spaces/giveth/skin.scss b/skins/giveth.scss similarity index 100% rename from spaces/giveth/skin.scss rename to skins/giveth.scss diff --git a/skins/gmt.scss b/skins/gmt.scss new file mode 100644 index 0000000000..f5e7b2457a --- /dev/null +++ b/skins/gmt.scss @@ -0,0 +1,9 @@ +.gmt { + --primary-color: #047f04; + --bg-color: #FBCDB7; + --text-color: #28C95D; + --link-color: #0d0d0d; + --heading-color: #1B2738; + --border-color: #ED6508; + --header-bg: #ED6508; +} diff --git a/skins/gnometoken.scss b/skins/gnometoken.scss new file mode 100644 index 0000000000..76f5831cac --- /dev/null +++ b/skins/gnometoken.scss @@ -0,0 +1,11 @@ +.gnometoken { + --primary-color: #22a19a; + --bg-color: white; + --text-color: #141e27; + --link-color: #22a19a; + --heading-color: #070a0e; + --border-color: #aab8c1; + --header-bg: white; + --block-bg: transparent; +} + diff --git a/skins/gnosis.scss b/skins/gnosis.scss new file mode 100644 index 0000000000..c4704b4161 --- /dev/null +++ b/skins/gnosis.scss @@ -0,0 +1,10 @@ +.gnosis { + --primary-color: #028c73; + --bg-color: #f5f5f5; + --text-color: #202020; + --link-color: #001527; + --heading-color: #001527; + --border-color: #d4d5d3; + --header-bg: white; + --block-bg: white; +} diff --git a/skins/goatcoin.scss b/skins/goatcoin.scss new file mode 100644 index 0000000000..026b02e643 --- /dev/null +++ b/skins/goatcoin.scss @@ -0,0 +1,10 @@ +.goatcoin { + --primary-color: #ffa132; + --bg-color: #694f31; + --text-color: white; + --link-color: white; + --heading-color: white; + --border-color: #586069; + --header-bg: #f7c041; + --block-bg: transparent; +} diff --git a/skins/gogoprotocol.scss b/skins/gogoprotocol.scss new file mode 100644 index 0000000000..d9bae2491e --- /dev/null +++ b/skins/gogoprotocol.scss @@ -0,0 +1,11 @@ +.gogoprotocol { + --primary-color: #e56b6f; + --bg-color: hsl(270deg 15% 18%); + --text-color: #A5AEBC; + --link-color: hsl(0deg 0% 100%); + --heading-color: #e56b6f; + --border-color: hsl(358deg 19% 66% / 20%); + --header-bg: #1c1b20; + --block-bg: transparent; + --shadow-color: #fff1; +} diff --git a/skins/gokai.scss b/skins/gokai.scss new file mode 100644 index 0000000000..51b7a6ea0b --- /dev/null +++ b/skins/gokai.scss @@ -0,0 +1,10 @@ +.gokai { + --primary-color: darkgray; + --bg-color: black; + --text-color: #9c8655; + --link-color: #8dc76b; + --heading-color: #f2f1f0; + --border-color: #3a3b3c; + --header-bg: black; + --block-bg: black; +} diff --git a/skins/golff.scss b/skins/golff.scss new file mode 100644 index 0000000000..34af3f09f9 --- /dev/null +++ b/skins/golff.scss @@ -0,0 +1,9 @@ +.golff { + --primary-color: #118b80; + --bg-color: #f1f8f2; + --text-color: #949ca9; + --link-color: #212529; + --heading-color: #212529; + --border-color: #e1e1e1; + --header-bg: white; +} \ No newline at end of file diff --git a/spaces/grap/skin.scss b/skins/grap.scss similarity index 100% rename from spaces/grap/skin.scss rename to skins/grap.scss diff --git a/skins/greytoken.scss b/skins/greytoken.scss new file mode 100644 index 0000000000..6e121c4c64 --- /dev/null +++ b/skins/greytoken.scss @@ -0,0 +1,9 @@ +.greytoken { + --primary-color: #63C194; + --bg-color: black; + --text-color: #63C194; + --link-color: white; + --heading-color: #BCBEC0; + --border-color: #63C194; + --header-bg: black; +} diff --git a/skins/griffin.scss b/skins/griffin.scss new file mode 100644 index 0000000000..0b153a3339 --- /dev/null +++ b/skins/griffin.scss @@ -0,0 +1,10 @@ +.griffin { + --primary-color: #ff6348; + --bg-color: #282828; + --text-color: #aeaeae; + --link-color: #ffffff; + --heading-color: #ff6348; + --border-color: #000000; + --header-bg: #1f1f1f; + --block-bg: transparent; +} diff --git a/skins/halodao.scss b/skins/halodao.scss new file mode 100644 index 0000000000..fb44eb910c --- /dev/null +++ b/skins/halodao.scss @@ -0,0 +1,14 @@ +.halodao { + --bg-color: #fbfaff; + --text-color: #4f4f4f; + --link-color: #471bb2; + --heading-color: #111111; + --border-color: #471bb2; + --header-bg: #ffffff; + --block-bg: #ffffff; + + #navbar { + background-color: #ffffff; + border-bottom: 1px solid #15006d !important; + } +} diff --git a/skins/hifi-finance.scss b/skins/hifi-finance.scss new file mode 100644 index 0000000000..caf562e67e --- /dev/null +++ b/skins/hifi-finance.scss @@ -0,0 +1,9 @@ +.hifi-finance { + --primary-color: #6e2ef4; + --bg-color: #101010; + --text-color: #a2a2a2; + --link-color: #fff; + --heading-color: #fff; + --border-color: #353d45; + --header-bg: #202020; +} diff --git a/skins/hopr.scss b/skins/hopr.scss new file mode 100644 index 0000000000..9fbb6c7183 --- /dev/null +++ b/skins/hopr.scss @@ -0,0 +1,9 @@ +.hopr { + --primary-color: #414141; + --bg-color: #ffffff; + --text-color: #414141; + --link-color: #414141; + --heading-color: #414141; + --border-color: #414141; + --header-bg: #fffda4; +} diff --git a/skins/hubdao.scss b/skins/hubdao.scss new file mode 100644 index 0000000000..f2407c6a7d --- /dev/null +++ b/skins/hubdao.scss @@ -0,0 +1,10 @@ +.hubdao { + --primary-color: #ff007a; + --bg-color: #ffffff; + --text-color: #565b69; + --link-color: #000000; + --heading-color: #ff007a; + --border-color: #e1e3e7; + --header-bg: #ffffff; + --block-bg: transparent; +} diff --git a/skins/hurricane.scss b/skins/hurricane.scss new file mode 100644 index 0000000000..d76f5ad04e --- /dev/null +++ b/skins/hurricane.scss @@ -0,0 +1,9 @@ +.hurricane { + --primary-color: rgb(110, 163, 238); + --bg-color: #ffffff; + --text-color: #343a40; + --link-color: #242975; + --heading-color: #242975; + --border-color: rgb(12, 84, 142); + --header-bg: #c8e8ff; +} \ No newline at end of file diff --git a/skins/ilv.scss b/skins/ilv.scss new file mode 100644 index 0000000000..a19d173b5b --- /dev/null +++ b/skins/ilv.scss @@ -0,0 +1,9 @@ +.ilv { + --primary-color: #bf64e3; + --bg-color: #06051d; + --text-color: #767489; + --link-color: #bf64e3; + --heading-color: #ffffff; + --border-color: #1d1d3d; + --header-bg: #0a0225; +} diff --git a/skins/imsuperleague.scss b/skins/imsuperleague.scss new file mode 100644 index 0000000000..1a03f7ee1f --- /dev/null +++ b/skins/imsuperleague.scss @@ -0,0 +1,10 @@ +.imsuperleague { + --primary-color: darkgoldenrod; + --bg-color: #fff; + --text-color: #586069; + --link-color: #111; + --heading-color: #111; + --border-color: darkgoldenrod; + --header-bg: #fff; + --block-bg: transparent; +} diff --git a/skins/index.js b/skins/index.js new file mode 100644 index 0000000000..3b16b608bc --- /dev/null +++ b/skins/index.js @@ -0,0 +1,615 @@ +import aave from './aave.scss'; +import aitech from './aitech.scss'; +import cryptopugz from './cryptopugz.scss'; +import aavegotchi from './aavegotchi.scss'; +import achievmintry from './achievmintry.scss'; +import acoconutbsc from './acoconutbsc.scss'; +import adex from './adex.scss'; +import madskullz from './madskullz.scss'; +import adventureland from './adventureland.scss'; +import agdeportes from './agdeportes.scss'; +import airswap from './airswap.scss'; +import akropolisDelphi from './akropolis-delphi.scss'; +import alchemistdefi from './alchemistdefi.scss'; +import alpaca from './alpaca.scss'; +import alpha from './alpha.scss'; +import choccyswap from './choccyswap.scss'; +import altrucoin from './altrucoin.scss'; +import amp from './amp.scss'; +import ampleforth from './ampleforth.scss'; +import anjmol from './anjmol.scss'; +import apeswap from './apeswap.scss'; +import apetroop from './apetroop.scss'; +import apy from './apy.scss'; +import aragon from './aragon.scss'; +import aragonchina from './aragonchina.scss'; +import arckyf from './arckyf.scss'; +import mero from './mero.scss'; +import badger from './badger.scss'; +import bancor from './bancor.scss'; +import bake from './bake.scss'; +import balancer from './balancer.scss'; +import ballena from './ballena.scss'; +import bamboodefi from './bamboodefi.scss'; +import barnbridge from './barnbridge.scss'; +import dmc from './dmc.scss'; +import planetmemes from './planetmemes.scss'; +import based from './based.scss'; +import basedloans from './basedloans.scss'; +import bee2 from './bee2.scss'; +import benchmark from './benchmark.scss'; +import betswirl from './betswirl.scss'; +import breederdaoSpace from './breederdao-space.scss'; +import blackpink from './blackpink.scss'; +import blackpoolhq from './blackpoolhq.scss'; +import blockzerolabs from './blockzerolabs.scss'; +import bloody from './bloody.scss'; +import boostedFinance from './boosted-finance.scss'; +import calciumcrew from './calciumcrew.scss'; +import capy from './capy.scss'; +import cargo from './cargo.scss'; +import carrotswap from './carrotswap.scss'; +import castelloCommunity from './castello-community.scss'; +import chadsvc from './chadsvc.scss'; +import chargedParticles from './charged-particles.scss'; +import chartex from './chartex.scss'; +import clucoin from './clucoin.scss'; +import cofix from './cofix.scss'; +import coin from './coin.scss'; +import coinswap from './coinswap.scss'; +import complus from './complus.scss'; +import conic from './conic.scss'; +import contribute from './contribute.scss'; +import cover from './cover.scss'; +import cuni from './cuni.scss'; +import curve from './curve.scss'; +import dalmatians from './dalmatians.scss'; +import daniellMesquita from './daniell-mesquita.scss'; +import darkmatter from './darkmatter.scss'; +import deversifi from './deversifi.scss'; +import daosquare from './daosquare.scss'; +import dawn from './dawn.scss'; +import debaseonomics from './debaseonomics.scss'; +import defiat from './defiat.scss'; +import depocket from './depocket.scss'; +import derivadao from './derivadao.scss'; +import dextfprotocol from './dextfprotocol.scss'; +import dfi from './dfi.scss'; +import dforce from './dforce.scss'; +import dfv from './dfv.scss'; +import dhedge from './dhedge.scss'; +import diadata from './diadata.scss'; +import dinoswap from './dinoswap.css'; +import dittomoney from './dittomoney.scss'; +import dogeswap from './dogeswap.scss'; +import domo from './domo.scss'; +import dorg from './dorg.scss'; +import dracula from './dracula.scss'; +import dsgn from './dsgn.scss'; +import dsla from './dsla.scss'; +import easybake from './easybake.scss'; +import egg from './egg.scss'; +import elementfinance from './elementfinance.scss'; +import emptysetgold from './emptysetgold.scss'; +import esprezzo from './esprezzo.scss'; +import etgfinance from './etgfinance.scss'; +import evoland from './evoland.scss'; +import example from './example.scss'; +import expectchaos from './expectchaos.scss'; +import fairmoon from './fairmoon.scss'; +import farm from './farm.scss'; +import fei from './fei.scss'; +import flamingo from './flamingo.scss'; +import flush from './flush.scss'; +import fnx from './fnx.scss'; +import fortube from './fortube.scss'; +import frankendefi from './frankendefi.scss'; +import fries from './fries.scss'; +import frontier from './frontier.scss'; +import galleon from './galleon.scss'; +import gamer from './gamer.scss'; +import gatenet from './gatenet.scss'; +import gem from './gem.scss'; +import geneFinance from './gene-finance.scss'; +import gitcoin from './gitcoin.scss'; +import giveth from './giveth.scss'; +import gmt from './gmt.scss'; +import gnometoken from './gnometoken.scss'; +import gnosis from './gnosis.scss'; +import goatcoin from './goatcoin.scss'; +import gokai from './gokai.scss'; +import golff from './golff.scss'; +import grap from './grap.scss'; +import greytoken from './greytoken.scss'; +import griffin from './griffin.scss'; +import halodao from './halodao.scss'; +import hifiFinance from './hifi-finance.scss'; +import hopr from './hopr.scss'; +import hubdao from './hubdao.scss'; +import hurricane from './hurricane.scss'; +import ilv from './ilv.scss'; +import imsuperleague from './imsuperleague.scss'; +import index from './index.scss'; +import indexed from './indexed.scss'; +import ironbank from './ironbank.scss'; +import itam from './itam.scss'; +import iwan from './iwan.scss'; +import iyffinance from './iyffinance.scss'; +import jiaozi from './jiaozi.scss'; +import julpad from './julpad.scss'; +import julswap from './julswap.scss'; +import kebabfinance from './kebabfinance.scss'; +import keyfi from './keyfi.scss'; +import kleros from './kleros.scss'; +import kogecoin from './kogecoin.scss'; +import kuhoge from './kuhoge.scss'; +import lakanInteractive from './lakan-interactive.scss'; +import lao from './lao.scss'; +import lido from './lido.scss'; +import light from './light.scss'; +import limitswap from './limitswap.scss'; +import liquiddriver from './liquiddriver.scss'; +import longterm from './longterm.scss'; +import love from './love.scss'; +import macaronswap from './macaronswap.scss'; +import magicbalancer from './magicbalancer.scss'; +import maker from './maker.scss'; +import mate from './mate.scss'; +import mantraDao from './mantra-dao.scss'; +import masknetwork from './masknetwork.scss'; +import mee from './mee.scss'; +import metacartel from './metacartel.scss'; +import metafactory from './metafactory.scss'; +import metatopia from './metatopia.scss'; +import metfiDao from './metfi-dao.scss'; +import mettalex from './mettalex.scss'; +import mithcash from './mithcash.scss'; +import momentum from './momentum.scss'; +import morpho from './morpho.scss'; +import moonpotdotcom from './moonpotdotcom.scss'; +import moonswap from './moonswap.scss'; +import moontools from './moontools.scss'; +import moonvault from './moonvault.scss'; +import moonwell from './moonwell.scss'; +import moonwellApollo from './moonwell-apollo.scss'; +import mstable from './mstable.scss'; +import multiplier from './multiplier.scss'; +import music from './music.scss'; +import mybit from './mybit.scss'; +import narwhal from './narwhal.scss'; +import nation3 from './nation3.scss'; +import nest from './nest.scss'; +import neverlose from './neverlose.scss'; +import nftgoddess from './nftgoddess.scss'; +import nice from './nice.scss'; +import oaklanddao from './oaklanddao.scss'; +import oceandao from './oceandao.scss'; +import octofi from './octofi.scss'; +import omg from './omg.scss'; +import origin from "./origin.scss"; +import paladin from './paladin.scss'; +import pancake from './pancake.scss'; +import pandayield from './pandayield.scss'; +import penguinParty from './penguin-party.scss'; +import pickle from './pickle.scss'; +import piedao from './piedao.scss'; +import plantswap from './plantswap.scss'; +import poh from './poh.scss'; +import pok from './pok.scss'; +import poktNetwork from './pokt-network.scss'; +import polyientGamesGovernance from './polyient-games-governance.scss'; +import pooltogether from './pooltogether.scss'; +import potion from './potion.scss'; +import premia from './premia.scss'; +import prepo from './prepo.scss'; +import primitive from './primitive.scss'; +import pupperdao from './pupperdao.scss'; +import pye from './pye.scss'; +import qian from './qian.scss'; +import qubcoins from './qubcoins.scss'; +import raidGuild from './raid-guild.scss'; +import rari from './rari.scss'; +import rhino from './rhino.scss'; +import rope from './rope.scss'; +import rot from './rot.scss'; +import safe from './safe.scss'; +import sake from './sake.scss'; +import santiment from './santiment.scss'; +import sav3 from './sav3.scss'; +import self from './self.scss'; +import shabushabu from './shabushabu.scss'; +import shapeshift from './shapeshift.scss'; +import shardcoin from './shardcoin.scss'; +import shilldao from './shilldao.scss'; +import shrimp from './shrimp.scss'; +import shroom from './shroom.scss'; +import six from './six.scss'; +import sleeping from './sleeping.scss'; +import smartdexVoting from './smartdex-voting.scss'; +import smol from './smol.scss'; +import smoothyfinance from './smoothyfinance.scss'; +import southchain from './southchain.scss'; +import spaceswap from './spaceswap.scss'; +import spaghetti from './spaghetti.scss'; +import spicedao from './spicedao.scss'; +import spiderdao from './spiderdao.scss'; +import spooky from './spooky.scss'; +import sporkdao from './sporkdao.scss'; +import aurigamiFinance from './aurigami-finance.scss'; +import sportx from './sportx.scss'; +import squirrelcash from './squirrelcash.scss'; +import stakedao from './stakedao.scss'; +import stakewise from './stakewise.scss'; +import status from './status.scss'; +import steakbank from './steakbank.scss'; +import streamr from './streamr.scss'; +import taraxa from './taraxa.scss'; +import sushi from './sushi.scss'; +import sushipowah from './sushipowah.scss'; +import swagg from './swagg.scss'; +import swaphub from './swaphub.scss'; +import swapx from './swapx.scss'; +import swarm from './swarm.scss'; +import swerve from './swerve.scss'; +import synthetix from './synthetix.scss'; +import takeprofit from './takeprofit.scss'; +import tballiance from './tballiance.scss'; +import thelao from './thelao.scss'; +import thirm from './thirm.scss'; +import radiant from './radiant.scss'; +import totemearth from './totemearth.scss'; +import tracer from './tracer.scss'; +import treasuredao from './treasuredao.scss'; +import tripscommunity from './tripscommunity.scss'; +import trustwallet from './trustwallet.scss'; +import tw33t from './tw33t.scss'; +import uma from './uma.scss'; +import unfederalreserve from './unfederalreserve.scss'; +import unicore from './unicore.scss'; +import unidao from './unidao.scss'; +import uniswap from './uniswap.scss'; +import unitprotocol from './unitprotocol.scss'; +import universe from './universe.scss'; +import velotoken from './velotoken.scss'; +import visor from './visor.scss'; +import votewarp from './votewarp.scss'; +import wassies from './wassies.scss'; +import web3Api from './web3-api.scss'; +import wolfdefi from './wolfdefi.scss'; +import xpunks from './xpunks.scss'; +import y3d from './y3d.scss'; +import yakuza from './yakuza.scss'; +import yam from './yam.scss'; +import yamv2 from './yamv2.scss'; +import yashadao from './yashadao.scss'; +import yaxis from './yaxis.scss'; +import yearn from './yearn.scss'; +import yfarm from './yfarm.scss'; +import yffc from './yffc.scss'; +import yffs from './yffs.scss'; +import yflink from './yflink.scss'; +import ymen from './ymen.scss'; +import yup from './yup.scss'; +import zeta from './zeta.scss'; +import zlot from './zlot.scss'; +import zoocoin from './zoocoin.scss'; +import cyberkongz from './cyberkongz.scss'; +import moonbeans from './moonbeans.scss'; +import yesports from './yesports.scss'; +import forward from './forward.scss'; +import artizen from './artizen.scss'; +import dewo from './dewo.scss'; +import breederdao from './breederdao.scss'; +import bgldao from './bgldao.scss'; +import gogoprotocol from './gogoprotocol.scss'; +import thekapitaldao from './thekapitaldao.scss'; +import infinex from './infinex.scss'; + +export default { + aave, + aitech, + cryptopugz, + aavegotchi, + achievmintry, + acoconutbsc, + adex, + madskullz, + adventureland, + agdeportes, + airswap, + 'akropolis-delphi': akropolisDelphi, + alchemistdefi, + alpaca, + alpha, + altrucoin, + amp, + ampleforth, + anjmol, + apeswap, + apetroop, + apy, + aragon, + aragonchina, + arckyf, + mero, + badger, + dmc, + bake, + balancer, + ballena, + bamboodefi, + bancor, + barnbridge, + based, + basedloans, + bee2, + benchmark, + betswirl, + 'breederdao-space': breederdaoSpace, + blackpink, + planetmemes, + blackpoolhq, + blockzerolabs, + bloody, + 'boosted-finance': boostedFinance, + calciumcrew, + capy, + cargo, + carrotswap, + 'castello-community': castelloCommunity, + chadsvc, + 'charged-particles': chargedParticles, + chartex, + choccyswap, + clucoin, + cofix, + coin, + coinswap, + complus, + contribute, + cover, + conic, + cuni, + curve, + cyberkongz, + dalmatians, + 'daniell-mesquita': daniellMesquita, + darkmatter, + daosquare, + dawn, + debaseonomics, + defiat, + depocket, + derivadao, + deversifi, + dextfprotocol, + dfi, + dforce, + dfv, + dhedge, + diadata, + dinoswap, + dittomoney, + dogeswap, + domo, + dorg, + dracula, + dsgn, + dsla, + easybake, + egg, + elementfinance, + emptysetgold, + esprezzo, + etgfinance, + evoland, + example, + expectchaos, + fairmoon, + farm, + fei, + flamingo, + flush, + forward, + fnx, + fortube, + frankendefi, + fries, + frontier, + galleon, + gamer, + gatenet, + gem, + 'gene-finance': geneFinance, + gitcoin, + giveth, + gmt, + gnometoken, + gnosis, + goatcoin, + gokai, + golff, + grap, + greytoken, + griffin, + halodao, + 'hifi-finance': hifiFinance, + hopr, + hubdao, + hurricane, + ilv, + imsuperleague, + index, + indexed, + ironbank, + itam, + iwan, + iyffinance, + jiaozi, + julpad, + julswap, + kebabfinance, + keyfi, + kleros, + kogecoin, + kuhoge, + 'lakan-interactive': lakanInteractive, + lao, + lido, + light, + limitswap, + liquiddriver, + longterm, + love, + macaronswap, + magicbalancer, + maker, + mate, + 'mantra-dao': mantraDao, + masknetwork, + mee, + metacartel, + metafactory, + metatopia, + 'metfi-dao': metfiDao, + mettalex, + mithcash, + momentum, + morpho, + moonbeans, + moonpotdotcom, + moonswap, + moontools, + moonvault, + moonwell, + 'moonwell-apollo': moonwellApollo, + mstable, + multiplier, + music, + mybit, + narwhal, + nation3, + nest, + neverlose, + nftgoddess, + nice, + oaklanddao, + oceandao, + octofi, + omg, + origin, + paladin, + pancake, + pandayield, + 'penguin-party': penguinParty, + pickle, + piedao, + plantswap, + poh, + pok, + 'pokt-network': poktNetwork, + 'polyient-games-governance': polyientGamesGovernance, + pooltogether, + potion, + premia, + prepo, + primitive, + pupperdao, + pye, + qian, + qubcoins, + radiant, + 'raid-guild': raidGuild, + rari, + rhino, + rope, + rot, + safe, + sake, + santiment, + sav3, + self, + shabushabu, + shapeshift, + shardcoin, + shilldao, + shrimp, + shroom, + six, + sleeping, + 'smartdex-voting': smartdexVoting, + smol, + smoothyfinance, + southchain, + spaceswap, + spaghetti, + spicedao, + spiderdao, + spooky, + 'aurigami-finance': aurigamiFinance, + sporkdao, + sportx, + squirrelcash, + stakedao, + stakewise, + status, + steakbank, + streamr, + sushi, + taraxa, + sushipowah, + swagg, + swaphub, + swapx, + swarm, + swerve, + synthetix, + takeprofit, + tballiance, + thelao, + thirm, + totemearth, + tracer, + treasuredao, + tripscommunity, + trustwallet, + tw33t, + uma, + unfederalreserve, + unicore, + unidao, + uniswap, + unitprotocol, + universe, + velotoken, + visor, + votewarp, + wassies, + 'web3-api': web3Api, + wolfdefi, + xpunks, + y3d, + yakuza, + yam, + yamv2, + yashadao, + yaxis, + yearn, + yesports, + yfarm, + yffc, + yffs, + yflink, + ymen, + yup, + zeta, + zlot, + zoocoin, + artizen, + dewo, + gogoprotocol, + bgldao, + breederdao, + thekapitaldao, + infinex +}; diff --git a/skins/index.scss b/skins/index.scss new file mode 100644 index 0000000000..1e1e7a1a69 --- /dev/null +++ b/skins/index.scss @@ -0,0 +1,10 @@ +.index { + --primary-color: #313FFA; + --bg-color: white; + --text-color: #1D144F; + --link-color: #313FFA; + --heading-color: #1D144F; + --border-color: #C9C8C8; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/indexed.scss b/skins/indexed.scss new file mode 100644 index 0000000000..51d9d7de29 --- /dev/null +++ b/skins/indexed.scss @@ -0,0 +1,9 @@ +.indexed { + --primary-color: #666666; + --bg-color: #111111; + --text-color:#ffffff; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #666666; + --header-bg: #111111; +} \ No newline at end of file diff --git a/skins/infinex.scss b/skins/infinex.scss new file mode 100644 index 0000000000..5533e2f43c --- /dev/null +++ b/skins/infinex.scss @@ -0,0 +1,9 @@ +.infinex { + --primary-color: #FF9B69; + --bg-color: #05060A; + --text-color: #C8CDE5; + --link-color: #FF9B69; + --heading-color: #C8CDE5; + --border-color: #2B2D3A; + --header-bg: #05060A +} diff --git a/skins/ironbank.scss b/skins/ironbank.scss new file mode 100644 index 0000000000..3bde10d7e7 --- /dev/null +++ b/skins/ironbank.scss @@ -0,0 +1,9 @@ +.ironbank { + --primary-color: #FEA430; + --bg-color: #151724; + --text-color: #f2f3f4; + --link-color: #FEA430; + --heading-color: #FEA430; + --border-color: #ffffff22; + --header-bg: #171b2c; +} diff --git a/skins/itam.scss b/skins/itam.scss new file mode 100644 index 0000000000..75438160fb --- /dev/null +++ b/skins/itam.scss @@ -0,0 +1,10 @@ +.itam { + --primary-color: #007bff; + --bg-color: #ffffff; + --text-color: #343a40; + --link-color: #007bff; + --heading-color: #007bff; + --border-color: #02448c; + --header-bg: #c8e8ff; +} + \ No newline at end of file diff --git a/skins/iwan.scss b/skins/iwan.scss new file mode 100644 index 0000000000..2f83667bc5 --- /dev/null +++ b/skins/iwan.scss @@ -0,0 +1,9 @@ +.iwan { + --primary-color: #C20606; + --bg-color: #000; + --text-color: #999; + --link-color: #C20606; + --heading-color: #fff; + --header-bg: #201e1e; + } + \ No newline at end of file diff --git a/skins/iyffinance.scss b/skins/iyffinance.scss new file mode 100644 index 0000000000..ac26622e7a --- /dev/null +++ b/skins/iyffinance.scss @@ -0,0 +1,9 @@ +.iyffinance { + --primary-color: #000000; + --header-bg: #000000; + --bg-color: #534f44; + --border-color: #c40000; + --text-color: #FFFFFF; + --link-color: #89cff0; + --heading-color: #89cff0; +} diff --git a/spaces/jiaozi/skin.scss b/skins/jiaozi.scss similarity index 100% rename from spaces/jiaozi/skin.scss rename to skins/jiaozi.scss diff --git a/skins/julpad.scss b/skins/julpad.scss new file mode 100644 index 0000000000..20e0860e7d --- /dev/null +++ b/skins/julpad.scss @@ -0,0 +1,9 @@ +.julpad { + --primary-color: #a50000; + --header-bg: #ffe5dc; + --bg-color: #f5f3f3; + --border-color: #ffb0b0; + --text-color: #920000; + --link-color: #d00000; + --heading-color: #e40000; +} \ No newline at end of file diff --git a/skins/julswap.scss b/skins/julswap.scss new file mode 100644 index 0000000000..d7985123b9 --- /dev/null +++ b/skins/julswap.scss @@ -0,0 +1,9 @@ +.julswap { + --primary-color: #6800a5; + --header-bg: #f1dcff; + --bg-color: #f4f3f5; + --border-color: #f2b0ff; + --text-color: #500092; + --link-color: #6c00d0; + --heading-color: #9c00e4; +} \ No newline at end of file diff --git a/skins/kebabfinance.scss b/skins/kebabfinance.scss new file mode 100644 index 0000000000..1d0c9e6bda --- /dev/null +++ b/skins/kebabfinance.scss @@ -0,0 +1,10 @@ +.kebabfinance { + --primary-color: #e14f1b; + --bg-color: #faf9fa; + --text-color: #292929; + --link-color: #292929; + --heading-color: #202020; + --border-color: #d4d4d4; + --header-bg: #ffffff; + --block-bg: #ffffff; +} diff --git a/skins/keyfi.scss b/skins/keyfi.scss new file mode 100644 index 0000000000..e32ad87199 --- /dev/null +++ b/skins/keyfi.scss @@ -0,0 +1,16 @@ +.keyfi { + --primary-color: #00caed; + --bg-color: #f8f9fc; + --text-color: #555c68; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d3deee; + --header-bg: #e6ecf5; + --block-bg: white; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #40d6f5, #1eace7); + } +} diff --git a/skins/kleros.scss b/skins/kleros.scss new file mode 100644 index 0000000000..cdef23e2fb --- /dev/null +++ b/skins/kleros.scss @@ -0,0 +1,10 @@ +.kleros { + --primary-color: #4D00B4; + --bg-color: #ffffff; + --text-color: #999; + --link-color: #000000; + --heading-color: #4D00B4; + --border-color: #cccccc; + --header-bg: #FBF9FE; + --block-bg: transparent; +} diff --git a/skins/kogecoin.scss b/skins/kogecoin.scss new file mode 100644 index 0000000000..bc5ab6ec47 --- /dev/null +++ b/skins/kogecoin.scss @@ -0,0 +1,10 @@ +.kogecoin { + --primary-color: #2FFF0A; + --bg-color: #1C1C1C; + --text-color: #FFFFFF; + --link-color: #2FFF0A; + --heading-color: #FFFFFF; + --border-color: #FFFFFF; + --header-bg: #252525; + --block-bg: #303030; +} diff --git a/skins/kuhoge.scss b/skins/kuhoge.scss new file mode 100644 index 0000000000..fe02ad617a --- /dev/null +++ b/skins/kuhoge.scss @@ -0,0 +1,10 @@ +.kuhoge { + --primary-color: #00AE90; + --bg-color: #0B0E15; + --text-color: white; + --link-color: #00AE90; + --heading-color: white; + --border-color: #354364; + --header-bg: #0B0E15; + --block-bg: #0B0E15; +} diff --git a/skins/lakan-interactive.scss b/skins/lakan-interactive.scss new file mode 100644 index 0000000000..e2897059c4 --- /dev/null +++ b/skins/lakan-interactive.scss @@ -0,0 +1,11 @@ +.lakan-interactive { + --primary-color: #e46b00; + --bg-color: #101c1c; + --text-color: #89c0cd; + --link-color: #31cfed; + --heading-color: #ffffff; + --border-color: #285a68; + --header-bg: #15262c; + --block-bg: #1e3d49; + --shadow-color: #0d2424d9; +} diff --git a/spaces/lao/skin.scss b/skins/lao.scss similarity index 100% rename from spaces/lao/skin.scss rename to skins/lao.scss diff --git a/skins/lido.scss b/skins/lido.scss new file mode 100644 index 0000000000..9851867e0d --- /dev/null +++ b/skins/lido.scss @@ -0,0 +1,15 @@ +.lido { + --primary-color: #00a3ff; + --bg-color: #f4f6f8; + --text-color: #505a7a; + --link-color: #080e14; + --heading-color: #080e14; + --border-color: #c8d0d8; + --header-bg: #ffffff; + --block-bg: #ffffff; + #navbar { + border-bottom: 4px solid #f69988 !important; + border-image-slice: 1; + border-image-source: linear-gradient(90deg, #f69988 0%, #00a3ff 100%); + } +} diff --git a/skins/light.scss b/skins/light.scss new file mode 100644 index 0000000000..e1d1751636 --- /dev/null +++ b/skins/light.scss @@ -0,0 +1,10 @@ +.light { + --primary-color: black; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; + } \ No newline at end of file diff --git a/skins/limitswap.scss b/skins/limitswap.scss new file mode 100644 index 0000000000..733dc0a1e4 --- /dev/null +++ b/skins/limitswap.scss @@ -0,0 +1,9 @@ +.limitswap { + --primary-color: #87fce6; + --header-bg: #202526; + --bg-color: #121212; + --border-color: #000000; + --text-color: #2EFF65; + --link-color: #f1fa3c; + --heading-color: #87fce6; +} diff --git a/skins/liquiddriver.scss b/skins/liquiddriver.scss new file mode 100644 index 0000000000..17edeb3ea6 --- /dev/null +++ b/skins/liquiddriver.scss @@ -0,0 +1,9 @@ +.liquiddriver { + --primary-color: #4dd9f6; + --bg-color: white; + --text-color: black; + --link-color: black; + --heading-color: black; + --border-color: #4dd9f6; + --header-bg: #4dd9f6; +} \ No newline at end of file diff --git a/skins/longterm.scss b/skins/longterm.scss new file mode 100644 index 0000000000..c6faa0f4e1 --- /dev/null +++ b/skins/longterm.scss @@ -0,0 +1,10 @@ +.longterm { + --primary-color: #0066ff; + --bg-color: #212429; + --text-color: white; + --link-color: white; + --heading-color: white; + --border-color: #0066ff; + --header-bg: #191b1f; + --block-bg: transparent; +} diff --git a/skins/love.scss b/skins/love.scss new file mode 100644 index 0000000000..41d5d34f93 --- /dev/null +++ b/skins/love.scss @@ -0,0 +1,11 @@ + +.love { + --primary-color: #384aff; + --bg-color: #ff6e00; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/macaronswap.scss b/skins/macaronswap.scss new file mode 100644 index 0000000000..9cd863b28c --- /dev/null +++ b/skins/macaronswap.scss @@ -0,0 +1,9 @@ +.macaronswap { + --primary-color: #f1712a; + --header-bg: none; + --bg-color: #f5f3f3; + --border-color: #e2d6cf; + --text-color: #EC7899; + --link-color: #452a7a; + --heading-color: #5D30B0; +} diff --git a/skins/madskullz.scss b/skins/madskullz.scss new file mode 100644 index 0000000000..053a415b7c --- /dev/null +++ b/skins/madskullz.scss @@ -0,0 +1,9 @@ +.madskullz { + --primary-color: #5226ff; + --bg-color: #202325; + --text-color: #aeaeb1; + --link-color: #fff; + --heading-color: #fff; + --border-color: #29293a; + --header-bg: #202325; +} diff --git a/skins/magicbalancer.scss b/skins/magicbalancer.scss new file mode 100644 index 0000000000..ebc8664206 --- /dev/null +++ b/skins/magicbalancer.scss @@ -0,0 +1,9 @@ +.magicbalancer { + --primary-color: #384aff; + --bg-color: #0f1011; + --text-color: #586069; + --link-color: white; + --heading-color: white; + --border-color: #353d45; + --header-bg: #151617; +} \ No newline at end of file diff --git a/spaces/maker/skin.scss b/skins/maker.scss similarity index 100% rename from spaces/maker/skin.scss rename to skins/maker.scss diff --git a/skins/mantra-dao.scss b/skins/mantra-dao.scss new file mode 100644 index 0000000000..8244417442 --- /dev/null +++ b/skins/mantra-dao.scss @@ -0,0 +1,10 @@ +.mantra-dao { + --primary-color: #EE367E; + --bg-color: #1D222F; + --text-color: #FFFFFF; + --link-color: #EE367E; + --heading-color: #FFFFFF; + --border-color: #616161; + --header-bg: black; + --block-bg: transparent; +} diff --git a/skins/masknetwork.scss b/skins/masknetwork.scss new file mode 100644 index 0000000000..9f350f7780 --- /dev/null +++ b/skins/masknetwork.scss @@ -0,0 +1,26 @@ +.masknetwork { + --primary-color: #1c68f3; + --bg-color: #f7f8f9; + --text-color: #382626; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: white; + + #navbar { + background-color: #1c68f3; + border-bottom: 3px solid #0657f9 !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #095eb5, #0077fc); + } + + #navbar a { + color: white !important; + } + + #navbar button { + border-color: white; + color: white; + } +} diff --git a/skins/mate.scss b/skins/mate.scss new file mode 100644 index 0000000000..1e4f085386 --- /dev/null +++ b/skins/mate.scss @@ -0,0 +1,10 @@ +.mate { + --primary-color: #81cb53; + --bg-color: #292727; + --text-color: #afa5a5; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #5a5555; + --header-bg: #312f2f; + --block-bg: transparent; +} diff --git a/skins/mee.scss b/skins/mee.scss new file mode 100644 index 0000000000..3d128b4ae8 --- /dev/null +++ b/skins/mee.scss @@ -0,0 +1,9 @@ +.mee { + --primary-color: #75ACFF; + --bg-color: #090909; + --text-color: #949ca9; + --link-color: #75ACFF; + --heading-color: #75ACFF; + --border-color: #353d45;; + --header-bg: #151617; +} diff --git a/skins/mero.scss b/skins/mero.scss new file mode 100644 index 0000000000..dea935a3c1 --- /dev/null +++ b/skins/mero.scss @@ -0,0 +1,50 @@ +.mero { + --primary-color: #c532f9; + --bg-color: #0a0622; + --text-color: #9d9ca6; + --link-color: white; + --heading-color: white; + --border-color: transparent; + --header-bg: #1c0b38; + --block-bg: #0f0830; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to right, #c532f9, #32b2e5); + } + + .bg-skin-header-bg { + position: relative !important; + } + + .bg-skin-header-bg:after { + content: ""; + width: 100%; + height: 3px; + background: linear-gradient(to right, #c532f9, #32b2e5); + bottom: -3px; + left: 0; + position: absolute; + opacity: 0.2; + } + + .button--primary { + transition: background-position 0.5s !important; + background-size: 200% auto !important; + border: none !important; + background-origin: border-box !important; + background-clip: padding-box, border-box !important; + background-image: linear-gradient( + to right, + #c532f9 0%, + #32b2e5 50%, + #c532f9 100% + ) !important; + filter: brightness(1) !important; + } + + .button--primary:hover { + background-position: right center !important; + } +} diff --git a/skins/metacartel.scss b/skins/metacartel.scss new file mode 100644 index 0000000000..26307ca21f --- /dev/null +++ b/skins/metacartel.scss @@ -0,0 +1,10 @@ +.metacartel { + --primary-color: #9670d1; + --bg-color: #f8fbf3; + --text-color: #111111; + --link-color: #9670d1; + --heading-color: #9670d1; + --border-color: #6c1096; + --header-bg: #f8fbf3; + --block-bg: transparent; +} diff --git a/skins/metafactory.scss b/skins/metafactory.scss new file mode 100644 index 0000000000..4017f87560 --- /dev/null +++ b/skins/metafactory.scss @@ -0,0 +1,10 @@ +.metafactory { + --primary-color: #00ECFF; + --bg-color: white; + --text-color: #586069; + --link-color: #FF00C4; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/metatopia.scss b/skins/metatopia.scss new file mode 100644 index 0000000000..aefdd53a15 --- /dev/null +++ b/skins/metatopia.scss @@ -0,0 +1,14 @@ +.metatopia { + --primary-color: #733AF0; + --bg-color: #0D0F1C; + --text-color: #FFF; + --link-color: #FFFFFFCC; + --heading-color: #FFF; + --border-color: transparent; + --header-bg: #0D0F1C; + --block-bg: #0D0F1C; + + .bg-skin-bg { + background: linear-gradient(180deg, #281242 0%, rgba(116, 24, 64, 0) 100%) !important; + } +} diff --git a/skins/metfi-dao.scss b/skins/metfi-dao.scss new file mode 100644 index 0000000000..ae0d106fc3 --- /dev/null +++ b/skins/metfi-dao.scss @@ -0,0 +1,10 @@ +.metfi-dao { + --primary-color: #00e2fd; + --bg-color: #1f202e; + --text-color: #FFFFFF; + --link-color: #00e2fd; + --heading-color: #FFFFFF; + --border-color: #151620; + --header-bg: #151620; + --block-bg: #262738; +} diff --git a/skins/mettalex.scss b/skins/mettalex.scss new file mode 100644 index 0000000000..d15e2aa6eb --- /dev/null +++ b/skins/mettalex.scss @@ -0,0 +1,10 @@ +.mettalex { + --primary-color: #5643CC; + --bg-color: #ffffff; + --text-color: #000000; + --link-color: #5643CC; + --heading-color: #000000; + --border-color: #d1d5da; + --header-bg: #d1d5da; + --block-bg: #ffffff; +} diff --git a/skins/mithcash.scss b/skins/mithcash.scss new file mode 100644 index 0000000000..74b7a441da --- /dev/null +++ b/skins/mithcash.scss @@ -0,0 +1,10 @@ +.mithcash { + --primary-color: #d7c08e; + --bg-color: #1e1f23; + --text-color: #d7c08e; + --link-color: #d7c08e; + --heading-color: #d7c08e; + --border-color: #26272c; + --header-bg: #26272c; + --block-bg: transparent; +} diff --git a/spaces/momentum/skin.scss b/skins/momentum.scss similarity index 100% rename from spaces/momentum/skin.scss rename to skins/momentum.scss diff --git a/skins/moonbeans.scss b/skins/moonbeans.scss new file mode 100644 index 0000000000..ca3d1b1813 --- /dev/null +++ b/skins/moonbeans.scss @@ -0,0 +1,16 @@ +.moonbeans { + --primary-color: #40e5e1; + --bg-color: #121212; + --text-color: #e8e8e8; + --link-color: #e8e8e8; + --heading-color: #ff2b97; + --border-color: #424242; + --header-bg: #121212; + --block-bg: transparent; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #40e5e1, #ff2b97); + } +} diff --git a/skins/moonpotdotcom.scss b/skins/moonpotdotcom.scss new file mode 100644 index 0000000000..ef502c481f --- /dev/null +++ b/skins/moonpotdotcom.scss @@ -0,0 +1,21 @@ +.moonpotdotcom { + --primary-color: #F3BA2E; + --bg-color: white; + --text-color: #808080; + --link-color: #404040; + --heading-color: #404040; + --border-color: #d9d9d9; + --header-bg: white; + --block-bg: transparent; +} + +.moonpotdotcom-dark-mode { + --primary-color: #F3BA2E; + --bg-color: #121212; + --text-color: #a4a4a4; + --link-color: #e3e3e3; + --heading-color: #e3e3e3; + --border-color: #2b2b2b; + --header-bg: 121212; + --block-bg: transparent; +} diff --git a/skins/moonswap.scss b/skins/moonswap.scss new file mode 100644 index 0000000000..06bef60689 --- /dev/null +++ b/skins/moonswap.scss @@ -0,0 +1,9 @@ +.moonswap { + --primary-color: #d2004a; + --bg-color: #efe7ea; + --text-color: #a98592; + --link-color: #5b2739; + --heading-color: #5b2839; + --border-color: #e2cfd5; + --header-bg: #f3edef; +} diff --git a/skins/moontools.scss b/skins/moontools.scss new file mode 100644 index 0000000000..75534afd6b --- /dev/null +++ b/skins/moontools.scss @@ -0,0 +1,14 @@ +.moontools { + --primary-color: #84ffff; + --bg-color: #000000; + --text-color: white; + --link-color: #84ffff; + --heading-color: white; + --border-color: rgba(255, 255, 255, 0.2); + --header-bg: #000000; + --block-bg: transparent; + + #navbar { + border-bottom: 2px solid white !important; + } +} diff --git a/skins/moonvault.scss b/skins/moonvault.scss new file mode 100644 index 0000000000..272ff2655c --- /dev/null +++ b/skins/moonvault.scss @@ -0,0 +1,10 @@ +.moonvault { + --primary-color: #f4b330; + --bg-color: #000; + --text-color: #f4b330; + --link-color: #fff; + --heading-color: #f4b330; + --border-color: #f4b330; + --header-bg: #000; + --block-bg: transparent; +} diff --git a/skins/moonwell-apollo.scss b/skins/moonwell-apollo.scss new file mode 100644 index 0000000000..601e76c6cb --- /dev/null +++ b/skins/moonwell-apollo.scss @@ -0,0 +1,58 @@ +.moonwell-apollo { + --primary-color: #b80083; + --bg-color: #000; + --text-color: #ffffff; + --link-color: #ffcf60; + --heading-color: #ffcf60; + --border-color: rgb(255 255 255 / 0.10); + --header-bg: #000000; + --block-bg: rgb(255 255 255 / 0.1); + + transition: all ease 250ms, box-shadow linear 150ms; + + @keyframes moonwell-gradient { + from { + background-position: 0 50%; + } + to { + background-position: 100rem 50%; + } + } + + .button--primary{ + border-color: transparent !important; + background: transparent; + transition: background 0.5s; + } + + .button--primary:hover { + background: linear-gradient(90deg, #b80083, #b80085, #b90186, #b90189, #ba028c, #bb0290, #bc0395, #bd049a, #be05a0, #bf06a6, #c007ac, #c209b4, #c30abb, #c50bc3, #c20dc7, #bd0fc9, #b710ca, #b212cc, #ac14ce, #a616d0, #a018d2, #9b1ad4, #951dd6, #8f1fd8, #8921da, #8324dd, #7d26df, #7728e1, #712be3, #6b2de5, #6630e7, #6132e9, #5b35eb, #5637ed, #5239ee, #4d3cf0, #493ef2, #4540f4, #4243f5, #444bf7, #4652f8, #4858f9, #495efa, #4b63fb, #4c68fc, #4d6cfd, #4e70fe, #4f72fe, #5074ff, #5076ff, #5074ff, #4f72fe, #4e70fe, #4d6cfd, #4c68fc, #4b63fb, #495efa, #4858f9, #4652f8, #444bf7, #4243f5, #4540f4, #493ef2, #4d3cf0, #5239ee, #5637ed, #5b35eb, #6132e9, #6630e7, #6b2de5, #712be3, #7728e1, #7d26df, #8324dd, #8921da, #8f1fd8, #951dd6, #9b1ad4, #a018d2, #a616d0, #ac14ce, #b212cc, #b710ca, #bd0fc9, #c20dc7, #c50bc3, #c30abb, #c209b4, #c007ac, #bf06a6, #be05a0, #bd049a, #bc0395, #bb0290, #ba028c, #b90189, #b90186, #b80085, #b80083); + background-size: 100rem 500%; + animation: moonwell-gradient 2s linear infinite; + border: none !important; + } + + .button{ + transition: background 0.5s; + } + + .button.mb-2.block.w-full.\!border-skin-link{ + border: none; + background: rgb(239 199 5); + color: white; + font-weight: bold; + &:first-child{ + background: #5CCC4E; + } + &:nth-child(2){ + background: #CC0000; + } + } + + a[target="_blank"] { + text-decoration: underline; + &:hover{ + color: #fff2b3; + } + } +} diff --git a/skins/moonwell.scss b/skins/moonwell.scss new file mode 100644 index 0000000000..d5bd95f9ca --- /dev/null +++ b/skins/moonwell.scss @@ -0,0 +1,58 @@ +.moonwell { + --primary-color: #5CCC4E; + --bg-color: #000; + --text-color: #ffffff; + --link-color: #ffcf60; + --heading-color: #ffcf60; + --border-color: rgb(255 255 255 / 0.10); + --header-bg: #000000; + --block-bg: rgb(255 255 255 / 0.1); + + transition: all ease 250ms, box-shadow linear 150ms; + + @keyframes moonwell-gradient { + from { + background-position: 0 50%; + } + to { + background-position: 100rem 50%; + } + } + + .button--primary{ + border-color: transparent !important; + background: transparent; + transition: background 0.5s; + } + + .button--primary:hover { + background: linear-gradient(90deg, #efc705, #efc805, #efca05, #efcd05, #efd105, #efd705, #efde05, #eee605, #eeee05, #e4ee05, #d9ee04, #cdee04, #c0ed04, #b3ed04, #a5ed04, #96ed04, #87ec04, #77ec04, #67ec04, #56ec03, #45eb03, #34eb03, #22eb03, #11ea03, #03ea07, #03ea18, #02e92a, #02e93b, #02e94c, #02e85e, #02e86f, #02e87f, #02e790, #01e7a0, #01e7af, #01e7bf, #01e6cd, #01e6db, #01e3e6, #01d6e6, #01c9e5, #00bee5, #00b3e5, #00a9e5, #00a0e5, #0098e4, #0091e4, #008ce4, #0087e4, #0084e4, #0082e4, #0081e4, #0082e4, #0084e4, #0087e4, #008ce4, #0091e4, #0098e4, #00a0e5, #00a9e5, #00b3e5, #00bee5, #01c9e5, #01d6e6, #01e3e6, #01e6db, #01e6cd, #01e7bf, #01e7af, #01e7a0, #02e790, #02e87f, #02e86f, #02e85e, #02e94c, #02e93b, #02e92a, #03ea18, #03ea07, #11ea03, #22eb03, #34eb03, #45eb03, #56ec03, #67ec04, #77ec04, #87ec04, #96ed04, #a5ed04, #b3ed04, #c0ed04, #cdee04, #d9ee04, #e4ee05, #eeee05, #eee605, #efde05, #efd705, #efd105, #efcd05, #efca05, #efc805, #efc705); + background-size: 100rem 500%; + animation: moonwell-gradient 2s linear infinite; + border: none !important; + } + + .button{ + transition: background 0.5s; + } + + .button.mb-2.block.w-full.\!border-skin-link{ + border: none; + background: rgb(239 199 5); + color: white; + font-weight: bold; + &:first-child{ + background: #5CCC4E; + } + &:nth-child(2){ + background: #CC0000; + } + } + + a[target="_blank"] { + text-decoration: underline; + &:hover{ + color: #fff2b3; + } + } +} diff --git a/skins/morpho.scss b/skins/morpho.scss new file mode 100644 index 0000000000..bf7be5463b --- /dev/null +++ b/skins/morpho.scss @@ -0,0 +1,10 @@ +.morpho { + --primary-color: #2470ff; + --bg-color: #141417; + --text-color: #b0b3bf; + --link-color: #5792ff; + --heading-color: #f5f5f7; + --border-color: #1f2026; + --header-bg: transparent; + --block-bg: transparent; +} diff --git a/skins/mstable.scss b/skins/mstable.scss new file mode 100644 index 0000000000..d8e9f10fc8 --- /dev/null +++ b/skins/mstable.scss @@ -0,0 +1,10 @@ +.mstable { + --primary-color: #4aa1ff; + --bg-color: #05142c; + --text-color: #cccccc; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #2d3a4e; + --header-bg: #0c1b32; + --block-bg: #0c1b32; +} diff --git a/skins/multiplier.scss b/skins/multiplier.scss new file mode 100644 index 0000000000..1ec89931ed --- /dev/null +++ b/skins/multiplier.scss @@ -0,0 +1,10 @@ +.multiplier { + --primary-color: #1065E0; + --bg-color: #F8F5F2; + --text-color: #000000; + --link-color: #1065e0; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: #FFAD2B; + --block-bg: transparent; +} diff --git a/skins/music.scss b/skins/music.scss new file mode 100644 index 0000000000..21934c6d21 --- /dev/null +++ b/skins/music.scss @@ -0,0 +1,11 @@ + +.music { + --primary-color: #111111; + --bg-color: #FEFC71; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; + } \ No newline at end of file diff --git a/spaces/mybit/skin.scss b/skins/mybit.scss similarity index 100% rename from spaces/mybit/skin.scss rename to skins/mybit.scss diff --git a/skins/narwhal.scss b/skins/narwhal.scss new file mode 100644 index 0000000000..111c0a310f --- /dev/null +++ b/skins/narwhal.scss @@ -0,0 +1,9 @@ +.narwhal { + --primary-color: #546AE1; + --bg-color: #eef0f5; + --text-color: #888D9B; + --link-color: #000000; + --heading-color: #000000; + --border-color: #e6e7ea; + --header-bg: white; +} diff --git a/skins/nation3.scss b/skins/nation3.scss new file mode 100644 index 0000000000..b4a3734d4e --- /dev/null +++ b/skins/nation3.scss @@ -0,0 +1,16 @@ +.nation3 { + --primary-color: #88f1bb; + --bg-color: #f5fafe; + --text-color: #505050; + --link-color: #111111; + --heading-color: #111111; + --border-color: #f5f5f5; + --header-bg: white; + --block-bg: white; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to right, #69c9ff, #88f1bb); + } +} diff --git a/skins/nest.scss b/skins/nest.scss new file mode 100644 index 0000000000..4334b5eb98 --- /dev/null +++ b/skins/nest.scss @@ -0,0 +1,9 @@ +.nest { + --primary-color: #307fec; + --bg-color: #f9fafb; + --text-color: #949ca9; + --link-color: #212529; + --heading-color: #212529; + --border-color: #e1e1e1; + --header-bg: white; +} diff --git a/skins/neverlose.scss b/skins/neverlose.scss new file mode 100644 index 0000000000..84b3de30e5 --- /dev/null +++ b/skins/neverlose.scss @@ -0,0 +1,9 @@ +.balancer { + --primary-color: #0091ff; + --bg-color: #000; + --text-color: #586069; + --link-color: white; + --heading-color: white; + --border-color: #353d45; + --header-bg: #151617; +} diff --git a/skins/nftgoddess.scss b/skins/nftgoddess.scss new file mode 100644 index 0000000000..e28940b1d6 --- /dev/null +++ b/skins/nftgoddess.scss @@ -0,0 +1,10 @@ +.nftgoddess { + --primary-color: #384aff; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/nice.scss b/skins/nice.scss new file mode 100644 index 0000000000..cc3a4ef597 --- /dev/null +++ b/skins/nice.scss @@ -0,0 +1,8 @@ +.nice { + --primary-color: #ffffff20; + --bg-color: #a7d1e8; + --text-color: #3d3c3ee3; + --link-color: #3d3c3ee3; + --border-color: #3d3c3e80; + --header-bg: #a7d1e8; +} \ No newline at end of file diff --git a/skins/oaklanddao.scss b/skins/oaklanddao.scss new file mode 100644 index 0000000000..1de2453f0b --- /dev/null +++ b/skins/oaklanddao.scss @@ -0,0 +1,10 @@ +.oaklanddao { + --primary-color: #384aff; + --bg-color: #2e537d; + --text-color: white; + --link-color: #0fcc0b; + --heading-color: white; + --border-color: #d1d5da; + --header-bg: #3d72ad; + --block-bg: transparent; +} diff --git a/skins/oceandao.scss b/skins/oceandao.scss new file mode 100644 index 0000000000..20681d516c --- /dev/null +++ b/skins/oceandao.scss @@ -0,0 +1,9 @@ +.oceandao { + --primary-color: #7b1173; + --bg-color: #fff; + --text-color: #141414; + --link-color: #ff4092; + --heading-color: #141414; + --border-color: #d1d5da; + --header-bg: #e2e2e2; +} diff --git a/spaces/octofi/skin.scss b/skins/octofi.scss similarity index 100% rename from spaces/octofi/skin.scss rename to skins/octofi.scss diff --git a/skins/omg.scss b/skins/omg.scss new file mode 100644 index 0000000000..5fad982ead --- /dev/null +++ b/skins/omg.scss @@ -0,0 +1,10 @@ +.omg { + --primary-color: #4967ff; + --bg-color: #eef1ff; + --text-color: #101010; + --link-color: #4967ff; + --heading-color: #101010; + --border-color: #dedede; + --header-bg: #ffffff; + --block-bg: transparent; +} diff --git a/skins/origin.scss b/skins/origin.scss new file mode 100644 index 0000000000..bbe804c56c --- /dev/null +++ b/skins/origin.scss @@ -0,0 +1,10 @@ +.origingov { + --primary-color: #0074F0; + --bg-color: #EDEFF5; + --text-color: #2E3137; + --link-color: #0074F0; + --heading-color: #111111; + --border-color: #D8DEE5; + --header-bg: F7F9FF; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/paladin.scss b/skins/paladin.scss new file mode 100644 index 0000000000..fd08108728 --- /dev/null +++ b/skins/paladin.scss @@ -0,0 +1,9 @@ +.paladin { + --primary-color: #FF7544; + --bg-color: #121212; + --text-color: #AEAEB1; + --link-color: #FF7544; + --heading-color: #FFFFFF; + --border-color: #262626; + --header-bg: #0D0402; +} diff --git a/skins/pancake.scss b/skins/pancake.scss new file mode 100644 index 0000000000..0e0dfca2c0 --- /dev/null +++ b/skins/pancake.scss @@ -0,0 +1,9 @@ +.pancake { + --primary-color: #f1712a; + --header-bg: none; + --bg-color: #f5f3f3; + --border-color: #e2d6cf; + --text-color: #12aab5; + --link-color: #452a7a; + --heading-color: #452a7a; +} diff --git a/skins/pandayield.scss b/skins/pandayield.scss new file mode 100644 index 0000000000..2f834022a9 --- /dev/null +++ b/skins/pandayield.scss @@ -0,0 +1,10 @@ +.pandayield { + --primary-color: #eb154b; + --bg-color: #ebebeb; + --text-color: #292929; + --link-color: #292929; + --heading-color: #000000; + --border-color: #d4d4d4; + --header-bg: #ffffff; + --block-bg: #ffffff; +} diff --git a/skins/penguin-party.scss b/skins/penguin-party.scss new file mode 100644 index 0000000000..81762deaaa --- /dev/null +++ b/skins/penguin-party.scss @@ -0,0 +1,10 @@ +.penguin-party { + --primary-color: #9999FF; + --bg-color: white; + --text-color: black; + --link-color: black; + --heading-color: black; + --border-color: #9999FF; + --header-bg: white; + --block-bg: transparent; +} diff --git a/spaces/pickle/skin.scss b/skins/pickle.scss similarity index 100% rename from spaces/pickle/skin.scss rename to skins/pickle.scss diff --git a/spaces/piedao/skin.scss b/skins/piedao.scss similarity index 100% rename from spaces/piedao/skin.scss rename to skins/piedao.scss diff --git a/skins/planetmemes.scss b/skins/planetmemes.scss new file mode 100644 index 0000000000..202a44a167 --- /dev/null +++ b/skins/planetmemes.scss @@ -0,0 +1,10 @@ +.planetmemes { + --primary-color: #6b53f6; + --bg-color: #15181e; + --text-color: #fff; + --link-color: #bcbbbc; + --heading-color: #bcbbbc; + --border-color: rgba(215, 215, 216, 0.1); + --header-bg: #15181e; + --block-bg: transparent; +} diff --git a/skins/plantswap.scss b/skins/plantswap.scss new file mode 100644 index 0000000000..ac1f07984f --- /dev/null +++ b/skins/plantswap.scss @@ -0,0 +1,10 @@ +.plantswap { + --primary-color: #2B6E37; + --bg-color: white; + --text-color: #4D2419; + --link-color: #399349; + --heading-color: #2B6E37; + --border-color: #4D2419; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/poh.scss b/skins/poh.scss new file mode 100644 index 0000000000..3eb3c8dd2a --- /dev/null +++ b/skins/poh.scss @@ -0,0 +1,16 @@ +.poh { + --primary-color: #ffc700; + --bg-color: #fffdf6; + --text-color: #8c8c8c; + --link-color: #111111; + --heading-color: #111111; + --border-color: #dad5d1; + --header-bg: white; + --block-bg: white; + + #navbar { + border-bottom: 3px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #fdc9d3, #ff9900); + } +} diff --git a/skins/pok.scss b/skins/pok.scss new file mode 100644 index 0000000000..91c1d28e91 --- /dev/null +++ b/skins/pok.scss @@ -0,0 +1,10 @@ +.pok { + --primary-color: #384aff; + --bg-color: #30425C; + --text-color: #586069; + --link-color: #5EB0C2; + --heading-color: #2798B2; + --border-color: #FFFFFF; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/pokt-network.scss b/skins/pokt-network.scss new file mode 100644 index 0000000000..782f274904 --- /dev/null +++ b/skins/pokt-network.scss @@ -0,0 +1,16 @@ +.pokt-network { + --primary-color: #a400a6; + --bg-color: #182129; + --text-color: #969696; + --link-color: #1d8aed; + --heading-color: #fafafa; + --border-color: transparent; + --header-bg: #182129; + --block-bg: #111b23; + + #navbar { + border-bottom: 4px solid transparent; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #b9f000, #182129); + } +} diff --git a/skins/polyient-games-governance.scss b/skins/polyient-games-governance.scss new file mode 100644 index 0000000000..aa9df77a96 --- /dev/null +++ b/skins/polyient-games-governance.scss @@ -0,0 +1,10 @@ +.polyient-games-governance { + --primary-color: #577ED2; + --bg-color: #1A1F25; + --text-color: #A4A6A9; + --link-color: #577ED2; + --heading-color:white; + --border-color: #1A2027; + --header-bg: #1E272F; + --block-bg: transparent; +} diff --git a/skins/pooltogether.scss b/skins/pooltogether.scss new file mode 100644 index 0000000000..49176eb6b5 --- /dev/null +++ b/skins/pooltogether.scss @@ -0,0 +1,12 @@ +.pooltogether { + --primary-color: #35F0D0; + --bg-color: #341762; + --text-color: #a79cbd; + --link-color: #1ef7d6; + --heading-color: #fff; + --border-color: #43286e; + --header-bg: #1a083a; + --block-bg: transparent; +} + +.pooltogether .bg-purple { background-color: #6f42c1 !important } \ No newline at end of file diff --git a/skins/potion.scss b/skins/potion.scss new file mode 100644 index 0000000000..e1d2f0a5c3 --- /dev/null +++ b/skins/potion.scss @@ -0,0 +1,10 @@ +.potion { + --primary-color: #ff0189; + --bg-color: #242037; + --text-color: #bbbbc1; + --link-color: #ffffff; + --heading-color: #ffffff; + --border-color: #3b344d; + --header-bg: #3b344d; + --block-bg: transparent; +} diff --git a/skins/premia.scss b/skins/premia.scss new file mode 100644 index 0000000000..5a21718fc1 --- /dev/null +++ b/skins/premia.scss @@ -0,0 +1,9 @@ +.premia { + --primary-color: #66A6FF; + --bg-color: #141414; + --text-color: #80818f; + --link-color: #fff; + --heading-color: #fff; + --border-color: #353d45; + --header-bg: #151617; +} \ No newline at end of file diff --git a/skins/prepo.scss b/skins/prepo.scss new file mode 100644 index 0000000000..6245ed1735 --- /dev/null +++ b/skins/prepo.scss @@ -0,0 +1,25 @@ +.prepo { + --primary-color: #454699; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: white; + + #navbar { + background-color: #454699; + border-bottom: 1px solid #454699 !important; + } + + #navbar a, + #navbar .text-gray { + color: white !important; + } + + #navbar button { + border-color: white; + color: white; + } +} diff --git a/skins/primitive.scss b/skins/primitive.scss new file mode 100644 index 0000000000..6b6e5798e8 --- /dev/null +++ b/skins/primitive.scss @@ -0,0 +1,10 @@ +.primitive { + --primary-color: #00D110; + --bg-color: black; + --text-color: #AFAFAF; + --link-color: white; + --heading-color: white; + --border-color: #AFAFAF; + --header-bg: black; + --block-bg: transparent; +} diff --git a/skins/pupperdao.scss b/skins/pupperdao.scss new file mode 100644 index 0000000000..3717b891a6 --- /dev/null +++ b/skins/pupperdao.scss @@ -0,0 +1,10 @@ +.pupperdao { + --primary-color: #f0562a; + --bg-color: #fff3e6; + --text-color: #100f0d; + --link-color: #82abf3; + --heading-color: #82abf3; + --border-color: #100f0d; + --header-bg: #fff3e6; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/pye.scss b/skins/pye.scss new file mode 100644 index 0000000000..87ff0e0dc6 --- /dev/null +++ b/skins/pye.scss @@ -0,0 +1,22 @@ +.pye { + --primary-color: #363636; + --bg-color: #f5f5f7; + --text-color: #333; + --link-color: #333333CC; + --heading-color: #333; + --border-color: #d0d0d0; + --header-bg: #edeced; + --block-bg: #edeced; + + .button.button--primary { + background-image: linear-gradient(135deg, #ff0739, #723f85) !important; + border: 0px !important; + } + + .text-skin-link { + background-image: linear-gradient(135deg, #ff0739, #723f85) !important; + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; + } +} diff --git a/skins/qian.scss b/skins/qian.scss new file mode 100644 index 0000000000..914d26c3f5 --- /dev/null +++ b/skins/qian.scss @@ -0,0 +1,10 @@ +.qian { + --primary-color: #2a62f1; + --bg-color: #f8fbff; + --text-color: #9dcafa; + --link-color: #54a3f6; + --heading-color: #54a3f6; + --border-color: #9dcafa; + --header-bg: none; + --block-bg: transparent; +} diff --git a/skins/qubcoins.scss b/skins/qubcoins.scss new file mode 100644 index 0000000000..cf69dbfc8c --- /dev/null +++ b/skins/qubcoins.scss @@ -0,0 +1,9 @@ +.qubcoins { + --primary-color: #bf4ca6; + --header-bg: #202526; + --bg-color: #2f3537; + --border-color: #000; + --text-color: #aeaeae; + --link-color: #fff; + --heading-color: #87fce6; +} diff --git a/skins/radiant.scss b/skins/radiant.scss new file mode 100644 index 0000000000..e67d7eaced --- /dev/null +++ b/skins/radiant.scss @@ -0,0 +1,11 @@ +.radiant { + --primary-color: #7159ff; + --bg-color: #f5f6fa; + --text-color: #000000; + --link-color: #50edd1; + --heading-color: #131313; + --border-color: rgba(222, 222, 222, 0.8); + --header-bg: white; + --block-bg: white; + --shadow-color: #0001; +} diff --git a/spaces/raid-guild/skin.scss b/skins/raid-guild.scss similarity index 100% rename from spaces/raid-guild/skin.scss rename to skins/raid-guild.scss diff --git a/skins/rari.scss b/skins/rari.scss new file mode 100644 index 0000000000..99f06c487a --- /dev/null +++ b/skins/rari.scss @@ -0,0 +1,10 @@ +.rari { + --primary-color: #384aff; + --bg-color: black; + --text-color: #959ea7; + --link-color: white; + --heading-color: white; + --border-color: #717e8e; + --header-bg: black; + --block-bg: transparent; +} diff --git a/skins/rhino.scss b/skins/rhino.scss new file mode 100644 index 0000000000..ce4b82902a --- /dev/null +++ b/skins/rhino.scss @@ -0,0 +1,16 @@ +.rhino { + --primary-color: #6bcace; + --bg-color: #f1f1f3; + --text-color: #707070; + --link-color: #111111; + --heading-color: #6bcace; + --border-color: #d1d5da; + --header-bg: #f7f7f7; + --block-bg: white; + + #navbar { + border-bottom: 5px solid !important; + border-image-slice: 1; + border-image-source: linear-gradient(to right, #fde699, #f05558, #6bcace); + } +} diff --git a/skins/rope.scss b/skins/rope.scss new file mode 100644 index 0000000000..bdce39b437 --- /dev/null +++ b/skins/rope.scss @@ -0,0 +1,10 @@ +.rope { + --primary-color: #000000; + --bg-color: #000000; + --text-color: #ffc5ff; + --link-color: #ffffff; + --heading-color: #ffe3ff; + --border-color: #ff8cff; + --header-bg: #EB70FF; + --block-bg: transparent; +} diff --git a/skins/rot.scss b/skins/rot.scss new file mode 100644 index 0000000000..3a6241f779 --- /dev/null +++ b/skins/rot.scss @@ -0,0 +1,9 @@ +.rot { + --primary-color: #ffffff20; + --bg-color: #a2b749; + --text-color: #52674b; + --link-color: #52674b; + --heading-color: #52674b; + --border-color: #52674b75; + --header-bg: #a2b749; +} diff --git a/spaces/safe/skin.scss b/skins/safe.scss similarity index 100% rename from spaces/safe/skin.scss rename to skins/safe.scss diff --git a/spaces/sake/skin.scss b/skins/sake.scss similarity index 100% rename from spaces/sake/skin.scss rename to skins/sake.scss diff --git a/skins/santiment.scss b/skins/santiment.scss new file mode 100644 index 0000000000..0e40c832df --- /dev/null +++ b/skins/santiment.scss @@ -0,0 +1,9 @@ +.santiment { + --primary-color: #14C393; + --bg-color: #fff; + --link-color: #14C393; + --heading-color: #2F354D; + --border-color: #E7EAF3; + --text-color: #9FAAC4; + --header-bg: #F9FAFC; +} diff --git a/skins/sav3.scss b/skins/sav3.scss new file mode 100644 index 0000000000..bd04222be9 --- /dev/null +++ b/skins/sav3.scss @@ -0,0 +1,9 @@ +.sav3 { + --primary-color: #00000069; + --bg-color: #4e4854; + --text-color: #00000082; + --link-color: #00000080; + --heading-color: #00000080; + --border-color: #ffffff0d; + --header-bg: #ffffff08; +} \ No newline at end of file diff --git a/spaces/self/skin.scss b/skins/self.scss similarity index 100% rename from spaces/self/skin.scss rename to skins/self.scss diff --git a/skins/shabushabu.scss b/skins/shabushabu.scss new file mode 100644 index 0000000000..8e2e3e4c35 --- /dev/null +++ b/skins/shabushabu.scss @@ -0,0 +1,16 @@ +.shabushabu { + --primary-color: #0aa772; + --bg-color: #ffffff; + --text-color: #000000; + --link-color: #ca3390; + --heading-color: #000000; + --border-color: #000000; + --header-bg: #ffffff; + --block-bg: white; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #c9328f, #9b30c5); + } +} diff --git a/skins/shapeshift.scss b/skins/shapeshift.scss new file mode 100644 index 0000000000..3fb5ab2de2 --- /dev/null +++ b/skins/shapeshift.scss @@ -0,0 +1,21 @@ +.shapeshift { + --primary-color: #3368e4; + --bg-color: #f0f3f8; + --text-color: #546480; + --link-color: #0a111e; + --heading-color: #0a111e; + --border-color: #f0f3f8; + --header-bg: #fff; + --block-bg: #fff; +} + +.shapeshift-dark-mode { + --primary-color: rgb(51, 104, 228); + --bg-color: #0a111e; + --text-color: rgb(84, 100, 128); + --link-color: #fff; + --heading-color: #fff; + --border-color: rgba(255, 255, 255, 0.08); + --header-bg: #0a111e; + --block-bg: rgba(255, 255, 255, 0.02); +} diff --git a/skins/shardcoin.scss b/skins/shardcoin.scss new file mode 100644 index 0000000000..1dbd3732b2 --- /dev/null +++ b/skins/shardcoin.scss @@ -0,0 +1,9 @@ +.shardcoin { + --primary-color: #019afb; + --bg-color: #ffffff; + --text-color: #606988; + --link-color: #019afb; + --heading-color: #019afb; + --border-color: #e1e3e7; + --header-bg: #f7f9fb; +} diff --git a/spaces/shilldao/skin.scss b/skins/shilldao.scss similarity index 100% rename from spaces/shilldao/skin.scss rename to skins/shilldao.scss diff --git a/spaces/shrimp/skin.scss b/skins/shrimp.scss similarity index 100% rename from spaces/shrimp/skin.scss rename to skins/shrimp.scss diff --git a/spaces/shroom/skin.scss b/skins/shroom.scss similarity index 100% rename from spaces/shroom/skin.scss rename to skins/shroom.scss diff --git a/skins/six.scss b/skins/six.scss new file mode 100644 index 0000000000..ee5ca89ed2 --- /dev/null +++ b/skins/six.scss @@ -0,0 +1,18 @@ +.six { + --primary-color: #1f1f1f; + --bg-color: #131313; + --text-color: white; + --link-color: white; + --heading-color: white; + --border-color: #373737; + --header-bg: #131313; + + #navbar .router-link-exact-active, + #navbar .router-link-active { + font-size: 0 !important; + line-height: 0; + width: 0; + height: 0; + display: none; + } +} diff --git a/skins/sleeping.scss b/skins/sleeping.scss new file mode 100644 index 0000000000..58f8f29536 --- /dev/null +++ b/skins/sleeping.scss @@ -0,0 +1,10 @@ +.sleeping { + --primary-color: #0b5394; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/smartdex-voting.scss b/skins/smartdex-voting.scss new file mode 100644 index 0000000000..61dcd2f1dd --- /dev/null +++ b/skins/smartdex-voting.scss @@ -0,0 +1,9 @@ +.smartdex-voting { + --primary-color: #0085FF; + --header-bg: none; + --bg-color: #f5f3f3; + --border-color: #E2E2E8; + --text-color: #0085FF; + --link-color: #5F5E76; + --heading-color: #5F5E76; + } \ No newline at end of file diff --git a/skins/smol.scss b/skins/smol.scss new file mode 100644 index 0000000000..ce04e4eddf --- /dev/null +++ b/skins/smol.scss @@ -0,0 +1,10 @@ +.smol { + --primary-color: #384aff; + --bg-color: #97ff90; + --text-color: #194616; + --link-color: #133511; + --heading-color: #133511; + --border-color: #ff7c7a; + --header-bg: #79de72; + --block-bg: transparent; +} diff --git a/skins/smoothyfinance.scss b/skins/smoothyfinance.scss new file mode 100644 index 0000000000..5400351b52 --- /dev/null +++ b/skins/smoothyfinance.scss @@ -0,0 +1,10 @@ +.smoothyfinance { + --primary-color: #00559b; + --bg-color: #f9fffc; + --header-bg: #f9fffc; + --heading-color: #333333; + --text-color: #666666; + --link-color: #0084CE; + --border-color: #e2efe9; + --block-bg: transparent; +} diff --git a/skins/southchain.scss b/skins/southchain.scss new file mode 100644 index 0000000000..95edd4c317 --- /dev/null +++ b/skins/southchain.scss @@ -0,0 +1,10 @@ +.southchain { + --primary-color: #4B0082; + --bg-color: white; + --text-color: #121212; + --link-color: #DD99FF; + --heading-color: #4B0082; + --border-color: #4B0082; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/spaceswap.scss b/skins/spaceswap.scss new file mode 100644 index 0000000000..88e1d49cce --- /dev/null +++ b/skins/spaceswap.scss @@ -0,0 +1,10 @@ +.spaceswap { + --primary-color: #FE7A79; + --bg-color: #FBF0ED; + --text-color: #957268; + --link-color: #FE7A79; + --heading-color: #000F89; + --border-color: #E0CBC6; + --header-bg: #FBF0ED; + --block-bg: #FBF0ED; +} diff --git a/spaces/spaghetti/skin.scss b/skins/spaghetti.scss similarity index 100% rename from spaces/spaghetti/skin.scss rename to skins/spaghetti.scss diff --git a/skins/spicedao.scss b/skins/spicedao.scss new file mode 100644 index 0000000000..1492409fa2 --- /dev/null +++ b/skins/spicedao.scss @@ -0,0 +1,10 @@ +.spicedao { + --primary-color: #000; + --bg-color: #1201ff; + --link-color: #cf0; + --heading-color: #000; + --border-color: #000; + --header-bg: #cf0; + --block-bg: transparent; + --text-color: #cf0; +} \ No newline at end of file diff --git a/skins/spiderdao.scss b/skins/spiderdao.scss new file mode 100644 index 0000000000..5c2f386473 --- /dev/null +++ b/skins/spiderdao.scss @@ -0,0 +1,10 @@ +.spiderdao { + --primary-color: #006c65; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/spooky.scss b/skins/spooky.scss new file mode 100644 index 0000000000..25b9a1409e --- /dev/null +++ b/skins/spooky.scss @@ -0,0 +1,10 @@ +.spooky{ + --primary-color: #8C8CE3; + --bg-color: #F2F4F8; + --text-color: #3F5478; + --link-color: #687EA8; + --heading-color: #31415E; + --border-color: #D7DEEA; + --header-bg: rgba(255, 255, 255, 0.6); + --block-bg: rgba(255, 255, 255, 0.6); +} \ No newline at end of file diff --git a/skins/sporkdao.scss b/skins/sporkdao.scss new file mode 100644 index 0000000000..e2843bfd6c --- /dev/null +++ b/skins/sporkdao.scss @@ -0,0 +1,10 @@ +.sporkdao { + --primary-color: #fc5090; + --bg-color: #111111; + --text-color: white; + --link-color: #fc5090; + --heading-color: #fc5090; + --border-color: white; + --header-bg: transparent; + --block-bg: transparent; +} diff --git a/skins/sportx.scss b/skins/sportx.scss new file mode 100644 index 0000000000..a0ddaf1925 --- /dev/null +++ b/skins/sportx.scss @@ -0,0 +1,10 @@ +.sportx { + --primary-color: #388e3c; + --bg-color: #f1f1f3; + --text-color: #707070; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: #f7f7f7; + --block-bg: white; +} diff --git a/skins/squirrelcash.scss b/skins/squirrelcash.scss new file mode 100644 index 0000000000..4d1b91502c --- /dev/null +++ b/skins/squirrelcash.scss @@ -0,0 +1,10 @@ +.squirrelcash { + --primary-color: #BAA311; + --bg-color: #FFFFFF; + --text-color: #565b69; + --link-color: #000000; + --heading-color: #BAA311; + --border-color: #e1e3e7; + --header-bg: #FFFFFF; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/stakedao.scss b/skins/stakedao.scss new file mode 100644 index 0000000000..b5df4807a0 --- /dev/null +++ b/skins/stakedao.scss @@ -0,0 +1,10 @@ +.stakedao { + --primary-color: #6b7fff; + --bg-color: #1a202c; + --text-color: #fcfeff; + --link-color: #6b7fff; + --heading-color: #6b7fff; + --border-color: #4a5568; + --header-bg: #1a202c; + --block-bg: transparent; +} \ No newline at end of file diff --git a/skins/stakewise.scss b/skins/stakewise.scss new file mode 100644 index 0000000000..fbfe5087fd --- /dev/null +++ b/skins/stakewise.scss @@ -0,0 +1,25 @@ +.stakewise { + --primary-color: #3358f4; + --bg-color: #1d253b; + --text-color: #9a9a9a; + --link-color: #e3e3e3; + --heading-color: #e3e3e3; + --border-color: #444444; + --header-bg: #27293d; + --block-bg: #27293d; + + #navbar { + background-color: #1d8cf8; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #1d8cf8, #3358f4); + } + + #navbar a { + color: white !important; + } + + #navbar button { + border-color: white; + color: white; + } +} diff --git a/spaces/status/skin.scss b/skins/status.scss similarity index 100% rename from spaces/status/skin.scss rename to skins/status.scss diff --git a/skins/steakbank.scss b/skins/steakbank.scss new file mode 100644 index 0000000000..c9ffe2c70e --- /dev/null +++ b/skins/steakbank.scss @@ -0,0 +1,9 @@ +.steakbank { + --primary-color: #701629; + --header-bg: none; + --bg-color: #EEEBD9; + --border-color: #D3C2B7; + --text-color: #483D3B; + --link-color: #701629; + --heading-color: #701629; +} diff --git a/skins/streamr.scss b/skins/streamr.scss new file mode 100644 index 0000000000..2b71c2854f --- /dev/null +++ b/skins/streamr.scss @@ -0,0 +1,10 @@ +.streamr { + --primary-color: #0324FF; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/spaces/sushi/skin.scss b/skins/sushi.scss similarity index 100% rename from spaces/sushi/skin.scss rename to skins/sushi.scss diff --git a/skins/sushipowah.scss b/skins/sushipowah.scss new file mode 100644 index 0000000000..7dcba40a68 --- /dev/null +++ b/skins/sushipowah.scss @@ -0,0 +1,9 @@ +.sushipowah { + --primary-color: #f1712a; + --header-bg: #f7f4f2; + --bg-color: #f0e9e7; + --border-color: #e2d6cf; + --text-color: #aa9585; + --link-color: #5b3926; + --heading-color: #5b3926; +} diff --git a/skins/swagg.scss b/skins/swagg.scss new file mode 100644 index 0000000000..26cf1b1b2b --- /dev/null +++ b/skins/swagg.scss @@ -0,0 +1,9 @@ +.swagg { + --primary-color: #4501FC; + --bg-color: #0f1011; + --text-color: #586069; + --link-color: white; + --heading-color: white; + --border-color: #353d45; + --header-bg: #151617; +} diff --git a/spaces/swaphub/skin.scss b/skins/swaphub.scss similarity index 100% rename from spaces/swaphub/skin.scss rename to skins/swaphub.scss diff --git a/spaces/swapx/skin.scss b/skins/swapx.scss similarity index 100% rename from spaces/swapx/skin.scss rename to skins/swapx.scss diff --git a/skins/swarm.scss b/skins/swarm.scss new file mode 100644 index 0000000000..7c428033bf --- /dev/null +++ b/skins/swarm.scss @@ -0,0 +1,10 @@ +.swarm { + --primary-color: #F3902D; + --bg-color: #f4f7ff; + --text-color: #9aa8cf; + --link-color: #4b5e92; + --heading-color: #4b5e92; + --border-color: #9aa8cf; + --header-bg: #ffffff; + --block-bg: #ffffff; +} diff --git a/spaces/swerve/skin.scss b/skins/swerve.scss similarity index 100% rename from spaces/swerve/skin.scss rename to skins/swerve.scss diff --git a/spaces/synthetix/skin.scss b/skins/synthetix.scss similarity index 100% rename from spaces/synthetix/skin.scss rename to skins/synthetix.scss diff --git a/skins/takeprofit.scss b/skins/takeprofit.scss new file mode 100644 index 0000000000..4b7ea4e193 --- /dev/null +++ b/skins/takeprofit.scss @@ -0,0 +1,9 @@ +.takeprofit { + --primary-color: #13afa2; + --bg-color: #1e1d20; + --text-color: #f8f8ff; + --link-color: #f8f8ff; + --heading-color: #f8f8ff; + --border-color: #5bcdc5; + --header-bg: #45434a; +} diff --git a/skins/taraxa.scss b/skins/taraxa.scss new file mode 100644 index 0000000000..36618ed94d --- /dev/null +++ b/skins/taraxa.scss @@ -0,0 +1,10 @@ +.taraxa { + --primary-color: #15AC5B; + --bg-color: #151823; + --text-color: #8b949e; + --link-color: #15AC5B; + --heading-color: #FFFFFF; + --border-color: #31364B; + --header-bg: #1E2231; + --block-bg: #1E2231; +} diff --git a/skins/tballiance.scss b/skins/tballiance.scss new file mode 100644 index 0000000000..010d5d3476 --- /dev/null +++ b/skins/tballiance.scss @@ -0,0 +1,10 @@ +.tballiance { + --primary-color: #f4981c; + --bg-color: #f1f1f3; + --text-color: #707070; + --link-color: #27b66f; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: #f7f7f7; + --block-bg: white; +} diff --git a/skins/thekapitaldao.scss b/skins/thekapitaldao.scss new file mode 100644 index 0000000000..112d0f2dd6 --- /dev/null +++ b/skins/thekapitaldao.scss @@ -0,0 +1,10 @@ +.thekapitaldao { + --primary-color: #D6FC00; + --bg-color: black; + --text-color: #FAFAFA; + --link-color: white; + --heading-color: white; + --border-color: #AFAFAF; + --header-bg: black; + --block-bg: transparent; +} diff --git a/skins/thelao.scss b/skins/thelao.scss new file mode 100644 index 0000000000..fffddeba1b --- /dev/null +++ b/skins/thelao.scss @@ -0,0 +1,9 @@ +.thelao { + --primary-color: #000000; + --header-bg: #000000; + --bg-color: #534f44; + --border-color: #FF69B4; + --text-color: #FFFFFF; + --link-color: #89cff0; + --heading-color: #89cff0; +} diff --git a/skins/thirm.scss b/skins/thirm.scss new file mode 100644 index 0000000000..8e45b33cb6 --- /dev/null +++ b/skins/thirm.scss @@ -0,0 +1,9 @@ +.thirm { + --primary-color: #307fec; + --bg-color: #f9fafb; + --text-color: #949ca9; + --link-color: #212529; + --heading-color: #212529; + --border-color: #e1e1e1; + --header-bg: white; +} diff --git a/skins/totemearth.scss b/skins/totemearth.scss new file mode 100644 index 0000000000..df122c08ed --- /dev/null +++ b/skins/totemearth.scss @@ -0,0 +1,11 @@ +.totemearth { + --primary-color: #73CCBE; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #73CCBE; + --header-bg: white; + --block-bg: transparent; + } + \ No newline at end of file diff --git a/skins/tracer.scss b/skins/tracer.scss new file mode 100644 index 0000000000..74d8672ab7 --- /dev/null +++ b/skins/tracer.scss @@ -0,0 +1,10 @@ +.tracer { + --primary-color: #0000bd; + --bg-color: #fff; + --text-color: #0000bd; + --link-color: #0000bd; + --heading-color: #0000bd; + --border-color: #E5E5F8; + --header-bg: #f2f2fc; + --block-bg: transparent; +} diff --git a/skins/treasuredao.scss b/skins/treasuredao.scss new file mode 100644 index 0000000000..40ec5d4576 --- /dev/null +++ b/skins/treasuredao.scss @@ -0,0 +1,9 @@ +.treasuredao { + --primary-color: #dC2626; + --bg-color: #fef5df; + --text-color: #101827; + --link-color: #dC2626; + --heading-color: #101827; + --border-color: #fdebc0; + --header-bg: #fef5df; +} diff --git a/skins/tripscommunity.scss b/skins/tripscommunity.scss new file mode 100644 index 0000000000..29154941fb --- /dev/null +++ b/skins/tripscommunity.scss @@ -0,0 +1,10 @@ +.tripscommunity { + --primary-color: #467494; + --bg-color: white; + --text-color: #2A2F35; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/trustwallet.scss b/skins/trustwallet.scss new file mode 100644 index 0000000000..ded9f4b26a --- /dev/null +++ b/skins/trustwallet.scss @@ -0,0 +1,10 @@ +.trustwallet { + --primary-color: #2e91db; + --bg-color: white; + --text-color: #708090; + --link-color: #212529; + --heading-color: #212529; + --border-color: #e1e1e1; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/tw33t.scss b/skins/tw33t.scss new file mode 100644 index 0000000000..1f59c88da2 --- /dev/null +++ b/skins/tw33t.scss @@ -0,0 +1,9 @@ +.tw33t { + --primary-color: #4d4d4d; + --bg-color: #000000; + --text-color: #ffffff; + --link-color: #c1c1c1; + --heading-color: #ffffff; + --border-color: #ffffff; + --header-bg: #000000; +} diff --git a/spaces/uma/skin.scss b/skins/uma.scss similarity index 100% rename from spaces/uma/skin.scss rename to skins/uma.scss diff --git a/skins/unfederalreserve.scss b/skins/unfederalreserve.scss new file mode 100644 index 0000000000..a23fabe726 --- /dev/null +++ b/skins/unfederalreserve.scss @@ -0,0 +1,10 @@ +.unfederalreserve { + --primary-color: #610010; + --header-bg: #2552d0; + --bg-color: #587bdf; + --border-color: rgba(255, 0, 0, 0.2); + --text-color: #ffffff; + --link-color: #004a94; + --heading-color: #28263b; + --block-bg: transparent; +} diff --git a/skins/unicore.scss b/skins/unicore.scss new file mode 100644 index 0000000000..ce1c7fc312 --- /dev/null +++ b/skins/unicore.scss @@ -0,0 +1,10 @@ +.unicore { + --primary-color: #f44336; + --bg-color: #071834; + --text-color: #c2c5ca; + --link-color: #ffea00; + --heading-color: #f44336; + --border-color: #40454f; + --header-bg: #212429; + --block-bg: transparent; +} \ No newline at end of file diff --git a/spaces/unidao/skin.scss b/skins/unidao.scss similarity index 100% rename from spaces/unidao/skin.scss rename to skins/unidao.scss diff --git a/skins/uniswap.scss b/skins/uniswap.scss new file mode 100644 index 0000000000..b1c2e965e7 --- /dev/null +++ b/skins/uniswap.scss @@ -0,0 +1,21 @@ +.uniswap { + --primary-color: #ff007a; + --bg-color: #ffffff; + --text-color: #565b69; + --link-color: #000000; + --heading-color: #ff007a; + --border-color: #e1e3e7; + --header-bg: #ffffff; + --block-bg: transparent; +} + +.uniswap-dark-mode { + --primary-color: #2172e5; + --bg-color: #212429; + --text-color: #c2c5ca; + --link-color: #ffffff; + --heading-color: #2172e5; + --border-color: #40454f; + --header-bg: #212429; + --block-bg: transparent; +} diff --git a/skins/unitprotocol.scss b/skins/unitprotocol.scss new file mode 100644 index 0000000000..58d138fe58 --- /dev/null +++ b/skins/unitprotocol.scss @@ -0,0 +1,10 @@ +.unitprotocol { + --primary-color: #000000; + --bg-color: #F2C1F1; + --text-color: #000000; + --link-color: #CB00FF; + --heading-color: #CB00FF; + --border-color: #CB00FF; + --header-bg: #EEAEF2; + --block-bg: transparent; +} diff --git a/skins/universe.scss b/skins/universe.scss new file mode 100644 index 0000000000..0c22248153 --- /dev/null +++ b/skins/universe.scss @@ -0,0 +1,9 @@ +.universe { + --primary-color: #7AEB53; + --bg-color: #000000; + --text-color: #FFFFFF; + --link-color: #7AEB53; + --heading-color: #ffffff; + --border-color: #3D3D3D; + --header-bg: #000000; +} diff --git a/skins/velotoken.scss b/skins/velotoken.scss new file mode 100644 index 0000000000..226a57cb88 --- /dev/null +++ b/skins/velotoken.scss @@ -0,0 +1,9 @@ +.velotoken { + --primary-color: #384aff; + --bg-color: #0f1011; + --text-color: #586069; + --link-color: white; + --heading-color: white; + --border-color: #353d45; + --header-bg: #151617; +} diff --git a/skins/visor.scss b/skins/visor.scss new file mode 100644 index 0000000000..87780b264a --- /dev/null +++ b/skins/visor.scss @@ -0,0 +1,9 @@ +.visor { + --primary-color: #D4FB67; + --header-bg: #262626; + --bg-color: #161616; + --border-color: #000000; + --text-color: #aeaeae; + --link-color: white; + --heading-color: #D4FB67; +} diff --git a/skins/votewarp.scss b/skins/votewarp.scss new file mode 100644 index 0000000000..34aabfdf49 --- /dev/null +++ b/skins/votewarp.scss @@ -0,0 +1,10 @@ +.votewarp { + --primary-color: #5eb872; + --bg-color: #212121; + --text-color: #FFFFFF; + --link-color: #FFFFFF; + --heading-color: #FFFFFF; + --border-color: #464646; + --header-bg: #464646; + --block-bg: #292929; +} diff --git a/skins/wassies.scss b/skins/wassies.scss new file mode 100644 index 0000000000..aabaa57d84 --- /dev/null +++ b/skins/wassies.scss @@ -0,0 +1,11 @@ + +.wassies { + --primary-color: #384aff; + --bg-color: #20672C; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/web3-api.scss b/skins/web3-api.scss new file mode 100644 index 0000000000..92c654517c --- /dev/null +++ b/skins/web3-api.scss @@ -0,0 +1,10 @@ +.web3-api { + --primary-color: #60C093; + --bg-color: #1C272D; + --text-color: #586069; + --link-color: #529DAD; + --heading-color: #529DAD; + --border-color: #353d45; + --header-bg: #1C272D; + --block-bg: transparent; +} diff --git a/skins/wolfdefi.scss b/skins/wolfdefi.scss new file mode 100644 index 0000000000..83e0dcec25 --- /dev/null +++ b/skins/wolfdefi.scss @@ -0,0 +1,11 @@ +.wolfdefi { + --primary-color: #b6509e; + --bg-color: #f1f1f3; + --text-color: #707070; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: #f7f7f7; + --block-bg: white; + +} diff --git a/skins/xpunks.scss b/skins/xpunks.scss new file mode 100644 index 0000000000..fd3a4db5e9 --- /dev/null +++ b/skins/xpunks.scss @@ -0,0 +1,16 @@ +.xpunks { + --primary-color: #ffbf00; + --bg-color: white; + --text-color: #2d3748; + --link-color: #6b2d5c; + --heading-color: #111111; + --border-color: #6b2d5c; + --header-bg: white; + --block-bg: transparent; + + #navbar { + border-bottom: 4px solid transparent; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #ffbf00, #6b2d5c); + } +} diff --git a/skins/y3d.scss b/skins/y3d.scss new file mode 100644 index 0000000000..39aedad918 --- /dev/null +++ b/skins/y3d.scss @@ -0,0 +1,10 @@ +.y3d { + --primary-color: #F03A17; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #F03A17; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: transparent; +} diff --git a/skins/yakuza.scss b/skins/yakuza.scss new file mode 100644 index 0000000000..9f45f56ace --- /dev/null +++ b/skins/yakuza.scss @@ -0,0 +1,9 @@ +.yakuza { + --primary-color: #d92533; + --bg-color: rgb(85,13,40); + --text-color: #AAAAAA; + --link-color: #FFFFFF; + --heading-color: #d92533; + --border-color: rgba(26,1,38,1); + --header-bg: transparent; +} diff --git a/skins/yam.scss b/skins/yam.scss new file mode 100644 index 0000000000..7b7ad488ed --- /dev/null +++ b/skins/yam.scss @@ -0,0 +1,9 @@ +.yam { + --primary-color: #d2004a; + --bg-color: #f5f1f2; + --text-color: #a98592; + --link-color: #5b2739; + --heading-color: #5b2839; + --border-color: #d6d0d1; + --header-bg: #f7f3f4; +} diff --git a/spaces/yam/skin.scss b/skins/yamv2.scss similarity index 95% rename from spaces/yam/skin.scss rename to skins/yamv2.scss index 617a71a8f9..89e6d17e92 100644 --- a/spaces/yam/skin.scss +++ b/skins/yamv2.scss @@ -1,4 +1,4 @@ -.yam { +.yamv2 { --primary-color: #d2004a; --bg-color: #efe7ea; --text-color: #a98592; diff --git a/skins/yashadao.scss b/skins/yashadao.scss new file mode 100644 index 0000000000..03c4251108 --- /dev/null +++ b/skins/yashadao.scss @@ -0,0 +1,10 @@ +.yashadao { + --primary-color: #384aff; + --bg-color: black; + --text-color: white; + --link-color: yellow; + --heading-color: white; + --border-color: red; + --header-bg: black; + --block-bg: transparent; +} diff --git a/skins/yaxis.scss b/skins/yaxis.scss new file mode 100644 index 0000000000..0dc2a1aedd --- /dev/null +++ b/skins/yaxis.scss @@ -0,0 +1,14 @@ +.yaxis { + --primary-color: #d7d7d7; + --bg-color: #f8fafd; + --text-color: #a7b0bf; + --link-color: black; + --heading-color: rgba(0, 0, 0, 0.85); + --border-color: #e7eaec; + --header-bg: white; + --block-bg: white; + + #navbar { + background: linear-gradient(180deg, #016eac 20.17%, #52b2dc 100%); + } +} diff --git a/skins/yearn.scss b/skins/yearn.scss new file mode 100644 index 0000000000..95173adada --- /dev/null +++ b/skins/yearn.scss @@ -0,0 +1,25 @@ +.yearn { + --primary-color: #0657f9; + --bg-color: white; + --text-color: #586069; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: white; + --block-bg: white; + + #navbar { + background-color: #0657f9; + border-bottom: 1px solid #0657f9 !important; + } + + #navbar a, + #navbar .text-gray { + color: white !important; + } + + #navbar button { + border-color: white; + color: white; + } +} diff --git a/skins/yesports.scss b/skins/yesports.scss new file mode 100644 index 0000000000..135107442f --- /dev/null +++ b/skins/yesports.scss @@ -0,0 +1,62 @@ +.yesports { + --primary-color: #00ffff; + --bg-color: #121212; + --text-color: #aaaaaa; + --link-color: #e8e8e8; + --heading-color: #e8e8e8; + --header-bg: #121212; + --block-bg: transparent; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif !important; + --border-color: rgba(255, 255, 255, 0.1); + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient(to left, #e8e8e8, #0fffff); + } + + a.block { + background-color: rgba(0,0,0,0.64); + border-radius: 10px; + border: 1px solid #0d0d0d; + box-shadow: 0 0 #e60073, 0 0 #e60073, 0 0 #e60073, 0 0 #e60073, 0 0 #e60073, 0 0 #e60073, 0 0 #e60073, 0 0 #e60073; + transform: translateX(0) translateY(0); + transition: box-shadow 400ms ease-in-out,background-color 400ms ease-in-out,transform 400ms ease-in-out; + } + + a.block:hover { + box-shadow: -1px 1px #e60073, -2px 2px #e60073, -3px 3px #e60073, -4px 4px #e60073, -5px 5px #e60073, -6px 6px #e60073, -7px 7px #e60073, -8px 8px #e60073; + transform: translateX(8px) translateY(-8px); + background-color: white; + transition: box-shadow 400ms ease-in-out,background-color 400ms ease-in-out,transform 400ms ease-in-out; + color: black; + } + + .rounded-full { + border-radius: 2px !important; + } + + button.button { + color: #e8e8e8; + background-color: transparent; + border: 1px solid #FF2B97; + font-weight: bold; + transform: translateX(0) translateY(0); + box-shadow: 0 0 #e60073, 0 0 #e60073, 0 0 #e60073, 0 0 #e60073; + transition: box-shadow 400ms ease-in-out,background-color 400ms ease-in-out,transform 400ms ease-in-out; + } + + button.button:hover { + box-shadow: -1px 1px #e60073, -2px 2px #e60073, -3px 3px #e60073, -4px 4px #e60073; + background-color: rgba(255, 255, 255, 0.1) !important; + transform: translateX(4px) translateY(-4px); + transition: box-shadow 400ms ease-in-out,background-color 400ms ease-in-out,transform 400ms ease-in-out; + } + + .bg-violet-600 { + --tw-bg-opacity: 1; + background: linear-gradient(to left, #e8e8e8, #0fffff); + color: black !important; + } + + } \ No newline at end of file diff --git a/spaces/aragon/skin.scss b/skins/yfarm.scss similarity index 93% rename from spaces/aragon/skin.scss rename to skins/yfarm.scss index 1cf14ef190..7f133010e9 100644 --- a/spaces/aragon/skin.scss +++ b/skins/yfarm.scss @@ -1,4 +1,4 @@ -.aragon { +.yfarm { --primary-color: #00d0fc; --bg-color: #f6f9fc; --text-color: #6f7ca6; @@ -6,4 +6,4 @@ --heading-color: #20232c; --border-color: #dde4e8; --header-bg: #ffffff; -} +} \ No newline at end of file diff --git a/skins/yffc.scss b/skins/yffc.scss new file mode 100644 index 0000000000..7ddf512e51 --- /dev/null +++ b/skins/yffc.scss @@ -0,0 +1,9 @@ +.yffc { + --primary-color: #f1712a; + --header-bg: none; + --bg-color: #f5f3f3; + --border-color: #e2d6cf; + --text-color: #12aab5; + --link-color: #452a7a; + --heading-color: #452a7a; +} \ No newline at end of file diff --git a/skins/yffs.scss b/skins/yffs.scss new file mode 100644 index 0000000000..c0172fb98b --- /dev/null +++ b/skins/yffs.scss @@ -0,0 +1,9 @@ +.yffs { + --primary-color: #00d0fc; + --bg-color: #f6f9fc; + --text-color: #6f7ca6; + --link-color: #20232c; + --heading-color: #20232c; + --border-color: #dde4e8; + --header-bg: #ffffff; +} \ No newline at end of file diff --git a/spaces/yflink/skin.scss b/skins/yflink.scss similarity index 100% rename from spaces/yflink/skin.scss rename to skins/yflink.scss diff --git a/spaces/ymen/skin.scss b/skins/ymen.scss similarity index 100% rename from spaces/ymen/skin.scss rename to skins/ymen.scss diff --git a/skins/yup.scss b/skins/yup.scss new file mode 100644 index 0000000000..a7808adf4a --- /dev/null +++ b/skins/yup.scss @@ -0,0 +1,23 @@ +.yup { + --primary-color: #00eab7; + --bg-color: #f1f1f3; + --text-color: #707070; + --link-color: #111111; + --heading-color: #111111; + --border-color: #d1d5da; + --header-bg: #f7f7f7; + --block-bg: white; + + #navbar { + border-bottom: 4px solid black !important; + border-image-slice: 1; + border-image-source: linear-gradient( + to left, + #be1e2d, + #f08c28, + #f0c800, + #7fba1b, + #00eab7 + ); + } +} diff --git a/skins/zeta.scss b/skins/zeta.scss new file mode 100644 index 0000000000..84e3aaa7c6 --- /dev/null +++ b/skins/zeta.scss @@ -0,0 +1,10 @@ +.zeta { + --primary-color: #084A83; + --bg-color: #C6E5F3; + --text-color: #FFFDFE; + --link-color: #FFFDFE; + --heading-color: #FFFDFE; + --border-color: #d1d5da; + --header-bg: #4177A3; + --block-bg: #4177A3; +} diff --git a/skins/zlot.scss b/skins/zlot.scss new file mode 100644 index 0000000000..3add97146c --- /dev/null +++ b/skins/zlot.scss @@ -0,0 +1,10 @@ +.zlot { + --primary-color: #46fef4; + --bg-color: #121c36; + --text-color: white; + --link-color: #46fef4; + --heading-color: #46fef4; + --border-color: #19274d; + --header-bg: #19274d; + --block-bg: transparent; +} diff --git a/skins/zoocoin.scss b/skins/zoocoin.scss new file mode 100644 index 0000000000..3939685cc0 --- /dev/null +++ b/skins/zoocoin.scss @@ -0,0 +1,10 @@ +.zoocoin { + --primary-color: #00D110; + --bg-color: black; + --text-color: #FAFAFA; + --link-color: white; + --heading-color: white; + --border-color: #AFAFAF; + --header-bg: black; + --block-bg: transparent; +} diff --git a/spaces/aave/index.json b/spaces/aave/index.json deleted file mode 100644 index 5d6c65953c..0000000000 --- a/spaces/aave/index.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "key": "aave", - "name": "Aave", - "chainId": 1, - "decimals": 18, - "symbol": "LEND", - "defaultView": "all", - "address": "0x80fB784B7eD66730e8b1DBd9820aFD29931aab03", - "token": "0x80fB784B7eD66730e8b1DBd9820aFD29931aab03", - "core": [ - "0x4Bf03635d42067CF86aaaF173F134765c30e40Fc", - "0xE22dc7b37Bf7F08E9F53313564Ef023220918B32", - "0x4f1fe83425e8050D56e308E2a12dB9B8874375D5", - "0x0150B0ec3c7b72879FbfdbDD79c18a8368B194E0" - ], - "min": 0, - "invalid": [], - "showOnlyCore": true, - "strategies": [ - ["erc20-balance-of", { - "address": "0x80fB784B7eD66730e8b1DBd9820aFD29931aab03", - "symbol": "LEND", - "decimals": 18 - }], - ["erc20-balance-of", { - "address": "0x7D2D3688Df45Ce7C552E19c27e007673da9204B8", - "symbol": "aLEND", - "decimals": 18 - }] - ] -} diff --git a/spaces/aave/logo-1.png b/spaces/aave/logo-1.png deleted file mode 100644 index 40d327706a..0000000000 Binary files a/spaces/aave/logo-1.png and /dev/null differ diff --git a/spaces/aave/logo.png b/spaces/aave/logo.png deleted file mode 100644 index 06860d0560..0000000000 Binary files a/spaces/aave/logo.png and /dev/null differ diff --git a/spaces/aave/logo1.png b/spaces/aave/logo1.png deleted file mode 100644 index 40d327706a..0000000000 Binary files a/spaces/aave/logo1.png and /dev/null differ diff --git a/spaces/aave/space.png b/spaces/aave/space.png deleted file mode 100644 index 621f5a8a9f..0000000000 Binary files a/spaces/aave/space.png and /dev/null differ diff --git a/spaces/aavegotchi/index.json b/spaces/aavegotchi/index.json deleted file mode 100644 index aed4e0ba46..0000000000 --- a/spaces/aavegotchi/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "aavegotchi", - "name": "Aavegotchi", - "chainId": 1, - "decimals": 18, - "symbol": "GHST", - "defaultView": "all", - "address": "0x3F382DbD960E3a9bbCeaE22651E88158d2791550", - "token": "0x3F382DbD960E3a9bbCeaE22651E88158d2791550", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/aavegotchi/logo.png b/spaces/aavegotchi/logo.png deleted file mode 100644 index 51a607b6db..0000000000 Binary files a/spaces/aavegotchi/logo.png and /dev/null differ diff --git a/spaces/aavegotchi/skin.scss b/spaces/aavegotchi/skin.scss deleted file mode 100644 index e6e141ec38..0000000000 --- a/spaces/aavegotchi/skin.scss +++ /dev/null @@ -1,18 +0,0 @@ -.aavegotchi { - --primary-color: #04B7BC; - --bg-color: #4C1F7D; - --text-color: white; - --link-color: white; - --heading-color: white; - --border-color: rgba(255,255,255,0.2); - --header-bg: #F741F0; - --block-bg: transparent; - - #topnav { - border-bottom: 4px solid black !important; - border-image-slice: 1; - border-image-source: linear-gradient(to left, #F741F0, #04B7BC); - } -} - - diff --git a/spaces/aavegotchi/space.png b/spaces/aavegotchi/space.png deleted file mode 100644 index 51a607b6db..0000000000 Binary files a/spaces/aavegotchi/space.png and /dev/null differ diff --git a/spaces/adex/index.json b/spaces/adex/index.json deleted file mode 100644 index 9d73a332bf..0000000000 --- a/spaces/adex/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "adex", - "name": "AdEx Network", - "chainId": 1, - "decimals": 18, - "symbol": "ADX", - "defaultView": "all", - "address": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", - "token": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/adex/logo.png b/spaces/adex/logo.png deleted file mode 100644 index 3d69e3df20..0000000000 Binary files a/spaces/adex/logo.png and /dev/null differ diff --git a/spaces/adex/skin.scss b/spaces/adex/skin.scss deleted file mode 100644 index d0fc032b93..0000000000 --- a/spaces/adex/skin.scss +++ /dev/null @@ -1,16 +0,0 @@ -.adex { - --primary-color: #b6509e; - --bg-color: #f1f1f3; - --text-color: #707070; - --link-color: #111111; - --heading-color: #111111; - --border-color: #d1d5da; - --header-bg: #f7f7f7; - --block-bg: white; - - #topnav { - border-bottom: 4px solid black !important; - border-image-slice: 1; - border-image-source: linear-gradient(to left, #1C75BC, #14DD9C); - } -} diff --git a/spaces/adex/space.png b/spaces/adex/space.png deleted file mode 100644 index 3d69e3df20..0000000000 Binary files a/spaces/adex/space.png and /dev/null differ diff --git a/spaces/alex/index.json b/spaces/alex/index.json deleted file mode 100644 index 35f1f321d1..0000000000 --- a/spaces/alex/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "alex", - "name": "Alex Masmej", - "chainId": 1, - "decimals": 4, - "symbol": "ALEX", - "defaultView": "all", - "address": "0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315", - "token": "0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/alex/logo.png b/spaces/alex/logo.png deleted file mode 100644 index be2277793c..0000000000 Binary files a/spaces/alex/logo.png and /dev/null differ diff --git a/spaces/alex/space.png b/spaces/alex/space.png deleted file mode 100644 index be2277793c..0000000000 Binary files a/spaces/alex/space.png and /dev/null differ diff --git a/spaces/aliases.json b/spaces/aliases.json new file mode 100644 index 0000000000..5491eef2be --- /dev/null +++ b/spaces/aliases.json @@ -0,0 +1,80 @@ +{ + "treasuredao.eth": "treasuregaming.eth", + "cryptopugz": "cryptopugz.eth", + "aave": "aave.eth", + "aavegotchi": "aavegotchi.eth", + "airswap": "vote.airswap.eth", + "dhedge": "gov.dhedge.eth", + "unfederalreserve": "unfederalreserve.eth", + "andrewladdusaw.eth": "everydaydao.eth", + "sushi": "sushigov.eth", + "sushipowah": "sushigov.eth", + "yam": "yam.eth", + "yamv2": "yam.eth", + "velotoken": "velotoken.eth", + "cream": "cream-finance.eth", + "bzx": "bzx.eth", + "metafactory": "metafactory.eth", + "stabilize": "stabilize-governance.eth", + "diadata": "diadao.eth", + "gnosis": "gnosis.eth", + "farm": "harvestfi.eth", + "tokenlon": "tokenlon.eth", + "synthetixcouncil": "spartancouncil.eth", + "synthetixproposal": "snxgov.eth", + "synthetixgrants": "snxgrants.eth", + "cover": "cover-protocol.eth", + "iwan": "iwan.eth", + "oceandao": "officialoceandao.eth", + "macaronswap": "macaronswap.eth", + "pepemon": "pepedontdump.eth", + "akropolis-delphi": "akropolis.eth", + "rally": "rallygov.eth", + "debaseonomics": "debaseonomics.eth", + "pickle": "pickle.eth", + "index": "index-coop.eth", + "streamr": "streamr.eth", + "rarible": "rarible.eth", + "curve": "curve.eth", + "sil": "sister-in-law.eth", + "digital-reserve-currency": "drctoken.eth", + "web3-api": "polywrap.eth", + "mstable": "mstablegovernance.eth", + "adex": "adex.eth", + "balancer": "balancer.eth", + "peripheralist.eth": "tiledao.eth", + "seen": "seenhaus.eth", + "kleros": "kleros.eth", + "piedao": "piedao.eth", + "dracula": "draculasucks.eth", + "pillar": "pillarwallet.eth", + "yaxis": "yaxis.eth", + "spaceswap": "spaceswap.eth", + "descience.eth": "people-dao.eth", + "dforce": "dforcenet.eth", + "rari": "fuse.eth", + "nft20.eth": "musedao.eth", + "tripscommunity": "tripscommunity.eth", + "deversifi.eth": "rhinofi.vote", + "cake.eth": "cakevote.eth", + "project-galaxy.eth": "gal.eth", + "epns.eth": "pushdao.eth", + "tptdao.eth": "itokenpocket.eth", + "tallyhodao.eth": "tahodao.eth", + "goodghosting.eth": "halofi.eth", + "arbitrum-odyssey.eth": "arbitrumfoundation.eth", + "pokt-network": "poktdao.eth", + "lensterapp.eth": "lenster.xyz", + "nexondao.eth": "eralend.eth", + "pancake": "cakevote.eth", + "gov.radicle.eth": "gov.radworks.eth", + "daoge.eth": "ownthedoge.eth", + "ownthedaoge.eth": "ownthedoge.eth", + "uniswap": "uniswapgovernance.eth", + "popcorn-snapshot.eth": "vaultcraft-snapshot.eth", + "kuma-inu.eth": "kumatokens.eth", + "x7community.eth": "x7finance.eth", + "redactedcartel.eth": "dinero.xyz", + "gal.eth": "g-dao.eth", + "bzr.eth": "rwg.eth" +} diff --git a/spaces/anjmol/index.json b/spaces/anjmol/index.json deleted file mode 100644 index 522d9a0cfa..0000000000 --- a/spaces/anjmol/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "anjmol", - "name": "Aragon Network Moloch DAO", - "chainId": 1, - "decimals": 18, - "symbol": "ANJMOL", - "defaultView": "all", - "address": "0xBa1A22228B091D2bC6E111df61Ae6f7e5102Da1a", - "token": "0xBa1A22228B091D2bC6E111df61Ae6f7e5102Da1a", - "core": [], - "min": 1, - "invalid": [] -} diff --git a/spaces/anjmol/logo.png b/spaces/anjmol/logo.png deleted file mode 100644 index cbbfaf8fdd..0000000000 Binary files a/spaces/anjmol/logo.png and /dev/null differ diff --git a/spaces/anjmol/space.png b/spaces/anjmol/space.png deleted file mode 100644 index cbbfaf8fdd..0000000000 Binary files a/spaces/anjmol/space.png and /dev/null differ diff --git a/spaces/aragon-rinkeby/index.json b/spaces/aragon-rinkeby/index.json deleted file mode 100644 index 3b4ffb377c..0000000000 --- a/spaces/aragon-rinkeby/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "aragon-rinkeby", - "name": "Aragon", - "chainId": 4, - "decimals": 18, - "symbol": "ANT", - "defaultView": "all", - "address": "0x0D5263B7969144a852D58505602f630f9b20239D", - "token": "0x0D5263B7969144a852D58505602f630f9b20239D", - "core": [], - "min": 10, - "invalid": [] -} diff --git a/spaces/aragon-rinkeby/logo.png b/spaces/aragon-rinkeby/logo.png deleted file mode 100644 index b7d420ab38..0000000000 Binary files a/spaces/aragon-rinkeby/logo.png and /dev/null differ diff --git a/spaces/aragon-rinkeby/space.png b/spaces/aragon-rinkeby/space.png deleted file mode 100644 index b7d420ab38..0000000000 Binary files a/spaces/aragon-rinkeby/space.png and /dev/null differ diff --git a/spaces/aragon/index.json b/spaces/aragon/index.json deleted file mode 100644 index 690711cb3c..0000000000 --- a/spaces/aragon/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "aragon", - "name": "Aragon", - "chainId": 1, - "decimals": 18, - "symbol": "ANT", - "defaultView": "all", - "address": "0x960b236A07cf122663c4303350609A66A7B288C0", - "token": "0x960b236A07cf122663c4303350609A66A7B288C0", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/aragon/logo.png b/spaces/aragon/logo.png deleted file mode 100644 index b7d420ab38..0000000000 Binary files a/spaces/aragon/logo.png and /dev/null differ diff --git a/spaces/aragon/space.png b/spaces/aragon/space.png deleted file mode 100644 index b7d420ab38..0000000000 Binary files a/spaces/aragon/space.png and /dev/null differ diff --git a/spaces/aragonchina/index.json b/spaces/aragonchina/index.json deleted file mode 100644 index 74512040a0..0000000000 --- a/spaces/aragonchina/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "aragonchina", - "name": "Aragon China", - "chainId": 1, - "decimals": 18, - "symbol": "ANC", - "defaultView": "all", - "address": "0xbbe319b73744db9d54f5d29df7d8256b7e43995c", - "token": "0xbbe319b73744db9d54f5d29df7d8256b7e43995c", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/aragonchina/logo.png b/spaces/aragonchina/logo.png deleted file mode 100644 index 3479502634..0000000000 Binary files a/spaces/aragonchina/logo.png and /dev/null differ diff --git a/spaces/aragonchina/space.png b/spaces/aragonchina/space.png deleted file mode 100644 index 3479502634..0000000000 Binary files a/spaces/aragonchina/space.png and /dev/null differ diff --git a/spaces/arckyf/index.json b/spaces/arckyf/index.json deleted file mode 100644 index 4b869b47da..0000000000 --- a/spaces/arckyf/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "arckyf", - "name": "ARC KYF Voting", - "chainId": 1, - "decimals": 0, - "symbol": "ARCKYF", - "defaultView": "all", - "address": "0xD85e2772912213e0c584d80B2694c79D6a09E39A", - "token": "0xD85e2772912213e0c584d80B2694c79D6a09E39A", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/arckyf/logo.png b/spaces/arckyf/logo.png deleted file mode 100644 index 97d55becd5..0000000000 Binary files a/spaces/arckyf/logo.png and /dev/null differ diff --git a/spaces/arckyf/space.png b/spaces/arckyf/space.png deleted file mode 100644 index 97d55becd5..0000000000 Binary files a/spaces/arckyf/space.png and /dev/null differ diff --git a/spaces/bake/index.json b/spaces/bake/index.json deleted file mode 100644 index d7b46d6d8a..0000000000 --- a/spaces/bake/index.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "key": "bake", - "name": "BAKE", - "chainId": 56, - "decimals": 18, - "symbol": "BAKEVOTE", - "defaultView": "core", - "address": "0x382d04194E3607dab5Ebaa5b9f8011A4c06e8b17", - "token": "0x382d04194E3607dab5Ebaa5b9f8011A4c06e8b17", - "core": [ - "0x7b859170918124dFBB924327582c32059266C383" - ], - "min": 0, - "invalid": [ - "QmWcAunxftimJjFNxcWLNHa9YbKZFuMzWXAQHynSMnBRYy", - "QmbAWvcYC5eLZXRLmo1bWupxzrvT7EwKdmLgqRY2ksRgiR", - "QmeH2i9MiUJk1qGgmFj6mefgXsyCEo8m5J1hmaCFPBstxu", - "Qmb9o3oj3FKM5iRRkGT9uZL5NMu6NmsFFLgz9Sy1G5Ad4A", - "QmZmMHhsBwrLCM2r7SGrRv8RKQWXxr5dYerMyM7wAtCE6Q", - "QmcqGisVJJJLA6JfBtbyngXAYhFo11dEcWHqm5BEtcCeA7", - "QmUQXEFVZYkmLjyAmPax5wZKaxv6Uijspw9ycjFgDUqWpE", - "QmVh5eKwWducVxYDsVQRRv6qqG4SKssMHAi1tuJtP7n1FJ", - "QmXYXp2U5bXoFzoYSisCHxUNWeHDeQYSVsW1XHf6gNsapm" - ] -} diff --git a/spaces/bake/logo.png b/spaces/bake/logo.png deleted file mode 100644 index 58e706f888..0000000000 Binary files a/spaces/bake/logo.png and /dev/null differ diff --git a/spaces/bake/space.png b/spaces/bake/space.png deleted file mode 100644 index 58e706f888..0000000000 Binary files a/spaces/bake/space.png and /dev/null differ diff --git a/spaces/balancer/index.json b/spaces/balancer/index.json deleted file mode 100644 index 864ddc8029..0000000000 --- a/spaces/balancer/index.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "key": "balancer", - "name": "Balancer", - "chainId": 1, - "decimals": 18, - "symbol": "BAL", - "defaultView": "core", - "address": "0xba100000625a3754423978a60c9317c58a424e3D", - "token": "0xba100000625a3754423978a60c9317c58a424e3D", - "core": [ - "0x24A12Fa313F57aF541d447c594072A992c605DCf", - "0x8BBE4Ac64246d600BC2889ef5d83809D138F03DF", - "0xeF8305E140ac520225DAf050e2f71d5fBcC543e7", - "0x107174D70b33523E83711EA4C3F4229cdB8A7Cb1", - "0x0b21Dbc34A953a35dFA629ad31e1cEE3dE0433Fb", - "0x40FDAa1bff3BB87bC70955Be6657edBFdBeb122e", - "0xcc6A949DB9b26a7173648d50Cf7C55e800E6585B" - ], - "min": 1, - "invalid": [], - "showOnlyCore": true, - "strategies": [ - ["erc20-balance-of", { - "address": "0xba100000625a3754423978a60c9317c58a424e3D", - "symbol": "BAL", - "decimals": 18 - }], - ["balancer", { - "address": "0xba100000625a3754423978a60c9317c58a424e3D", - "symbol": "BAL BPT" - }] - ] -} diff --git a/spaces/balancer/logo.png b/spaces/balancer/logo.png deleted file mode 100644 index 81d5c06392..0000000000 Binary files a/spaces/balancer/logo.png and /dev/null differ diff --git a/spaces/balancer/logo1.png b/spaces/balancer/logo1.png deleted file mode 100644 index 81d5c06392..0000000000 Binary files a/spaces/balancer/logo1.png and /dev/null differ diff --git a/spaces/balancer/space.png b/spaces/balancer/space.png deleted file mode 100644 index 81d5c06392..0000000000 Binary files a/spaces/balancer/space.png and /dev/null differ diff --git a/spaces/based/index.json b/spaces/based/index.json deleted file mode 100644 index cf095bba5d..0000000000 --- a/spaces/based/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "based", - "name": "$BASED", - "chainId": 1, - "decimals": 18, - "symbol": "$BASED", - "defaultView": "all", - "address": "0x68a118ef45063051eac49c7e647ce5ace48a68a5", - "token": "0x68a118ef45063051eac49c7e647ce5ace48a68a5", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/based/logo.png b/spaces/based/logo.png deleted file mode 100644 index b5b7b76791..0000000000 Binary files a/spaces/based/logo.png and /dev/null differ diff --git a/spaces/based/space.png b/spaces/based/space.png deleted file mode 100644 index b5b7b76791..0000000000 Binary files a/spaces/based/space.png and /dev/null differ diff --git a/spaces/bee2/index.json b/spaces/bee2/index.json deleted file mode 100644 index 37095ab646..0000000000 --- a/spaces/bee2/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "bee2", - "name": "Bee2 Finance", - "chainId": 1, - "decimals": 18, - "symbol": "BEE2", - "defaultView": "core", - "address": "0xcD4292701995F4707AE63fb1a48d80dB2c5F04D4", - "token": "0xcD4292701995F4707AE63fb1a48d80dB2c5F04D4", - "core": [ - "0x0d8E708F9CfF2634169D7c221CF6bfA0C5731d63" - ], - "min": 1, - "invalid": [] -} diff --git a/spaces/bee2/logo.png b/spaces/bee2/logo.png deleted file mode 100644 index 78560b1318..0000000000 Binary files a/spaces/bee2/logo.png and /dev/null differ diff --git a/spaces/bee2/space.png b/spaces/bee2/space.png deleted file mode 100644 index 78560b1318..0000000000 Binary files a/spaces/bee2/space.png and /dev/null differ diff --git a/spaces/bella/index.json b/spaces/bella/index.json deleted file mode 100644 index 1e9fff93ac..0000000000 --- a/spaces/bella/index.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "bella", - "name": "Bella", - "chainId": 1, - "decimals": 18, - "symbol": "BEL", - "defaultView": "core", - "address": "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14", - "token": "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14", - "core": [ - "0xDC1926b681838A684277767eE8b7597a3d29439b", - "0x7924A26d7E7088Bc6921CEb614E0f3b7D7a1ebee" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/bella/logo.png b/spaces/bella/logo.png deleted file mode 100644 index 6d97cabec3..0000000000 Binary files a/spaces/bella/logo.png and /dev/null differ diff --git a/spaces/bella/space.png b/spaces/bella/space.png deleted file mode 100644 index 6d97cabec3..0000000000 Binary files a/spaces/bella/space.png and /dev/null differ diff --git a/spaces/bobaswap/index.json b/spaces/bobaswap/index.json deleted file mode 100644 index 268339a44b..0000000000 --- a/spaces/bobaswap/index.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "key": "bobaswap", - "name": "Bobaswap", - "chainId": 1, - "decimals": 18, - "symbol": "BOBA", - "defaultView": "all", - "address": "0xce9afaf5b0da6ce0366ab40435a48ccff65d2ed7", - "token": "0xce9afaf5b0da6ce0366ab40435a48ccff65d2ed7", - "core": [ - "0xDC1926b681838A684277767eE8b7597a3d29439b", - "0x3Bd029d547CF483C684DBd6Dc207D4ce15e5b4d1", - "0x66F1C92B29441BCbA925c07abbBa2e23676b79a4" - ], - "min": 0, - "invalid": [], - "showOnlyCore": true -} diff --git a/spaces/bobaswap/logo.png b/spaces/bobaswap/logo.png deleted file mode 100644 index d32f086889..0000000000 Binary files a/spaces/bobaswap/logo.png and /dev/null differ diff --git a/spaces/bobaswap/space.png b/spaces/bobaswap/space.png deleted file mode 100644 index d32f086889..0000000000 Binary files a/spaces/bobaswap/space.png and /dev/null differ diff --git a/spaces/boosted-finance/index.json b/spaces/boosted-finance/index.json deleted file mode 100644 index 39d455eb19..0000000000 --- a/spaces/boosted-finance/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "boosted-finance", - "name": "Boosted Finance", - "chainId": 1, - "decimals": 18, - "symbol": "BOOST", - "defaultView": "all", - "address": "0x3e780920601D61cEdb860fe9c4a90c9EA6A35E78", - "token": "0x3e780920601D61cEdb860fe9c4a90c9EA6A35E78", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/boosted-finance/logo.png b/spaces/boosted-finance/logo.png deleted file mode 100644 index effdd080d8..0000000000 Binary files a/spaces/boosted-finance/logo.png and /dev/null differ diff --git a/spaces/boosted-finance/space.png b/spaces/boosted-finance/space.png deleted file mode 100644 index effdd080d8..0000000000 Binary files a/spaces/boosted-finance/space.png and /dev/null differ diff --git a/spaces/build/index.json b/spaces/build/index.json deleted file mode 100644 index ab563f4ef9..0000000000 --- a/spaces/build/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "build", - "name": "BUILD Finance", - "chainId": 1, - "decimals": 18, - "symbol": "BUILD", - "defaultView": "core", - "address": "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739", - "token": "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739", - "core": [ - "0x2Cb037BD6B7Fbd78f04756C99B7996F430c58172" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/build/logo.png b/spaces/build/logo.png deleted file mode 100644 index 72db4c096e..0000000000 Binary files a/spaces/build/logo.png and /dev/null differ diff --git a/spaces/build/space.png b/spaces/build/space.png deleted file mode 100644 index 72db4c096e..0000000000 Binary files a/spaces/build/space.png and /dev/null differ diff --git a/spaces/coin/index.json b/spaces/coin/index.json deleted file mode 100644 index bc61b366d8..0000000000 --- a/spaces/coin/index.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "coin", - "name": "Coin Artist", - "chainId": 1, - "decimals": 18, - "symbol": "COIN", - "defaultView": "core", - "address": "0x87b008e57f640d94ee44fd893f0323af933f9195", - "token": "0x87b008e57f640d94ee44fd893f0323af933f9195", - "core": [ - "0x148e2ED011A9EAAa200795F62889D68153EEacdE", - "0x9eE5E3Ff06425CF972E77c195F70Ecb18aC23d7f", - "0x5B93FF82faaF241c15997ea3975419DDDd8362c5" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/coin/logo.png b/spaces/coin/logo.png deleted file mode 100644 index f48393b245..0000000000 Binary files a/spaces/coin/logo.png and /dev/null differ diff --git a/spaces/coin/space.png b/spaces/coin/space.png deleted file mode 100644 index f48393b245..0000000000 Binary files a/spaces/coin/space.png and /dev/null differ diff --git a/spaces/curve/index.json b/spaces/curve/index.json deleted file mode 100644 index b34505c8d7..0000000000 --- a/spaces/curve/index.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "key": "curve", - "name": "Curve", - "chainId": 1, - "decimals": 18, - "symbol": "veCRV", - "defaultView": "core", - "address": "0x5f3b5DfEb7B28CDbD7FAba78963EE202a494e2A2", - "token": "0x5f3b5DfEb7B28CDbD7FAba78963EE202a494e2A2", - "core": [ - "0x7a16fF8270133F063aAb6C9977183D9e72835428", - "0xF89501B77b2FA6329F94F5A05FE84cEbb5c8b1a0", - "0x9B44473E223f8a3c047AD86f387B80402536B029", - "0x32D03DB62e464c9168e41028FFa6E9a05D8C6451", - "0x39362B3CA91D40Aff08EbcCbdd121090F3BB3Ef3", - "0xd4A39d219ADB43aB00739DC5D876D98Fdf0121Bf", - "0x279a7DBFaE376427FFac52fcb0883147D42165FF", - "0x394A16eeA604fBD86B0b45184b2d790c83a950E3", - "0xBe286d574b1Ea46f54955Bd856821f84DFd20b2e", - "0x825AA4A8F72ab6AE0C55D840759711bBe00a9304", - "0x94dFcE828c3DAaF6492f1B6F66f9a1825254D24B", - "0x6632EdA2685EABFb7B3B45669CFa5441349485d3", - "0x0Ac51a4E170bF73e7ac54283E61C9717EAc2A241" - ], - "min": 1, - "invalid": [] -} diff --git a/spaces/curve/logo.png b/spaces/curve/logo.png deleted file mode 100644 index b820f250c2..0000000000 Binary files a/spaces/curve/logo.png and /dev/null differ diff --git a/spaces/curve/space.png b/spaces/curve/space.png deleted file mode 100644 index b820f250c2..0000000000 Binary files a/spaces/curve/space.png and /dev/null differ diff --git a/spaces/dai-rinkeby/index.json b/spaces/dai-rinkeby/index.json deleted file mode 100644 index fd00fe93a9..0000000000 --- a/spaces/dai-rinkeby/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "dai-rinkeby", - "name": "Dai", - "chainId": 4, - "decimals": 18, - "symbol": "DAI", - "defaultView": "all", - "address": "0x0527E400502d0CB4f214dd0D2F2a323fc88Ff924", - "token": "0x0527E400502d0CB4f214dd0D2F2a323fc88Ff924", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/dai-rinkeby/logo.png b/spaces/dai-rinkeby/logo.png deleted file mode 100644 index 836fe78766..0000000000 Binary files a/spaces/dai-rinkeby/logo.png and /dev/null differ diff --git a/spaces/dai-rinkeby/space.png b/spaces/dai-rinkeby/space.png deleted file mode 100644 index 836fe78766..0000000000 Binary files a/spaces/dai-rinkeby/space.png and /dev/null differ diff --git a/spaces/dai/index.json b/spaces/dai/index.json deleted file mode 100644 index 973bb1e057..0000000000 --- a/spaces/dai/index.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "key": "dai", - "name": "Dai", - "chainId": 1, - "decimals": 18, - "symbol": "DAI", - "defaultView": "all", - "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", - "token": "0x6B175474E89094C44Da98b954EedeAC495271d0F", - "core": [], - "min": 0, - "invalid": [], - "strategies": [ - ["erc20-balance-of-cv", { - "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", - "symbol": "DAI CV", - "decimals": 18 - }] - ] -} diff --git a/spaces/dai/logo.png b/spaces/dai/logo.png deleted file mode 100644 index 836fe78766..0000000000 Binary files a/spaces/dai/logo.png and /dev/null differ diff --git a/spaces/dai/space.png b/spaces/dai/space.png deleted file mode 100644 index 836fe78766..0000000000 Binary files a/spaces/dai/space.png and /dev/null differ diff --git a/spaces/daosquare/index.json b/spaces/daosquare/index.json deleted file mode 100644 index 8e81e288be..0000000000 --- a/spaces/daosquare/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "daosquare", - "name": "DAOSquare", - "chainId": 1, - "decimals": 18, - "symbol": "RICE", - "defaultView": "all", - "address": "0xEc0B6AFb3F9a609CEEd67e2CA551A4c573fd45F7", - "token": "0xEc0B6AFb3F9a609CEEd67e2CA551A4c573fd45F7", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/daosquare/logo.png b/spaces/daosquare/logo.png deleted file mode 100644 index b46f28b7d7..0000000000 Binary files a/spaces/daosquare/logo.png and /dev/null differ diff --git a/spaces/daosquare/space.png b/spaces/daosquare/space.png deleted file mode 100644 index b46f28b7d7..0000000000 Binary files a/spaces/daosquare/space.png and /dev/null differ diff --git a/spaces/dfi/index.json b/spaces/dfi/index.json deleted file mode 100644 index 3201f0a0f9..0000000000 --- a/spaces/dfi/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "dfi", - "name": "DFI.money", - "chainId": 1, - "decimals": 18, - "symbol": "YFII", - "defaultView": "all", - "address": "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83", - "token": "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/dfi/logo.png b/spaces/dfi/logo.png deleted file mode 100644 index ae8da36a96..0000000000 Binary files a/spaces/dfi/logo.png and /dev/null differ diff --git a/spaces/dfi/space.png b/spaces/dfi/space.png deleted file mode 100644 index ae8da36a96..0000000000 Binary files a/spaces/dfi/space.png and /dev/null differ diff --git a/spaces/dollar-protocol/index.json b/spaces/dollar-protocol/index.json deleted file mode 100644 index dfdedfff66..0000000000 --- a/spaces/dollar-protocol/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "dollar-protocol", - "name": "Dollar Protocol", - "chainId": 1, - "decimals": 9, - "symbol": "SHARE", - "defaultView": "core", - "address": "0x6b583cf4aba7bf9d6f8a51b3f1f7c7b2ce59bf15", - "token": "0x6b583cf4aba7bf9d6f8a51b3f1f7c7b2ce59bf15", - "core": [ - "0x89a359A3D37C3A857E62cDE9715900441b47acEC" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/dollar-protocol/logo.png b/spaces/dollar-protocol/logo.png deleted file mode 100644 index a90ca1b6dc..0000000000 Binary files a/spaces/dollar-protocol/logo.png and /dev/null differ diff --git a/spaces/dollar-protocol/space.png b/spaces/dollar-protocol/space.png deleted file mode 100644 index a90ca1b6dc..0000000000 Binary files a/spaces/dollar-protocol/space.png and /dev/null differ diff --git a/spaces/domains.json b/spaces/domains.json index ccf30fd20f..d7fe90a2dc 100644 --- a/spaces/domains.json +++ b/spaces/domains.json @@ -1,5 +1,1030 @@ { - "yearn.snapshot.page": "yearn", - "signal.aave.com": "aave", - "pillar.snapshot.page": "pillar" + "vote.amiavax.com": "avaxmemeindex.eth", + "vote.verse.bitcoin.com": "getverse.eth", + "vote.mintstakeshare.com": "mintstakeshare.eth", + "vote.awizard.dev": "love.awizard.eth", + "vote.xyxyx.pro": "xyxyxdao.eth", + "vote.lends.so": "lendsdao.eth", + "vote.spectra.finance": "spectradao.eth", + "vote.vrfd.info": "open-info.eth", + "dao.citadelswap.xyz": "citadelswapdao.eth", + "gov.phanes.network": "phanesnetwork.eth", + "dao.hodlr.xyz": "hodlrxyz.eth", + "vote.gammaswap.com": "dgoods.eth", + "dao.anuinitiative.org": "daotest.anuinitiative.eth", + "dao.aquarius.loan": "aquarius-loan.eth", + "dao.spacetoken.tech": "spacetokendao.eth", + "vote.protectorate.xyz": "protectoratexyz.eth", + "vote.cryptocart.cc": "cryptocartdao.eth", + "vote.hk.chat": "hkchat.eth", + "vote.cybro.io": "cybroio.eth", + "vote.daocred.xyz": "daocred.eth", + "vote.refluid.net": "refluid.eth", + "protocol.secret3.com": "secret3.eth", + "v1dao.chaingpt.org": "chaingptai.eth", + "governance.ouroboros.foundation": "ouroboros-dao.eth", + "snapshot.prismafinance.com": "prismafinance.eth", + "vote.deed3.io": "deed3.eth", + "vote.zerrw.com": "zerrw.eth", + "vote.trotelcoin.com": "alexandretrotel.eth", + "dao.ampleswap.com": "ampleswap.eth", + "governance.thena.fi": "thenafi.eth", + "dao.magicsquare.io": "magicappstore.eth", + "vote.mozaic.finance": "mozaicfinance.eth", + "dao.strike.org": "strikeorg.eth", + "vote.rareships.games": "rareships.eth", + "voting.mero.finance": "backd.eth", + "vote.defialliance.finance": "beitmenotyou.eth", + "vote.edgematrix.pro": "emcdao.eth", + "governance.metavix.io": "metavix.eth", + "gov.fact.technology": "factprotocol.eth", + "gov.yorkie-inu.com": "yorkie-inu.eth", + "governance.radxu.org": "radxu.eth", + "vote.skullz.city": "skullzcity.eth", + "vote.moondao.com": "tomoondao.eth", + "gov.dinero.xyz": "dinero.xyz", + "vote.btcfund.ai": "btcfundai.eth", + "vote.lenshareapp.xyz": "nikoemme.eth", + "vote.monetadao.com": "monetadao.eth", + "vote.swarm.com": "swarm-com.eth", + "vote.vox.finance": "voxfinance.eth", + "vote.halofi.me": "halofi.eth", + "vote.redemptiontoken.com": "redemptioncoin.eth", + "vote.ecollective.xyz": "builders.ecollective.xyz", + "crypto-legal-action.mycryptolawyer.xyz": "mycryptolawyer.eth", + "proposals.unore.io": "unoredao.eth", + "governance.kudoe.io": "kudoe.eth", + "vote.zechub.org": "zechubdao.eth", + "gov.kojib.com": "kojib.eth", + "gov.bluntdao.org": "bluntdao.eth", + "vote.rebelteam.com": "rebelteam.eth", + "tvote.cascadia.foundation": "testcascadia.eth", + "vote.cascadia.foundation": "cascadiasystems.eth", + "dao.dicesia.com": "dicesia.eth", + "vote.hash2o.com": "hash2o.eth", + "vote.allianceblock.io": "allianceblockdao.eth", + "dao.bmcc.finance": "bmcc.eth", + "brethren.venturepirates.xyz": "venturepirates.eth", + "vote.persiandao.io": "persiandao.eth", + "vote.adneo.xyz": "adneo.eth", + "dao.xtressials.com": "xtressials.eth", + "gov.sandclock.org": "sandclockdao.eth", + "dao.connext.network": "dao.connext.eth", + "dao.kumatokens.com": "kumatokens.eth", + "gov.hairdao.xyz": "hairdao.eth", + "dao.optimusinu.io": "coolbots.eth", + "dao.dsla.network": "dsla.eth", + "vote.seizerdao.xyz": "seizerdao.eth", + "vote.goodghosting.com": "halofi.eth", + "vote.meddao.xyz": "meddao.eth", + "vote.slg.games": "slgov.eth", + "vote.stfx.io": "stfxgovernance.eth", + "governance.exzo.technology": "exzonetworkgovernance.eth", + "vote-celo.goodghosting.com": "celo.goodghosting.eth", + "vote-polygon.goodghosting.com": "polygon.goodghosting.eth", + "vote.the-figure.com": "thefiguretoken.eth", + "everydaydao.xyz": "everydaydao.eth", + "vote.chocolatemilkclub.com": "chocolatemilkclub.eth", + "voting.castellocommunity.com": "castellocommunity.eth", + "vote.themetaadvisory.xyz": "themetaadvisory.eth", + "vote.dogemob.com": "dogemob.com", + "vote.anarchydao.io": "anarchytoken.eth", + "dao.exeno.com": "exndao.eth", + "governance.modelphics.com": "modelphics.eth", + "dao.dataphora.com": "dataphora2.eth", + "phi.vote": "phinetwork.eth", + "governance.status.app": "status.eth", + "gov.bitcoinevm.com": "bitcoinevm.eth", + "deployingmorecapital.io": "dmctoken.eth", + "governance.planetmemes.com": "planetmemes.eth", + "gov.tigris.trade": "tigrisdao.eth", + "gov.aliquo.xyz": "aliquo.eth", + "vote.defire.org": "defiredao.eth", + "gov.sapavault.xyz": "projectsapa.eth", + "vote.atlantachain.io": "atlantachain.eth", + "vote.enerart.com": "enerart.eth", + "vote.froggyfriendsnft.com": "froggyfriends.eth", + "vote.cypherpunkzero.com": "cypherpunkzerodao.eth", + "vote.commondao.xyz": "thecommoncouncil.eth", + "vote.metavault.trade": "metavault-trade.eth", + "vote.metavault.org": "metavault-dao.eth", + "lawminati.blockng.money": "lawminati.eth", + "vote.yieldtopia.finance": "yieldtopia.eth", + "vote.gogocoin.io": "gogo-protocol.eth", + "vote.0vix.com": "0vix-protocol.eth", + "dao.metagear.game": "moongear.eth", + "dao.uglienstown.wtf": "ugliens.eth", + "dao.stobox.io": "stoboxweb3.eth", + "vote.teadao.finance": "tea-dao.eth", + "vote.lakaninteractive.com": "lakaninteractive.eth", + "vote.thrivecoin.com": "thrivecoin.eth", + "vote.loopring.io": "loopringdao.eth", + "vote.apocaliens.xyz": "alienvote.eth", + "vote.wefinance.club": "wefinanceclub.eth", + "vote.thestandard.io": "thestandardio.eth", + "vote.safestake.xyz": "istate.eth", + "vote.parastate.io": "istate.eth", + "vote.shifuthemaster.com": "shifuthemaster.eth", + "vote.hov.co": "hovx.eth", + "dao.kokodi.world": "vsrat.eth", + "gov.anzen.finance": "anzenfinance.eth", + "vote.bamboodao.io": "bamboodao.eth", + "vote.moonforcedao.eth": "moonforcedao.eth", + "vote.pye.net": "pyedao.eth", + "vote.metatopiaworld.com": "metatopiaworld.eth", + "vote.symbulldao.eth": "symbulldao.eth", + "vote.minipetsdao.eth": "minipetsdao.eth", + "dao.turtleshellislands.com": "turtleshellisland.eth", + "voting.lilbrains.com": "lilbrainsdao.eth", + "vote.titandao.app": "surf92.eth", + "dao.snowforge.xyz": "studiosnowforge.eth", + "vote.bankofx.xyz": "bankofx.eth", + "vote.morpho.org": "morpho.eth", + "invictus.raidparty.wtf": "mariopaolo.eth", + "bonustrack.io": "fabien.eth", + "vote.goblins.cash": "goblinscash.eth", + "vote.karameladao.com": "karameladao.eth", + "dao.noisegpt.com": "cuntbase.eth", + "vote.ravethefuture.com": "ravethefuture.eth", + "vote.alifelivedfully.com": "vote.alifelivedfully.eth", + "dao.sfm.community": "sfmdao.eth", + "vote.sdao.win": "sdaowin.eth", + "vote.assembly.town": "assemblyhoa.eth", + "governance.cyberestate.io": "cyberrealestate.eth", + "gov.meritvault.xyz": "meritvault.eth", + "vote.hifi.finance": "hifi-finance.eth", + "dao.general.rebellionprotocol.com": "rebellionprotocol.eth", + "vote.particledao.xyz": "particledao.eth", + "vote.waterandmusic.com": "wmvotes.eth", + "dao.web3disruption.xyz": "haavi.eth", + "vote.czpegs.com": "czpegs.eth", + "vote.etherisc.com": "dao.etherisc.eth", + "vote.dixel.club": "dixelclub.eth", + "vote.demedicidao.co": "demedicidao.eth", + "polling.element.fi": "elfi.eth", + "vote.cow.fi": "cow.eth", + "vote.thieveslist.io": "thievestreasury.eth", + "vote.alphagirlclub.io": "alphagirlclub.eth", + "vote.hamsterzbeach.club": "hamsterzbeachclub.eth", + "vote.lmaodao.io": "lmao.jacksón.eth", + "vote.minipets.eth": "minipets.eth", + "snapshot.tokemak.xyz": "tokemak.eth", + "vote.trava.finance": "trava.eth", + "vote.trava.capital": "tradao.eth", + "dao.playermon.com": "pymdao.eth", + "vote.botchatify.com": "paul.mrsigner.eth", + "vote.athame.finance": "athamefinance.eth", + "vote.squiggly.school": "squigglyverse.eth", + "vote.sphere.finance": "spherefinance.eth", + "vote.standard.tech": "stndgov.eth", + "vote.gmr.center": "gmrcenter.eth", + "voting.cryptopugz.io": "cryptopugz.eth", + "vote.powernode.io": "powergenerator.eth", + "vote.breederdao.io": "breederdao-admin.eth", + "vote.diamondheist.game": "diamondheist.eth", + "vote.gatenet.io": "vote.gatenet.eth", + "vote.metamarketingdao.com": "metamarketingdao.eth", + "vote.streetbased.co": "streetbased.eth", + "vote.astronos.io": "astronos.eth", + "vote.holygrail.one": "holygrailone.eth", + "vote.betterdao.io": "betterdao.eth", + "dao.fraktal.io": "fraktal.eth", + "gov.yedaoist.dev": "yedaoist.eth", + "vote.fuzz.fi": "fuzzfinance.eth", + "vote.subx.finance": "subx.eth", + "vote.metarea.org": "metarea.eth", + "dao.kawakami.io": "kawadao.eth", + "vote.kodacapitaldao.xyz": "kodacapitaldao.eth", + "vote.defiplaza.net": "realdefiplaza.eth", + "vote.blockadvocates.org": "blockadvocates.eth", + "polls.chain.xyz": "chaingov.eth", + "vote.choccyswap.com": "choccyswap.eth", + "vote.sinfinite.net": "sinfinite.eth", + "vote.oceanclub.io": "primooceandao.eth", + "eventplan.creativeplatform.xyz": "events.thecreative.eth", + "vote.creativeplatform.xyz": "vote.thecreative.eth", + "vote.prepo.io": "prepo.eth", + "snapshot.gasdao.org": "gasdao.eth", + "vote.thor.financial": "thorfinancial.eth", + "vote.bomb.money": "1coinnetwork.eth", + "vote.chainscore.finance": "chainscore.eth", + "dao.badbears.io": "bad-dao.eth", + "theartistdao.com": "theartistdao.eth", + "vote.losercoin.dao": "losercoin-lowb.eth", + "vote.songadao.org": "songadao.eth", + "vote.theanimal.farm": "theanimalfarm.eth", + "vote.glmrapes.com": "glmrapes.eth", + "vote.paraswap.network": "paraswap-dao.eth", + "dao.reapercouncil.xyz": "reaperdao.eth", + "vote.totem.earth": "totemearth.eth", + "vote.partyhat.finance": "phats.eth", + "vote.beamswap.io": "beamswapio.eth", + "dao.littleghosts.com": "littleghosts.eth", + "vote.panicswap.com": "panicswap.eth", + "vote.phonon.org": "phonon.eth", + "vote.thegreatwave.io": "thegreatwave.eth", + "vote.labdao.co": "dongdo.eth", + "vote.x0rart.com": "mevarmy.eth", + "vote.rainbowtoken.finance": "rainbowtoken.eth", + "vote.jadeprotocol.io": "jadeprotocol.eth", + "vote.anuradao.finance": "anuradao.eth", + "vote.squid.xyz": "shoal.eth", + "vote.kawaii.global": "kawaii-islands.eth", + "vote.kargain.world": "kargainworld.eth", + "vote.lobis.finance": "lobis.eth", + "vote.dapperdinos.com": "dapperdinos.eth", + "vote.hellodao.world": "hello-dao.eth", + "vote.euphoria.money": "euphoriadao.eth", + "vote.nodegamexyz.com": "nodegame.eth", + "vote.cleanocean.io": "cleanocean.eth", + "dao.zcore.network": "zcoreclub.eth", + "vote.nfbeez.xyz": "nfbeez.eth", + "vote.commanderdefi.io": "commanderdefi.eth", + "vote.hotcross.com": "hotcross.eth", + "vote.viper.exchange": "viperswap.eth", + "vote.thunderdao.com": "thunderdao.eth", + "vote.routerprotocol.com": "routerprotocol.eth", + "vote.lava.financial": "mauna.eth", + "vote.cryptocrooks.io": "cryptocrooks.eth", + "vote.somee.social": "someeofficial.eth", + "voting.rewardminer.io": "subx1.eth", + "vote.rebelseals.com": "therebels.eth", + "vote.4thtech.io": "4thtech.eth", + "vote.gizadao.com": "gizadao.eth", + "vote.cryptohobos.io": "cryptohobos.eth", + "vote.tempus.finance": "tempusgov.eth", + "vote.uplift.io": "upliftio.eth", + "vote.cvi.finance": "govi.eth", + "tribe.toughturtlesnft.com": "toughturtles.eth", + "vote.rektdao.finance": "daorekt.eth", + "v.glorylab.xyz": "glorylab.eth", + "gov.eazyswap.io": "eazyswap.eth", + "vote.them.af": "hatdao.eth", + "vote.danielbarankin.com": "danielbarankin.eth", + "vote.antidotedao.org": "antidotedao.eth", + "govern.6ix.com": "6ixdao.eth", + "governance.autonio.io": "niox.eth", + "vote.vikings.finance": "vikingsdao.eth", + "vote.ysl.io": "ysl-io.eth", + "vote.surf.finance": "surf.finance", + "vote.entities.wtf": "entitiesdao.eth", + "gov.frosty.app": "frostypower.eth", + "dao.dexe.network": "dexe.network", + "vote.gyro.money": "gyrodefi.eth", + "vote.mrfas.com": "mrfas.eth", + "snapshot.botto.com": "botto.eth", + "vote.mstable.org": "mstablegovernance.eth", + "dao.wetu.be": "wetube.eth", + "vote.fomodao.xyz": "fomodao.eth", + "vote.betswirl.com": "betswirl.eth", + "vote.defrag.com": "dfrag.eth", + "dao.sleepysloth.finance": "mrbojangles.eth", + "vote.brightunion.io": "brightunion.eth", + "vote.aladdin.club": "aladdindao.eth", + "vote.enter.art": "enternft.eth", + "vote.ascensionprotocol.io": "ascensionprotocol.eth", + "vote.stockmouton.com": "stockmouton.eth", + "vote.elyfi.world": "elyfi-bsc.eth", + "snapshot.moonwell.fi": "moonwell-governance.eth", + "snapshot-apollo.moonwell.fi": "moonwell-apollo-governance.eth", + "snapshot.metaweave.com": "cromatikap.eth", + "dao.civfund.com": "dexman.eth", + "vote.myrevengecat.com": "myrevengecat.eth", + "governance.cntr.finance": "cntr.eth", + "governance.collartoken.com": "dogcollar.eth", + "whey-gov.cntr.finance": "centaurswap.eth", + "gov.impossible.finance": "impossiblefinance.eth", + "vote.stargate.zone": "ohm-dao.eth", + "vote.military.finance": "militaryfinance.eth", + "vote.mycointool.com": "mycointool.eth", + "vote.own.fund": "ownfund.eth", + "gov.minorityprogrammers.org": "minorityprogrammers.eth", + "vote.banksocial.io": "banksocialdao.eth", + "gov.richquack.com": "richquack.eth", + "dao.stredium.com": "stredium.eth", + "vote.dexilla.com": "dexilla.eth", + "vote.newbet.vip": "newbet.eth", + "vote.spaceknightclub.io": "spaceknightclub.eth", + "vote.alkemi.network": "alkemidao.eth", + "vote.macoin.finance": "macoin.eth", + "vote.macncheese.finance": "macncheese.eth", + "vote.artisticsociety.org": "eart.eth", + "vote.olecoin.io": "olecoin.eth", + "gov.light.so": "lightdotso.eth", + "dao.growing.fi": "growingdao.eth", + "dao.gnome.army": "gnometoken.eth", + "vote.dsbswap.com": "dsbswap.eth", + "vote.apy.finance": "apy.eth", + "gov.xspswap.finance": "xsp.eth", + "vote.longdrink.finance": "longdrinkfinance.eth", + "vote.mcafeemoonshot.com": "mcafeemoonshot.eth", + "vote.fbomb.finance": "fbomb.eth", + "vote.evermoon.io": "evermoon.eth", + "vote.gaiadao.org": "gaiadao.eth", + "vote.dispense.finance": "dispense.eth", + "gov.matrixetf.finance": "matrixetf.eth", + "vote.schnoodle.finance": "schnoodle.eth", + "vote.kraken.baby": "babykraken.eth", + "vote.conic.finance": "conic-dao.eth", + "morocco.snapshot.page": "treth.eth", + "signal.blackpool.finance": "blackpoolhq.eth", + "vote.convexfinance.com": "cvx.eth", + "vote.koyo.finance": "koyo-finance.eth", + "vote.suzakucoin.net": "suzakucoin.eth", + "vote.sachetdao.africa": "tjelailah.eth", + "dao.shroomz.cool": "shroomz.eth", + "snapshot.shibuidao.com": "shibuidao.eth", + "vote.dfx.finance": "dfx.eth", + "gov.siphon.finance": "siphonfinance.eth", + "gov.dogownertoken.com": "dogown.eth", + "dao.drsgme.org": "drsgmeorg.eth", + "vote.gametoken.finance": "gmetoken.eth", + "vote.grumpy.finance": "grumpyfinance.eth", + "dao.shibaverse.io": "shibaverse-io.eth", + "vote.decrypt.co": "decrypt-media.eth", + "vote.xtblock.io": "xtblock.eth", + "vote.dough.finance": "doughfinance.eth", + "vote.xbn.finance": "elasticbnb.eth", + "dao.moonrat.finance": "moonrat.eth", + "gov.milliontoken.org": "mmgov.eth", + "governance.tradestars.app": "tradestars.eth", + "vote.athletex.io": "athletex.eth", + "vote.dappchaser.com": "dappchaser.eth", + "dao.pussy.financial": "pussyfinancialdao.eth", + "vote.poolgrants.org": "poolgrants.eth", + "vote.meritcircle.io": "meritcircle.eth", + "vote.dfdao.xyz": "dfdao.eth", + "vote.peghub.com": "peghub.eth", + "vote.xsigma.fi": "xsig.eth", + "gov.onionmixer.com": "omt.eth", + "vote.moonbird.finance": "moonbird.eth", + "vote.varg.ru": "vargru.eth", + "vote.lou.fit": "95501.eth", + "vote.shardcoin.io": "shardcoin.eth", + "vote.depocket.com": "depocket.eth", + "gov.hyruleswap.com": "hyruleswap.eth", + "complus.network": "complus.eth", + "vote.axion.network": "axiondao.eth", + "vote.clucoin.com": "clugov.eth", + "vote.tracer.finance": "tracer.eth", + "gov.visor.finance": "visor.eth", + "vote.easybake.finance": "easybake.eth", + "enchant.soulswap.finance": "soulswap.eth", + "voting.cafeswap.finance": "cafeswapfinance.eth", + "vote.magicbalancer.org": "magicbalancer.eth", + "cast.alchemist.wtf": "alchemistcoin.eth", + "genesis-dao.hoprnet.org": "genesis-dao.hopr.eth", + "gov.stablex.finance": "stablexfinance.eth", + "gov.mig.business": "migbusiness.eth", + "signal.bzx.network": "bzx.eth", + "signal.stakedao.org": "stakedao.eth", + "basedgov.kuhoge.finance": "kuhoge.eth", + "vote.koalaintelligence.agency": "kia-gov.eth", + "survey.novaswap.finance": "novaswap.eth", + "vote.coffeeswap.finance": "coffeeswap.eth", + "gov.archerdao.io": "archerdao.eth", + "vote.carrotswap.org": "carrotswap.eth", + "vote.southchain.digital": "vote.southchain.eth", + "vote.ripae.finance": "ripae.eth", + "vote.polyient.games": "polyient-games-governance", + "vote.acryptos.com": "acryptos", + "vote.balancer.fi": "balancer.eth", + "vote.balancer.finance": "balancer.eth", + "vote.flair.finance": "0xflair.eth", + "vote.daonifty.io": "daonifty.eth", + "vote.meso.finance": "mesofinance.eth", + "vote.ycsdao.com": "ycsdao.eth", + "yearn.snapshot.page": "ybaby.eth", + "decide.fateofwagdie.com": "wagdie.eth", + "gov.zerogoki.org": "zerogoki.eth", + "vote.sushi.com": "sushigov.eth", + "vote.taraxa.io": "taraxa-project.eth", + "vote-for.by.aris.ac": "by.arisac.eth", + "vote.tarot.to": "xtarot.eth", + "vote.jibswap.com": "jibswap.eth", + "gov.artha.finance": "arthadao.eth", + "governance.dfyn.network": "dfyn.eth", + "signal.aave.com": "aave.eth", + "vote.singularitydao.ai": "sdao.eth", + "gov.xfinance.io": "xfinance", + "vote.risingsun.finance": "risingsun.eth", + "vote.nftgoddess.art": "nftgoddessart.eth", + "vote.shuffledao.com": "shuffledao.eth", + "vote.barefootparrots.com": "barefootparrots.eth", + "pillar.snapshot.page": "pillarwallet.eth", + "signal.pickle.finance": "pickle.eth", + "vote.slimysnails.io": "slimysnails.eth", + "vote.airswap.io": "vote.airswap.eth", + "vote-rinkeby.airswap.io": "vote-rinkeby.airswap.eth", + "vote.loopring.org": "lrctoken.eth", + "vote.maha.xyz": "maha.eth", + "vote.aff.icu": "affection-pls.eth", + "signal.s.finance": "s-finance", + "signal.eggy.finance": "egg", + "signal.goldmining.farm": "gmt", + "gov.aragon.org": "aragon", + "vote.yogi.fi": "yogi-fi.eth", + "oaklandvote.citydao.org": "oaklanddao", + "governance.chartex.pro": "chartex", + "governance.trustwallet.com": "trustwallet", + "voting.dfi.money": "dfi", + "vote.ykz.network": "yakuza", + "listing.cream.finance": "cream-listing.eth", + "vote.cream.finance": "cream-finance.eth", + "vote.shade.cash": "shadecash.eth", + "vote.shiny.club": "shinyclub.eth", + "vote.uvault.finance": "unicore", + "gov.exnt.io": "exnetwork", + "gov.exact.ly": "gov.exa.eth", + "dao.thirm.com": "thirm", + "gov.defiat.net": "defiat", + "vote.kwenta.eth.limo": "kwenta.eth", + "gov.synthetix.io": "snxgov.eth", + "vote.infinex.io": "infinex.eth", + "council.synthetix.io": "spartancouncil.eth", + "voting.amplesense.io": "amplesense", + "gov.moontools.io": "moontools", + "voting.pancakeswap.finance": "cakevote.eth", + "governance.wenlambo.finance": "wenlambo.finance", + "vote.beefy.finance": "beefydao.eth", + "vote.galleon.community": "galleondao.eth", + "vote.hunny.finance": "hunny.eth", + "vote.steakbank.finance": "steakbank.eth", + "vote.pancakebunny.finance": "pancakebunny.eth", + "vote.taconomics.io": "taco", + "gov.narwhalswap.org": "narwhal", + "vote.streamr.network": "streamr.eth", + "governance.etgproject.org": "etgfinance", + "gov.pokt.network": "poktdao.eth", + "vote.niceee.org": "nice", + "vote.diadata.org": "diadao.eth", + "cuni.comp.vote": "cuni", + "tbavote.joyso.io": "tballiance", + "vote.rottenswap.org": "rot", + "vote.rari.capital": "fuse.eth", + "vote.bloodyfi.org": "bloody", + "vote.indexcoop.com": "index-coop.eth", + "vote.moonlanderz.com": "ahsyaj.eth", + "governance.dawn.org": "dawn", + "gov.yaxis.io": "yaxis.eth", + "vote.archloot.com": "altvoting.eth", + "gov.dhedge.org": "gov.dhedge.eth", + "vote.frontier.xyz": "frontier", + "vote.oceanprotocol.com": "officialoceandao.eth", + "dao.bosonprotocol.io": "bosondao.eth", + "vote.sav3.org": "sav3", + "vote.bt.finance": "btfinance.eth", + "vote.pawthereum.com": "pawthereum.eth", + "vote.zlot.finance": "zlot", + "signal.idle.finance": "idlefinance.eth", + "gov.flush.lol": "flushlol.eth", + "dao.demonhellclub.com": "demonhellclub.eth", + "fund.emptyset.finance": "esd.eth", + "mtrg.meter.io": "meter-mainnet.eth", + "emtrg.meter.io": "meter-eth.eth", + "gov.kp2r.network": "keep2r.eth", + "gov.metapool.finance": "metapoolgov.eth", + "vote.gokai.org": "gokai.eth", + "governance.raiden.network": "raidendao.eth", + "gov.mink.finance": "minkfinance.eth", + "congress.myhoney.finance": "honeyfinance.eth", + "gdao.synthetix.io": "snxgrants.eth", + "governance.relay3r.network": "relayernetwork.eth", + "voting-mxx.multiplier.finance": "multiplierfinance.eth", + "governance.unique.one": "uniqueone.eth", + "vote.coverprotocol.com": "cover-protocol.eth", + "vote.metacraft.cc": "metacraftcc.eth", + "vote.basis.cash": "basiscash.eth", + "gov.keeper.finance": "keeperfi.eth", + "gov.zenifinance.io": "zenifinance.eth", + "vote.tacoswap.io": "tacoswap.eth", + "gov.playhyperblade.com": "hyperblade.eth", + "gov.basisdollar.fi": "basisdollar.eth", + "vote.keyfi.com": "keyfi-app.eth", + "vote.amptoken.org": "amp.eth", + "vote.spiderdao.io": "spider-dao.eth", + "vote.bdollar.fi": "bdollar.eth", + "devcon.snapshot.page": "devcondemo.eth", + "vote.saffron.finance": "saffronfinance.eth", + "govx.launchzone.org": "bscex.eth", + "vote.kiancoin.com": "kian.eth", + "fund.1sd.finance": "1sd.eth", + "vote.mith.cash": "mithcash.eth", + "vote.innercircle.finance": "innercirclefinance.eth", + "gov.indexed.finance": "ndx.eth", + "vote.creaticles.com": "creaticlesgov.eth", + "vote.perp.fi": "vote-perp.eth", + "vote.cask.fi": "caskprotocol.eth", + "gov.iron.finance": "ironbankfi.eth", + "mint.emptyset.gold": "emptysetgold.eth", + "signal.universe.xyz": "universexyz.eth", + "signal.barnbridge.com": "barnbridge.eth", + "vote.forthedao.com": "forthedao.eth", + "mars.poolin.fi": "marsproject.eth", + "treasury.dsd.finance": "dsd.eth", + "signal.derivadex.com": "derivadao.eth", + "governance.sx.bet": "sportx.eth", + "dao.scifi.finance": "spicedao.eth", + "dao.prosper.so": "prosperso.eth", + "governance.dextf.com": "dextfprotocol.eth", + "governance.dao.domani.finance": "domanidao.eth", + "gov.clap.finance": "clapfinance.eth", + "vote.pandayield.com": "pandayield.eth", + "gov.aventus.network": "aventus.eth", + "gov.kebabfinance.com": "kebabfinance.eth", + "vote.monsterslayer.finance": "monsterslayer.eth", + "signal.opium.network": "opiumprotocol.eth", + "oracles.opium.network": "oracles.opiumprotocol.eth", + "vote.omg.network": "omg.eth", + "vote.shabushabu.finance": "shabushabufi.eth", + "council.illuvium.io": "ilv.eth", + "gov.illuvium.io": "ilvgov.eth", + "vote.yzydao.finance": "yzydao.eth", + "gov.premia.blue": "premia.eth", + "parliament.premia.blue": "parliament.premia.eth", + "vote.perlinx.finance": "perlinx.eth", + "vote.defigeek.xyz": "defigeek.eth", + "ambassador.synthetix.io": "snxambassador.eth", + "vote.bamboodefi.com": "bamboodefi.eth", + "vote.1-b.tc": "1btc.eth", + "poll.santiment.net": "santiment.eth", + "voting-bmxx.multiplier.finance": "mcl-multiplierfinance.eth", + "vote.cndy.finance": "candyfinance.eth", + "gov.alpacafinance.org": "alpacafinance.eth", + "dao.zfo.gg": "zfogg.eth", + "vote.ensuser.com": "ensuser.eth", + "vote.redemptiondao.org": "douglasqian.eth", + "governance.diamondhandsfinance.org": "diamondhandsfinance.eth", + "vote.rankerdao.com": "rankerdao.eth", + "vote.bears.finance": "fbear.eth", + "vote.megamoon.space": "mega-moon.eth", + "vote.zyberswap.io": "zyberswap.eth", + "vote.combine.finance": "xcomb.eth", + "vote.rulerprotocol.com": "rulerprotocol.eth", + "voting.itam.games": "itam.eth", + "dao.apeships.com": "apeships.eth", + "snapshot.valuedefi.io": "gvvalue.eth", + "vote.bingocash.app": "bingocash.eth", + "vote.ballena.io": "ballena.eth", + "vote.kalmy.app": "kalmyapp.eth", + "gov.apoyield.com": "apoyield.eth", + "gov.forcedao.com": "forcedao.eth", + "vote.bancor.network": "bancornetwork.eth", + "vote.cryptokombat.com": "cryptokombat.eth", + "vote.arcx.money": "arcx.eth", + "vote.88mph.app": "88mph.eth", + "vote.kimchidao.org": "kimchidao.eth", + "governance.curio.cards": "curiovoters.eth", + "vote.forkenomics.com": "forkenomics.eth", + "snapshot.comp.vote": "comp-vote.eth", + "gov.tusker.finance": "tuskerfinance.eth", + "gov.sunicoin.org": "suni.eth", + "vote.macaronswap.finance": "macaronswap.eth", + "vote.resdx.io": "resdx.eth", + "vote.gro.xyz": "gro.xyz", + "snapshot.solos.so": "solos.eth", + "snapshot.fei.money": "fei.eth", + "dao.pepemon.world": "pepedontdump.eth", + "vote.levyathan.finance": "levyathan.eth", + "vote.akropolis.io": "akropolis.eth", + "vote.blockzerolabs.io": "blockzerolabs.eth", + "mscore.bprotocol.org": "m.bsnapshot.eth", + "cscore.bprotocol.org": "bsnapshot.eth", + "vote.iftip.io": "iftip.eth", + "vote.supra.finance": "suprafinance.xyz", + "snapshot.strudel.finance": "strudel.eth", + "governance.treedefi.com": "treedefi.eth", + "vote.m1guelpf.me": "token.m1guelpf.eth", + "gov.parallaxprotocol.com": "parallaxprotocol.eth", + "snapshot.everipedia.com": "everipediaiq.eth", + "vote.nerve.fi": "nervefinance.eth", + "ekklesia.mask.io": "masknetwork.eth", + "vote.stakewise.io": "stakewise.eth", + "gov.dalmatians.io": "dalmatians.eth", + "governance.alphr.finance": "alphrdao.eth", + "dao.levinswap.org": "levinswap.eth", + "vote.jetswap.finance": "jetswap-finance.eth", + "polygon-vote.jetswap.finance": "polygon-jetswap-finance.eth", + "vote.fastyield.app": "fastyield.eth", + "vote.apeswap.finance": "apeswap-finance.eth", + "vote.liquidcollectibles.io": "liquidcollectibles.eth", + "vote.crystl.finance": "crystl.eth", + "voting.pippi.finance": "pippi.eth", + "ctrl.lift.kitchen": "liftkitchen.eth", + "vote.lattice.is": "latticegov.eth", + "gov.libertas.network": "libertas.eth", + "voting.pantherswap.com": "pantherswap.eth", + "vote.alchemistdefi.com": "alchemistdefi.eth", + "vote.feeder.finance": "feederfinance.eth", + "voting.adventureland.finance": "adventurelandfinance.eth", + "vote.flydao.app": "flydao.eth", + "vote.fantoms.art": "randomz.eth", + "vote.wraithswap.finance": "wraithswap.eth", + "vote.spooky.fi": "spookyswap.eth", + "vote.smallarmssyndicate.com": "jgbzoo.eth", + "vote.glidefinance.io": "glidefinance.eth", + "signal.ampleforth.org": "ampleforthorg.eth", + "vote.altrucoin.com": "altrucoin.eth", + "voting.font.community": "fontcommunity.eth", + "snapshot.vswap.fi": "vbswap.eth", + "vote.munchproject.io": "munchproject.eth", + "snapshot.behodler.io": "behodler.eth", + "vote.ret.team": "retokendao.eth", + "gov.zoocoin.cash": "zoocoin.eth", + "vote.nftsnafu.org": "nftsnafu.eth", + "vote.fairmoon.community": "fairmoon.eth", + "voting.smartdex.finance": "smartdex-voting.eth", + "vote.moonpirate.finance": "moonpirate.eth", + "vote.mai.finance": "qidao.eth", + "dao.modefi.io": "mod.eth", + "dao-bsc.modefi.io": "mod-bsc.eth", + "dao-ftm.modefi.io": "mod-ftm.eth", + "vote.conqueruranus.com": "conqueruranus.eth", + "vote.cryptohoots.com": "cryptohoots.eth", + "vote.koaladefi.eth": "koaladefi.eth", + "vote.imsuperleague.com": "imsuperleague.eth", + "governance.rotomoon.app": "rotomoon.eth", + "vote.honestchain.finance": "honestfinance.eth", + "vote.earnnetwork.io": "earnnetwork.eth", + "vote.moonpot.com": "moonpotdotcom.eth", + "vote.warp.finance": "votewarp.eth", + "gov.polygon.iron.finance": "iron-polygon.eth", + "vote.steakhouse.finance": "vote-steakhouse.eth", + "vote.flashstake.io": "flashprotocol.eth", + "vote.fenixtoken.net": "fenixtoken.eth", + "vote.supershiba.exchange": "supershiba.eth", + "vote.liquifi.org": "liquifi.eth", + "vote.alliance.xyz": "alliance.eth", + "vote.yetiski.club": "degenyetis.eth", + "vote.x0swap.com": "x0swap.eth", + "vote.luckymaneki.com": "luckymaneki.eth", + "vote.honeydao.com": "honeydao.eth", + "gov.kumatoken.com": "kumainu.eth", + "gov.beluga.fi": "belugaprotocol.eth", + "vote.viralata.finance": "viralata.eth", + "vote.svcs.finance": "givingtoservices.eth", + "vote.spore.engineering": "spore-engineering.eth", + "gov.phuture.finance": "phuture.eth", + "vote.deversifi.com": "rhinofi.vote", + "dao.dogeswap.global": "dogevote.eth", + "vote.moonbud.space": "moonbud.eth", + "vote.crisis.network": "crisisdao.eth", + "vote.cheesecakeswap.com": "cheesecakeswap.eth", + "vote.cyborg.art": "cyborgdao.eth", + "signal.curve.fi": "curve.eth", + "vote.heds.app": "camb0t.eth", + "vote.cyphertrust.fi": "cyphertrust.eth", + "vote.volatility.com": "vol.eth", + "vote.carbonswap.finance": "carbonswap.eth", + "voting.snowcrash.finance": "snowcrashdao.eth", + "vote.planetfinance.io": "planetfinance.eth", + "vote.planet.finance": "planetfinance.eth", + "vote.kogecoin.io": "kogecoin.eth", + "vote.frenchie.so": "frenchienetwork.eth", + "gov.50cent.network": "50centnetwork.eth", + "vote.tea-swap.finance": "tea-swap.eth", + "vote.pitbull.community": "pitbulldao.eth", + "governance.unique.fans": "uniquefans.eth", + "gov.omg.dev": "dao.omg.eth", + "vote.krausehouse.club": "krausehouse.eth", + "vote.dexkit.com": "dexkit.eth", + "gov.inumaki.org": "inumaki.eth", + "gov2.inumaki.org": "dawg.inumaki.eth", + "governance.uniqueone.photo": "uniquephoto.eth", + "voting.chimpyswap.com": "chimpyswap.eth", + "vote.apetroop.io": "apetroop.eth", + "vote.ariva.digital": "arivadao.eth", + "vote.to-the-moon.farm": "to-the-moon-farm.eth", + "vote.moon-vault.com": "moon-vault.eth", + "vote.polyvertex.finance": "polyvertex.eth", + "vote.baconcoin.com": "baconcoin.eth", + "vote.undeadwarriors.io": "undeadwarriors.eth", + "vote.originprotocol.com": "origingov.eth", + "vote.ousd.com": "ousdgov.eth", + "vote.aishine.me": "hustwyz.eth", + "gov.aol.gg": "apesonline.eth", + "gov.forefront.market": "ffdao.eth", + "vote.liquiddriver.finance": "liquiddriver.eth", + "gov.coin-bid.io": "coin-bid.eth", + "vote.doge2.app": "doge2-crypto.eth", + "vote.sil.finance": "sister-in-law.eth", + "vote.avai.finance": "orcapod.eth", + "vote.mint.club": "mintclub.eth", + "vote.thegrandbanks.finance": "thegrandbanks.eth", + "vote.leekdao.xyz": "leekdao.eth", + "vote.tomb.finance": "tombfinance.eth", + "vote.agdeportes.com": "agdeportes.eth", + "vote.minotaur.money": "thewolfgame.eth", + "vote.landshare.io": "landshare.eth", + "vote.meebitsdao.com": "meebitsdao.eth", + "vote.dopeshibas.fun": "dopeshibas.eth", + "vote.manifoldfinance.com": "manifoldfinance.eth", + "vote.littlesh.art": "littlesharts.eth", + "vote.takodefi.com": "takodefi.eth", + "vote.fuse.io": "fusedao.eth", + "vote.chargedefi.fi": "chargedefi.eth", + "grant.mint.club": "mintgrant.eth", + "vote.minto.finance": "minto.eth", + "vote.yamp.finance": "yamp.eth", + "gov.compli.fi": "complifi.eth", + "vote.feistydoge.art": "feistydao.eth", + "vote.shunkakinoki.com": "shunkakinoki.eth", + "vote.hepa.finance": "hepa.eth", + "vote.yakuzainc.io": "yakuzaincdao.eth", + "gov.moonfarm.in": "moonswpadex.eth", + "vote.liquidifty.io": "liquidifty.eth", + "gov.moonswap.tech": "moonswpadex.eth", + "vote.yieldyak.com": "yakherd.eth", + "dao.cvl.network": "cvldao.eth", + "vote.ledgity.com": "ledgity.xyz", + "vote.jarvis.network": "synthereum.eth", + "vote.polywhirl.cash": "polywhirl.eth", + "vote.faraland.io": "faradao.eth", + "dao.chihiro-inu.com": "chihiro-inu.eth", + "vote.nft-gods.com": "nft-gods.eth", + "vote.moonsama.com": "expectchaos.eth", + "vote.sunrisegaming-dao.com": "sunrisegaming.eth", + "dao.babyspacefloki.com": "babyspacefloki.eth", + "vote.meowfinance.org": "meowfinance.eth", + "gov.dot.finance": "dotfinance.eth", + "voting-v2.multiplier.finance": "v2-multiplierfinance.eth", + "vote.mgh.dao": "metagamehub.eth", + "gov.maidcoin.org": "maidcoin.eth", + "vote.cyberkongz.com": "cyberkongz.eth", + "vote.wildcubsociety.io": "wildcubdao.eth", + "vote.wildcubdao.io": "wildcubdao.eth", + "vote.bearsdeluxe.io": "votedeluxe.eth", + "vote.turtlecoin.com": "trtlcoin.eth", + "vote.moonbeans.io": "moonbeans.eth", + "gov.yesports.gg": "yesportsgg.eth", + "vote.dappradar.com": "dappradar.eth", + "gov.coinica.net": "coinica.eth", + "dao.baka.cool": "koumakan.eth", + "governance.yfdai.finance": "yfdaifinance.eth", + "vote.saddle.community": "saddlefinance.eth", + "vote.samot.club": "samotclub.eth", + "vote.inuyasha.io": "yashadao.eth", + "vote.candlelabs.org": "cndl.eth", + "vote.arbibots.xyz": "arbibots.eth", + "vote.lobbytoken.io": "lobbytoken.eth", + "vote.swdao.org": "sw-dao.eth", + "vote.theglitches.art": "theglitchesdao.eth", + "dictatorship.levxdao.org": "levx.eth", + "dao.carbonpaws.io": "carbonpaws.eth", + "dao.cvlp2p.com": "cvldao.eth", + "vote.litedex.io": "litedex.eth", + "vote.scarychaincapital.com": "scarychaincapital.eth", + "vote.matcha.fi": "streamingfast.eth", + "vote.bsc-mvb.io": "mvb.eth", + "vote.dios.finance": "diosfinance.eth", + "vote.mysticalorbs.xyz": "mysticcollective.eth", + "vote.foundance.org": "foundance.eth", + "gov.diversecapital.finance": "diversecapital.eth", + "vote.impermax.finance": "impermax.eth", + "vote.feudalz.io": "feudalz.eth", + "vote.liquidrium.com": "liquidrium.eth", + "vote.underfitted.io": "underfitted.eth", + "dao.cropunks.art": "cropunks.eth", + "snapshot.silo.finance": "silofinance.eth", + "vote.aavegotchi.com": "aavegotchi.eth", + "snapshot.keplerdao.finance": "keplerdao.eth", + "vote.pastry.xyz": "bakerydao.eth", + "vote.alphadao.money": "alphagov.eth", + "vote.jfscaramazza.com": "jfscaramazza.eth", + "signal.paladin.vote": "palvote.eth", + "dao.cronosfrens.io": "cronosfrens.eth", + "vote.treschain.io": "treschain.eth", + "gov.wagumi.xyz": "wagumi.eth", + "vote.rune.game": "runemetaverse.eth", + "vote.hord.fi": "hordgov.eth", + "vote.huckleberry.finance": "huckleberrydex.eth", + "vote.hector.network": "hectordao.eth", + "gov.tethys.finance": "tethysswap.eth", + "vote.darkmatterdefi.com": "dmdarkmatter.eth", + "gov.fxcm.xyz": "symbolspace.eth", + "vote.kratosdao.finance": "kratosdaofi.eth", + "dao.fxcm.xyz": "metauniversecapital.eth", + "vote.solace.fi": "solacefi.eth", + "vote.alluo.com": "alluo.eth", + "vote.mathblocks.io": "mathblocks.eth", + "vote.kap.gg": "thekapitaldao.eth", + "vote.kapital.gg": "thekapitaldao.eth", + "vote.aetherdao.io": "aetherdao.eth", + "vote.swivel.finance": "swiveldao.eth", + "dao.alphakek.ai": "alphakekai.eth", + "vote.construct.tools": "stakeborgdao.eth", + "vote.trapeza.finance": "trapezaprotocol.eth", + "vote.bentfinance.com": "bentfinance.eth", + "vote.empyrean.fi": "empyreandao.eth", + "gm.p12.dev": "p12.eth", + "vote.webb.game": "worldwidewebb.eth", + "vote.utopia42.club": "utopia42.eth", + "vote.trubadger.io": "trubadger.eth", + "vote.gbox.space": "gboxspace.eth", + "vote.guttercatgang.com": "gcgdao.eth", + "vote.pagedao.org": "pagedao.eth", + "gov.fries.fund": "friesdao.eth", + "vote.undisclosedcollectors.com": "undisclosedcollectors.eth", + "vote.kalao.io": "getkalao.eth", + "vote.ethalend.org": "ethaprotocol.eth", + "vote.starsharks.com": "starsharks.com", + "vote.rhino.fi": "rhinofi.vote", + "vote.gorillasquad.finance": "gorillasquad.eth", + "vote.infinitelaunch.io": "infinitelaunch.eth", + "vote.brokoli.network": "brokolinetwork.eth", + "meow.ethercats.io": "ethercats.eth", + "vote.banklessbr.com": "banklessbrdao.eth", + "vote.wanakafarm.com": "wanakafarm-dao.eth", + "vote.defikingdoms.com": "dfkvote.eth", + "dao.astraguild.io": "astraguildventures.eth", + "vote.cyberfrogz.io": "cyberz.eth", + "governance.domani.finance": "dextfprotocol.eth", + "vote.forwardprotocol.io": "forwardprotocol.eth", + "gov.hpb.io": "xinlian.eth", + "dao.solidefied.com": "solidefied.eth", + "vote.fantomstarter.io": "fantomstarter.eth", + "vote.netswap.io": "venett.eth", + "vote.hera.finance": "herafinance.eth", + "vote.benswap.cash": "bentokenfinance.eth", + "dao.decentrastates.org": "red.che.eth", + "vote.hodl.finance": "hft.eth", + "vote.orion.security": "orionsecurity.eth", + "governance.xdc.network": "xinfinxdcnetwork.eth", + "vote.eggsforukraine.com": "eggsforukraine.eth", + "vote.komorebinosekai.com": "komorebi-no-sekai.eth", + "vote.homies.global": "homiesglobal.eth", + "dao.safu.net": "safuyield.eth", + "dao.getagump.org": "getagump.eth", + "dao.boomgala.io": "boomgaladao.eth", + "dao.dakshow.com.vn": "dakshow.eth", + "vote.coniun.io": "coniun.eth", + "vote.cgu.io": "crypto-gaming-united.eth", + "vote.tttreasures.club": "tttreasures.eth", + "vote.banksydao.finance": "banksy.farm", + "vote.rikkei.finance": "rikkei-finance.eth", + "vote.calciumcrew.com": "calciumcrew.eth", + "vote.svote.xyz": "testsnap.eth", + "vote.mimo.capital": "mimo.eth", + "vote.dforce.network": "dforcenet.eth", + "vote.spysignals.io": "spysignals.eth", + "vote.galaxy.eco": "g-dao.eth", + "dao.galxe.org": "g-dao.eth", + "dao.galxe.com": "g-dao.eth", + "dao.gravity.xyz": "g-dao.eth", + "irldao.co": "irldao.eth", + "dao.metfi.io": "metfi.io", + "vote.gamium.world": "gamiumworld.eth", + "nftfightclub.co": "the75.eth", + "dao.ftm.guru": "eliteness.eth", + "vote.rave.domains": "raving.eth", + "vote.razor.network": "raz.eth", + "vote.plasma.finance": "0xplasma.eth", + "vote.lenster.xyz": "lenster.xyz", + "vote.sirius.finance": "siriusfinance.eth", + "vote.pokerkingsclub.com": "pokerkingsclub.eth", + "vote.popop.world": "hanyajun.eth", + "vote.polarisfinance.io": "polarisfinance.eth", + "vote.legalhac.kr": "legalhackr.eth", + "coop-vote.legalhac.kr": "legalhackrcoop.eth", + "vote.pizzaguild.io": "gpizza.eth", + "vote.dedogmadao.com": "dedogmadao.eth", + "dao.liquidex.pro": "liquidex.eth", + "vote.diapo.xyz": "diapo.eth", + "vote.rei.network": "rei-network.eth", + "vote.blockchaincuties.com": "cutiesofficial.eth", + "vote.nuddybits.com": "nuddybits.eth", + "dao.alphalabs.one": "alphalabsdao.eth", + "dao.radiant.capital": "radiantcapital.eth", + "vote.artizen.fund": "artizenfund.eth", + "vote.orolana.com": "orolana.eth", + "vote.kopidao.com": "kopidao.eth", + "vote.dragon.xyz": "dragonmeta.eth", + "dao.leslarmetaverse.com": "leslarmetaverse.eth", + "governance.aurigami.finance": "aurigami-finance.eth", + "vote.ancient8.gg": "ancient8gg.eth", + "vote.treasure.lol": "treasuregaming.eth", + "vote.nextlend.org": "nextlend.eth", + "vote.ib.xyz": "iron-bank.eth", + "gov.thaloz.com": "thaloz.eth", + "vote.aura.finance": "aurafinance.eth", + "gaugevotes.aura.finance": "gauges.aurafinance.eth", + "vote.rocketpool.net": "rocketpool-dao.eth", + "vote.metapocket.games": "meta-pocket.eth", + "snapshot.arbius.ai": "arbiusdao.eth", + "dao.taunetwork.io": "taucoreteam.eth", + "vote.cortexdao.io": "cortexdao.eth", + "gov.emdx.io": "emdx.eth", + "vote.evoverses.com": "evoverses.games", + "vote.wallstreetgames.net": "wsgvote.eth", + "vote.elasticswap.org": "elasticswap.eth", + "vote.nation3.org": "nation3.eth", + "vote.famdao.org": "fam-dao.eth", + "vote.decemount.unidef.org": "decemount.eth", + "gov.daomaker.com": "shomustgoon.eth", + "vote.championfinance.io": "championfinance.eth", + "dao.wearecashcows.com": "wearecashcows.eth", + "dao.cashcows.club": "cashcowsclub.eth", + "vote.testnet.wennect.com": "wennect-dev.eth", + "vote.gurucollective.xyz": "gurucollective.eth", + "vote.ape.fi": "apedotfi.eth", + "dao.pinkieinu.com": "pinkieinu.eth", + "vote.fluent.finance": "fluentdao.eth", + "vote.mambomakers.com": "mambomakers.eth", + "fedvote.fluent.finance": "fluentfed.eth", + "vote.eledao.io": "ele-dao.eth", + "vote.nostalgia-nft.xyz": "nostalgia-dao.eth", + "vote.unitedpandasofmetaverse.com": "unitedpandasofmetaverse.eth", + "vote.chocodoge.dog": "chocodoge.eth", + "vote.buns.land": "bunsland.eth", + "vote.prom.io": "promdao.eth", + "vote.safuchain.net": "safuchain.eth", + "vote.wandinvestments.com": "wandinvestments.com", + "vote.lebo.finance": "lebo-finance.eth", + "vote.dynodao.io": "dynodao.eth", + "vote.cirip.io": "cirip.io", + "vote.grugslair.xyz": "grugslair.eth", + "dao.nufoundry.org": "nufoundry.eth", + "gov.infinitypad.com": "ipadgovernance.eth", + "vote.tubbyturtles.com": "arantuil.eth", + "vote.bluejay.finance": "bluejayfinance.eth", + "vote.posichain.org": "posichaindao.eth", + "vote.hausofprime.com": "hausofprime.eth", + "proposals.powershift.properties": "powershiftproperties.eth", + "gov.ohgeez.org": "levx.eth", + "snapshot.panvala.com": "panvala.eth", + "vote.uwblockchain.ca": "uwblockchainclub.eth", + "dao.notoriousfoolacademy.com": "fooldao.eth", + "vote.tanukiverse.com": "tanukiverse.eth", + "vote.t1bets.gg": "t1bets.eth", + "dao.bglnode.online": "bgldao.eth", + "vote.primapes.gg": "primapes.eth", + "gov.milliontoken.io": "milliongov.eth", + "governance.encode.org": "encodeorg.eth", + "proposals.psjourneys.org": "psjourneys.eth", + "vote.hold.finance": "hft.eth", + "vote.spacedefi.tech": "wandinvestments.com", + "dao.getprimal.com": "getprimal.eth", + "lux.vote": "luxdefi.eth", + "vote.decubate.com": "decubategov.eth", + "vote.nftprotect.app": "nftprotectapp.eth", + "dao.gracie.network": "gracienetwork.eth", + "vote.singlefinance.io": "singlefinance.eth", + "drc.daosquare.io": "poll.daosquare.eth", + "dreo.daosquare.io": "community.daosquare.eth", + "vote.gravityfinance.io": "gravity-finance.eth", + "governance.xdefi.io": "xdefigovernance.eth", + "gov.apedao.finance": "apedao-gov.eth", + "vote.bakeddao.com": "bakeddao.eth", + "vote.sk8block.com": "sk8block.eth", + "vote.pjnen.com": "kazuzxc.eth", + "vote.chigag.studio": "chigag-studio.eth", + "vote.cryodao.org": "vote.cryodao.eth", + "dao.space.id": "dao.spaceid.eth", + "dao.pearl.club": "pearlclubdao.eth", + "vote.molens.xyz": "molens.eth", + "vote.decent-dao.org": "decent-dao.eth", + "vote.pxlmage.com": "pxlmage.eth", + "signal.bumper.org": "bumper.eth", + "vote.safestake.co": "safestakeprotocol.eth", + "proposals.cubedao.net": "thecubedao.eth", + "vote.mfdao.pro": "multiface.eth", + "vote.dragoncrypto.io": "dragoncrypto.io", + "dao.arkadiapark.com": "arkadia-park.eth", + "vote.bcrater.org": "b00tyhole.eth", + "vote.cbidao.com": "cbidao.eth", + "governance.libfi.io": "libfi.eth", + "vote.ethena.fi": "ethena.fi", + "governance.topia.gg": "topia-governance.eth", + "gov.piteas.io": "piteas.eth", + "vote.aitech.io": "aitechio.eth", + "vote.vitadao.com": "vote.vitadao.eth", + "vote.orca.monster": "skinnyorca.eth", + "vote.avafoundation.org": "avafoundation.eth", + "vote.pillardao.org": "plrdao.eth", + "vote.evelon.app": "evelonapp.eth", + "vote.openkey.dev": "openkey.eth", + "vote.zkswap.finance": "zkswapfinance.eth", + "vote.gamedao.co": "gamedao.eth", + "vote.brickken.com": "brickken.eth", + "vote.cove.finance": "covefi.eth", + "vote.reformdao.com": "rfrmdao.eth", + "vote.altiliumdao.com": "altgodao.eth", + "vote.goat.fi": "goatprotocol.eth", + "vote.strategysportsnetwork.com": "strategysports.eth", + "vote.kenglernitas.wtf": "kenglernitaseco.eth", + "vote.smartlayer.network": "smartlayer.eth", + "vote.zerolend.xyz": "zerolend.eth", + "dao.index.ai": "indexaidao.eth", + "gov.precipitate.ai": "precipitateai.eth", + "dao.luminai.network": "luminai-network.eth", + "vote.biohackinginternational.com": "univ.eth", + "snapshot.validao.xyz": "validao.eth", + "vote.bag.win": "decentralgames.eth", + "vote.stakersunion.com": "stakersunion.eth", + "vote.onbeam.com": "beamgovernance.eth", + "vote.worldlibertyfinancial.com": "worldlibertyfinancial.com", + "vote.forestknight.io": "knighttable.eth", + "vote.worldassociation.org": "worldassociation.eth", + "snapshot.niftyleague.com": "niftyleague.eth", + "vote.commudao.xyz": "commudao.eth" } diff --git a/spaces/domo/index.json b/spaces/domo/index.json deleted file mode 100644 index 1e49bd8187..0000000000 --- a/spaces/domo/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "domo", - "name": "Domo Network", - "chainId": 1, - "decimals": 18, - "symbol": "DOMO", - "defaultView": "all", - "address": "0x77EC93780e478637ED777D2FB2Dc161048DfE6d8", - "token": "0x77EC93780e478637ED777D2FB2Dc161048DfE6d8", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/domo/logo.png b/spaces/domo/logo.png deleted file mode 100644 index 42c305c5d4..0000000000 Binary files a/spaces/domo/logo.png and /dev/null differ diff --git a/spaces/domo/space.png b/spaces/domo/space.png deleted file mode 100644 index 42c305c5d4..0000000000 Binary files a/spaces/domo/space.png and /dev/null differ diff --git a/spaces/example/index.json b/spaces/example/index.json deleted file mode 100644 index 38c1a48e9e..0000000000 --- a/spaces/example/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "example", - "name": "Example", - "chainId": 1, - "decimals": 18, - "symbol": "EXAMPLE", - "defaultView": "core", - "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "token": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "core": [ - "0xeF8305E140ac520225DAf050e2f71d5fBcC543e7" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/example/logo.png b/spaces/example/logo.png deleted file mode 100644 index 81d5c06392..0000000000 Binary files a/spaces/example/logo.png and /dev/null differ diff --git a/spaces/example/space.png b/spaces/example/space.png deleted file mode 100644 index 81d5c06392..0000000000 Binary files a/spaces/example/space.png and /dev/null differ diff --git a/spaces/farm/index.json b/spaces/farm/index.json deleted file mode 100644 index 1ae584127a..0000000000 --- a/spaces/farm/index.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "farm", - "name": "Harvest finance", - "chainId": 1, - "decimals": 18, - "symbol": "FARM", - "defaultView": "core", - "address": "0xa0246c9032bC3A600820415aE600c6388619A14D", - "token": "0xa0246c9032bC3A600820415aE600c6388619A14D", - "core": [ - "0x843002b1D545ef7abB71C716e6179570582faA40", - "0x252E7E8B9863f81798B1fEF8CfD9741A46De653C" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/farm/logo.png b/spaces/farm/logo.png deleted file mode 100644 index 4d2194c99e..0000000000 Binary files a/spaces/farm/logo.png and /dev/null differ diff --git a/spaces/farm/space.png b/spaces/farm/space.png deleted file mode 100644 index 4d2194c99e..0000000000 Binary files a/spaces/farm/space.png and /dev/null differ diff --git a/spaces/finnexus/index.json b/spaces/finnexus/index.json deleted file mode 100644 index f4fb459647..0000000000 --- a/spaces/finnexus/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "finnexus", - "name": "FinNexus", - "chainId": 1, - "decimals": 18, - "symbol": "FNX", - "defaultView": "core", - "address": "0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B", - "token": "0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B", - "core": [ - "0x987cb6599E55DAb551335e0D4F733BDEb3Abe6aB" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/finnexus/logo.png b/spaces/finnexus/logo.png deleted file mode 100644 index ac50f46f3c..0000000000 Binary files a/spaces/finnexus/logo.png and /dev/null differ diff --git a/spaces/finnexus/space.png b/spaces/finnexus/space.png deleted file mode 100644 index ac50f46f3c..0000000000 Binary files a/spaces/finnexus/space.png and /dev/null differ diff --git a/spaces/gem/index.json b/spaces/gem/index.json deleted file mode 100644 index 21e8165929..0000000000 --- a/spaces/gem/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "gem", - "name": "Gem", - "chainId": 1, - "decimals": 18, - "symbol": "GEM", - "defaultView": "core", - "address": "0x90f62B96a62801488b151fF3c65eaC5Fae21a962", - "token": "0x90f62B96a62801488b151fF3c65eaC5Fae21a962", - "core": [ - "0x28f97Cd17F09F2e93d46cc18a035a714dE605Fe5" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/gem/logo.png b/spaces/gem/logo.png deleted file mode 100644 index a975977045..0000000000 Binary files a/spaces/gem/logo.png and /dev/null differ diff --git a/spaces/gem/space.png b/spaces/gem/space.png deleted file mode 100644 index a975977045..0000000000 Binary files a/spaces/gem/space.png and /dev/null differ diff --git a/spaces/giveth/index.json b/spaces/giveth/index.json deleted file mode 100644 index 7a25600185..0000000000 --- a/spaces/giveth/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "giveth", - "name": "Panvala Pan", - "chainId": 1, - "decimals": 18, - "symbol": "PAN", - "defaultView": "all", - "address": "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44", - "token": "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/giveth/logo.png b/spaces/giveth/logo.png deleted file mode 100644 index 154e7d0360..0000000000 Binary files a/spaces/giveth/logo.png and /dev/null differ diff --git a/spaces/giveth/space.png b/spaces/giveth/space.png deleted file mode 100644 index 154e7d0360..0000000000 Binary files a/spaces/giveth/space.png and /dev/null differ diff --git a/spaces/grap/index.json b/spaces/grap/index.json deleted file mode 100644 index ff46c67679..0000000000 --- a/spaces/grap/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "grap", - "name": "Grap Finance", - "chainId": 1, - "decimals": 18, - "symbol": "GRAP", - "defaultView": "core", - "address": "0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB", - "token": "0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB", - "core": ["0x00007569643bc1709561ec2e86f385df3759e5dd"], - "min": 0, - "invalid": [] -} diff --git a/spaces/grap/logo.png b/spaces/grap/logo.png deleted file mode 100644 index d0385f987c..0000000000 Binary files a/spaces/grap/logo.png and /dev/null differ diff --git a/spaces/grap/space.png b/spaces/grap/space.png deleted file mode 100644 index d0385f987c..0000000000 Binary files a/spaces/grap/space.png and /dev/null differ diff --git a/spaces/homepage.json b/spaces/homepage.json deleted file mode 100644 index 3e13df05cc..0000000000 --- a/spaces/homepage.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - "yam", - "yearn", - "balancer", - "sushi", - "swerve", - "aave", - "rarible", - "pickle", - "aavegotchi", - "uniswap" -] diff --git a/spaces/jiaozi/index.json b/spaces/jiaozi/index.json deleted file mode 100644 index e48380b2dc..0000000000 --- a/spaces/jiaozi/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "jiaozi", - "name": "JIAOZI", - "chainId": 1, - "decimals": 18, - "symbol": "JIAOZI", - "defaultView": "core", - "address": "0x94939D55000B31B7808904a80aA7Bab05eF59Ed6", - "token": "0x94939D55000B31B7808904a80aA7Bab05eF59Ed6", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/jiaozi/logo.png b/spaces/jiaozi/logo.png deleted file mode 100644 index dd7e2f37f4..0000000000 Binary files a/spaces/jiaozi/logo.png and /dev/null differ diff --git a/spaces/jiaozi/space.png b/spaces/jiaozi/space.png deleted file mode 100644 index dd7e2f37f4..0000000000 Binary files a/spaces/jiaozi/space.png and /dev/null differ diff --git a/spaces/lao/index.json b/spaces/lao/index.json deleted file mode 100644 index aa1964719b..0000000000 --- a/spaces/lao/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "lao", - "name": "LAO Community", - "chainId": 1, - "decimals": 18, - "symbol": "LAO-C", - "defaultView": "all", - "address": "0x8Ffb89D50eB0b9788f40123Cb3B8b8a84Edb4202", - "token": "0x8Ffb89D50eB0b9788f40123Cb3B8b8a84Edb4202", - "core": [], - "min": 1, - "invalid": [] -} diff --git a/spaces/lao/logo.png b/spaces/lao/logo.png deleted file mode 100644 index 2d6cb6d7c0..0000000000 Binary files a/spaces/lao/logo.png and /dev/null differ diff --git a/spaces/lao/space.png b/spaces/lao/space.png deleted file mode 100644 index 2d6cb6d7c0..0000000000 Binary files a/spaces/lao/space.png and /dev/null differ diff --git a/spaces/legacy.json b/spaces/legacy.json new file mode 100644 index 0000000000..82dd410da9 --- /dev/null +++ b/spaces/legacy.json @@ -0,0 +1,6137 @@ +{ + "0xdollar": { + "name": "0xDollar.Finance", + "network": "1", + "symbol": "0xDollar", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x34870322f473830d28d28bef7f1d4178edf832d8", + "symbol": "0xDollar", + "decimals": 18 + } + } + ], + "members": [ + "0xaE0091bD0689c32c38e062C6956c2240eC658bE4" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "7add": { + "name": "HOLDTOWIN", + "network": "1", + "symbol": "7ADD", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xed36482c7f8e5850e91ac0cf6bf2130a1aa2df92", + "symbol": "7ADD", + "decimals": 18 + } + } + ], + "members": [ + "0x1a6c95c161b0f4159a65371ed1113bc1f6257add", + "0x57f4e37255767190962874D85C98082Ed31c59fB" + ], + "filters": { + "defaultTab": "core", + "minScore": 5 + } + }, + "achievmintry": { + "name": "Achievmintry", + "network": "100", + "symbol": "$CHIEV", + "skin": "achievmintry", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x807645cfE91423898b2747251affA7141c0fCc22", + "symbol": "$CHIEV", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "invalids": [ + "QmdSBniGYcx5fm5jCeKZ6HQrLADjUnwQbWYybKJBHTyNFB", + "QmP2vz7e1YpmbjLshe9UddpUvTEmvRHufpkFwLwRuDAW9G", + "QmRJy66nWwbdiNR3ZTLNKWBN8gzf453yzyeij8ANNibMLG" + ] + } + }, + "acryptos": { + "name": "ACryptoS", + "network": "56", + "symbol": "ACS", + "domain": "vote.acryptos.com", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x7e1eA653451352825540618878d5655a97d46748", + "symbol": "ACS", + "decimals": 18 + } + } + ], + "members": [ + "0xB9a81e121d8C9D619682bB9dDB6823439178F2f8" + ], + "filters": { + "defaultTab": "core", + "minScore": 88 + } + }, + "alex": { + "name": "Alex Masmej", + "network": "1", + "symbol": "ALEX", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315", + "symbol": "ALEX", + "decimals": 4 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "alpha-bsc": { + "name": "Alpha Finance (BSC)", + "network": "56", + "symbol": "ALPHA", + "skin": "alpha", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "symbol": "ALPHA", + "decimals": 18 + } + } + ], + "members": [ + "0x22CF9eE4E86fAE2552021F6e6a7bbe87d6170075" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "onlyMembers": true + } + }, + "alpha-ethereum": { + "name": "Alpha Finance (Ethereum)", + "network": "1", + "symbol": "ALPHA", + "skin": "alpha", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "symbol": "ALPHA", + "decimals": 18 + } + } + ], + "members": [ + "0x22CF9eE4E86fAE2552021F6e6a7bbe87d6170075" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "onlyMembers": true, + "invalids": [ + "QmPxoH2fDZSdWG241NbeQG6FcxnoQSnkxx3Z74Gj5815Wn", + "QmUdikKXoZeAb82j81h2yPXPFPxXpUghHdXi3GuJHJZNPd", + "QmeZzF7eAfgz7to1mJmd8oCUF3xwWD5dT3b7z1W5eMeiZe" + ] + } + }, + "ampleforth": { + "name": "Ampleforth", + "network": "1", + "symbol": "AMPL", + "skin": "ampleforth", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xD46bA6D942050d489DBd938a2C909A5d5039A161", + "symbol": "AMPL", + "decimals": 9 + } + } + ], + "members": [ + "0xdb6481532724bccb678b602e7d4f558a165bd959", + "0x44a03f2b9504d499fc7a204313cfff4a1be3bd55", + "0xfe2321d7dfa492dfc39330e8b85e7c49161e7f98" + ], + "filters": { + "defaultTab": "all", + "minScore": 10000 + } + }, + "amplegold": { + "name": "AmpleGold", + "network": "1", + "symbol": "AMPLG", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x8003c49f6ebacddc493ea47cab45e892d1b638a1", + "symbol": "AMPLG", + "decimals": 9 + } + } + ], + "members": [ + "0xF112F4452E8Dc33C5574B13C939383A0aB8aa583" + ], + "filters": { + "defaultTab": "all", + "minScore": 50 + } + }, + "amplesense": { + "name": "AmpleSense", + "network": "1", + "symbol": "kMPL", + "domain": "voting.amplesense.io", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x4FBB8b1876858260Cb0eA5e21A83C48DE6f6cAC0", + "decimals": 9, + "symbol": "kMPL", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getScore", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0x9926e27C1e9e41071C378fFCFFe44C9471F0B752" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "onlyMembers": true, + "invalids": [ + "QmT81dYKc7F83vtpoSnyfnv7UZh8Vei3zgC9nYo1d7Ybhh" + ] + } + }, + "anj": { + "name": "ANJ", + "network": "1", + "symbol": "ANJ", + "skin": "aragon", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xcD62b1C403fa761BAadFC74C525ce2B51780b184", + "symbol": "ANJ", + "decimals": 18 + } + }, + { + "name": "contract-call", + "params": { + "address": "0x0F7471C1df2021fF45f112878F755aAbe7AA16bF", + "symbol": "sANJ", + "decimals": 18, + "methodABI": { + "constant": true, + "inputs": [ + { + "name": "_juror", + "type": "address" + } + ], + "name": "totalStakedFor", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xf08b64258465A9896691E23caaF9E6C830ec4b9D", + "0x4cB3FD420555A09bA98845f0B816e45cFb230983", + "0xa1d4c9e0a46068afa3d8424b0618218bf85ccaaa" + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "onlyMembers": true, + "invalids": [ + "QmcZAWzbFvXnddFXuZNZjXkwKceSyMiN6vqoT3XbCD8civ" + ] + } + }, + "anjmol": { + "name": "Aragon Network Moloch DAO", + "network": "1", + "symbol": "ANJMOL", + "skin": "anjmol", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xBa1A22228B091D2bC6E111df61Ae6f7e5102Da1a", + "symbol": "ANJMOL", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "aragon": { + "name": "Aragon", + "network": "1", + "symbol": "ANT", + "skin": "aragon", + "domain": "gov.aragon.org", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e", + "symbol": "ANT", + "decimals": 18 + } + }, + { + "name": "balancer", + "params": { + "address": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e", + "symbol": "ANT BPT" + } + } + ], + "members": [ + "0xf08b64258465A9896691E23caaF9E6C830ec4b9D", + "0x4cB3FD420555A09bA98845f0B816e45cFb230983", + "0xa1d4c9e0a46068afa3d8424b0618218bf85ccaaa", + "0x5799AEb17cBBC576b55288EDc2BD180d61E01dEd" + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "onlyMembers": true, + "invalids": [ + "QmPNvdddbA1gQ8PCQxnEjhTeGSTvkdCarwkRyzgeoFHSgH", + "QmNTgjdR3rNj25Ah6PxYzAzb8cD7cT6HmKoFFmKADrr2gC" + ] + } + }, + "aragonchina": { + "name": "Aragon China", + "network": "1", + "symbol": "ANC", + "skin": "aragonchina", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xbbe319b73744db9d54f5d29df7d8256b7e43995c", + "symbol": "ANC", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "arckyf": { + "name": "ARC KYF Voting", + "network": "1", + "symbol": "ARCKYF", + "skin": "arckyf", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xD85e2772912213e0c584d80B2694c79D6a09E39A", + "symbol": "ARCKYF", + "decimals": 0 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "bake": { + "name": "BAKE", + "network": "56", + "symbol": "BAKEVOTE", + "skin": "bake", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x382d04194E3607dab5Ebaa5b9f8011A4c06e8b17", + "symbol": "BAKEVOTE", + "decimals": 18 + } + } + ], + "members": [ + "0x7b859170918124dFBB924327582c32059266C383" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "invalids": [ + "QmWcAunxftimJjFNxcWLNHa9YbKZFuMzWXAQHynSMnBRYy", + "QmbAWvcYC5eLZXRLmo1bWupxzrvT7EwKdmLgqRY2ksRgiR", + "QmeH2i9MiUJk1qGgmFj6mefgXsyCEo8m5J1hmaCFPBstxu", + "Qmb9o3oj3FKM5iRRkGT9uZL5NMu6NmsFFLgz9Sy1G5Ad4A", + "QmZmMHhsBwrLCM2r7SGrRv8RKQWXxr5dYerMyM7wAtCE6Q", + "QmcqGisVJJJLA6JfBtbyngXAYhFo11dEcWHqm5BEtcCeA7", + "QmUQXEFVZYkmLjyAmPax5wZKaxv6Uijspw9ycjFgDUqWpE", + "QmVh5eKwWducVxYDsVQRRv6qqG4SKssMHAi1tuJtP7n1FJ", + "QmXYXp2U5bXoFzoYSisCHxUNWeHDeQYSVsW1XHf6gNsapm" + ] + } + }, + "based": { + "name": "mbBASED", + "network": "1", + "symbol": "mbBASED", + "skin": "based", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x26cf82e4ae43d31ea51e72b663d26e26a75af729", + "symbol": "mbBASED", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "bee2": { + "name": "Bee2 Finance", + "network": "1", + "symbol": "BEE2", + "skin": "bee2", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xcD4292701995F4707AE63fb1a48d80dB2c5F04D4", + "symbol": "BEE2", + "decimals": 18 + } + } + ], + "members": [ + "0x0d8E708F9CfF2634169D7c221CF6bfA0C5731d63" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "bella": { + "name": "Bella", + "network": "1", + "symbol": "BEL", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14", + "symbol": "BEL", + "decimals": 18 + } + } + ], + "members": [ + "0xDC1926b681838A684277767eE8b7597a3d29439b", + "0x7924A26d7E7088Bc6921CEb614E0f3b7D7a1ebee" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "bloody": { + "name": "BLOODY", + "network": "1", + "symbol": "BLOODY", + "skin": "bloody", + "domain": "vote.bloodyfi.org", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x54b7e41d7154d2a79bb244bdc5678a161718ba78", + "decimals": 18, + "symbol": "BLOODY", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "bloodyBalanceAll", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xb2F861C61f703c59A01b748231bDE1D31bCb1A35" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "bobaswap": { + "name": "Bobaswap", + "network": "1", + "symbol": "BOBA", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xce9afaf5b0da6ce0366ab40435a48ccff65d2ed7", + "symbol": "BOBA", + "decimals": 18 + } + } + ], + "members": [ + "0xDC1926b681838A684277767eE8b7597a3d29439b", + "0x3Bd029d547CF483C684DBd6Dc207D4ce15e5b4d1", + "0x66F1C92B29441BCbA925c07abbBa2e23676b79a4" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "onlyMembers": true + } + }, + "boosted-finance": { + "name": "Boosted Finance", + "network": "1", + "symbol": "BOOST", + "skin": "boosted-finance", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x3e780920601D61cEdb860fe9c4a90c9EA6A35E78", + "symbol": "BOOST", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "bote": { + "name": "BOTE LABS", + "network": "1", + "symbol": "$BOTE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xb8eEe26B8305582fc3Fd9e950bE5E3d50c4765d8", + "symbol": "$BOTE", + "decimals": 18 + } + } + ], + "members": [ + "0xa50b080F064E22b990776c90D004b0aF843a4Cd5", + "0xB3E724Ac847676127B63E10fC58f77AA96e63b32", + "0x778a9fe6c408211a41Cdb7F17A32E1e42F5641f5", + "0xD2D881a184B32b8d2952e20CA27E3607E49309d6", + "0xEBCdaD5746B7B847A5BC51f70b2E3b20825956C6", + "0x3Fd4C9F7e0af52d2584dE14b289F488fE7BD1A4c" + ], + "filters": { + "defaultTab": "core", + "minScore": 100 + } + }, + "btf": { + "name": "BTF Finance", + "network": "1", + "symbol": "BTF", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xa80C32c721d06c91DcEFfEa78f184503c9046940", + "symbol": "BTF", + "decimals": 18 + } + } + ], + "members": [ + "0xe550bfdb3f4de5a19f85d56f40394803e70b3e69" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "build": { + "name": "BUILD Finance", + "network": "1", + "symbol": "BUILD", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739", + "symbol": "BUILD", + "decimals": 18 + } + } + ], + "members": [ + "0x2Cb037BD6B7Fbd78f04756C99B7996F430c58172" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "captain": { + "name": "Captain", + "network": "1", + "symbol": "CAPT", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x4de25f080e02e8b3fdd450f0b2b9ed22c7e6cf0a", + "symbol": "CAPT", + "decimals": 18 + } + } + ], + "members": [ + "0x23be3e0c99377403458E638C7dadC1f7b9F1A9d3", + "0xbD718db4569c925701016b2Cac3797C4cf531AC5" + ], + "filters": { + "defaultTab": "core", + "minScore": 2100 + } + }, + "cargo": { + "name": "Cargo", + "network": "1", + "symbol": "GEM", + "skin": "cargo", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x30B1eFB052205E6CA3c4888C3C50C5b339cc0602", + "symbol": "GEM", + "decimals": 18 + } + } + ], + "members": [ + "0x2D2C46D26c8FEc693586e067c4fC2b2DDC2b4cb3" + ], + "filters": { + "defaultTab": "core", + "minScore": 100, + "invalids": [ + "QmbMYWFZqTVNQmw7MJGAxmejX3YAxvrxEUbwstoXGWP4qs" + ] + } + }, + "cartel": { + "name": "Cartel", + "network": "1", + "symbol": "CARTEL", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x9257e8c80119fedab64842024ced4113912b0ab1", + "symbol": "CARTEL", + "decimals": 18 + } + } + ], + "members": [ + "0xa34ef48b73870fa2aca1558239576ccbc60ad542" + ], + "filters": { + "defaultTab": "all", + "minScore": 0.01 + } + }, + "chadsvc": { + "name": "chadsvc", + "network": "1", + "symbol": "CHADS", + "skin": "chadsvc", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x69692D3345010a207b759a7D1af6fc7F38b35c5E", + "symbol": "CHADS", + "decimals": 18 + } + } + ], + "members": [ + "0x8aEf57fe9d16BE8F24df37ab56da6eC18f7e9a08" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "chartex": { + "name": "ChartEx", + "network": "1", + "symbol": "CHART", + "skin": "chartex", + "domain": "governance.chartex.pro", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x1d37986F252d0e349522EA6C3B98Cb935495E63E", + "symbol": "CHART", + "decimals": 18 + } + } + ], + "members": [ + "0xf974CCa86DC0d183Afb9420e21D0E1b2cfc9d189" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "clover": { + "name": "Clover", + "network": "1", + "symbol": "CLV", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x22222C03318440305aC3e8a7820563d6A9FD777F", + "symbol": "CLV", + "decimals": 6 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 22 + } + }, + "cofix": { + "name": "CoFiX", + "network": "1", + "symbol": "COFI", + "skin": "cofix", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x1a23a6BfBAdB59fa563008c0fB7cf96dfCF34Ea1", + "symbol": "COFI", + "decimals": 18 + } + } + ], + "members": [ + "0x7055EF0557dc6fF56cdF0c36D28b346D40A1b8Ed", + "0x004d76bf4dbF8eECE3Dc71b1747C750E6faD092f", + "0x914Ba768dD30344188cE5e7C00219e12b1b236c5", + "0x8cAe4c9230B5ABc02E01630E481D99EB1E4D01f0", + "0x98f21584006c79871F176F8D474958a69e04595", + "0xbc8dAfeacA658Ae0857C80D8Aa6dE4D487577c63" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "coin": { + "name": "Coin Artist", + "network": "1", + "symbol": "COIN", + "skin": "coin", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x87b008e57f640d94ee44fd893f0323af933f9195", + "symbol": "COIN", + "decimals": 18 + } + } + ], + "members": [ + "0x148e2ED011A9EAAa200795F62889D68153EEacdE", + "0x9eE5E3Ff06425CF972E77c195F70Ecb18aC23d7f", + "0x5B93FF82faaF241c15997ea3975419DDDd8362c5" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "contribute": { + "name": "Contribute", + "network": "1", + "symbol": "TRIB", + "skin": "contribute", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xe09216f1d343dd39d6aa732a08036fee48555af0", + "symbol": "TRIB", + "decimals": 18 + } + } + ], + "members": [ + "0x748428ae2E5209ce9e5AE80B046B86eF5a4347A3" + ], + "filters": { + "defaultTab": "core", + "minScore": 1000 + } + }, + "core": { + "name": "CoreVault", + "network": "1", + "symbol": "CORE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "symbol": "CORE", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "creed": { + "name": "CREED", + "network": "1", + "symbol": "CREED", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad", + "symbol": "CREED", + "decimals": 18 + } + } + ], + "members": [ + "0xf3751F827B9F9ef4D03f8aA1f69F1806B8785f13", + "0xAaB8d4108f5CD25C75D81d52BAB11846d0c562a8", + "0xD5cE7A78343E4E329c9d23B54bCB593302EC1031" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "culture": { + "name": "TEAM CULTURE", + "network": "1", + "symbol": "CULTURE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xEeA1dd32b4c4DfD16D200AC2cb286b28F7402728", + "symbol": "CULTURE", + "decimals": 18 + } + } + ], + "members": [ + "0x3aeaa94EA35c105dE06976889eF106C74EA2DA32" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "cuni": { + "name": "Compound Uniswap", + "network": "1", + "symbol": "cUNI", + "skin": "cuni", + "domain": "cuni.comp.vote", + "strategies": [ + { + "name": "ctoken", + "params": { + "address": "0x35A18000230DA775CAc24873d00Ff85BccdeD550", + "symbol": "cUNI", + "decimals": 8, + "offsetCheck": 40320, + "borrowingRestricted": true + } + } + ], + "members": [ + "0xac5720d6ee2d7872b88914c9c5fa9bf38e72faf6", + "0x54a37d93e57c5da659f508069cf65a381b61e189", + "0x8169522c2c57883e8ef80c498aab7820da539806", + "0x7e4a8391c728fed9069b2962699ab416628b19fa", + "0x2b384212edc04ae8bb41738d05ba20e33277bf33", + "0xc3aae58ab81663872dd36d73613eb295b167f546" + ], + "filters": { + "defaultTab": "core", + "minScore": 20 + } + }, + "d5": { + "name": "D5", + "network": "1", + "symbol": "DFS", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x683EcFe5B148c8840998c1B4884F60a8eAD432D1", + "symbol": "DFS", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 500 + } + }, + "dai-prize-pool": { + "token": "0x334cbb5858417aee161b53ee0d5349ccf54514cf", + "name": "Dai Prize Pool (PoolTogether)", + "network": "1", + "symbol": "PcDAI", + "skin": "pooltogether", + "strategies": [ + { + "name": "erc20-with-balance", + "params": { + "address": "0x334cbb5858417aee161b53ee0d5349ccf54514cf", + "symbol": "PcDAI", + "decimals": 18 + } + } + ], + "members": [ + "0xA57D294c3a11fB542D524062aE4C5100E0E373Ec", + "0x5E6CC2397EcB33e6041C15360E17c777555A5E63", + "0x0a09cd09B0107Bb98a83f211704F036ECa94B92e", + "0x2A3f8eD783fF94Fc9B4D87c6b7c6b770BBF063D3" + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "invalids": [ + "Qme4k2JuwFcmsw8FBHZQpiJjr9zAyshbt2Ko3WcjDoWNfU" + ] + } + }, + "daniell-mesquita-xdai": { + "name": "Daniell Mesquita - L2 (XDAI)", + "network": "100", + "symbol": "DANIMESQ", + "skin": "daniell-mesquita", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x84d7fc44e4121adb74ef8d00a0f94cee7880d473", + "symbol": "DANIMESQ", + "decimals": 4 + } + } + ], + "members": [ + "0xDDfC2e10702d8A781727A34D83B3bb3CA94a3E91" + ], + "filters": { + "defaultTab": "all", + "minScore": 80 + } + }, + "daosquare": { + "name": "DAOSquare", + "network": "1", + "symbol": "RICE", + "skin": "daosquare", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xEc0B6AFb3F9a609CEEd67e2CA551A4c573fd45F7", + "symbol": "RICE", + "decimals": 18 + } + } + ], + "members": [ + "0x26C6a3e6662b8CABeA69760Dd3a1f335CFDD10e8", + "0xb68F52FE2583b5a568E7E57dc98c69d93821f6e4", + "0xCea5E66bec5193e5eC0b049a3Fe5d7Dd896fD480", + "0x9ac9c636404C8d46D9eb966d7179983Ba5a3941A", + "0xF62af1aE0aA967EE61d36F26DAe2a79f0DE929d4", + "0xbeC73ba0817403cd11C11bE891D671EA30443562" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "invalids": [ + "QmPdU1BwTkPb5cYRQy98i61BFFAv4XZWo6bKGoHCwsK3Qe" + ] + } + }, + "dawn": { + "name": "Dawn", + "network": "1", + "symbol": "DAWN", + "skin": "dawn", + "domain": "governance.dawn.org", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa", + "symbol": "DAWN", + "decimals": 18 + } + } + ], + "members": [ + "0x168767eeb7b63A49F1D1E213FF354A6a934a93b0", + "0xAFeBdE56612590cBB17a0f1E07699040E8C470ab", + "0x0972A1431Bb21ac48294b3F2a556527E887cfDeD" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "decentribe": { + "name": "Decentribe", + "network": "1", + "symbol": "DECENT", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x900B1998A226CFE238Ba1a14F03eB934C513C20B", + "symbol": "DECENT", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "invalids": [ + "QmWUimoGL35jVVbtL52cTXsWrsqoUp91RS7rBWxupQZ1sm", + "QmPXdGrZrvmqqsf8iurMgwXGpHE8xwhGvGmXkrbRqukqWw" + ] + } + }, + "defiat": { + "name": "DeFiat", + "network": "1", + "symbol": "DFT", + "skin": "defiat", + "domain": "gov.defiat.net", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0xF4ecF04C1D77029a848A8efE33f08f0A27058F3D", + "decimals": 18, + "symbol": "DFT", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "_address", + "type": "address" + } + ], + "name": "myVotingPower", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0x4F4B49E7f3661652F13A6D2C86d9Af4435414721", + "0x9B793F967Adc7C09B5Bd192C9E99215A12521fC4" + ], + "filters": { + "defaultTab": "core", + "minScore": 100 + } + }, + "dego": { + "name": "dego.finance", + "network": "1", + "symbol": "DEGO", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xCE92FbAC689710bCa1e1c8DB265e9B06BCB85c08", + "symbol": "DEGO", + "decimals": 18 + } + } + ], + "members": [ + "0x20FE4B1eD95911487499e53355BB8f14a881D735" + ], + "filters": { + "defaultTab": "core", + "minScore": 1000 + } + }, + "dfi": { + "name": "DFI.money", + "network": "1", + "symbol": "YFII", + "skin": "dfi", + "domain": "voting.dfi.money", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x266cA21f966D93F5580E20b55ef66C8320E4760E", + "symbol": "YFII", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "invalids": [ + "QmTzCrYBfpmbt9hqe7Tduja1wAjudahXUyPpGCae9EbV7S", + "QmX1EYMGN1CSbXUrBD7iwfx9ZqvSS65RE2okdNLX8cieB5", + "QmcnoQSCv2tfCLP17P1FSxDRo3Gxk7J4SWcULPMZFzdaND", + "QmeZDpVTHPVzjmPDPt5uXXHToVcZUwhmUTsfrdByfRHptT", + "QmfNT5nopjhVRXaZ2bPCFjnygiy66w3NBYCpJLn3ZsJNKg", + "QmT6UstBs1fT3oRQHKAK1pBhA8fYsZXfDmxZy4f2Werpe4" + ] + } + }, + "dforce": { + "name": "dForce", + "network": "1", + "symbol": "DF", + "skin": "dforce", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0", + "symbol": "DF", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 10000, + "invalids": [ + "QmRbvbutPUUCyasdTuBwnuCCxJ24FC2X8qGUaDgJsMAfpM", + "QmYEj6JkRNvW9tY61bQqkmQKbjPiGPmRpmLZs3nz3HkUkG", + "QmViLxxVd2CJaDVDmNKtimxhLFYFhj1zgTomseuqtAW1R1", + "QmdYQVHg9HxUqnPmvubZZ1ZhE4WQbkBnGLKAnHrVzUc8Am", + "QmbuJ2twDC1bwyZfmnHPEEMhotbMTULoCptncmoW3F3jH5", + "Qmaw6eF2o1bQEpgRFcLNuFbk8jzJH2R9HzT4URC199VdAq" + ] + } + }, + "dice": { + "name": "DICE.FINANCE TOKEN", + "network": "56", + "symbol": "DICE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x748AD98b14C814B28812eB42ad219C8672909879", + "symbol": "DICE", + "decimals": 18 + } + } + ], + "members": [ + "0xA05952c083983017EEb092B21Ac82AdF6B5cf733" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "dollar-protocol": { + "name": "Dollar Protocol", + "network": "1", + "symbol": "SHARE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D", + "symbol": "SHARE", + "decimals": 9 + } + } + ], + "members": [ + "0x89a359A3D37C3A857E62cDE9715900441b47acEC" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "domo": { + "name": "Domo Network", + "network": "1", + "symbol": "DOMO", + "skin": "domo", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x77EC93780e478637ED777D2FB2Dc161048DfE6d8", + "symbol": "DOMO", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "ebog-rinkeby": { + "name": "EulerBeats OG DAO", + "network": "4", + "symbol": "EBOG", + "strategies": [ + { + "name": "whitelist", + "params": { + "symbol": "EBOG", + "addresses": [ + "0x00645Dd21310882cC32399abCb54e0a05b3b5D1d", + "0x0095feF880f57BB80928406ad96aBA50bFb03c64", + "0x0104a95Cc70B377442A43545905bfe5BBAB01124", + "0x026FD30023D9199450883B3c7f82b7C9ebbEB2F7", + "0x02C545e7E16afbBe405FaD98a8a5a9a9fEeCe114", + "0x038Db6c62d0F072616e2B8dB7D3D7cFC829f7f65", + "0x0392c0D81934B52f64aA50C2cFbbcf28cd6141b2", + "0x0396Dd6aCc42cE2f0733e2E6FeD7cD157ec930C1", + "0x041Af8F492E0782c6Dc5435CCeBa5684716f4e86", + "0x04375c176F8Ef02a703404cF42b986D0fd3197F5", + "0x043b2116F729e188668810D8aE0F86Eb1152aE4f", + "0x049e37b4276B58dB622Ab5db2ff2AfFCb40DC11C", + "0x04EDE46C36E138daEE85B7E1f7711fA8Ee908B00", + "0x052564eB0fd8b340803dF55dEf89c25C432f43f4", + "0x0545457833F91042e0390ff14F7DA9d953e4C7F2", + "0x05E06f2ec24C04737a08eE8c420A28cB0A3962fC", + "0x05ed5C05b3D8D431e28C77Fd1A5aC231e16b670F", + "0x06de363DF2Bc400850b02f9eA72C3cf66aF1495d", + "0x07a1f6fc89223c5ebD4e4ddaE89Ac97629856A0f", + "0x07b24ba3e50Be7b4411138823176f4382163D59a", + "0x08058cF96b096fba90f288A476AdE5E2d667eEff", + "0x08314B25856540e2BB1c2702f900D114BBa4D206", + "0x0871E6872f0CdEb32eb013648a76575B4d2dBa80", + "0x095E1eedAa9C8Ed641DE2a27CEc4f65e1aB91694", + "0x09d8270a1dE38b53df1f47DEC27F377Ce145115c", + "0x0A16006013A26cb8fFbdd3B31D19cBF723F024f2", + "0x0a6417B2D8b6cb55B1751b5A46289972d33e424C", + "0x0A9DaC354e19624cfb2f3d389Fe1614811801353", + "0x0B2479ca8764453aceF996c2Cc1eC9Ea7E36d4A2", + "0x0B742783bFAc8D4b6d332E5D1b63F433FCD8c0A0", + "0x0b831bcB52997c2f7bfB675A36e8CFcF8010806E", + "0x0c6295B8b5e9daD2D3ba15ef4CD4c47a4C0Ae2fa", + "0x0C6919928e21012F68A47573b18100DD446Df951", + "0x0d6E832e8188c308904DE51EA62B43920FE1da46", + "0x0Df3206a98F9feAD898Cd5Bb8CedA5BB8DC9563c", + "0x0E2301C2c6E8F441E2971eedE106A2004c857893", + "0x0eb9a7ff5cBf719251989CAf1599c1270Eafb531", + "0x0F045a0D77D24c326316E0315354E7Df28B4aC50", + "0x0f692f4a862679008BbF48CC0A7AbDFF12908f79", + "0x10031a8001D7ac0bf507CAd46fF5E835C339d89a", + "0x1010595F96Ab62b31BfeAc411Ec5f8f60DB5DC23", + "0x102c412bc7Cf8276CCCb9fD5A2e5fc12125C1bbb", + "0x105E5E29311F2B055D98d259A9aea0D6CAE97F5C", + "0x10D6d2e343281D388291A3e02f3293AaEdA67178", + "0x10e01e2C2bA427d6Ae509c085aC06df79B85237E", + "0x110aC90D6f5320C703B1feFFB3faBE043e638113", + "0x1180814Ef4DD32106b9De7F3C172795cEA3C3D6E", + "0x11d0Cb5C690bC838eFc52C621F6B48040dd000F7", + "0x13C6a19CcD443372c3Ce86BC57887ee06EbAEa70", + "0x14AEe51Bf54dE9289D155F31E67e3fACCA5f2ED5", + "0x15396ccbCf993e56EB56a9Bc3D2115dc2CCFAa1C", + "0x173772F15D596214fa1A79c196cA5634Bc3e32A3", + "0x175da1a2974534Fb6b87aC22Cd5b954ECA486e4d", + "0x1761Bfb1B40821512AAf50713673Ef458056d847", + "0x1786D033D5CbCC235B673e872c7613c2F83DA583", + "0x17b9F89aF8f665A736c486190443B5ACb3793D6d", + "0x17C4942503Cd58AFC19472686Fb6D0AD08BB91Cc", + "0x17e33637f6B64E9082Ea499481b6e6EbAE7EEA23", + "0x17fdD5aB047e502ce1faa065f49170875b083a47", + "0x188C30E9A6527F5F0c3f7fe59B72ac7253C62F28", + "0x19831b174e9deAbF9E4B355AadFD157F09E2af1F", + "0x1997169FC82aBdC3F54e14e1E2cD75cBa24Db73C", + "0x19baFB19C71AcE7dd16843f4C11F81faA6FbF62E", + "0x1a5cdcFBA600e0c669795e0B65c344D5A37a4d5A", + "0x1Bf8BA061664339bAf1E1d016D8f6cea9455F404", + "0x1C0cE76FD1aE171D192bFb81De44cA8E22F1d576", + "0x1c9e5aba9bce815Ed3bB7d9455931b84c56D5114", + "0x1dabc3B1E6E6878feA60F9d9799B1CFDbb9D6aEf", + "0x1DC5EeFE2D20d1aB0dB794a4236df147C0f60921", + "0x1dd5D6F74c584063215E5E63BD894A976a8763Db", + "0x1DFFDb114e58baEdBD25290A1EffFa9fC3726D1f", + "0x1EFa3cD722221b6ffc3e6dF1005Fa8D9116882c0", + "0x1f2bED6120ec9Ff4104F4D9ba9a8FD8Bee5103F3", + "0x20251a0505Ead51fb2C6ce5c1f399924ea068322", + "0x202AC9a140c49fffc51AcD4c65272A339fb9Ef02", + "0x205Fd9BBb9d092b8e428108a0a9414801bfa196F", + "0x20a361919000caB7Cbb8B452815968c93F908435", + "0x2117c37a65aD3c0489682386f7d81d4c6d08B3C8", + "0x212acd42718bEf10dbBB44B40057262fbf4C4C1B", + "0x213070749887F596dee47DA98bbC0CD7FC425EDB", + "0x2147D9DA0aF389f21bAAA33034e009396281081d", + "0x21532d4267648191bef7a33c813c43cf90a6fa78", + "0x21FFe04829c65E6656B9c156c7DADe4c41025c1c", + "0x2206445D241cCB7DAE93B2D2acFC67f75B90fD76", + "0x221208Ba3781c1AAAEb5E31F1670d42ec3550020", + "0x2212238E2Ca9F003cD2c6ea780eA5467cd7cfffF", + "0x22561c5931143536309C17e832587b625C390b9A", + "0x2269522AD48AeB971B25042471a44acc8C1B5ecA", + "0x22a1789dD5Ee19151356a05cD715d73081D833F8", + "0x232E02988970e8aB920c83964cC7922d9C282DCA", + "0x23DFB23598E0579aBb8a8E33111Bb3ccc9c59Ef9", + "0x2506Cd8c7BEE35EBE54670bd28EB00692Eacd426", + "0x2507E068EcE82d1eeDFea977532237e78de84345", + "0x256cBf17Dd6271Fa227E2F3DfE9bEeD7cF769aF6", + "0x25DD159Bb80Ca4216A2693CA0394672e4600578f", + "0x26Cc7210111a984bD7f271cFdE8757732B385eDE", + "0x26e3B8C7DfF37fb9A8FD565F702eae0195F4916b", + "0x279A3fdbD6d6252Afc5C422439C7D7859a51a05E", + "0x27Ba5e1a94065C60434838E68570a1f534FA486F", + "0x27e5d7baF86493F588B6a0a68418B21fED6F69A0", + "0x2834E6b4635434A4C8Ab56E6bd466E8D64500b7c", + "0x288457a12496cbaF6e51Aa4F306dA1DC6ddeBF1D", + "0x28C173B8F20488eEF1b0f48Df8453A2f59C38337", + "0x290FbE4d4745f6B5267c209C92C8D81CebB5E9f0", + "0x2923Be587904F3034FFAB36C86c495Df3C21Bc97", + "0x293Ed38530005620e4B28600f196a97E1125dAAc", + "0x294307A59B53AC1684F03558499578D16B68443e", + "0x29dfF05A66E9c23605039Df66F53ADA4172aD3a9", + "0x2B0386bbDd314d8356C21f39BE2491F975BD6361", + "0x2b0F0dAC13A3C7305474b71256433F8b6b33850B", + "0x2bc2CA2A7B3E6EdEF35223a211aC3B0b9b8d4346", + "0x2Bcea5dE9c2411FE02B0dc1CDcEc71149a682439", + "0x2BE52b4429DBDfEFAd766ddDdd16ac0777476EDB", + "0x2c123fc5C27888571CD525e8ae9b0c5ff848386D", + "0x2DE24579e5Ff91A3D045a41c867Fb73fe7cAbD10", + "0x2Debdf4427CcBcfDbC7f29D63964499a0ec184F6", + "0x2E0D63fFCB08eA20fF3AcDbB72dfEc97343885d2", + "0x2E5CcFfbAe934a9Cb7e061Fca7Af01946e4E550E", + "0x2E802f6E0e9ED4F630e8F69fCFc7aD322839AfbF", + "0x2E9af3a1f42435354846Bff3681771b5E3551121", + "0x2fa9E3DA421962Ee6f66DE60E66cc0caFB37c721", + "0x2Fb20C06230ADe31CB2848Aecf574FaA8605BdD6", + "0x3111327EdD38890C3fe564afd96b4C73e8101747", + "0x3113558EA6918c3ae1D9247D1d7a3F9efF5888D8", + "0x311DA6D80CC8994193168BA51B074649606cf6d2", + "0x314618a937f4f443Ba1700222AFc1518F3238480", + "0x31fE8439F34ed04514288a6f0F19f26c647Cd6aD", + "0x321022c75fD370b8ECCde0952031E1B548A1a349", + "0x324E9e6E602fDf1F7F50deCEa6Cb83Fff575020f", + "0x3282f7A8D396Fd37927a63897FA9CA98178ec480", + "0x32A01b41dCA5a7087B176478f710548124489e06", + "0x330250EF452F825dAFf754E6c31a8Da490bA63d0", + "0x333601a803CAc32B7D17A38d32c9728A93b422f4", + "0x3350bE8ADa341562639F4B4DC5BdBa58F1509e45", + "0x33B2718AC865E995bC8D57070a80eA408d46A2Fb", + "0x33e5bF87C9d07553b5C92935d42eA70A536B163E", + "0x345918EE0f54852ba5060F2A48aC8359051E5aCC", + "0x34EB5C0a3a08eEB18141a626Da5ab7366791ce43", + "0x34EC9c1D89cE8Afa701D079FD908FcA95f49667a", + "0x356B8281a0F3c8Ede41aE581A93205807AC5D40c", + "0x3593bd7b5A4376455378C7b13340745b70bCe908", + "0x35D3A29b0356Af77C03246763A497759108C2e8E", + "0x3612b2e93b49F6c797066cA8c38b7f522b32c7cb", + "0x36Ca4898d224aE146caC312f4502568544157953", + "0x36FbD89b5aa130b53708A98e729aD726DaaF1F86", + "0x3731a53E630a502BE37532C0B87b0DC4C1a0463B", + "0x37dbC4adbac2e6A6A3a8c513602D70C2a3184127", + "0x381d5EA101dfD58a440D29a3e28a9569C82e5c28", + "0x3838433F63f4d4A24260F2485AACf5894ba7Bc93", + "0x38ab17c5b796F15305EC81fF7eF2A0b00d796d1D", + "0x38cd808be77b1a61973E7202A8e1b96e98CF315b", + "0x38e71c42Dbee9b368f93c1278b8cE0b4AaC44b29", + "0x39183cd265F50Af7533eC058A4c807CA9bB6D10a", + "0x3a92B1C299f1BDC57C94eFe5D41B646a4bee13ef", + "0x3A98141FAC8B5aEB53c21FaF22172Bb3c43AcC21", + "0x3B3136D269480017d8B7A050DEb0D7ED979B8075", + "0x3B6F8f26ee32006cA8A0806494f96C234939C2e2", + "0x3b848d223201f173557A2Cb150b64fe67A1c50D0", + "0x3bb0FE1d19E1f10A457Cd3D26Cd0dB78DFdd677E", + "0x3bd31A863A799cf0ef9f6D678a8c39a1F8Af0a9b", + "0x3c49fe5dEa5bD6cbb6Ee07AeBB371753e3F2F2f7", + "0x3D37CFA2e89a04b3704Bd64BC2c9AB9DCd448b9a", + "0x3d50ce07A6DAaeFA0f258d87e993AA6FC792F70a", + "0x3e17fac953DE2Cd729B0aCe7f6d4353387717e9e", + "0x3e1F1fc109B0130a8ba13a1546C713D030B8613f", + "0x3E3721D26D5B8612BCD6504696B82401b9951bA6", + "0x3E39D551f86cC6C0D6fD536a51770962eD7F6C08", + "0x3e41A8Fa0032D635f02201053F1A5aa2A6967c81", + "0x3eC0846B346DF271A5352D34dA5EbA5C5820F79F", + "0x3ece8d40daC89FfB408f7CB5eaf24Ab6A3135028", + "0x3FA9db8d720679E8e5213f6C5D88faB766058e20", + "0x3fC36149FBb0e63b2B18b5De50be2e4A6De992cf", + "0x3Ff68Ef5a732573d41C03BEFfD446eaA14255910", + "0x4090B585C6Ba6f8d8CBd76Aa805f28069c732ca3", + "0x40E652fE0EC7329DC80282a6dB8f03253046eFde", + "0x414a26eaA23583715d71b3294F0BF5eaBDd2EaA8", + "0x41A646c53d65a72b46f600e7d69a6091753840D5", + "0x4222C39C85d8F9a251F8Dc0daD6A48a6f3AcCFB8", + "0x422DCc3e0286D5435A7B6445F4f4463F6Fb2e936", + "0x422fAc9209d91C24B3115bF7fB0ef7a3a7Efbd7D", + "0x42a63047a1cD8449e3E70aDEB7363C4Ca01DB528", + "0x42b3d65094A75CB7daEfF8D92737E8A31814c2e4", + "0x42F7c5275aC4372156027d939843C9C42523DF2E", + "0x4322AA46ffEd67809862Da613725728e2fb8eAe3", + "0x43264D3cb83fb4dEfFDdD5feeF1405918c71c441", + "0x4337222550E92f52DAAe8985e089D7Af44314b78", + "0x436E31E81B8E331445BbFdb506184240F20A1b0c", + "0x442361621cb03C92CD10455B08eB1B91602399C0", + "0x445B34320B520793A23a48D42758F38a492e449B", + "0x446b5d69a40054De6E6bF5978EC8aba2c82cb43f", + "0x44b87008932387aF42A1aD87d3Dc859cb8C1178b", + "0x45b8BE1f65D8943580ed9CdB30865d2033BEb5E7", + "0x45C15D1c432729Ff87978386fd0Bb4aC3Fd61Bc0", + "0x45f937d6032796b1e65d93A70c2C64C0E3EAb62e", + "0x46F3cBa3D4Bc3FDb41215c9bb48bED8B8B0c1361", + "0x46FE6dD8699bC33F73BFf8b3DcA7772ad296FeF4", + "0x4703bF8DdF7aCF99EAc0Cd87eec06835Cb1B3586", + "0x471b257Fae0C070Ed43DEb56BfdD60ed13591950", + "0x474C88712e825B5adb64F4132e26A215080Bab65", + "0x474E587048A57caAaD89ee021902A223DF82Ef76", + "0x475566F2B32F98A8fb8dDFaF184Dc522d0701f72", + "0x477c2087F3D6e49b1BE5C790A33b3a025A4Fa569", + "0x484eA27dA8D53Fb6aE356306D1cefe110769AB10", + "0x48513224a50C339d23484c9cd4A95DaB5a9e8862", + "0x485B8AC36535FAE56B2910780245DD69ddA270Bc", + "0x48724944608B7BAaCD2f7D10BDBc98D429967f7c", + "0x487b756518Da8080560259D9dEA7b8eD4b5Fe86D", + "0x48AacA81C945e1E84da4d662E0De579522BEF4C6", + "0x48D1f7e41070fc0BB0E36925A68DB1350088C54e", + "0x499B679Dc1B480b5Beca6cda66d3f4a33ba1A77b", + "0x49Bb41AcC0652B73d256CbFbD6D03a380b66C9B4", + "0x49e1bB5c768697Ebd809c3892ab30645f60e8B60", + "0x4A4f1C998b89C0dC000983FFd997420Dad282ca1", + "0x4a582524d235c9e0A99Fc93041C80f3D1f33040d", + "0x4a8B9E2C2940fdd39aceb384654dc59aCB58C337", + "0x4AAdbe45636170735F11093E269a79F372B22E95", + "0x4ad368bE4A965916FDb7812D6bBeA894Ad20b9AD", + "0x4AfAadAF2e743164a0FBFD35ED0f605B8fB89A46", + "0x4c8220009De389C6de21f8258A1aF76d963ba294", + "0x4C9fa6F8771C4370660Cc6b10774a0873f09f72E", + "0x4cc53C9Fe95839843dCce489F994cA0056Af8AeC", + "0x4CE36ca2e17141b24932A9c7b6D1F4840e8BC801", + "0x4D8cd0D84E677cD2E13C29C75D7673FeD94a14Bf", + "0x4DbCD214CB8C1F3b0089d10FA774a116B7179B4d", + "0x4E0030Aa2b1AEB26016095B56C01C9742113001C", + "0x4e2a1B9C346718824576D6793BE2455E1e1538C8", + "0x4E3409af4816524f2567eF829FA6628443f4C988", + "0x4E452623763c5856c900E9AEc19f1f5f2B3543cB", + "0x4fb2e1E718EC713aa7346687FCE8e4411b7F423e", + "0x4fe5D0b4B663e36dac83BCECb1E25aF2bDCad725", + "0x4FfEF8E8A75c20Ab0Ddf96C50d2457277d27923c", + "0x507Fc313f9D50CE32fF94e67Df48F7B0935D016A", + "0x5080FdA2a93078DED890D8591AeBCEA7F345c492", + "0x519754bA1823e0Ea654EBB38bDdC64dc1f743694", + "0x51Cd54fb353Cb29CA02876F79d5AA31Cef92E264", + "0x521cB0A9Ae647DcFBdC49eA9e4D0B38c06Eab3A3", + "0x524E71C36Fc4467C1Ee59A415eEa62C618F197b5", + "0x52e0f7339C1BEd710DBD4D84E78F791eBe2df6b9", + "0x53102d489D17b09F9e758742d5D1f67E120f10C2", + "0x534CCd2285Aa45aBDE36372Aeb9589A027183FE2", + "0x537CbE6D830b271A56b726B5Cbaa5fbfa9Bb6B0b", + "0x53a24123D2feB61b53A499119a90b9E5a62726Be", + "0x53C1Ee14aB9119aaC27Ef6DFc7f6ED7e55510357", + "0x53c760CB4eAcBEa81682f6E09B674B249b09F273", + "0x53Cad1487424A6e386F7791863b61802100Fa091", + "0x542182bE789d45a8b62d5412B04295ab289076c1", + "0x542fF5fB29E27DD57F63e9A7d27da587FCEd51d9", + "0x557863CB135feD1EAccbd941d4A1B2809ED80afC", + "0x55Ff197993A6d33eaAc9A53305b2D0eDD490B034", + "0x566de4Ab93D72b99F09Fa2D3a03C70B5c04734ca", + "0x5781B8557a79F3227F0Bc06EC52fB5E7F747FDEE", + "0x57e54ECF82df98b3faDC1cd50d6835D5DD870916", + "0x5924A8295Baa2f63ff70050205DfC101900Ded4F", + "0x592a51330F1E824DD71135d3adc18d56A7bbF5DF", + "0x59a5493513bA2378Ed57aE5ecfB8A027E9D80365", + "0x59BB7bC404eCC382A5F635C3F10331D0df72C264", + "0x5A7a4A426eFf589Dcb8c71F20F18FFBF6bb419d5", + "0x5B2E846fED34400177ae8F46c3f4934B4388C8C7", + "0x5c032ca31A6Ce5FDb2C31b5dE241edd0F08A268a", + "0x5DC157Fa5aE8FA80665C334D49cb158782Dab92E", + "0x5E382071464A6F9EA29708A045983dc265B0D86d", + "0x5e46A8ecd4f4f0737ad7b7D243E767861885ed06", + "0x5ECaa6595Cc1dC03D87aee562313964e90612763", + "0x5eF89F92388E309F795081e0dd83C82011eD2546", + "0x5f2fa8fc107B975C648Df44979152b690E37BD86", + "0x5fB4de695eD5b44e713ec46703b54FD3d85348cB", + "0x5FBc4fAB6bd0FBf48dF26258B755e72738b52197", + "0x6030f4C1657b61dD2db605be4510E79F9bE141bb", + "0x60cdcE8f724bf0486b49a988B24d2E716Ed687b0", + "0x616E7830366C2a6fCA58c13DFdcbF24A9772842f", + "0x618242eB5B2e41ad715a6e1C01AA6D28Dea2A911", + "0x618419cBB05A12d42Ddb999f8Ce24F9f0c0c50D9", + "0x6186290B28D511bFF971631c916244A9fC539cfE", + "0x61e193e514DE408F57A648a641d9fcD412CdeD82", + "0x621b35b50c508f3497437Ae777dEe70D052D6AD9", + "0x630698F9d679F232ebB044703163BD7C40663d0C", + "0x63421Ae93c44f5F3F58B7e3AD1245e955DB49897", + "0x63e639d81Bad3075420448b7481AF64DB108ABe1", + "0x64685f58003e36099bc94414E3dDB4CB670e3F3F", + "0x649b84336C431D3aBBB0c5A705E28A82891032b0", + "0x65E77EC371C0Ca57eD49990cA10b965191C8f2E4", + "0x66c3d1948EdB3ef275DD7b7101788196E22a372D", + "0x66f2f264F96a92B008cFdd387aa2830007FE5DF8", + "0x6792eE2DF9646C32e512d0880727dD4c45D98B13", + "0x67D21ebD269d61Ef8cD9F0f3698869b3d818a4B5", + "0x67e5ab5b573F01030a1076dDA7A79Ef0f31A1bFa", + "0x683a42E5B414Ae5cF79ece7e369cA5937fdcDC11", + "0x689Efd93cA3E808aCA8A8BF546037918151a2bfB", + "0x68C8E1eBAC4B602aC41436050e2f5Bb09728D458", + "0x69b7F94fA8961A72f472Ac672693a5a117807c4c", + "0x69E0E2b3d523D3b247d798a49C3fa022a46DD6bd", + "0x6B67623ff56c10d9dcFc2152425f90285fC74DDD", + "0x6b77303b6406510863262BcCe64A5141FF735028", + "0x6Bf749e0745ac7222E4F8697eE648060f719D421", + "0x6c068FC28043599Be8C0bA23b29Bd39de080f857", + "0x6c1e0C4221ec9d36Cf80cd2B9b6B9B2823e4CB69", + "0x6c22A9e37F4b532929682D09A6d504be66B855EC", + "0x6c3675c755c06B236cB10b5ACFa0445FD8AaD455", + "0x6c3E007377eFfd74afE237ce3B0Aeef969b63C91", + "0x6C438743A6e2944DcDcA64e8179ffd8BF0E7a742", + "0x6cef15E37392F13d0873dc18497CA8087C681e01", + "0x6E0C823301c47be14a2B174818cc7728d927FF78", + "0x6E185658442aB2a27F86402fc36b379C8Ffc76f8", + "0x6E2839114cF8DD8af13b5D5e3bFf88f832Fa3548", + "0x6e94aD65Fd0dF9C32E93165E3EF037913961e38a", + "0x6FA53833Ebe9363b42bFcBadaDA337dDb590D989", + "0x702F1e9410f9ee6442ed5DFD8992776579243eC8", + "0x705200B2a465F909637b71e85a04768D3a6F46fE", + "0x707B54d8fFE11dD07eFF9E1Df9FF54c15BA31362", + "0x7136B65ACE372C9D8208eD0f79319C175498FaC2", + "0x716434c0DEdB5FE1006De4EB058b6b1F4d8d6909", + "0x72Aa7371CD5113fb7f1b1452867A421B2A375353", + "0x7387C9Ff5Fb2F7a5E83D06633846d72a3d1ae72f", + "0x73eE1624826495Fdca90e6dD1a6e262A598B5a1a", + "0x74f54b4435eff8d5f680644Cc6482434eB9221dB", + "0x7544b7dA3bd457908108AB38e2a0dd65de3a6b09", + "0x75D77D17df20344c7D49118e80fc2918716828Cf", + "0x760e7B42c920c2a0FeB58DDD610c14A6Bdd2Ebea", + "0x76555D4fBB63926fd93d522eB10B14e81651384E", + "0x76ac6B8EEDBB634261e9FA4BF25152a09E1eb90E", + "0x76ad49C74c663EDA8a46ea0a3c29bcbd2C50F43a", + "0x76FE8E056230344B65104ca3c96FF062bFAf9cf7", + "0x774EAF5D31fEb203E0be0c2f6f1CC62c3BC76696", + "0x7761CA398E836534bEd3B8798f96A3CF39D3bD2E", + "0x77851C62712bcDAcbcD8308D3fe45B953e7522ea", + "0x7931159556165Df422287463364f29e39F92A487", + "0x7932B496C310C75a02701A9a6860D9F97bC8E150", + "0x7989E741E0859b8C46475424c1a4A95D7F91Eea3", + "0x799e6b89aF6DCD161c12ce1104F5bBE51B6889B6", + "0x79b94191b6695e2267885B43728AA2cf8d5C56F5", + "0x7A5F0AFC8EC9AdA314A7d882D5B2e48D868a2749", + "0x7Af7cA67AA827F58e0659C52a641aeE55a43B535", + "0x7B5485c076ACb0a6E601BE90D995a5f50c6988e7", + "0x7B8B8A1ecB4Ee03007aE10E64D09d1281C25f9Ba", + "0x7c7565c70e3BC73912DBC85DC39B99CFEe8bCCce", + "0x7cab8ab52A142fefC27413195364B731150a7eaD", + "0x7D0CCA0925aDCCceaDD1ee304BAAb4cec69434F8", + "0x7d2855c1472266601aF0F8206b0e12a87D934760", + "0x7d6a8ffcAF98CaC58340329B3A91759888cb1363", + "0x7D91819F7F8D319A638A5CbA891bBad02c0D6066", + "0x7DA70Ff4372512B0ABCc050B36972a35e85fB0e8", + "0x7db5255041E2058bc40D0b07C8E36da0de37baFf", + "0x7dD7624608445744DE04DB07ed6761346a281b3e", + "0x7DECf7a31168778f311c57B9a948aBaa7321001E", + "0x7E23a0a9fD1105ca4b1DC9B7E0F0AAb3b7071Caa", + "0x7e3De32B65CCAe9233Ad666f5F7B2872EF37FA09", + "0x7E49c4E748bF7B720bb369EcC60902517E047788", + "0x7eC6fFd8c5d5620903A22CE7A8B37D62E0E6559A", + "0x7edB0CBfe1217Fe53Af0Fb871D92c1c627C6673C", + "0x7F58C3872FEDf4Da3E995bfB28bD6EB86d09043b", + "0x7F7b32c998083D66De56602D75bC820b768C721B", + "0x7fEE3D50AE036F3E72071dDBa811F58472995Edc", + "0x809E1e2725dBbD8D75Eb1a460880932d2e1d4C1f", + "0x80A2330B6BBC655cB52fB7BaaE05c0Dd45880f8F", + "0x80FD264D44712FEf8771675Cea1bF24656c6B37C", + "0x8130E3BA212F821Eb1f1f3286181881400B6f930", + "0x8133A5DCbA30387E88B8Dd3B782797ae00DefCc0", + "0x821B6535AA02082a54F35aDaDb8ff2bFd7baFBEB", + "0x82898337F03c1D73133213580b0d9855D3a5573f", + "0x829A0825115cfE200BA8f99F4a0b7A31d14625bb", + "0x82Bb6B5e92E1143fC03ee468a7Ba9Df8e955f7c2", + "0x82E8936b187d83FD6eb2B7Dab5B19556e9DEFF1C", + "0x83112307a51ab30f2E4e1dDA68DA852d5F2691b3", + "0x83B481Da6200A8cD3252b8a8cB01f530D41a2A25", + "0x84eCD8BAE0fff81B722A24d4E00b010bD02691d4", + "0x85042EE3F6911A73126488448Aa9e81b3ee5514a", + "0x856565Db827588a88780454863F98A4A323E13Aa", + "0x85949622D71A2757742B4BF23876501dA4f2d290", + "0x85c0C90946E3e959f537D01CEBd93f97C9B5E372", + "0x85CAB6b340cC0CC7D39e8aE51D6a65BE7093Fdcb", + "0x85d14B5B709573c275B1cA9C1686Cc120E9E715F", + "0x864c56cAF3797AbeB010C4E8Be54973F1Cc93d20", + "0x869cF77F0c9FCAabBEA2F6D4626cB970a109C42f", + "0x869F391b1FD2d2D6280dB10BBe0d7D7cd5eb92b2", + "0x87c83b392A2A0d97bB6C99Bc398434721F34dE34", + "0x87e32D4631D728d6aD7EBcD133b11FeBC9DA9b93", + "0x882120fEA44959a3388Dc8D40109AF4101EdA1A8", + "0x887b86B6B6957F7bbeA88B8CEfD392f39236A88C", + "0x8884c13a1D3baeE3974E9fa679c1a21c177A6D9D", + "0x89B8B20AE90328692cD367f75aaFadF55fd33E8B", + "0x8a333a18B924554D6e83EF9E9944DE6260f61D3B", + "0x8a83716acd66D9e1fb18c9b79540B72E04f80aC0", + "0x8AE00bDb9626C54a5a87d02373539CCb84A96FA3", + "0x8B8e9736Ec90cfF09e86cA675B61F7f25AbB349e", + "0x8c9b58Cc7ed006290fAe97F539F8084c9381D59C", + "0x8C9FcCEd4c9ec98Ced2EeC251E905E48Dbfeb2C5", + "0x8cC30F8baecD16F453F0dA87f84451817B6e4FcE", + "0x8d1d8b0368b5f52AD3A1536487A0c5bd012D6Cd2", + "0x8d923D15F6e1aD3086262434954a92904688E30b", + "0x8d9F950C23B73Edf79Ce52f74C6fB589cd2cbd90", + "0x8DDc0fCCc34E74681a1104D638eac1024d25E27E", + "0x900E7aD1ab18CeBb4c21F71795364E9B636831CA", + "0x901689905320A3AfB0ff5bfe685cB2aE222641d4", + "0x90dC1cD8da9858a8bEe4436cC9761c3C24ae77df", + "0x91a9B4DA163a1F248C92DBd262aD3e95e042C87E", + "0x91cDA41a25057B30cd003Dde076Dc91F7a9cb6d9", + "0x927d76cC4c50eBb710a4a6c3c56fDCD16e33b326", + "0x93B7b42dd29058e3500891582D602503311192F9", + "0x94aA21B1Da98314F1b8F9d8Aab6fFb2d0099A564", + "0x95224178293c24219c287d7bfc6ad148c99dcFdE", + "0x95B1A87849edb0BF836c843683369fA3F9E28101", + "0x95d698C0aEd2d89D12a6E55Ac21A4FFdb8C17022", + "0x95f1872c2c63f54072BD42F68BeEe71E0D6f67d3", + "0x9608E083Fc15A5361302bc83660E24a78D10aa26", + "0x962B9B8C8986E632031ea1Dccd4d0aD9899cF7A2", + "0x96333170e351bD436D97E70E2e41057f1D8f159F", + "0x96529daF15B0223d2dFE93293090E8146D973a0c", + "0x966082BDf238AdB1D9c3852DAb4a70ebdab8e4DA", + "0x96E1199931A9e201a4d209262c8C379e2c0e4852", + "0x9700c4f3310Cbf41492E9DB29aa0911Ba0a89E43", + "0x974a543278197586C3f11FFd477968E17acd1aC6", + "0x9803666fD2857E5DCF72de23ed320C5704b90C62", + "0x98fC0619b8057C5118eE0f048E3bEa86547892b0", + "0x99537efaC690b3e74daC7623f5a623B043B35004", + "0x996290C17C874d989D6E3DB7dC0b2ef0A9FB876D", + "0x9999999e2f76ed42E6B1A4EefD0Fd472790Fa1A5", + "0x99Df40B23872D4c2a0F198f3D6dcE20C4E13AdAD", + "0x9A1172976C47A86F0381134FF91D200111431F49", + "0x9a34c367b09fc4431744a8993390E2ACd0dc161f", + "0x9A477Ad9517d98927AAbeD4c529633A6BfB2b4EC", + "0x9a568bFeB8CB19e4bAfcB57ee69498D57D9591cA", + "0x9a85342Bb436C23f645394004a4a43c33FB43fdf", + "0x9B2aB367A17F9DE397a221FeED821d6bb9862AcC", + "0x9b7b4604d54De691FD8e61C0D7C2d70d94Ca983E", + "0x9bcD76f88D0EBd843d12Fe4695631A0d05816986", + "0x9c99facE0F1Dc9CC24a7D986111bAE031D787386", + "0x9Ca2C56C0F876108A5ec1C518Baad5b86E651FB3", + "0x9cf56b781733E15603a57ED5505A6E6A86bd2e64", + "0x9D4c1C518442aD9Eb23cb79A4792D508b49c81af", + "0x9dd78C90b154ACA6D9c1b6B0BF4cFDF6088A19e5", + "0x9E0796907c514Ed3EEC7f85C5Ec787Fc0076a13a", + "0x9E09e7b7949B639b007526F92F87Ad3BcD33fD0F", + "0x9E5d0dCF8A08b19064B4171bDF8CD66A6E8CA7Bb", + "0xa01255f709599cf00676E874ae598d00D9E0694A", + "0xa01dd79c6A09CD5d51278dba059114Bc2Cb5eBCe", + "0xa1c384289A9cAFB44A4f792aCf2E7f9Ac5E5f3aD", + "0xa1F90779b760ee6be5ba212d3573f91af48F2885", + "0xa23D75A97fE74B7ECFc97a6330dD393B1e27c77b", + "0xA31909ef0d8534E0EbbAD514694c666Fbb481b56", + "0xa35dEa1466b6cf14a1ac1A1203578908399e560f", + "0xA386621F99D2B74DE33051cd5A5d00967668afDd", + "0xa477803DB91cb844d67742427e3573a9E8D19993", + "0xA4b120fdB2Fd946A67fbe996CB650DC2Cd7d55F2", + "0xA4eDbdae2Fd5BbC33aA68c4C1AceB6B25F64D7c6", + "0xA4f89eD502F5b329038710eb4e09b3A52b438ddA", + "0xA52899A1A8195c3Eef30E0b08658705250E154aE", + "0xa64BEdf9F28d99A0e7918f11A23766dD1Da1B75C", + "0xa679c6154b8d4619Af9F83f0bF9a13A680e01eCf", + "0xA686654DCdAE3865AbdC977BBc73bfF0663A0d05", + "0xa691BE7Fc5Cda46C9291Bb38DA447EF077c11FD6", + "0xA698cAdE532Bf7491F0F887284f8E10E2De97198", + "0xa81aca7B8d9777b52bb4DB49737F164C398A70Dc", + "0xa83c572C8072f3b11562F08B89d4F3077682acDB", + "0xA8AF076215e8dB02e6Ab83be4aFDCf546Cb940E4", + "0xa8Cda6eb29Ae5fe9414C2103C18A7f8e79bFCD95", + "0xA90a1452ea66FA8912F5473EC46AAebE65E7306f", + "0xA90c42f75C1DCBf19408DF6435Cee0e1146cf257", + "0xa91AC613efb766226755fB16Ee78A9d29ae0A849", + "0xAa14c41FD6Cb09b84b8096e3dD52430816c14b63", + "0xAa6B43b77b4Df6ccCd971699a54b4e2866389a43", + "0xaa73A811A4898ca0E116376BE752B3960D554021", + "0xaB3DAE1Dc3Aadf89D397b5B0f64b87ec172c2f73", + "0xab5450d0972700f4A0112f5B5aE73613EA4e3144", + "0xAB6cA2017548A170699890214bFd66583A0C1754", + "0xac763d8513015d4033D72444904365bfF275402c", + "0xACd50adA79A711b7F16a9EA2d8b611BB4722f052", + "0xAD033859f7b6d3E8ea5dBA567223fD54C0c882AA", + "0xad4F67E4CE7CC8CfdB9ce1b8D66bDEe9A65B9c39", + "0xaD62d4fDd2d071536DBCB72202f1ef51B17EcE30", + "0xAE7721BabD433e07ee107411719afa3a39738b81", + "0xAEC4075e4fc8cE829BC4f0cFD5e2fA10dd2b12D1", + "0xAF084E3CDe87419E1aD9Eb0aDe0b1397b01D9Fec", + "0xaF7875E1062ce6CcffD42947DC16923B7A3Cb2ee", + "0xafBCC39f474baf9596C1135522810d5f409DDE0F", + "0xaFD0B1131F1a12C7ba707E391fdd1Ee67C34552b", + "0xb00C6641042eE7dF4731E972B9DDf5A385D14eE0", + "0xb08F95dbC639621DbAf48A472AE8Fce0f6f56a6e", + "0xB1326F48ec2f6B64DFE2d1E83B4d972A8c28899e", + "0xB1aF13b2E4Be55cA69829A23C09a1f5663Adf8D0", + "0xB1dB075498603e51DF729Dd36E7335b25022ff30", + "0xb215e7Ed2418EF6baB6784f25FF8F593763Bedce", + "0xB2546AA63d6cB96611C48CA3C6cB8d577Efac756", + "0xb271769c54B07E33e7F9f337faC2988C404e1da9", + "0xb27B72E7a3635f5904e2eC2a4319326382cD877A", + "0xB27c40416A65694A7BD6E4f456202508a66fC6C2", + "0xb28e6c7c68c10e626A6c2772e23e836eE15884fd", + "0xB2B371CD55cD30E0C84599ed474CfFaB95261B6f", + "0xb2ea21dFF38691dB9f1ba280E8Bad1683132702D", + "0xb3ad76C67C9e1F6c9224c126d0234c23B83C8993", + "0xB4045f3ABa885b8aBb2c629f9d9570b21Ad10d09", + "0xB430ee46F04E99CcAA2a73DF2A72b5590b30425a", + "0xB4a9f08E1aDDaa8cE1837e3c73093d2970aae7eA", + "0xb5A2b414B3c4E0fBd905095E6A8CfeA736def914", + "0xb5F6e7795418B889a12698BE251C05007d1a1369", + "0xb6aD61B7558c718269a9129Bd9eD9839d88A126A", + "0xB6bBB5028a413e40E28C5DF1Cbb0B9891f1fFEed", + "0xb77CD1970963dacC0c44Ec43497737d5eEF5e51E", + "0xb7f77367F61851c9569335d6F52B4D9592C67bBA", + "0xB8A9A860Db270be9Ba8E6dd35C372256d3Adb41a", + "0xBA12Fda058A14eb03C14613601C3a30d6F955196", + "0xBA19BA5233b49794c33f01654e99A60E579E6f29", + "0xBA3d14a79340CB1EAC61f8ddD0A56F4624Db0e0D", + "0xBA9B86D84A5406762a7CC0BA5e936417976A19B7", + "0xbaA84e6A9E66fA0846931c6bf79e8c2763b50b9d", + "0xBaDA235e37F8cEba768cB167518c869A3765992C", + "0xbc639955603dC3158aB018A04E68B5e3d8B5eF9A", + "0xBcc94f4c922736925e0E9C15391657888e85F435", + "0xbD69cBc03DAB6E7Ea0B9D8EB8DdeBD46DDc1DB10", + "0xbd88526A40BD28aCb6761A238D7751d3F1bB5Fb8", + "0xbd8a92E249090249c5fB2FF71e47B69fb650d3AF", + "0xBdA4446D94d907fee2F6B7846A0320045A2E9949", + "0xbDCBb885f49bEdFe296006D30F5c52C2678f3ACd", + "0xBe00DF56945d606B1d62cd92950B39da11d81b28", + "0xbE72136B402d9DcE18fcEDCa7A6A70F5225954B2", + "0xbed058A4Bcc06338BdD214f150d25Ff3686E98Bc", + "0xBEE5646b4544eEC699C365B7Fae7e846CE19773d", + "0xbF0850570757fbD3578be46E632Aa96a874bA1bD", + "0xBF30608066F972e705B54Fe75411e54b34d671c3", + "0xBF8090eaB036022b7E0c77D9e34793f1B756d94b", + "0xbF9ce215D1c45d7adc4FA8D4095930bAFbB70654", + "0xc0E5E14bDEcD9ed6954A9E14c74E97CEBD91Bb94", + "0xc0EbC517d9B589fE194A81906E8b9e5d5677f2ec", + "0xC1FA0520887369B2Fb7f6f4E23F70B8BD481b375", + "0xc20e504AaeCeba284807a3DcD01f71F45A081E59", + "0xc25C0092307A5b8afd8A4bD01351A92579040951", + "0xc2E99B53004f9d1461c68bA88794D0Aa5Ad97DB8", + "0xc3Cc969750b2337FFd08c056349Dd0416228ADC9", + "0xc3dA2aB8dA4572DB66c5E0A0bDBD63Cc5fFC36Ca", + "0xC3edCBe0F93a6258c3933e86fFaA3bcF12F8D695", + "0xC3ee900A4c8152d3F5C200Dd9C4470aC4AD17c7B", + "0xC44de5aaba2A60Cd78108A4C98614613A0d6DaeD", + "0xc5B4e3ed8b30BF691BfDA2D1604080A6781D0FC3", + "0xc723b407673e10c3614906b39e72C03A2B3faC9D", + "0xC85f9734ebe0Dd391Cab0b6AF188a57BB7C32638", + "0xC92AF42268ff68D4e83A39D2Ac6298425E84bC45", + "0xC93b101eA280c6D54e5adC12C03FDE3005DB93A6", + "0xC9637a0EDcA0326523e31F4AF536CeCD20D45Fda", + "0xc97F36837e25C150a22A9a5FBDd2445366F11245", + "0xc9D483b27701A1299c09872b813BF9CB8251475A", + "0xCa11d10CEb098f597a0CAb28117fC3465991a63c", + "0xCA15850e3a81869714A02e3787C1E8d27A4c4B13", + "0xCAACebE2fdaC9D3783563b9B80C714Df82705226", + "0xcAED230e3a8Ac5FA16595810ade9Cb739F47f6Ba", + "0xcCc3cE05B1D1B4E4A72e2052b98B1de8E60593E8", + "0xCCC97CC90fcA080A561B4C88e2ea112aAc28655B", + "0xCcF43Dcc4e52e0216E461955bd98B08DA53213eA", + "0xcD251736be2f8C43F2ADC5A4d816AbF342125E15", + "0xcD45FDaa6A72740E1D092F458213ff39D3D94A10", + "0xcd9846Ccb28F13E5fBD28C2bc4f2f8733ad9CC00", + "0xcD9DC775FA41F47Ba2aE92bB10668b3DAD522105", + "0xCdF5BdbD8D7eA1F7f6Ec1ebdF8f351c2920d7Bdd", + "0xCe18807c0Bc8dE71469d47d42b61D28442f24D1E", + "0xCF5a5779ea2169906a7F8ef7887D58267630d327", + "0xcF63E1C31805254b6fB3Ed7829206c2b2505e3a7", + "0xcf88FA6eE6D111b04bE9b06ef6fAD6bD6691B88c", + "0xd05433Ec8910EE00b4FD5222499ee70A5763798C", + "0xD065654bF830b53c190f5C3146Ba526CD001052c", + "0xd1380A4e089950ee3a23d818E24ccBbEf003a432", + "0xD151913b15169B0A16ac0d782C48E7521d21a859", + "0xD24FF5e32DE12be154B1C2eE7B731CBC45540E50", + "0xD28bfaEa8C886ff6424141278a928f3CDe2741F1", + "0xD3775017a04a3FF7999b5CFf7b475Da8919E5484", + "0xd3e2e76e4Ab0322614fe7aaA3be0B04beD83d0D0", + "0xd461B2871B39E84FD33293b70254a6359f84Dd45", + "0xD4a08cF067c83d1B2Cc1D26831569b7850804bE7", + "0xd4c511CF9555b2A07d28C68F0683F469DD77B67C", + "0xD5914cAAf0c1396D5fD548e1f205e62Ef08B090D", + "0xD668eE736188BAfeb82BC118A05c5Ab4524fd051", + "0xd6B533C21C3769227c53837745Ace32C063C79A5", + "0xd6ed2602032B71a82c0f56D82233f2a236bC834c", + "0xd8588390F9c0f7826E170FF0bFcC95E3638eB861", + "0xd934CC70B1b06256581527a534285f5bd6A7eDc7", + "0xD9BD4f9743e2C91AA8269f6FBD606d66150eA329", + "0xD9c09e1DDAccE4EE6548b66773Bf4E6fE9dD0882", + "0xda34494e60B4FFD45748a8d7362E260e9A1DC560", + "0xDA4D6c8CF48E7C473eF7Bb3acE63A5b586598b56", + "0xda79e921af42Bc333742bCb26Bcf998e35eDFCC4", + "0xDACD3aD9Fe68A29A4AE2B7a66599CEB784FAFaaD", + "0xdAD03f39dc4D00D5Fff11D3A0388c2Fe50010122", + "0xDbdfA83865f92614eafa62CFb05Cd6C752115995", + "0xDc15E5a056f567E43BBF3d4B19965085D1Fd05AB", + "0xDC97d21A7637776630699e392777A7A1A91F0973", + "0xDcaf84e17BB0609A19350178018b27851A5A2563", + "0xdCDb88F3754B2841093D9348A2D02DF8cf06314C", + "0xdD16eA314a98fC8fA99FF1aC24cA58365763d7ca", + "0xdD23AbB2227b4a3aDD86051810e03791F41C34E4", + "0xDd34966b140842d467CbCC566bd72341B6d11ab1", + "0xDdB99221ca67990d10C485A0911C564f527e4755", + "0xdE07016d42Fd56977a58db6056Ff43b4e21769f7", + "0xdE9ACAEd6Ba8386cF5f9fC5Cc4e0c88C40f3bb2c", + "0xdF0259238271427C469ABC18A2CB3047d5c12466", + "0xdf149B06E1D9d9cC3C5c654b3DCa4F143cBD2bc2", + "0xDf53aeBBe9DB417444330cffC3244b97a49f2FD0", + "0xDf5B0E3887Ec6cb55C261d4bc051de8dbF7d8650", + "0xDf6e87287c96498320EC42a02C57A59C78c5133F", + "0xdf7970E7E4b1f3469fD9E7666356953C1698DA9c", + "0xDFe8beeE223412F316baf2968B17527D6EbA29F1", + "0xe065550fE104E7bF83Ea725f831cB9072e4906b3", + "0xE0a2F038d38B3560E8248e7EC5566D73B120b637", + "0xe0b037b35A5DBc6277266D55d917e4250A2aa9A6", + "0xe13d4abEe4B304b67C52A56871141caD1B833aa7", + "0xE1C16E2278B5ed608EED8cE226594f51B52cc485", + "0xe1DFF72b704Ee6A0d3F447747006597612034076", + "0xE1EA582e896ae8541fb7c44B71d8a6Cd2CaFA339", + "0xE1eB9cF168DB37c31B4bDf73511Bf44E2B8027Ef", + "0xE20ADB03a470b5573bF572dd918E052d0D17866E", + "0xe2417897482983E9DeB9ACaF1D5f1031a43F4786", + "0xE27C5d32Ff9180FCb04d095CF4ee6A4000ebE7F8", + "0xE2d128323Cf7560a6E7a82726D7b425aEdc7a556", + "0xe33E3a7F44099D70F4498346686ed9435Ff225E2", + "0xe42bbe34Eec5a0862da72f7c1a8CA6A76ccbdEAd", + "0xE485eBDe0F17bC849669d1bbBd926C63D5dB4b83", + "0xe4c11caBB0FA74fFf8B4F8bfB7f566fC31719948", + "0xE5499f966306b50C29579036c13a628a87871579", + "0xE5625a6EE4908f67B7024849daf95f8FaDCb89d5", + "0xE5F8bdAd9b4286595458cc69D9547a03e6537a5d", + "0xE60CdF33f9682Ae889f8896F6862eB8674863A4D", + "0xe6cB101eba87C46dB7bb1E27aD2bd73482837a1c", + "0xE715dB8ffe482ABb39a4594294d1632F35Db77e8", + "0xe7458aBb03aF00342993b63e6dCead3Ff8eD4D0A", + "0xe74ca58EF724b94fAC7f2e09E2e48536A5c1AD03", + "0xE75021660E00A7FA0DF1B97da13eBAbe6D82e7ea", + "0xe778bc392687810E6748B71E2ea0cd9102De9929", + "0xe7a0D20A4F12724993506148142F97FFBc7Abc37", + "0xe7A411DD39464b144a9C2cbb45a411d5A4a84d5f", + "0xe88663F5878Dd0967C905EC8c7Cc65d6d8e091E6", + "0xe8B15352C8B5bA4AcAbdC91907b742fC7249D91c", + "0xE8C43274D38C48A927BA35fF21e1ab33D5520B6A", + "0xe913a5FE3FAA5F0fa0D420C87337c7CB99A0C6e5", + "0xEA72158A9749ca84C9ecBf10502846f7E4247642", + "0xEb0cd42592025f7443D1a76F095038cf07661eBB", + "0xEB0EbBc451218551F4152Db2887faF6c8BBA7BC0", + "0xEB4BD5231274aA4C2B97a4fA06bAD9eCFCdad5E0", + "0xEC46DD165eE2D4aF460a9c3d01B5A4C9516C9c3F", + "0xECa126BCF8B4b88Ff68011D2dA03b785206736C9", + "0xECB6a3E0E99700b32bb03BA14727d99FE8E538cf", + "0xeCBA5f51925E6CCeC26dA38Dcd7D5305f6BdFbcb", + "0xEcC0999CaB4Adceb01C6F1Bdb43B22313cEF3F8F", + "0xeCC1C49196F9be6C3028Fae4dbA2220839D28e8a", + "0xeCc8201146ea7538993DcC92c8326A2A91f66f35", + "0xed20Bb4772f9EAB584F5F7FBC3E601431C881e96", + "0xEd20d792D027957F2FBF606b575fdFC6d85112af", + "0xeD2C2CdEc695be3A4Dc421c1A8a6756dc5A927b6", + "0xeD3d7456997d9Af7d284230B5017B35d140dA798", + "0xedEF31880c9fDc97910368537617BB904D519007", + "0xee2a05377f462BA2204eaf459Ae69627D14f941b", + "0xEE81B6600E3454aA9A4E43cDB256bb66686380c4", + "0xEe9eD9D063D3aEC50A0226916D775930E4E4E02c", + "0xeEE5Eb24E7A0EA53B75a1b9aD72e7D20562f4283", + "0xeEEC0e4927704ab3BBE5df7F4EfFa818b43665a3", + "0xeF56c2E92e2764BA9E2515eA66c39bC0A33Ea153", + "0xEF7935913857A6deB46c609D54381B9960396771", + "0xEF80395b4943E1741c92a6f2119EbA58cfeD889A", + "0xEFCC4C68e1dDFaA4f0FA3a7479F0fB082f96A56b", + "0xf02c9A7b32cEd26cb70db10FC8D8458A00e03AC6", + "0xf0B33cEAfab33F5e00A86d74165e21e7b8a75fCA", + "0xF0B358BC8b343D47A6F2C2708FC032Be0b954c4E", + "0xf0Dd818503095545BA0bd579dFc2beBEe081F8fE", + "0xF1984DD40cde6227Df2F0A503C8Bc9aa8380d87F", + "0xf1CA87cE51E843E09993255b5402d45F781f58ba", + "0xF22F00D0B95B1b728078066E5f4410F6B2Be8faE", + "0xf249974C1fC9428462BDFd33A84A9Aa7fD5B88F7", + "0xF266DdF858284F2Fb07C7916C36CBb9D3bfDaEc3", + "0xf29155745c8Ee222d4F7d6A2a7a50c1901F27de2", + "0xF2adC49a86c78d7413192a6b5495F2a12b91c7Fc", + "0xf2Bc07DAc20b616e95c7F33B0340EaFfAd1756a7", + "0xF2C16ae7887450CE0018CDbAd26cfDbab183Ffee", + "0xF2F5207b459a3B6fbeaABDbc6ecECed7ca878D1a", + "0xF3b9640c32590bfB94b848F9Dc5A84127f91Fe33", + "0xf3e5e7dCC7Fb6aa6e78bACc8c58791BAEfeafBc0", + "0xf44E2e2655553A4125b8b83a35A2A72476a7aA54", + "0xf486d56ccE70c481b3455aF901fCC4F03FeE8107", + "0xf598AaDF12a2FC4709b5Db0C4c169715EFAf2038", + "0xf5A665eDC43eCbE328f761bb1233f8439cF892c0", + "0xF5d00DABeC9Cf3D978C534f0a2b9464d63830cA5", + "0xf63B8996c168af4e07e73f2A1D2F6dFc23a9Aa2A", + "0xf78484d56a9FEBc787783Fba5869Cd2c972e5764", + "0xf86eb5215F14AF0eC2708653dC8A7c6714648Eb1", + "0xf8986c160654CA5Bc047CB7f161F75dD4b31FBbe", + "0xF8F77A6610bD2bd25f0E171ecAb8A81151C2280C", + "0xFA1E34A745168E5dff6e615e419dA92b928bed36", + "0xfA402740B538E6b2074e5d196092eF141f00d573", + "0xfA5e5ca19594BC6b094925b767A98e1cF0464112", + "0xfaD8bB150aF1EEb94C032B51fAe03B6c859AA5f6", + "0xfB62DF8935504b3f1C2b13B10aA9d8eE67e34690", + "0xfB68Ce52BA88d6b0CC0c614624B0Dd89f42181bf", + "0xFB77F548c7F806A9b948A81Aa0C37aB40d15BA04", + "0xfb9699DE6f7eFc7F7D64A40852a68602ac7ef403", + "0xfBA7737Aea0969cE95CC7f1879B58e8Fb8c16836", + "0xFC2a616D48a8681250Aaaf590404E20812e96cFa", + "0xfc2D3466458Df7226095Cd8aE2d45b0f851010AD", + "0xfc51e3baA9eBcD5D18d6489319c40C3B330b5148", + "0xFC54c527bf835d7998F3e0E90B08a00DE7146B05", + "0xFc9E5D12Da3cE747d6E312062FB5f3E117e97EC1", + "0xFCcb964C514C12794509ed62fa274f0E284ceE82", + "0xFD35356DCD225Bbc7e8f1FdE622bfBF5AF105fe6", + "0xfD6bF7971c58cb92D14D226Cb7840b82F585c53c", + "0xFd80427A6a069d048F8034dbC0ac2Bbd61edf187", + "0xfD983cD4C85fFbF4440B252af8a498567e56aBC3", + "0xFe1a00487DD9EB84a7363a1c827a6f045fB121E4", + "0xfe1c8d120FD82cdb4148cbc4bF5bb97d4ed0A8C5", + "0xFE2BcCcB64f4a415EC78E855fd1257BD913a3Ffe", + "0xFe407097E296C521c2BEAA5e4E61A9b91bbe0D61", + "0xfeA6145Aec3832672Df239639FBc1db273Ace241", + "0xFf1e8f16A59D77c8C70a13fa183040fb1e2Fb2f6", + "0xff35E1b2D0441917347387953265e9BB35cc1783", + "0xff67A86A01C7c90B0c3f3A26B65C25f432ec1751", + "0xffE271Fc41EcCE146e14e518561B6943fE056978", + "0x6301add4fb128de9778b8651a2a9278b86761423", + "0x64129ea5c2b3eea53f4aff759eacc89b8a695535", + "0xe15cf0ede90e9059188fc8439014d1ffe29e0bbc", + "0x049808d5eaa90a2665b9703d2246dded34f1eb73", + "0x0dc1f2633d657122d67735d9606e0b29f5523aef", + "0x16224283be3f7c0245d9d259ea82ead7fcb8343d", + "0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3", + "0x8cf7071f9418662b4a3a3396d2f08bec7c563e79", + "0x2993e1d02b11377f44455aedc618c705acbb0591", + "0xe8005f21ca6420bf8b4c03f8c82e7b953a48136e", + "0x7565deddcb83a14b185eb9520914bb918cdfe983", + "0x8f70b3ac45a6896532fb90b992d5b7827ba88d3c", + "0x2c979c65504f4b758e6333268b42639eb4114daf", + "0x489cc1dad0e18986242095f50728703631b20ec9", + "0x8d372c7afb8ccc43c2eb77f3a14c89e49ff4a9f7", + "0xef26a2bc1c4488a5c9c21c37e522c028837faaf0", + "0xcd7f6b72049c3b54416f9f26392cb271e74ca3fd", + "0x8de3c79efb0a3bae779e2cc5b6f5023913fca547", + "0xdefd4c742f076458ebf1d03932f4ac0c9ad04e96", + "0xc643c9411a6b489e9833b16631140f42bbfcb6d1", + "0xb5d9c1cde53c0e2d1987a1680b242d576f884df9", + "0x5dc5a7a7f39471a21b977cdfbe796b039ae3df56", + "0xf2deee04cfa4119cb0c7a0f60960050a55a6c4b1", + "0x5e410dcb647f63389bdd7a9ba00b9df44256febd", + "0x584313319d0bfead2a9d98a7154f5dcb5a62887f", + "0x3bdbad7a018bde126805a6a75ac1181ee5411dd8", + "0xbbd52d8ea7f59303c30358465df8e0962c4ed21e", + "0x81aa6141923ea42fcaa763d9857418224d9b025a", + "0x4fc73f2f8c36c642ae2a6d368e4b5d27c0c89e83", + "0xd77d8f8b37c6e9c6a1ca490043232a57163a7a6e", + "0x9eb9152d6d0137ee320748f4b7f3d40192eb1d15", + "0x166d5385157eda0b3f0a2ffa39a46859017993bc", + "0x42d455b219214fda88af47786cc6e3b5f9a19c37", + "0x27b09d167d8ed88563d81ed766cbd280c8b434c5", + "0xf8d56b6b94bd2a7f4915270f57bf66843ac3894f", + "0x31e985b4f7af6b479148d260309b7bcecef0fa7b", + "0x5416ba4140a3e660c5c5f7a1e39a6a2b25f74a28", + "0xe7b633ea5a2589d4f9b19fa793eeb8fd246d5ccd", + "0x63687e06503d72aa8921c04248035abba47378dc", + "0x7e243c07afceafe22c05ff1415db8effad5fc100", + "0xb3522064694ac9870dbf00eebc2712762193bb64", + "0x859cd1be0af21785fdfdc25c4da9c819721af230", + "0xcbf0fc044206cea3def49a8c52ff98d6011c185a", + "0xc565001aff2bf6badafa0e4cfc9546768d9d6ea0", + "0x8a286b1bbfddf7296c497e99d5900005a09831d2", + "0x14362b6b9a95f22fdb13ff0d78066f684b80a9bc", + "0xfae066728854c2c0f8656a3cf2f2530d332fe081", + "0x92f4b20696a2273f129ea72f2d28ef35186aa08d", + "0xe833f93ba2460b8e4855acca762f956f16fe070d", + "0xbd8152fc7f060c6555809f6eada3ce64cba4d723", + "0x92f4ea1693328fa9546c83508cf049d26fa6182c", + "0xf0fbaaa7ece80ac41508e442929b81a4c8c8543b", + "0x61d2bb2cee3247397ec049954a0e71ee820fbbcf", + "0x1c385edf4b687db1472506447348a9e62e1e5edb", + "0xd30eb4f27acac4d903a92a12a29f3fe758a6849c", + "0xe96e7353fe78ab94d1b43417e21ebc5af985f41a" + ] + } + }, + { + "name": "delegation", + "params": { + "symbol": "EBOG (delegated)", + "strategies": [ + { + "name": "whitelist", + "params": { + "symbol": "EBOG", + "addresses": [ + "0x00645Dd21310882cC32399abCb54e0a05b3b5D1d", + "0x0095feF880f57BB80928406ad96aBA50bFb03c64", + "0x0104a95Cc70B377442A43545905bfe5BBAB01124", + "0x026FD30023D9199450883B3c7f82b7C9ebbEB2F7", + "0x02C545e7E16afbBe405FaD98a8a5a9a9fEeCe114", + "0x038Db6c62d0F072616e2B8dB7D3D7cFC829f7f65", + "0x0392c0D81934B52f64aA50C2cFbbcf28cd6141b2", + "0x0396Dd6aCc42cE2f0733e2E6FeD7cD157ec930C1", + "0x041Af8F492E0782c6Dc5435CCeBa5684716f4e86", + "0x04375c176F8Ef02a703404cF42b986D0fd3197F5", + "0x043b2116F729e188668810D8aE0F86Eb1152aE4f", + "0x049e37b4276B58dB622Ab5db2ff2AfFCb40DC11C", + "0x04EDE46C36E138daEE85B7E1f7711fA8Ee908B00", + "0x052564eB0fd8b340803dF55dEf89c25C432f43f4", + "0x0545457833F91042e0390ff14F7DA9d953e4C7F2", + "0x05E06f2ec24C04737a08eE8c420A28cB0A3962fC", + "0x05ed5C05b3D8D431e28C77Fd1A5aC231e16b670F", + "0x06de363DF2Bc400850b02f9eA72C3cf66aF1495d", + "0x07a1f6fc89223c5ebD4e4ddaE89Ac97629856A0f", + "0x07b24ba3e50Be7b4411138823176f4382163D59a", + "0x08058cF96b096fba90f288A476AdE5E2d667eEff", + "0x08314B25856540e2BB1c2702f900D114BBa4D206", + "0x0871E6872f0CdEb32eb013648a76575B4d2dBa80", + "0x095E1eedAa9C8Ed641DE2a27CEc4f65e1aB91694", + "0x09d8270a1dE38b53df1f47DEC27F377Ce145115c", + "0x0A16006013A26cb8fFbdd3B31D19cBF723F024f2", + "0x0a6417B2D8b6cb55B1751b5A46289972d33e424C", + "0x0A9DaC354e19624cfb2f3d389Fe1614811801353", + "0x0B2479ca8764453aceF996c2Cc1eC9Ea7E36d4A2", + "0x0B742783bFAc8D4b6d332E5D1b63F433FCD8c0A0", + "0x0b831bcB52997c2f7bfB675A36e8CFcF8010806E", + "0x0c6295B8b5e9daD2D3ba15ef4CD4c47a4C0Ae2fa", + "0x0C6919928e21012F68A47573b18100DD446Df951", + "0x0d6E832e8188c308904DE51EA62B43920FE1da46", + "0x0Df3206a98F9feAD898Cd5Bb8CedA5BB8DC9563c", + "0x0E2301C2c6E8F441E2971eedE106A2004c857893", + "0x0eb9a7ff5cBf719251989CAf1599c1270Eafb531", + "0x0F045a0D77D24c326316E0315354E7Df28B4aC50", + "0x0f692f4a862679008BbF48CC0A7AbDFF12908f79", + "0x10031a8001D7ac0bf507CAd46fF5E835C339d89a", + "0x1010595F96Ab62b31BfeAc411Ec5f8f60DB5DC23", + "0x102c412bc7Cf8276CCCb9fD5A2e5fc12125C1bbb", + "0x105E5E29311F2B055D98d259A9aea0D6CAE97F5C", + "0x10D6d2e343281D388291A3e02f3293AaEdA67178", + "0x10e01e2C2bA427d6Ae509c085aC06df79B85237E", + "0x110aC90D6f5320C703B1feFFB3faBE043e638113", + "0x1180814Ef4DD32106b9De7F3C172795cEA3C3D6E", + "0x11d0Cb5C690bC838eFc52C621F6B48040dd000F7", + "0x13C6a19CcD443372c3Ce86BC57887ee06EbAEa70", + "0x14AEe51Bf54dE9289D155F31E67e3fACCA5f2ED5", + "0x15396ccbCf993e56EB56a9Bc3D2115dc2CCFAa1C", + "0x173772F15D596214fa1A79c196cA5634Bc3e32A3", + "0x175da1a2974534Fb6b87aC22Cd5b954ECA486e4d", + "0x1761Bfb1B40821512AAf50713673Ef458056d847", + "0x1786D033D5CbCC235B673e872c7613c2F83DA583", + "0x17b9F89aF8f665A736c486190443B5ACb3793D6d", + "0x17C4942503Cd58AFC19472686Fb6D0AD08BB91Cc", + "0x17e33637f6B64E9082Ea499481b6e6EbAE7EEA23", + "0x17fdD5aB047e502ce1faa065f49170875b083a47", + "0x188C30E9A6527F5F0c3f7fe59B72ac7253C62F28", + "0x19831b174e9deAbF9E4B355AadFD157F09E2af1F", + "0x1997169FC82aBdC3F54e14e1E2cD75cBa24Db73C", + "0x19baFB19C71AcE7dd16843f4C11F81faA6FbF62E", + "0x1a5cdcFBA600e0c669795e0B65c344D5A37a4d5A", + "0x1Bf8BA061664339bAf1E1d016D8f6cea9455F404", + "0x1C0cE76FD1aE171D192bFb81De44cA8E22F1d576", + "0x1c9e5aba9bce815Ed3bB7d9455931b84c56D5114", + "0x1dabc3B1E6E6878feA60F9d9799B1CFDbb9D6aEf", + "0x1DC5EeFE2D20d1aB0dB794a4236df147C0f60921", + "0x1dd5D6F74c584063215E5E63BD894A976a8763Db", + "0x1DFFDb114e58baEdBD25290A1EffFa9fC3726D1f", + "0x1EFa3cD722221b6ffc3e6dF1005Fa8D9116882c0", + "0x1f2bED6120ec9Ff4104F4D9ba9a8FD8Bee5103F3", + "0x20251a0505Ead51fb2C6ce5c1f399924ea068322", + "0x202AC9a140c49fffc51AcD4c65272A339fb9Ef02", + "0x205Fd9BBb9d092b8e428108a0a9414801bfa196F", + "0x20a361919000caB7Cbb8B452815968c93F908435", + "0x2117c37a65aD3c0489682386f7d81d4c6d08B3C8", + "0x212acd42718bEf10dbBB44B40057262fbf4C4C1B", + "0x213070749887F596dee47DA98bbC0CD7FC425EDB", + "0x2147D9DA0aF389f21bAAA33034e009396281081d", + "0x21532d4267648191bef7a33c813c43cf90a6fa78", + "0x21FFe04829c65E6656B9c156c7DADe4c41025c1c", + "0x2206445D241cCB7DAE93B2D2acFC67f75B90fD76", + "0x221208Ba3781c1AAAEb5E31F1670d42ec3550020", + "0x2212238E2Ca9F003cD2c6ea780eA5467cd7cfffF", + "0x22561c5931143536309C17e832587b625C390b9A", + "0x2269522AD48AeB971B25042471a44acc8C1B5ecA", + "0x22a1789dD5Ee19151356a05cD715d73081D833F8", + "0x232E02988970e8aB920c83964cC7922d9C282DCA", + "0x23DFB23598E0579aBb8a8E33111Bb3ccc9c59Ef9", + "0x2506Cd8c7BEE35EBE54670bd28EB00692Eacd426", + "0x2507E068EcE82d1eeDFea977532237e78de84345", + "0x256cBf17Dd6271Fa227E2F3DfE9bEeD7cF769aF6", + "0x25DD159Bb80Ca4216A2693CA0394672e4600578f", + "0x26Cc7210111a984bD7f271cFdE8757732B385eDE", + "0x26e3B8C7DfF37fb9A8FD565F702eae0195F4916b", + "0x279A3fdbD6d6252Afc5C422439C7D7859a51a05E", + "0x27Ba5e1a94065C60434838E68570a1f534FA486F", + "0x27e5d7baF86493F588B6a0a68418B21fED6F69A0", + "0x2834E6b4635434A4C8Ab56E6bd466E8D64500b7c", + "0x288457a12496cbaF6e51Aa4F306dA1DC6ddeBF1D", + "0x28C173B8F20488eEF1b0f48Df8453A2f59C38337", + "0x290FbE4d4745f6B5267c209C92C8D81CebB5E9f0", + "0x2923Be587904F3034FFAB36C86c495Df3C21Bc97", + "0x293Ed38530005620e4B28600f196a97E1125dAAc", + "0x294307A59B53AC1684F03558499578D16B68443e", + "0x29dfF05A66E9c23605039Df66F53ADA4172aD3a9", + "0x2B0386bbDd314d8356C21f39BE2491F975BD6361", + "0x2b0F0dAC13A3C7305474b71256433F8b6b33850B", + "0x2bc2CA2A7B3E6EdEF35223a211aC3B0b9b8d4346", + "0x2Bcea5dE9c2411FE02B0dc1CDcEc71149a682439", + "0x2BE52b4429DBDfEFAd766ddDdd16ac0777476EDB", + "0x2c123fc5C27888571CD525e8ae9b0c5ff848386D", + "0x2DE24579e5Ff91A3D045a41c867Fb73fe7cAbD10", + "0x2Debdf4427CcBcfDbC7f29D63964499a0ec184F6", + "0x2E0D63fFCB08eA20fF3AcDbB72dfEc97343885d2", + "0x2E5CcFfbAe934a9Cb7e061Fca7Af01946e4E550E", + "0x2E802f6E0e9ED4F630e8F69fCFc7aD322839AfbF", + "0x2E9af3a1f42435354846Bff3681771b5E3551121", + "0x2fa9E3DA421962Ee6f66DE60E66cc0caFB37c721", + "0x2Fb20C06230ADe31CB2848Aecf574FaA8605BdD6", + "0x3111327EdD38890C3fe564afd96b4C73e8101747", + "0x3113558EA6918c3ae1D9247D1d7a3F9efF5888D8", + "0x311DA6D80CC8994193168BA51B074649606cf6d2", + "0x314618a937f4f443Ba1700222AFc1518F3238480", + "0x31fE8439F34ed04514288a6f0F19f26c647Cd6aD", + "0x321022c75fD370b8ECCde0952031E1B548A1a349", + "0x324E9e6E602fDf1F7F50deCEa6Cb83Fff575020f", + "0x3282f7A8D396Fd37927a63897FA9CA98178ec480", + "0x32A01b41dCA5a7087B176478f710548124489e06", + "0x330250EF452F825dAFf754E6c31a8Da490bA63d0", + "0x333601a803CAc32B7D17A38d32c9728A93b422f4", + "0x3350bE8ADa341562639F4B4DC5BdBa58F1509e45", + "0x33B2718AC865E995bC8D57070a80eA408d46A2Fb", + "0x33e5bF87C9d07553b5C92935d42eA70A536B163E", + "0x345918EE0f54852ba5060F2A48aC8359051E5aCC", + "0x34EB5C0a3a08eEB18141a626Da5ab7366791ce43", + "0x34EC9c1D89cE8Afa701D079FD908FcA95f49667a", + "0x356B8281a0F3c8Ede41aE581A93205807AC5D40c", + "0x3593bd7b5A4376455378C7b13340745b70bCe908", + "0x35D3A29b0356Af77C03246763A497759108C2e8E", + "0x3612b2e93b49F6c797066cA8c38b7f522b32c7cb", + "0x36Ca4898d224aE146caC312f4502568544157953", + "0x36FbD89b5aa130b53708A98e729aD726DaaF1F86", + "0x3731a53E630a502BE37532C0B87b0DC4C1a0463B", + "0x37dbC4adbac2e6A6A3a8c513602D70C2a3184127", + "0x381d5EA101dfD58a440D29a3e28a9569C82e5c28", + "0x3838433F63f4d4A24260F2485AACf5894ba7Bc93", + "0x38ab17c5b796F15305EC81fF7eF2A0b00d796d1D", + "0x38cd808be77b1a61973E7202A8e1b96e98CF315b", + "0x38e71c42Dbee9b368f93c1278b8cE0b4AaC44b29", + "0x39183cd265F50Af7533eC058A4c807CA9bB6D10a", + "0x3a92B1C299f1BDC57C94eFe5D41B646a4bee13ef", + "0x3A98141FAC8B5aEB53c21FaF22172Bb3c43AcC21", + "0x3B3136D269480017d8B7A050DEb0D7ED979B8075", + "0x3B6F8f26ee32006cA8A0806494f96C234939C2e2", + "0x3b848d223201f173557A2Cb150b64fe67A1c50D0", + "0x3bb0FE1d19E1f10A457Cd3D26Cd0dB78DFdd677E", + "0x3bd31A863A799cf0ef9f6D678a8c39a1F8Af0a9b", + "0x3c49fe5dEa5bD6cbb6Ee07AeBB371753e3F2F2f7", + "0x3D37CFA2e89a04b3704Bd64BC2c9AB9DCd448b9a", + "0x3d50ce07A6DAaeFA0f258d87e993AA6FC792F70a", + "0x3e17fac953DE2Cd729B0aCe7f6d4353387717e9e", + "0x3e1F1fc109B0130a8ba13a1546C713D030B8613f", + "0x3E3721D26D5B8612BCD6504696B82401b9951bA6", + "0x3E39D551f86cC6C0D6fD536a51770962eD7F6C08", + "0x3e41A8Fa0032D635f02201053F1A5aa2A6967c81", + "0x3eC0846B346DF271A5352D34dA5EbA5C5820F79F", + "0x3ece8d40daC89FfB408f7CB5eaf24Ab6A3135028", + "0x3FA9db8d720679E8e5213f6C5D88faB766058e20", + "0x3fC36149FBb0e63b2B18b5De50be2e4A6De992cf", + "0x3Ff68Ef5a732573d41C03BEFfD446eaA14255910", + "0x4090B585C6Ba6f8d8CBd76Aa805f28069c732ca3", + "0x40E652fE0EC7329DC80282a6dB8f03253046eFde", + "0x414a26eaA23583715d71b3294F0BF5eaBDd2EaA8", + "0x41A646c53d65a72b46f600e7d69a6091753840D5", + "0x4222C39C85d8F9a251F8Dc0daD6A48a6f3AcCFB8", + "0x422DCc3e0286D5435A7B6445F4f4463F6Fb2e936", + "0x422fAc9209d91C24B3115bF7fB0ef7a3a7Efbd7D", + "0x42a63047a1cD8449e3E70aDEB7363C4Ca01DB528", + "0x42b3d65094A75CB7daEfF8D92737E8A31814c2e4", + "0x42F7c5275aC4372156027d939843C9C42523DF2E", + "0x4322AA46ffEd67809862Da613725728e2fb8eAe3", + "0x43264D3cb83fb4dEfFDdD5feeF1405918c71c441", + "0x4337222550E92f52DAAe8985e089D7Af44314b78", + "0x436E31E81B8E331445BbFdb506184240F20A1b0c", + "0x442361621cb03C92CD10455B08eB1B91602399C0", + "0x445B34320B520793A23a48D42758F38a492e449B", + "0x446b5d69a40054De6E6bF5978EC8aba2c82cb43f", + "0x44b87008932387aF42A1aD87d3Dc859cb8C1178b", + "0x45b8BE1f65D8943580ed9CdB30865d2033BEb5E7", + "0x45C15D1c432729Ff87978386fd0Bb4aC3Fd61Bc0", + "0x45f937d6032796b1e65d93A70c2C64C0E3EAb62e", + "0x46F3cBa3D4Bc3FDb41215c9bb48bED8B8B0c1361", + "0x46FE6dD8699bC33F73BFf8b3DcA7772ad296FeF4", + "0x4703bF8DdF7aCF99EAc0Cd87eec06835Cb1B3586", + "0x471b257Fae0C070Ed43DEb56BfdD60ed13591950", + "0x474C88712e825B5adb64F4132e26A215080Bab65", + "0x474E587048A57caAaD89ee021902A223DF82Ef76", + "0x475566F2B32F98A8fb8dDFaF184Dc522d0701f72", + "0x477c2087F3D6e49b1BE5C790A33b3a025A4Fa569", + "0x484eA27dA8D53Fb6aE356306D1cefe110769AB10", + "0x48513224a50C339d23484c9cd4A95DaB5a9e8862", + "0x485B8AC36535FAE56B2910780245DD69ddA270Bc", + "0x48724944608B7BAaCD2f7D10BDBc98D429967f7c", + "0x487b756518Da8080560259D9dEA7b8eD4b5Fe86D", + "0x48AacA81C945e1E84da4d662E0De579522BEF4C6", + "0x48D1f7e41070fc0BB0E36925A68DB1350088C54e", + "0x499B679Dc1B480b5Beca6cda66d3f4a33ba1A77b", + "0x49Bb41AcC0652B73d256CbFbD6D03a380b66C9B4", + "0x49e1bB5c768697Ebd809c3892ab30645f60e8B60", + "0x4A4f1C998b89C0dC000983FFd997420Dad282ca1", + "0x4a582524d235c9e0A99Fc93041C80f3D1f33040d", + "0x4a8B9E2C2940fdd39aceb384654dc59aCB58C337", + "0x4AAdbe45636170735F11093E269a79F372B22E95", + "0x4ad368bE4A965916FDb7812D6bBeA894Ad20b9AD", + "0x4AfAadAF2e743164a0FBFD35ED0f605B8fB89A46", + "0x4c8220009De389C6de21f8258A1aF76d963ba294", + "0x4C9fa6F8771C4370660Cc6b10774a0873f09f72E", + "0x4cc53C9Fe95839843dCce489F994cA0056Af8AeC", + "0x4CE36ca2e17141b24932A9c7b6D1F4840e8BC801", + "0x4D8cd0D84E677cD2E13C29C75D7673FeD94a14Bf", + "0x4DbCD214CB8C1F3b0089d10FA774a116B7179B4d", + "0x4E0030Aa2b1AEB26016095B56C01C9742113001C", + "0x4e2a1B9C346718824576D6793BE2455E1e1538C8", + "0x4E3409af4816524f2567eF829FA6628443f4C988", + "0x4E452623763c5856c900E9AEc19f1f5f2B3543cB", + "0x4fb2e1E718EC713aa7346687FCE8e4411b7F423e", + "0x4fe5D0b4B663e36dac83BCECb1E25aF2bDCad725", + "0x4FfEF8E8A75c20Ab0Ddf96C50d2457277d27923c", + "0x507Fc313f9D50CE32fF94e67Df48F7B0935D016A", + "0x5080FdA2a93078DED890D8591AeBCEA7F345c492", + "0x519754bA1823e0Ea654EBB38bDdC64dc1f743694", + "0x51Cd54fb353Cb29CA02876F79d5AA31Cef92E264", + "0x521cB0A9Ae647DcFBdC49eA9e4D0B38c06Eab3A3", + "0x524E71C36Fc4467C1Ee59A415eEa62C618F197b5", + "0x52e0f7339C1BEd710DBD4D84E78F791eBe2df6b9", + "0x53102d489D17b09F9e758742d5D1f67E120f10C2", + "0x534CCd2285Aa45aBDE36372Aeb9589A027183FE2", + "0x537CbE6D830b271A56b726B5Cbaa5fbfa9Bb6B0b", + "0x53a24123D2feB61b53A499119a90b9E5a62726Be", + "0x53C1Ee14aB9119aaC27Ef6DFc7f6ED7e55510357", + "0x53c760CB4eAcBEa81682f6E09B674B249b09F273", + "0x53Cad1487424A6e386F7791863b61802100Fa091", + "0x542182bE789d45a8b62d5412B04295ab289076c1", + "0x542fF5fB29E27DD57F63e9A7d27da587FCEd51d9", + "0x557863CB135feD1EAccbd941d4A1B2809ED80afC", + "0x55Ff197993A6d33eaAc9A53305b2D0eDD490B034", + "0x566de4Ab93D72b99F09Fa2D3a03C70B5c04734ca", + "0x5781B8557a79F3227F0Bc06EC52fB5E7F747FDEE", + "0x57e54ECF82df98b3faDC1cd50d6835D5DD870916", + "0x5924A8295Baa2f63ff70050205DfC101900Ded4F", + "0x592a51330F1E824DD71135d3adc18d56A7bbF5DF", + "0x59a5493513bA2378Ed57aE5ecfB8A027E9D80365", + "0x59BB7bC404eCC382A5F635C3F10331D0df72C264", + "0x5A7a4A426eFf589Dcb8c71F20F18FFBF6bb419d5", + "0x5B2E846fED34400177ae8F46c3f4934B4388C8C7", + "0x5c032ca31A6Ce5FDb2C31b5dE241edd0F08A268a", + "0x5DC157Fa5aE8FA80665C334D49cb158782Dab92E", + "0x5E382071464A6F9EA29708A045983dc265B0D86d", + "0x5e46A8ecd4f4f0737ad7b7D243E767861885ed06", + "0x5ECaa6595Cc1dC03D87aee562313964e90612763", + "0x5eF89F92388E309F795081e0dd83C82011eD2546", + "0x5f2fa8fc107B975C648Df44979152b690E37BD86", + "0x5fB4de695eD5b44e713ec46703b54FD3d85348cB", + "0x5FBc4fAB6bd0FBf48dF26258B755e72738b52197", + "0x6030f4C1657b61dD2db605be4510E79F9bE141bb", + "0x60cdcE8f724bf0486b49a988B24d2E716Ed687b0", + "0x616E7830366C2a6fCA58c13DFdcbF24A9772842f", + "0x618242eB5B2e41ad715a6e1C01AA6D28Dea2A911", + "0x618419cBB05A12d42Ddb999f8Ce24F9f0c0c50D9", + "0x6186290B28D511bFF971631c916244A9fC539cfE", + "0x61e193e514DE408F57A648a641d9fcD412CdeD82", + "0x621b35b50c508f3497437Ae777dEe70D052D6AD9", + "0x630698F9d679F232ebB044703163BD7C40663d0C", + "0x63421Ae93c44f5F3F58B7e3AD1245e955DB49897", + "0x63e639d81Bad3075420448b7481AF64DB108ABe1", + "0x64685f58003e36099bc94414E3dDB4CB670e3F3F", + "0x649b84336C431D3aBBB0c5A705E28A82891032b0", + "0x65E77EC371C0Ca57eD49990cA10b965191C8f2E4", + "0x66c3d1948EdB3ef275DD7b7101788196E22a372D", + "0x66f2f264F96a92B008cFdd387aa2830007FE5DF8", + "0x6792eE2DF9646C32e512d0880727dD4c45D98B13", + "0x67D21ebD269d61Ef8cD9F0f3698869b3d818a4B5", + "0x67e5ab5b573F01030a1076dDA7A79Ef0f31A1bFa", + "0x683a42E5B414Ae5cF79ece7e369cA5937fdcDC11", + "0x689Efd93cA3E808aCA8A8BF546037918151a2bfB", + "0x68C8E1eBAC4B602aC41436050e2f5Bb09728D458", + "0x69b7F94fA8961A72f472Ac672693a5a117807c4c", + "0x69E0E2b3d523D3b247d798a49C3fa022a46DD6bd", + "0x6B67623ff56c10d9dcFc2152425f90285fC74DDD", + "0x6b77303b6406510863262BcCe64A5141FF735028", + "0x6Bf749e0745ac7222E4F8697eE648060f719D421", + "0x6c068FC28043599Be8C0bA23b29Bd39de080f857", + "0x6c1e0C4221ec9d36Cf80cd2B9b6B9B2823e4CB69", + "0x6c22A9e37F4b532929682D09A6d504be66B855EC", + "0x6c3675c755c06B236cB10b5ACFa0445FD8AaD455", + "0x6c3E007377eFfd74afE237ce3B0Aeef969b63C91", + "0x6C438743A6e2944DcDcA64e8179ffd8BF0E7a742", + "0x6cef15E37392F13d0873dc18497CA8087C681e01", + "0x6E0C823301c47be14a2B174818cc7728d927FF78", + "0x6E185658442aB2a27F86402fc36b379C8Ffc76f8", + "0x6E2839114cF8DD8af13b5D5e3bFf88f832Fa3548", + "0x6e94aD65Fd0dF9C32E93165E3EF037913961e38a", + "0x6FA53833Ebe9363b42bFcBadaDA337dDb590D989", + "0x702F1e9410f9ee6442ed5DFD8992776579243eC8", + "0x705200B2a465F909637b71e85a04768D3a6F46fE", + "0x707B54d8fFE11dD07eFF9E1Df9FF54c15BA31362", + "0x7136B65ACE372C9D8208eD0f79319C175498FaC2", + "0x716434c0DEdB5FE1006De4EB058b6b1F4d8d6909", + "0x72Aa7371CD5113fb7f1b1452867A421B2A375353", + "0x7387C9Ff5Fb2F7a5E83D06633846d72a3d1ae72f", + "0x73eE1624826495Fdca90e6dD1a6e262A598B5a1a", + "0x74f54b4435eff8d5f680644Cc6482434eB9221dB", + "0x7544b7dA3bd457908108AB38e2a0dd65de3a6b09", + "0x75D77D17df20344c7D49118e80fc2918716828Cf", + "0x760e7B42c920c2a0FeB58DDD610c14A6Bdd2Ebea", + "0x76555D4fBB63926fd93d522eB10B14e81651384E", + "0x76ac6B8EEDBB634261e9FA4BF25152a09E1eb90E", + "0x76ad49C74c663EDA8a46ea0a3c29bcbd2C50F43a", + "0x76FE8E056230344B65104ca3c96FF062bFAf9cf7", + "0x774EAF5D31fEb203E0be0c2f6f1CC62c3BC76696", + "0x7761CA398E836534bEd3B8798f96A3CF39D3bD2E", + "0x77851C62712bcDAcbcD8308D3fe45B953e7522ea", + "0x7931159556165Df422287463364f29e39F92A487", + "0x7932B496C310C75a02701A9a6860D9F97bC8E150", + "0x7989E741E0859b8C46475424c1a4A95D7F91Eea3", + "0x799e6b89aF6DCD161c12ce1104F5bBE51B6889B6", + "0x79b94191b6695e2267885B43728AA2cf8d5C56F5", + "0x7A5F0AFC8EC9AdA314A7d882D5B2e48D868a2749", + "0x7Af7cA67AA827F58e0659C52a641aeE55a43B535", + "0x7B5485c076ACb0a6E601BE90D995a5f50c6988e7", + "0x7B8B8A1ecB4Ee03007aE10E64D09d1281C25f9Ba", + "0x7c7565c70e3BC73912DBC85DC39B99CFEe8bCCce", + "0x7cab8ab52A142fefC27413195364B731150a7eaD", + "0x7D0CCA0925aDCCceaDD1ee304BAAb4cec69434F8", + "0x7d2855c1472266601aF0F8206b0e12a87D934760", + "0x7d6a8ffcAF98CaC58340329B3A91759888cb1363", + "0x7D91819F7F8D319A638A5CbA891bBad02c0D6066", + "0x7DA70Ff4372512B0ABCc050B36972a35e85fB0e8", + "0x7db5255041E2058bc40D0b07C8E36da0de37baFf", + "0x7dD7624608445744DE04DB07ed6761346a281b3e", + "0x7DECf7a31168778f311c57B9a948aBaa7321001E", + "0x7E23a0a9fD1105ca4b1DC9B7E0F0AAb3b7071Caa", + "0x7e3De32B65CCAe9233Ad666f5F7B2872EF37FA09", + "0x7E49c4E748bF7B720bb369EcC60902517E047788", + "0x7eC6fFd8c5d5620903A22CE7A8B37D62E0E6559A", + "0x7edB0CBfe1217Fe53Af0Fb871D92c1c627C6673C", + "0x7F58C3872FEDf4Da3E995bfB28bD6EB86d09043b", + "0x7F7b32c998083D66De56602D75bC820b768C721B", + "0x7fEE3D50AE036F3E72071dDBa811F58472995Edc", + "0x809E1e2725dBbD8D75Eb1a460880932d2e1d4C1f", + "0x80A2330B6BBC655cB52fB7BaaE05c0Dd45880f8F", + "0x80FD264D44712FEf8771675Cea1bF24656c6B37C", + "0x8130E3BA212F821Eb1f1f3286181881400B6f930", + "0x8133A5DCbA30387E88B8Dd3B782797ae00DefCc0", + "0x821B6535AA02082a54F35aDaDb8ff2bFd7baFBEB", + "0x82898337F03c1D73133213580b0d9855D3a5573f", + "0x829A0825115cfE200BA8f99F4a0b7A31d14625bb", + "0x82Bb6B5e92E1143fC03ee468a7Ba9Df8e955f7c2", + "0x82E8936b187d83FD6eb2B7Dab5B19556e9DEFF1C", + "0x83112307a51ab30f2E4e1dDA68DA852d5F2691b3", + "0x83B481Da6200A8cD3252b8a8cB01f530D41a2A25", + "0x84eCD8BAE0fff81B722A24d4E00b010bD02691d4", + "0x85042EE3F6911A73126488448Aa9e81b3ee5514a", + "0x856565Db827588a88780454863F98A4A323E13Aa", + "0x85949622D71A2757742B4BF23876501dA4f2d290", + "0x85c0C90946E3e959f537D01CEBd93f97C9B5E372", + "0x85CAB6b340cC0CC7D39e8aE51D6a65BE7093Fdcb", + "0x85d14B5B709573c275B1cA9C1686Cc120E9E715F", + "0x864c56cAF3797AbeB010C4E8Be54973F1Cc93d20", + "0x869cF77F0c9FCAabBEA2F6D4626cB970a109C42f", + "0x869F391b1FD2d2D6280dB10BBe0d7D7cd5eb92b2", + "0x87c83b392A2A0d97bB6C99Bc398434721F34dE34", + "0x87e32D4631D728d6aD7EBcD133b11FeBC9DA9b93", + "0x882120fEA44959a3388Dc8D40109AF4101EdA1A8", + "0x887b86B6B6957F7bbeA88B8CEfD392f39236A88C", + "0x8884c13a1D3baeE3974E9fa679c1a21c177A6D9D", + "0x89B8B20AE90328692cD367f75aaFadF55fd33E8B", + "0x8a333a18B924554D6e83EF9E9944DE6260f61D3B", + "0x8a83716acd66D9e1fb18c9b79540B72E04f80aC0", + "0x8AE00bDb9626C54a5a87d02373539CCb84A96FA3", + "0x8B8e9736Ec90cfF09e86cA675B61F7f25AbB349e", + "0x8c9b58Cc7ed006290fAe97F539F8084c9381D59C", + "0x8C9FcCEd4c9ec98Ced2EeC251E905E48Dbfeb2C5", + "0x8cC30F8baecD16F453F0dA87f84451817B6e4FcE", + "0x8d1d8b0368b5f52AD3A1536487A0c5bd012D6Cd2", + "0x8d923D15F6e1aD3086262434954a92904688E30b", + "0x8d9F950C23B73Edf79Ce52f74C6fB589cd2cbd90", + "0x8DDc0fCCc34E74681a1104D638eac1024d25E27E", + "0x900E7aD1ab18CeBb4c21F71795364E9B636831CA", + "0x901689905320A3AfB0ff5bfe685cB2aE222641d4", + "0x90dC1cD8da9858a8bEe4436cC9761c3C24ae77df", + "0x91a9B4DA163a1F248C92DBd262aD3e95e042C87E", + "0x91cDA41a25057B30cd003Dde076Dc91F7a9cb6d9", + "0x927d76cC4c50eBb710a4a6c3c56fDCD16e33b326", + "0x93B7b42dd29058e3500891582D602503311192F9", + "0x94aA21B1Da98314F1b8F9d8Aab6fFb2d0099A564", + "0x95224178293c24219c287d7bfc6ad148c99dcFdE", + "0x95B1A87849edb0BF836c843683369fA3F9E28101", + "0x95d698C0aEd2d89D12a6E55Ac21A4FFdb8C17022", + "0x95f1872c2c63f54072BD42F68BeEe71E0D6f67d3", + "0x9608E083Fc15A5361302bc83660E24a78D10aa26", + "0x962B9B8C8986E632031ea1Dccd4d0aD9899cF7A2", + "0x96333170e351bD436D97E70E2e41057f1D8f159F", + "0x96529daF15B0223d2dFE93293090E8146D973a0c", + "0x966082BDf238AdB1D9c3852DAb4a70ebdab8e4DA", + "0x96E1199931A9e201a4d209262c8C379e2c0e4852", + "0x9700c4f3310Cbf41492E9DB29aa0911Ba0a89E43", + "0x974a543278197586C3f11FFd477968E17acd1aC6", + "0x9803666fD2857E5DCF72de23ed320C5704b90C62", + "0x98fC0619b8057C5118eE0f048E3bEa86547892b0", + "0x99537efaC690b3e74daC7623f5a623B043B35004", + "0x996290C17C874d989D6E3DB7dC0b2ef0A9FB876D", + "0x9999999e2f76ed42E6B1A4EefD0Fd472790Fa1A5", + "0x99Df40B23872D4c2a0F198f3D6dcE20C4E13AdAD", + "0x9A1172976C47A86F0381134FF91D200111431F49", + "0x9a34c367b09fc4431744a8993390E2ACd0dc161f", + "0x9A477Ad9517d98927AAbeD4c529633A6BfB2b4EC", + "0x9a568bFeB8CB19e4bAfcB57ee69498D57D9591cA", + "0x9a85342Bb436C23f645394004a4a43c33FB43fdf", + "0x9B2aB367A17F9DE397a221FeED821d6bb9862AcC", + "0x9b7b4604d54De691FD8e61C0D7C2d70d94Ca983E", + "0x9bcD76f88D0EBd843d12Fe4695631A0d05816986", + "0x9c99facE0F1Dc9CC24a7D986111bAE031D787386", + "0x9Ca2C56C0F876108A5ec1C518Baad5b86E651FB3", + "0x9cf56b781733E15603a57ED5505A6E6A86bd2e64", + "0x9D4c1C518442aD9Eb23cb79A4792D508b49c81af", + "0x9dd78C90b154ACA6D9c1b6B0BF4cFDF6088A19e5", + "0x9E0796907c514Ed3EEC7f85C5Ec787Fc0076a13a", + "0x9E09e7b7949B639b007526F92F87Ad3BcD33fD0F", + "0x9E5d0dCF8A08b19064B4171bDF8CD66A6E8CA7Bb", + "0xa01255f709599cf00676E874ae598d00D9E0694A", + "0xa01dd79c6A09CD5d51278dba059114Bc2Cb5eBCe", + "0xa1c384289A9cAFB44A4f792aCf2E7f9Ac5E5f3aD", + "0xa1F90779b760ee6be5ba212d3573f91af48F2885", + "0xa23D75A97fE74B7ECFc97a6330dD393B1e27c77b", + "0xA31909ef0d8534E0EbbAD514694c666Fbb481b56", + "0xa35dEa1466b6cf14a1ac1A1203578908399e560f", + "0xA386621F99D2B74DE33051cd5A5d00967668afDd", + "0xa477803DB91cb844d67742427e3573a9E8D19993", + "0xA4b120fdB2Fd946A67fbe996CB650DC2Cd7d55F2", + "0xA4eDbdae2Fd5BbC33aA68c4C1AceB6B25F64D7c6", + "0xA4f89eD502F5b329038710eb4e09b3A52b438ddA", + "0xA52899A1A8195c3Eef30E0b08658705250E154aE", + "0xa64BEdf9F28d99A0e7918f11A23766dD1Da1B75C", + "0xa679c6154b8d4619Af9F83f0bF9a13A680e01eCf", + "0xA686654DCdAE3865AbdC977BBc73bfF0663A0d05", + "0xa691BE7Fc5Cda46C9291Bb38DA447EF077c11FD6", + "0xA698cAdE532Bf7491F0F887284f8E10E2De97198", + "0xa81aca7B8d9777b52bb4DB49737F164C398A70Dc", + "0xa83c572C8072f3b11562F08B89d4F3077682acDB", + "0xA8AF076215e8dB02e6Ab83be4aFDCf546Cb940E4", + "0xa8Cda6eb29Ae5fe9414C2103C18A7f8e79bFCD95", + "0xA90a1452ea66FA8912F5473EC46AAebE65E7306f", + "0xA90c42f75C1DCBf19408DF6435Cee0e1146cf257", + "0xa91AC613efb766226755fB16Ee78A9d29ae0A849", + "0xAa14c41FD6Cb09b84b8096e3dD52430816c14b63", + "0xAa6B43b77b4Df6ccCd971699a54b4e2866389a43", + "0xaa73A811A4898ca0E116376BE752B3960D554021", + "0xaB3DAE1Dc3Aadf89D397b5B0f64b87ec172c2f73", + "0xab5450d0972700f4A0112f5B5aE73613EA4e3144", + "0xAB6cA2017548A170699890214bFd66583A0C1754", + "0xac763d8513015d4033D72444904365bfF275402c", + "0xACd50adA79A711b7F16a9EA2d8b611BB4722f052", + "0xAD033859f7b6d3E8ea5dBA567223fD54C0c882AA", + "0xad4F67E4CE7CC8CfdB9ce1b8D66bDEe9A65B9c39", + "0xaD62d4fDd2d071536DBCB72202f1ef51B17EcE30", + "0xAE7721BabD433e07ee107411719afa3a39738b81", + "0xAEC4075e4fc8cE829BC4f0cFD5e2fA10dd2b12D1", + "0xAF084E3CDe87419E1aD9Eb0aDe0b1397b01D9Fec", + "0xaF7875E1062ce6CcffD42947DC16923B7A3Cb2ee", + "0xafBCC39f474baf9596C1135522810d5f409DDE0F", + "0xaFD0B1131F1a12C7ba707E391fdd1Ee67C34552b", + "0xb00C6641042eE7dF4731E972B9DDf5A385D14eE0", + "0xb08F95dbC639621DbAf48A472AE8Fce0f6f56a6e", + "0xB1326F48ec2f6B64DFE2d1E83B4d972A8c28899e", + "0xB1aF13b2E4Be55cA69829A23C09a1f5663Adf8D0", + "0xB1dB075498603e51DF729Dd36E7335b25022ff30", + "0xb215e7Ed2418EF6baB6784f25FF8F593763Bedce", + "0xB2546AA63d6cB96611C48CA3C6cB8d577Efac756", + "0xb271769c54B07E33e7F9f337faC2988C404e1da9", + "0xb27B72E7a3635f5904e2eC2a4319326382cD877A", + "0xB27c40416A65694A7BD6E4f456202508a66fC6C2", + "0xb28e6c7c68c10e626A6c2772e23e836eE15884fd", + "0xB2B371CD55cD30E0C84599ed474CfFaB95261B6f", + "0xb2ea21dFF38691dB9f1ba280E8Bad1683132702D", + "0xb3ad76C67C9e1F6c9224c126d0234c23B83C8993", + "0xB4045f3ABa885b8aBb2c629f9d9570b21Ad10d09", + "0xB430ee46F04E99CcAA2a73DF2A72b5590b30425a", + "0xB4a9f08E1aDDaa8cE1837e3c73093d2970aae7eA", + "0xb5A2b414B3c4E0fBd905095E6A8CfeA736def914", + "0xb5F6e7795418B889a12698BE251C05007d1a1369", + "0xb6aD61B7558c718269a9129Bd9eD9839d88A126A", + "0xB6bBB5028a413e40E28C5DF1Cbb0B9891f1fFEed", + "0xb77CD1970963dacC0c44Ec43497737d5eEF5e51E", + "0xb7f77367F61851c9569335d6F52B4D9592C67bBA", + "0xB8A9A860Db270be9Ba8E6dd35C372256d3Adb41a", + "0xBA12Fda058A14eb03C14613601C3a30d6F955196", + "0xBA19BA5233b49794c33f01654e99A60E579E6f29", + "0xBA3d14a79340CB1EAC61f8ddD0A56F4624Db0e0D", + "0xBA9B86D84A5406762a7CC0BA5e936417976A19B7", + "0xbaA84e6A9E66fA0846931c6bf79e8c2763b50b9d", + "0xBaDA235e37F8cEba768cB167518c869A3765992C", + "0xbc639955603dC3158aB018A04E68B5e3d8B5eF9A", + "0xBcc94f4c922736925e0E9C15391657888e85F435", + "0xbD69cBc03DAB6E7Ea0B9D8EB8DdeBD46DDc1DB10", + "0xbd88526A40BD28aCb6761A238D7751d3F1bB5Fb8", + "0xbd8a92E249090249c5fB2FF71e47B69fb650d3AF", + "0xBdA4446D94d907fee2F6B7846A0320045A2E9949", + "0xbDCBb885f49bEdFe296006D30F5c52C2678f3ACd", + "0xBe00DF56945d606B1d62cd92950B39da11d81b28", + "0xbE72136B402d9DcE18fcEDCa7A6A70F5225954B2", + "0xbed058A4Bcc06338BdD214f150d25Ff3686E98Bc", + "0xBEE5646b4544eEC699C365B7Fae7e846CE19773d", + "0xbF0850570757fbD3578be46E632Aa96a874bA1bD", + "0xBF30608066F972e705B54Fe75411e54b34d671c3", + "0xBF8090eaB036022b7E0c77D9e34793f1B756d94b", + "0xbF9ce215D1c45d7adc4FA8D4095930bAFbB70654", + "0xc0E5E14bDEcD9ed6954A9E14c74E97CEBD91Bb94", + "0xc0EbC517d9B589fE194A81906E8b9e5d5677f2ec", + "0xC1FA0520887369B2Fb7f6f4E23F70B8BD481b375", + "0xc20e504AaeCeba284807a3DcD01f71F45A081E59", + "0xc25C0092307A5b8afd8A4bD01351A92579040951", + "0xc2E99B53004f9d1461c68bA88794D0Aa5Ad97DB8", + "0xc3Cc969750b2337FFd08c056349Dd0416228ADC9", + "0xc3dA2aB8dA4572DB66c5E0A0bDBD63Cc5fFC36Ca", + "0xC3edCBe0F93a6258c3933e86fFaA3bcF12F8D695", + "0xC3ee900A4c8152d3F5C200Dd9C4470aC4AD17c7B", + "0xC44de5aaba2A60Cd78108A4C98614613A0d6DaeD", + "0xc5B4e3ed8b30BF691BfDA2D1604080A6781D0FC3", + "0xc723b407673e10c3614906b39e72C03A2B3faC9D", + "0xC85f9734ebe0Dd391Cab0b6AF188a57BB7C32638", + "0xC92AF42268ff68D4e83A39D2Ac6298425E84bC45", + "0xC93b101eA280c6D54e5adC12C03FDE3005DB93A6", + "0xC9637a0EDcA0326523e31F4AF536CeCD20D45Fda", + "0xc97F36837e25C150a22A9a5FBDd2445366F11245", + "0xc9D483b27701A1299c09872b813BF9CB8251475A", + "0xCa11d10CEb098f597a0CAb28117fC3465991a63c", + "0xCA15850e3a81869714A02e3787C1E8d27A4c4B13", + "0xCAACebE2fdaC9D3783563b9B80C714Df82705226", + "0xcAED230e3a8Ac5FA16595810ade9Cb739F47f6Ba", + "0xcCc3cE05B1D1B4E4A72e2052b98B1de8E60593E8", + "0xCCC97CC90fcA080A561B4C88e2ea112aAc28655B", + "0xCcF43Dcc4e52e0216E461955bd98B08DA53213eA", + "0xcD251736be2f8C43F2ADC5A4d816AbF342125E15", + "0xcD45FDaa6A72740E1D092F458213ff39D3D94A10", + "0xcd9846Ccb28F13E5fBD28C2bc4f2f8733ad9CC00", + "0xcD9DC775FA41F47Ba2aE92bB10668b3DAD522105", + "0xCdF5BdbD8D7eA1F7f6Ec1ebdF8f351c2920d7Bdd", + "0xCe18807c0Bc8dE71469d47d42b61D28442f24D1E", + "0xCF5a5779ea2169906a7F8ef7887D58267630d327", + "0xcF63E1C31805254b6fB3Ed7829206c2b2505e3a7", + "0xcf88FA6eE6D111b04bE9b06ef6fAD6bD6691B88c", + "0xd05433Ec8910EE00b4FD5222499ee70A5763798C", + "0xD065654bF830b53c190f5C3146Ba526CD001052c", + "0xd1380A4e089950ee3a23d818E24ccBbEf003a432", + "0xD151913b15169B0A16ac0d782C48E7521d21a859", + "0xD24FF5e32DE12be154B1C2eE7B731CBC45540E50", + "0xD28bfaEa8C886ff6424141278a928f3CDe2741F1", + "0xD3775017a04a3FF7999b5CFf7b475Da8919E5484", + "0xd3e2e76e4Ab0322614fe7aaA3be0B04beD83d0D0", + "0xd461B2871B39E84FD33293b70254a6359f84Dd45", + "0xD4a08cF067c83d1B2Cc1D26831569b7850804bE7", + "0xd4c511CF9555b2A07d28C68F0683F469DD77B67C", + "0xD5914cAAf0c1396D5fD548e1f205e62Ef08B090D", + "0xD668eE736188BAfeb82BC118A05c5Ab4524fd051", + "0xd6B533C21C3769227c53837745Ace32C063C79A5", + "0xd6ed2602032B71a82c0f56D82233f2a236bC834c", + "0xd8588390F9c0f7826E170FF0bFcC95E3638eB861", + "0xd934CC70B1b06256581527a534285f5bd6A7eDc7", + "0xD9BD4f9743e2C91AA8269f6FBD606d66150eA329", + "0xD9c09e1DDAccE4EE6548b66773Bf4E6fE9dD0882", + "0xda34494e60B4FFD45748a8d7362E260e9A1DC560", + "0xDA4D6c8CF48E7C473eF7Bb3acE63A5b586598b56", + "0xda79e921af42Bc333742bCb26Bcf998e35eDFCC4", + "0xDACD3aD9Fe68A29A4AE2B7a66599CEB784FAFaaD", + "0xdAD03f39dc4D00D5Fff11D3A0388c2Fe50010122", + "0xDbdfA83865f92614eafa62CFb05Cd6C752115995", + "0xDc15E5a056f567E43BBF3d4B19965085D1Fd05AB", + "0xDC97d21A7637776630699e392777A7A1A91F0973", + "0xDcaf84e17BB0609A19350178018b27851A5A2563", + "0xdCDb88F3754B2841093D9348A2D02DF8cf06314C", + "0xdD16eA314a98fC8fA99FF1aC24cA58365763d7ca", + "0xdD23AbB2227b4a3aDD86051810e03791F41C34E4", + "0xDd34966b140842d467CbCC566bd72341B6d11ab1", + "0xDdB99221ca67990d10C485A0911C564f527e4755", + "0xdE07016d42Fd56977a58db6056Ff43b4e21769f7", + "0xdE9ACAEd6Ba8386cF5f9fC5Cc4e0c88C40f3bb2c", + "0xdF0259238271427C469ABC18A2CB3047d5c12466", + "0xdf149B06E1D9d9cC3C5c654b3DCa4F143cBD2bc2", + "0xDf53aeBBe9DB417444330cffC3244b97a49f2FD0", + "0xDf5B0E3887Ec6cb55C261d4bc051de8dbF7d8650", + "0xDf6e87287c96498320EC42a02C57A59C78c5133F", + "0xdf7970E7E4b1f3469fD9E7666356953C1698DA9c", + "0xDFe8beeE223412F316baf2968B17527D6EbA29F1", + "0xe065550fE104E7bF83Ea725f831cB9072e4906b3", + "0xE0a2F038d38B3560E8248e7EC5566D73B120b637", + "0xe0b037b35A5DBc6277266D55d917e4250A2aa9A6", + "0xe13d4abEe4B304b67C52A56871141caD1B833aa7", + "0xE1C16E2278B5ed608EED8cE226594f51B52cc485", + "0xe1DFF72b704Ee6A0d3F447747006597612034076", + "0xE1EA582e896ae8541fb7c44B71d8a6Cd2CaFA339", + "0xE1eB9cF168DB37c31B4bDf73511Bf44E2B8027Ef", + "0xE20ADB03a470b5573bF572dd918E052d0D17866E", + "0xe2417897482983E9DeB9ACaF1D5f1031a43F4786", + "0xE27C5d32Ff9180FCb04d095CF4ee6A4000ebE7F8", + "0xE2d128323Cf7560a6E7a82726D7b425aEdc7a556", + "0xe33E3a7F44099D70F4498346686ed9435Ff225E2", + "0xe42bbe34Eec5a0862da72f7c1a8CA6A76ccbdEAd", + "0xE485eBDe0F17bC849669d1bbBd926C63D5dB4b83", + "0xe4c11caBB0FA74fFf8B4F8bfB7f566fC31719948", + "0xE5499f966306b50C29579036c13a628a87871579", + "0xE5625a6EE4908f67B7024849daf95f8FaDCb89d5", + "0xE5F8bdAd9b4286595458cc69D9547a03e6537a5d", + "0xE60CdF33f9682Ae889f8896F6862eB8674863A4D", + "0xe6cB101eba87C46dB7bb1E27aD2bd73482837a1c", + "0xE715dB8ffe482ABb39a4594294d1632F35Db77e8", + "0xe7458aBb03aF00342993b63e6dCead3Ff8eD4D0A", + "0xe74ca58EF724b94fAC7f2e09E2e48536A5c1AD03", + "0xE75021660E00A7FA0DF1B97da13eBAbe6D82e7ea", + "0xe778bc392687810E6748B71E2ea0cd9102De9929", + "0xe7a0D20A4F12724993506148142F97FFBc7Abc37", + "0xe7A411DD39464b144a9C2cbb45a411d5A4a84d5f", + "0xe88663F5878Dd0967C905EC8c7Cc65d6d8e091E6", + "0xe8B15352C8B5bA4AcAbdC91907b742fC7249D91c", + "0xE8C43274D38C48A927BA35fF21e1ab33D5520B6A", + "0xe913a5FE3FAA5F0fa0D420C87337c7CB99A0C6e5", + "0xEA72158A9749ca84C9ecBf10502846f7E4247642", + "0xEb0cd42592025f7443D1a76F095038cf07661eBB", + "0xEB0EbBc451218551F4152Db2887faF6c8BBA7BC0", + "0xEB4BD5231274aA4C2B97a4fA06bAD9eCFCdad5E0", + "0xEC46DD165eE2D4aF460a9c3d01B5A4C9516C9c3F", + "0xECa126BCF8B4b88Ff68011D2dA03b785206736C9", + "0xECB6a3E0E99700b32bb03BA14727d99FE8E538cf", + "0xeCBA5f51925E6CCeC26dA38Dcd7D5305f6BdFbcb", + "0xEcC0999CaB4Adceb01C6F1Bdb43B22313cEF3F8F", + "0xeCC1C49196F9be6C3028Fae4dbA2220839D28e8a", + "0xeCc8201146ea7538993DcC92c8326A2A91f66f35", + "0xed20Bb4772f9EAB584F5F7FBC3E601431C881e96", + "0xEd20d792D027957F2FBF606b575fdFC6d85112af", + "0xeD2C2CdEc695be3A4Dc421c1A8a6756dc5A927b6", + "0xeD3d7456997d9Af7d284230B5017B35d140dA798", + "0xedEF31880c9fDc97910368537617BB904D519007", + "0xee2a05377f462BA2204eaf459Ae69627D14f941b", + "0xEE81B6600E3454aA9A4E43cDB256bb66686380c4", + "0xEe9eD9D063D3aEC50A0226916D775930E4E4E02c", + "0xeEE5Eb24E7A0EA53B75a1b9aD72e7D20562f4283", + "0xeEEC0e4927704ab3BBE5df7F4EfFa818b43665a3", + "0xeF56c2E92e2764BA9E2515eA66c39bC0A33Ea153", + "0xEF7935913857A6deB46c609D54381B9960396771", + "0xEF80395b4943E1741c92a6f2119EbA58cfeD889A", + "0xEFCC4C68e1dDFaA4f0FA3a7479F0fB082f96A56b", + "0xf02c9A7b32cEd26cb70db10FC8D8458A00e03AC6", + "0xf0B33cEAfab33F5e00A86d74165e21e7b8a75fCA", + "0xF0B358BC8b343D47A6F2C2708FC032Be0b954c4E", + "0xf0Dd818503095545BA0bd579dFc2beBEe081F8fE", + "0xF1984DD40cde6227Df2F0A503C8Bc9aa8380d87F", + "0xf1CA87cE51E843E09993255b5402d45F781f58ba", + "0xF22F00D0B95B1b728078066E5f4410F6B2Be8faE", + "0xf249974C1fC9428462BDFd33A84A9Aa7fD5B88F7", + "0xF266DdF858284F2Fb07C7916C36CBb9D3bfDaEc3", + "0xf29155745c8Ee222d4F7d6A2a7a50c1901F27de2", + "0xF2adC49a86c78d7413192a6b5495F2a12b91c7Fc", + "0xf2Bc07DAc20b616e95c7F33B0340EaFfAd1756a7", + "0xF2C16ae7887450CE0018CDbAd26cfDbab183Ffee", + "0xF2F5207b459a3B6fbeaABDbc6ecECed7ca878D1a", + "0xF3b9640c32590bfB94b848F9Dc5A84127f91Fe33", + "0xf3e5e7dCC7Fb6aa6e78bACc8c58791BAEfeafBc0", + "0xf44E2e2655553A4125b8b83a35A2A72476a7aA54", + "0xf486d56ccE70c481b3455aF901fCC4F03FeE8107", + "0xf598AaDF12a2FC4709b5Db0C4c169715EFAf2038", + "0xf5A665eDC43eCbE328f761bb1233f8439cF892c0", + "0xF5d00DABeC9Cf3D978C534f0a2b9464d63830cA5", + "0xf63B8996c168af4e07e73f2A1D2F6dFc23a9Aa2A", + "0xf78484d56a9FEBc787783Fba5869Cd2c972e5764", + "0xf86eb5215F14AF0eC2708653dC8A7c6714648Eb1", + "0xf8986c160654CA5Bc047CB7f161F75dD4b31FBbe", + "0xF8F77A6610bD2bd25f0E171ecAb8A81151C2280C", + "0xFA1E34A745168E5dff6e615e419dA92b928bed36", + "0xfA402740B538E6b2074e5d196092eF141f00d573", + "0xfA5e5ca19594BC6b094925b767A98e1cF0464112", + "0xfaD8bB150aF1EEb94C032B51fAe03B6c859AA5f6", + "0xfB62DF8935504b3f1C2b13B10aA9d8eE67e34690", + "0xfB68Ce52BA88d6b0CC0c614624B0Dd89f42181bf", + "0xFB77F548c7F806A9b948A81Aa0C37aB40d15BA04", + "0xfb9699DE6f7eFc7F7D64A40852a68602ac7ef403", + "0xfBA7737Aea0969cE95CC7f1879B58e8Fb8c16836", + "0xFC2a616D48a8681250Aaaf590404E20812e96cFa", + "0xfc2D3466458Df7226095Cd8aE2d45b0f851010AD", + "0xfc51e3baA9eBcD5D18d6489319c40C3B330b5148", + "0xFC54c527bf835d7998F3e0E90B08a00DE7146B05", + "0xFc9E5D12Da3cE747d6E312062FB5f3E117e97EC1", + "0xFCcb964C514C12794509ed62fa274f0E284ceE82", + "0xFD35356DCD225Bbc7e8f1FdE622bfBF5AF105fe6", + "0xfD6bF7971c58cb92D14D226Cb7840b82F585c53c", + "0xFd80427A6a069d048F8034dbC0ac2Bbd61edf187", + "0xfD983cD4C85fFbF4440B252af8a498567e56aBC3", + "0xFe1a00487DD9EB84a7363a1c827a6f045fB121E4", + "0xfe1c8d120FD82cdb4148cbc4bF5bb97d4ed0A8C5", + "0xFE2BcCcB64f4a415EC78E855fd1257BD913a3Ffe", + "0xFe407097E296C521c2BEAA5e4E61A9b91bbe0D61", + "0xfeA6145Aec3832672Df239639FBc1db273Ace241", + "0xFf1e8f16A59D77c8C70a13fa183040fb1e2Fb2f6", + "0xff35E1b2D0441917347387953265e9BB35cc1783", + "0xff67A86A01C7c90B0c3f3A26B65C25f432ec1751", + "0xffE271Fc41EcCE146e14e518561B6943fE056978", + "0x6301add4fb128de9778b8651a2a9278b86761423", + "0x64129ea5c2b3eea53f4aff759eacc89b8a695535", + "0xe15cf0ede90e9059188fc8439014d1ffe29e0bbc", + "0x049808d5eaa90a2665b9703d2246dded34f1eb73", + "0x0dc1f2633d657122d67735d9606e0b29f5523aef", + "0x16224283be3f7c0245d9d259ea82ead7fcb8343d", + "0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3", + "0x8cf7071f9418662b4a3a3396d2f08bec7c563e79", + "0x2993e1d02b11377f44455aedc618c705acbb0591", + "0xe8005f21ca6420bf8b4c03f8c82e7b953a48136e", + "0x7565deddcb83a14b185eb9520914bb918cdfe983", + "0x8f70b3ac45a6896532fb90b992d5b7827ba88d3c", + "0x2c979c65504f4b758e6333268b42639eb4114daf", + "0x489cc1dad0e18986242095f50728703631b20ec9", + "0x8d372c7afb8ccc43c2eb77f3a14c89e49ff4a9f7", + "0xef26a2bc1c4488a5c9c21c37e522c028837faaf0", + "0xcd7f6b72049c3b54416f9f26392cb271e74ca3fd", + "0x8de3c79efb0a3bae779e2cc5b6f5023913fca547", + "0xdefd4c742f076458ebf1d03932f4ac0c9ad04e96", + "0xc643c9411a6b489e9833b16631140f42bbfcb6d1", + "0xb5d9c1cde53c0e2d1987a1680b242d576f884df9", + "0x5dc5a7a7f39471a21b977cdfbe796b039ae3df56", + "0xf2deee04cfa4119cb0c7a0f60960050a55a6c4b1", + "0x5e410dcb647f63389bdd7a9ba00b9df44256febd", + "0x584313319d0bfead2a9d98a7154f5dcb5a62887f", + "0x3bdbad7a018bde126805a6a75ac1181ee5411dd8", + "0xbbd52d8ea7f59303c30358465df8e0962c4ed21e", + "0x81aa6141923ea42fcaa763d9857418224d9b025a", + "0x4fc73f2f8c36c642ae2a6d368e4b5d27c0c89e83", + "0xd77d8f8b37c6e9c6a1ca490043232a57163a7a6e", + "0x9eb9152d6d0137ee320748f4b7f3d40192eb1d15", + "0x166d5385157eda0b3f0a2ffa39a46859017993bc", + "0x42d455b219214fda88af47786cc6e3b5f9a19c37", + "0x27b09d167d8ed88563d81ed766cbd280c8b434c5", + "0xf8d56b6b94bd2a7f4915270f57bf66843ac3894f", + "0x31e985b4f7af6b479148d260309b7bcecef0fa7b", + "0x5416ba4140a3e660c5c5f7a1e39a6a2b25f74a28", + "0xe7b633ea5a2589d4f9b19fa793eeb8fd246d5ccd", + "0x63687e06503d72aa8921c04248035abba47378dc", + "0x7e243c07afceafe22c05ff1415db8effad5fc100", + "0xb3522064694ac9870dbf00eebc2712762193bb64", + "0x859cd1be0af21785fdfdc25c4da9c819721af230", + "0xcbf0fc044206cea3def49a8c52ff98d6011c185a", + "0xc565001aff2bf6badafa0e4cfc9546768d9d6ea0", + "0x8a286b1bbfddf7296c497e99d5900005a09831d2", + "0x14362b6b9a95f22fdb13ff0d78066f684b80a9bc", + "0xfae066728854c2c0f8656a3cf2f2530d332fe081", + "0x92f4b20696a2273f129ea72f2d28ef35186aa08d", + "0xe833f93ba2460b8e4855acca762f956f16fe070d", + "0xbd8152fc7f060c6555809f6eada3ce64cba4d723", + "0x92f4ea1693328fa9546c83508cf049d26fa6182c", + "0xf0fbaaa7ece80ac41508e442929b81a4c8c8543b", + "0x61d2bb2cee3247397ec049954a0e71ee820fbbcf", + "0x1c385edf4b687db1472506447348a9e62e1e5edb", + "0xd30eb4f27acac4d903a92a12a29f3fe758a6849c", + "0xe96e7353fe78ab94d1b43417e21ebc5af985f41a" + ] + } + } + ] + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + }, + "plugins": { + "daoModule": { + "address": "0xF4Fa578C89916bF01DbbFd1412A9d128917606D5" + } + } + }, + "egg": { + "name": "Eggy.Finance", + "network": "1", + "symbol": "EGG", + "skin": "egg", + "domain": "signal.eggy.finance", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x2b7018Fca0eccfBc738828e1E8f1C7038EBBCaa8", + "symbol": "EGG", + "decimals": 18 + } + } + ], + "members": [ + "0x5E47b8155E4D66d5A88437D471e80daEb4Df9498", + "0xB2b4076a36b8993094cBfdb72512820B8BeDb6Ce", + "0x46bFfd048dF65392C26245e1f3c00c72b6f1DE62", + "0xf771d78D4db4F6ba725DCC8849a701D5e8bF66F3", + "0x1665e27Eced76a256710513605781b28E380BAb6", + "0x03dce8E2f2CD099bc924D6dDdc97686742a13111" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "equalizer": { + "name": "Equalizer", + "network": "1", + "symbol": "EQL", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x81428a8047cca11177a4e15789e368d6806da376", + "symbol": "EQL", + "decimals": 18 + } + } + ], + "members": [ + "0xBe4B98ABE5982AC6E453307c81CB47A316b78d89" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "esprezzo": { + "name": "Esprezzo", + "network": "1", + "symbol": "XPZ", + "skin": "esprezzo", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x8B4684aFa6CaBa9837F998AdDC16DF02b391C764", + "symbol": "XPZ", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "core", + "minScore": 100 + } + }, + "etgfinance": { + "name": "ETG.Finance", + "network": "1", + "symbol": "ETGF", + "skin": "etgfinance", + "domain": "governance.etgproject.org", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x74603e780545d02C4257E7D2BE19c74dE7BE1952", + "symbol": "ETGF", + "decimals": 18 + } + } + ], + "members": [ + "0xf14e2952a6a71c342cba3d7aa4ed932151964945" + ], + "filters": { + "defaultTab": "all", + "minScore": 0.01 + } + }, + "exnetwork": { + "name": "Exnetwork", + "network": "1", + "symbol": "EXNG", + "domain": "gov.exnt.io", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x9dd63ed4d9597b15cd2c1e5b9f3be01089ce9adc", + "symbol": "EXNG", + "decimals": 18 + } + } + ], + "members": [ + "0x1979209374987059DC5D5E62CE78B52f395ED94d" + ], + "filters": { + "defaultTab": "All", + "minScore": 10 + } + }, + "fairswap": { + "name": "FairSwap", + "network": "1", + "symbol": "FAIRPOWER", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x95845b551302462a6141dd574889EEE1A914438D", + "symbol": "FAIRPOWER", + "decimals": 9 + } + } + ], + "members": [ + "0xB9A21C28668bA80f3D6994c4a902c0977F38C1eA" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "finnexus": { + "name": "FinNexus", + "network": "1", + "symbol": "FNX", + "skin": "fnx", + "domain": "vote.finnexus.io", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x8664c6CAC83973068d47c4A430Eb4918125f40B0", + "decimals": 18, + "symbol": "fnx", + "methodABI": { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "fnxBalanceAll", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xb2F861C61f703c59A01b748231bDE1D31bCb1A35", + "0xd37Ef5EeDE847a9c4DC11576c5E5c564D13FdA73", + "0xB4e61d10344203DE4530D4a99D55F32Ad25580E9", + "0x5847848b4e80Eb6d7A47c2AE8E7b73A982Bfe083", + "0xa936b6f2557c096c0052a9a4765963b381d33896", + "0x3921b8d2a28dcfbd1bb1a79a16aa1e98113f7a4b", + "0xDc18Dbc8CBB728AD583f8A6fF724F029D8Db82fC", + "0x404d854065f1ba0a3E64b444C67d28aF9F7ff505", + "0x2348Fb97d600Cfbc0882CC95a5AD155dC8a42717" + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "invalids": [ + "QmXfQYxXBYCZXfncDJTZuAFe7YTPCMnarN4crAokRdfyQ6", + "QmYoRPALsEZbJ2QpacbhUj75LbzHbu2Xf9Dn7gYrU1GWs5", + "QmZtySqevwvjwULYL3B56a2u8mUcibZ9vADbdmYzdzug6A", + "QmbZ2UwmPhL9NLsWmyisyEsDKujMJxFfkWuRWkxC8Q6JHC", + "QmW4A9L9pGXTwL2cjNJNKuwtGAj2E6jbDfkfQJbupBrAzn", + "QmR87FcVG2F72yFhJcLEYfZJff7Qem51nv4f4XNe77yEbk" + ] + } + }, + "flamingo": { + "name": "Flamingo DAO", + "network": "1", + "symbol": "FLA-C", + "skin": "flamingo", + "strategies": [ + { + "name": "moloch", + "params": { + "address": "0x43310bd1c8f261ee7b9025662207ed95329aa193", + "symbol": "FLA", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "fortube-eth": { + "name": "ForTube(Ethereum)", + "network": "1", + "symbol": "GFOR", + "skin": "fortube", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0xC6ECa979b0d17C348055733bb84E94f5C655CD52", + "decimals": 18, + "symbol": "GFOR", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "votesOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xf03ff0992B338fb89d16DB42c7761102388BA0f0", + "0xaAaAAaf5149dcA9A6F6C05BdC7d8dC89b27e191A", + "0xd49524f9FDC4EA8ba65345253C2B9FdE3b6FAF3A", + "0x39Bd263cF3eE8Cc01cA0eFAbE2c94309e7Da7690", + "0xDb80BD4f295623D50c2019581624454d07f070be" + ], + "filters": { + "defaultTab": "all", + "minScore": 100, + "onlyMembers": false + } + }, + "fortube-rinkeby": { + "name": "ForTube(Rinkeby)", + "network": "4", + "symbol": "GFOR", + "skin": "fortube", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x79C4b872Ae01874F9EC77812338aB926A8C3d6a9", + "decimals": 18, + "symbol": "GFOR", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "votesOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xf03ff0992B338fb89d16DB42c7761102388BA0f0", + "0xaAaAAaf5149dcA9A6F6C05BdC7d8dC89b27e191A", + "0xd49524f9FDC4EA8ba65345253C2B9FdE3b6FAF3A", + "0x39Bd263cF3eE8Cc01cA0eFAbE2c94309e7Da7690", + "0xDb80BD4f295623D50c2019581624454d07f070be" + ], + "filters": { + "defaultTab": "all", + "minScore": 100, + "onlyMembers": false + } + }, + "fries": { + "name": "fry.world", + "network": "56", + "symbol": "KHP", + "skin": "fries", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x15B3d410fCd0d695E1bbe4F717F8E1B6D0Fb2D0C", + "symbol": "KHP", + "decimals": 18 + } + } + ], + "members": [ + "0x7237536c3B5a4f89b6339Df86dFe8Cd367CCd84f" + ], + "filters": { + "defaultTab": "core", + "minScore": 10000, + "onlyMembers": true, + "invalids": [ + "QmXndywCHmbYSNhUn7CTbrKJDH7zhHUvynvEJshryDhXWE" + ] + } + }, + "frontier": { + "name": "Frontier", + "network": "1", + "symbol": "FRONT", + "skin": "frontier", + "domain": "vote.frontier.xyz", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xf8C3527CC04340b208C854E985240c02F7B7793f", + "symbol": "FRONT", + "decimals": 18 + } + }, + { + "name": "balancer", + "params": { + "address": "0xf8C3527CC04340b208C854E985240c02F7B7793f", + "symbol": "FRONT BPT" + } + }, + { + "name": "uniswap", + "params": { + "address": "0xf8C3527CC04340b208C854E985240c02F7B7793f", + "symbol": "FRONT LPT" + } + } + ], + "members": [ + "0xfC43f5F9dd45258b3AFf31Bdbe6561D97e8B71de", + "0xDC36158CDb5A9bb63dbe07F10E7965dE9E802691", + "0xeE32B4336183a1299C13d738b93c64c2FcdAa3C8", + "0x756B70E09eE63B05D9b697eCDB4c5aE68F8f8f34", + "0x347A40aA8E9D4c4f9E676C2A2FF846565892e3a3", + "0xF0C4E92Fbb7859D509Aa624518EaC11FAf00136d", + "0xb4A231260D01731fd077f234d8f7A2A1455F36a2", + "0x8c7C82f45A1910280fDe0a20268e36E67f0cccD0", + "0x7773e5b161aabe917a574Bc65529Ee46CF9897C8", + "0x5F422FDdAD5e72E28a18dC147A44CaB279d0D368" + ], + "filters": { + "defaultTab": "all", + "minScore": 1000, + "onlyMembers": false, + "invalids": [] + } + }, + "galaxy": { + "name": "Galaxy Credit", + "network": "1", + "symbol": "GALAXY", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x09a59b9B677cbAad89cd1ba37ea1d42D3449A6FC", + "symbol": "GALAXY", + "decimals": 18 + } + } + ], + "members": [ + "0x773503F6aB170a0dfD623F1444861b1749f31cA9" + ], + "filters": { + "defaultTab": "all", + "minScore": 300000000000000000000 + } + }, + "gem": { + "name": "Gem", + "network": "1", + "symbol": "GEM", + "skin": "gem", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x90f62B96a62801488b151fF3c65eaC5Fae21a962", + "symbol": "GEM", + "decimals": 18 + } + } + ], + "members": [ + "0x28f97Cd17F09F2e93d46cc18a035a714dE605Fe5" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "gene-finance": { + "name": "Gene Finance", + "network": "1", + "symbol": "GENE", + "skin": "gene-finance", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xf6ec87dfe1ed3a7256cc0c38e3c8139103e9af3b", + "symbol": "GENE", + "decimals": 18 + } + } + ], + "members": [ + "0xC35e07aC812f3767eaDcc552033abdb431522536", + "0xBeeA846ab164eba15dCf584B571462B239dCdC98" + ], + "filters": { + "defaultTab": "core", + "minScore": 10000, + "invalids": [ + "Qmf6SKGwd1nMYPJ9vsuVpq5TYppgwa3eCYG8G2dCRy9bPD", + "QmUszy1sQvJQJfCsmnaP68xTpSE3VZN3QzSGhutadBdDgk", + "QmTEpv1PBsBQBpUxeBnMP1fNjB2ZR5UVMrotYBCiYh3g4t", + "QmTkYx6URveXdW3oGWCVhGV5PUQKTCRbFiccs43VWJ19da" + ] + } + }, + "giveth": { + "name": "Panvala Pan", + "network": "1", + "symbol": "PAN", + "skin": "giveth", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44", + "symbol": "PAN", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "gmt": { + "name": "GoldMining Token", + "network": "1", + "symbol": "GMT", + "skin": "gmt", + "domain": "signal.goldmining.farm", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xF5f8472045c9177B545Ea05fdA73848291a3f8B8", + "symbol": "GMT", + "decimals": 18 + } + } + ], + "members": [ + "0x557b4cd961844F9548EBc9534B84D66fED1df407", + "0x21Eccb2BB3a7e8f7518909BE3Df0f771307b8581", + "0xe8E55b190490c91b8752E14B5AAf58e503604604", + "0x03dce8E2f2CD099bc924D6dDdc97686742a13111", + "0xD3F3e9CD09c614AFd1504C7697ba0b6E67870729" + ], + "filters": { + "defaultTab": "core", + "minScore": 2 + } + }, + "golff": { + "name": "Golff Finance", + "network": "1", + "symbol": "GOF", + "skin": "golff", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x488E0369f9BC5C40C002eA7c1fe4fd01A198801c", + "symbol": "GOF", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "griffin": { + "name": "Griffin", + "network": "56", + "symbol": "TEXOS", + "skin": "griffin", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x2C8736E3E542d6c72710f5da54F5DB9ea1054667", + "symbol": "TEXOS", + "decimals": 18 + } + } + ], + "members": [ + "0x420A7e31d1177F4f7e0ae9d5e45101D5785F4d21" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "growthdefi": { + "name": "growthdefi", + "network": "1", + "symbol": "GRO", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xd93f98b483cc2f9efe512696df8f5decb73f9497", + "symbol": "stkGRO", + "decimals": 18 + } + } + ], + "members": [ + "0x70F5FB6BE943162545a496eD120495B05dC5ce07", + "0x7674D2a14076e8af53AC4ba9bBCf0c19FeBe8899", + "0xC4faC8CA576B9c8B971fA36916aEE062d84b4901" + ], + "filters": { + "defaultTab": "all", + "minScore": 1, + "onlyMembers": true + } + }, + "hubdao": { + "name": "HubDao", + "network": "1", + "symbol": "HD", + "skin": "hubdao", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x6ce654ac973d326f89f0685e7459542641410ed9", + "symbol": "HD", + "decimals": 18 + } + } + ], + "members": [ + "0x1a41310D0e7D943624e745fCBFA69cd3b958628D" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "iyffinance": { + "name": "iyf.finance", + "network": "1", + "symbol": "IYF", + "skin": "iyffinance", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x5d762f76b9e91f71cc4f94391bdfe6333db8519c", + "symbol": "IYF", + "decimals": 18 + } + } + ], + "members": [ + "0xb49a64c0ec79dEDD1BDbf03F38B79DC4Dc993762" + ], + "filters": { + "defaultTab": "core", + "minScore": 1, + "onlyMembers": true + } + }, + "jamm": { + "name": "JAMM", + "network": "1", + "symbol": "$JAMM", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x56687cf29ac9751ce2a4e764680b6ad7e668942e", + "symbol": "$JAMM", + "decimals": 4 + } + } + ], + "members": [ + "0x565B93a15d38aCD79c120b15432D21E21eD274d6" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "jiaozi": { + "name": "JIAOZI", + "network": "1", + "symbol": "JIAOZI", + "skin": "jiaozi", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x94939D55000B31B7808904a80aA7Bab05eF59Ed6", + "symbol": "JIAOZI", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "katana": { + "name": "KATANA.FINANCE", + "network": "1", + "symbol": "KATANA", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xe6410569602124506658ff992f258616ea2d4a3d", + "symbol": "KATANA", + "decimals": 18 + } + } + ], + "members": [ + "0x43BAb6d115324aCD2755E10910367aBE38174f58" + ], + "filters": { + "defaultTab": "All", + "minScore": 1000 + } + }, + "lao": { + "name": "LAO Community", + "network": "1", + "symbol": "LAO-C", + "skin": "lao", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x8Ffb89D50eB0b9788f40123Cb3B8b8a84Edb4202", + "symbol": "LAO-C", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "lcore": { + "name": "Liquid Core Voting", + "network": "1", + "symbol": "LCORE", + "strategies": [ + { + "name": "erc20-balance-of-cv", + "params": { + "address": "0x9085738d9a4d9ac5dadfd630ac9090a49d98b72f", + "symbol": "LCORE", + "decimals": 18 + } + } + ], + "members": [ + "0xF0CD3b969C7da9117292f424E1472999Ed6Fd40e" + ], + "filters": { + "defaultTab": "core", + "minScore": 10 + } + }, + "lex": { + "name": "LexDAO Collective", + "network": "1", + "symbol": "LEX", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x63125c0d5Cd9071de9A1ac84c400982f41C697AE", + "symbol": "LEX", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "lexdao": { + "name": "LexDAO Coop", + "network": "1", + "symbol": "COOP", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x7938a822dFab3Fc318f5ECfC3C986089fa89f319", + "symbol": "COOP", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1000 + } + }, + "limitswap": { + "name": "LimitSwap", + "network": "1", + "symbol": "LIMIT", + "skin": "limitswap", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x1712aad2c773ee04bdc9114b32163c058321cd85", + "symbol": "LIMIT", + "decimals": 18 + } + } + ], + "members": [ + "0xe0200B203ffFd1Bb31a79a10b0e558346e9934De", + "0x261377cfB52E6FD3048B0aB991D991EE43eF2d4A" + ], + "filters": { + "defaultTab": "core", + "minScore": 10 + } + }, + "mantra-dao": { + "name": "MANTRA DAO", + "network": "1", + "symbol": "OM", + "skin": "mantra-dao", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x9E15Ad979919bB4db331Bfe864475Ae3BFFebA93", + "symbol": "OM", + "decimals": 18 + } + }, + { + "name": "erc20-balance-of-coeff", + "params": { + "address": "0x91fe14df53eae3a87e310ec6edcdd2d775e1a23f", + "symbol": "OMUNI", + "decimals": 18, + "coeff": 250 + } + } + ], + "members": [ + "0xd4eee3d50588d7dee8dcc42635e50093e0aa8cc0", + "0x12e79894e7d9EdC6f1Ea7dB7bB9AC8F911BE716b" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "mee": { + "name": "Mercurity.Finance", + "network": "1", + "symbol": "MEE", + "skin": "mee", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xe1b583dc66e0A24Fd9Af2dC665f6F5e48978E106", + "symbol": "MEE", + "decimals": 18 + } + } + ], + "members": [ + "0x0Dc5A6A0DC7A9FAB05b22338d5EdC4A7dBfba55e", + "0xc1aD7FE67D08a93Ac5f13278086ba72E90EfCD48", + "0x667911bc8B5775616eBcF13d49734cFf96D4ec39" + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "onlyMembers": true + } + }, + "metric": { + "name": "Metric.Exchange", + "network": "1", + "symbol": "METRIC", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac", + "symbol": "METRIC", + "decimals": 18 + } + } + ], + "members": [ + "0x2Cb037BD6B7Fbd78f04756C99B7996F430c58172" + ], + "filters": { + "defaultTab": "core", + "minScore": 100 + } + }, + "moonswap": { + "name": "MoonSwap", + "network": "1", + "symbol": "MOONEVD", + "skin": "moonswap", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xC65E282a82b5F0b02Dec20d32DCf12A89f5580bc", + "symbol": "MOONEVD", + "decimals": 18 + } + } + ], + "members": [ + "0xeF71a18bb044d98A861e7Ee9d6ff9262Fff32f12", + "0xfb8AC8edB1F67271DcceE572c904C9cA7d90a57E" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "moontools": { + "name": "MoonTools.io", + "network": "1", + "symbol": "MOONS", + "skin": "moontools", + "domain": "gov.moontools.io", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x260e63d91fccc499606bae3fe945c4ed1cf56a56", + "symbol": "MOONS", + "decimals": 18 + } + } + ], + "members": [ + "0x9be82c0E5B75C53F32E63b40442E9dA8cCA06f21" + ], + "filters": { + "defaultTab": "core", + "minScore": 50000 + } + }, + "music": { + "name": "Music DAO", + "network": "1", + "symbol": "DNLD", + "skin": "music", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xEf9c6629BEd99abCf3937eB0F6d72E5b219035aF", + "symbol": "DNLD", + "decimals": 18 + } + } + ], + "members": [ + "0xa3564677FC4907A15c9A7EAe1DBc1ae9aC57b8E1" + ], + "filters": { + "defaultTab": "all", + "minScore": 10 + } + }, + "mybit": { + "name": "MyBit", + "network": "1", + "symbol": "MYB", + "skin": "mybit", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc", + "symbol": "MYB", + "decimals": 18 + } + } + ], + "members": [ + "0x2B50d53c2d10954aEA741ae61001c3fb77717e5e" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "narwhal": { + "name": "Narwhal", + "network": "56", + "symbol": "NARHOLDERS", + "skin": "narwhal", + "domain": "gov.narwhalswap.org", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x6451571Cb5bEe9Fd575ad98506E96f3d09C66F91", + "symbol": "NARHOLDERS", + "decimals": 18 + } + } + ], + "members": [ + "0xb104AE8b7DA105ca79cbA208b9A41C1D63fff2C5" + ], + "filters": { + "defaultTab": "core", + "minScore": 1, + "invalids": [ + "QmZU3Kfzcr3z3RVs2GxF71PJJusRdyk9p7WdtBvKghnHXb", + "QmWCENSGLBqyTRvPrFYDGBb5CdSRxeSp9p6YGYKrQHdT1v", + "QmcLaVLFVBHMWETwjCCDL6UQaKuKWchUei5Nh3ntEjgpvt" + ] + } + }, + "nft": { + "name": "NFT Protocol", + "network": "1", + "symbol": "NFT", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xcB8d1260F9c92A3A545d409466280fFdD7AF7042", + "symbol": "NFT", + "decimals": 18 + } + } + ], + "members": [ + "0x2FFBE7Cb6b8e3bA6B621242612685dAA687C03D5", + "0x1024E993f717a19B0b7131546b1996D65338e8E8" + ], + "filters": { + "defaultTab": "core", + "minScore": 100, + "invalids": [ + "QmXAZP8tYwX2zZz5EzfxLZUYJt6TM9EmxY1L4qodhZ5zcZ" + ] + } + }, + "nice": { + "name": "NICEE", + "network": "1", + "symbol": "NICE", + "skin": "nice", + "domain": "vote.niceee.org", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x669Bffac935Be666219c68D20931CBf677b8Fa1C", + "decimals": 18, + "symbol": "NICE", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "niceBalanceAll", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xb2F861C61f703c59A01b748231bDE1D31bCb1A35" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "oaklanddao": { + "name": "Oakland Dao", + "network": "4", + "symbol": "OAKM", + "skin": "oaklanddao", + "domain": "oaklandvote.citydao.org", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xd41de6a4af5fafa7c9483bdafeb592a626ba7584", + "symbol": "OAKM", + "decimals": 0 + } + } + ], + "members": [ + "0xbec7c55760b2927d81e70d3a91a064ddc5f54683" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "octofi": { + "name": "OctoFi", + "network": "1", + "symbol": "OCTO", + "skin": "octofi", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x7240ac91f01233baaf8b064248e80feaa5912ba3", + "symbol": "OCTO", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "ourbloc": { + "name": "ourbloc", + "network": "1", + "symbol": "Dap", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x4bebe99fac607dc7ef2d99d352ca18999f51b709", + "symbol": "Dap", + "decimals": 10 + } + } + ], + "members": [ + "0x4bebe99fac607dc7ef2d99d352ca18999f51b709" + ], + "filters": { + "defaultTab": "core", + "minScore": 10 + } + }, + "pancake": { + "name": "PancakeSwap", + "network": "56", + "symbol": "CAKEVOTE", + "skin": "pancake", + "domain": "voting.pancakeswap.finance", + "strategies": [ + { + "name": "pancake", + "params": { + "address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", + "chefAddresses": [] + } + } + ], + "members": [ + "0x6eaf1b33b8672c5dc40aB8f4bA3A0111723126c7" + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "invalids": [ + "QmXAEfVnKwJordj7WQUeB3pdJ147jyRq99iGagKntijNsw", + "QmfSUjMKSLgFzT8aQQcTfUK3HhUFY3E1K3mrAtt99waFJQ", + "QmWCLxq1Ya4opwkSLU4v1zecsEH8C26pdG64VwW5WyXtqb", + "QmTBdcBuYZi2wUrMuTmQgz4dmG13wGc8A6hXiszt9T7Lup", + "QmZ3iPtLRKzq6Wk1MSsmUg6uKuqFGjdGVX1TTjdvHSZwUz", + "Qmeg1BDH838deKqN2baoNE6rePkkXqLy3cujLyNTdmCLsF", + "QmeiB2PtRBtk9XDk9LAWuCPH2Thp67tKqHPmGdc1oNiDm6", + "QmcoGEX52GaGM2sJC2EKZgNuxRxjfeiotn1kVnApcgBJnq" + ] + } + }, + "payrue": { + "name": "PayRue", + "network": "56", + "symbol": "Propel", + "skin": "payrue", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x9B44Df3318972bE845d83f961735609137C4C23c", + "symbol": "Propel", + "decimals": 18 + } + } + ], + "members": [ + "0xB46A9b8F8Fc8bE845c8A6a7c9Bc24BD6f7F3D0E6" + ], + "filters": { + "defaultTab": "core", + "minScore": 0, + "invalids": [ + "Qmbskzogi2H2edVos93jfMGg8EidThridBNJZxBazovBPB", + "QmWRdftt8JjTXrFARxqoiWhBcysyBZkwgD8xz3YDWC9hLB" + ] + } + }, + "penguin-party": { + "name": "🐧Penguin Party Fish🐟 ", + "network": "1", + "symbol": "🐟 ", + "skin": "penguin-party", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x30BCd71b8d21FE830e493b30e90befbA29de9114", + "symbol": "🐟", + "decimals": 18 + } + }, + { + "name": "uniswap", + "params": { + "address": "0x30bcd71b8d21fe830e493b30e90befba29de9114", + "symbol": "🐟", + "decimals": 18 + } + } + ], + "members": [ + "0x0be0eCC301a1c0175f07A66243cfF628c24DB852", + "0x686B4535FF6573cef3FF37419A4fc6Ac775Ec7ea", + "0xf6401adc23Faa6B9AD83eA8604CA7254CB7F53e7" + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "percent": { + "name": "Percent", + "network": "1", + "symbol": "PCT QV", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x4128fe23Ef23194E00405603c937b19d3e30482C", + "symbol": "PCT QV", + "decimals": 9 + } + } + ], + "members": [ + "0x4fB94CB25918Cbe62EC2ab80E3569492af59B8c3", + "0x39DE05B0984693a0A2E0e6C87A89EEE66AE4aAE3", + "0x3ec461e349F3F0C62b1Ad436f9CaA69e8a47d79F", + "0xF46e481051708839a9c4Eb511EaECB0A026dBceC", + "0x90fc3dC58B5c8edD9A04eCB9671bba399df58767", + "0xE214B8255999BCd69026D6AB54C7715850dd5290", + "0x4968455C68d86d96f88aCBff3D0d8eEa497C2A3A" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "pok": { + "name": "pok.finance", + "network": "1", + "symbol": "POK", + "skin": "pok", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x32b4a68008701e724914d29e58c2db7e3e30e631", + "symbol": "POK", + "decimals": 18 + } + } + ], + "members": [ + "0xF8b1747D07B39Dd1A018fe171A1d99982f04B85c" + ], + "filters": { + "defaultTab": "all", + "minScore": 50, + "invalids": [ + "QmV6KRUEJ2DNLyhyAH6NrKNP3WQD41CHMVud6N4dUhu6HH", + "QmTttbezp5zYzz5u9Dc6xspBZJcuTbXH7hBX5MEfcs1oxj", + "QmdR53WqJL7oYYGYqmAJyvR9cf6yxKLP9jgkBy3kk1t5n3", + "QmeCJgUE6VJt4xMdfXa7q9MuAMhoJqej4wsST3gdMNgaxa" + ] + } + }, + "pokt-network": { + "name": "Pocket Network", + "network": "100", + "symbol": "POKTDAO", + "skin": "pokt-network", + "domain": "gov.pokt.network", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x59F9e6E5e495F2fB259963DeC5BA56CFBd5846e7", + "symbol": "POKTDAO", + "decimals": 0 + } + } + ], + "members": [ + "0x58b043397F5BE36d402C4d008A49eF852BB8A554", + "0x5C582E7Ba8D359407de1A6C04E6b681c928ec2C0", + "0xc4A44692e83802838ccB8fDB3984489e70d33485", + "0x44c8A776fffd62e2d94A678C6d3Ce13a3A8fE797", + "0x2711aE0C212e2D9EBd35E4394d2e9641AcC9bd0D", + "0xDe208Be7357E28aa457553594EB1091D2272048a" + ], + "filters": { + "defaultTab": "all", + "minScore": 1, + "onlyMembers": false + } + }, + "polyient-games-governance": { + "name": "Polyient Games Governance", + "network": "1", + "symbol": "PGT", + "skin": "polyient-games-governance", + "domain": "vote.polyient.games", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x85327e4C2D3484cEa109D5F90Bcb616D5aE40AD5", + "symbol": "PGT", + "decimals": 18 + } + } + ], + "members": [ + "0x8c4B50788CE9BA8D4a481B06B5E19927c2aa41C6", + "0xA3f2D4D0A3Ec1566E22dEB1aB200e54b78e729f8", + "0xde99f9f91F4d6db657058a0f96CBcbDa454bc86d" + ], + "filters": { + "defaultTab": "core", + "minScore": 100 + } + }, + "portion": { + "name": "Portion", + "network": "1", + "symbol": "PRT", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x6D0F5149c502faf215C89ab306ec3E50b15e2892", + "symbol": "PRT", + "decimals": 18 + } + } + ], + "members": [ + "0x2f89c57d519308917Af6293a8516803Fbd895776" + ], + "filters": { + "defaultTab": "core", + "minScore": 5000 + } + }, + "potion-kovan": { + "name": "Potion Test Kovan", + "network": "42", + "symbol": "TESTPOT", + "skin": "potion", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x970A40ccEBCAec0D2f98210F4fEE38a62259Ac93", + "symbol": "TESTPOT", + "decimals": 18 + } + } + ], + "members": [ + "0xeF8305E140ac520225DAf050e2f71d5fBcC543e7", + "0xBB8022893b39012C7D2ac33b882BdFb92d68F644" + ], + "filters": { + "defaultTab": "all", + "minScore": 10, + "invalids": [ + "QmTQuD1CAKRkH12A94SSEafZz1byqefLrJAfgGzDGU9xTj" + ] + } + }, + "pria": { + "token": "0xb9871cb10738eada636432e86fc0cb920dc3de24", + "name": "PRIA ", + "network": "1", + "symbol": "PRIA", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xb9871cb10738eada636432e86fc0cb920dc3de24", + "symbol": "PRIA", + "decimals": 18 + } + } + ], + "members": [ + "0xd82Cac867d8D08E880Cd30C379e79d9e48876b8b", + "0xa4633cb5ceebba4bc3ac3baeab8b19381896fe88", + "0x20e3DCEdc05B1D08a0F0910810C48b2f7F9fbcb1" + ], + "filters": { + "defaultTab": "core", + "minScore": 10 + } + }, + "qian-bsc": { + "name": "QIAN(BSC)", + "network": "56", + "symbol": "KUN", + "skin": "qian", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0xDb20CD5C383896430125D3842E3D06C7E3Cd92Ae", + "decimals": 18, + "symbol": "KUN", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "votesOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xf03ff0992B338fb89d16DB42c7761102388BA0f0", + "0xaAaAAaf5149dcA9A6F6C05BdC7d8dC89b27e191A", + "0xd49524f9FDC4EA8ba65345253C2B9FdE3b6FAF3A", + "0x39Bd263cF3eE8Cc01cA0eFAbE2c94309e7Da7690", + "0xDb80BD4f295623D50c2019581624454d07f070be" + ], + "filters": { + "defaultTab": "all", + "minScore": 100, + "onlyMembers": false, + "invalids": [ + "QmT18oJ1eCUmffVfqN6DutacyXESiqasiGzmM7C4ZYRPjQ" + ] + } + }, + "qian-bsc-testnet": { + "name": "QIAN(BSC Testnet)", + "network": "97", + "symbol": "KUN", + "skin": "qian", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0xC4323faB07b6944Bf8d06B33fFf398a21D6CA207", + "decimals": 18, + "symbol": "KUN", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "votesOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xf03ff0992B338fb89d16DB42c7761102388BA0f0", + "0xaAaAAaf5149dcA9A6F6C05BdC7d8dC89b27e191A", + "0xd49524f9FDC4EA8ba65345253C2B9FdE3b6FAF3A", + "0x39Bd263cF3eE8Cc01cA0eFAbE2c94309e7Da7690", + "0xDb80BD4f295623D50c2019581624454d07f070be" + ], + "filters": { + "defaultTab": "all", + "minScore": 100, + "onlyMembers": false, + "invalids": [ + "QmRkBojd2vwQQY8PFDFyFVkv3EXwWe4pQnrPDPRAeFwCD4" + ] + } + }, + "qian-eth": { + "name": "QIAN(ETH)", + "network": "1", + "symbol": "KUN", + "skin": "qian", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0xA61520F2a20bE603Dcfbdef3FB616615eEB1e675", + "decimals": 18, + "symbol": "KUN", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "votesOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xf03ff0992B338fb89d16DB42c7761102388BA0f0", + "0xaAaAAaf5149dcA9A6F6C05BdC7d8dC89b27e191A", + "0xd49524f9FDC4EA8ba65345253C2B9FdE3b6FAF3A", + "0x39Bd263cF3eE8Cc01cA0eFAbE2c94309e7Da7690", + "0xDb80BD4f295623D50c2019581624454d07f070be" + ], + "filters": { + "defaultTab": "all", + "minScore": 100, + "onlyMembers": false, + "invalids": [ + "QmfBAeBoe5HX91gX26QCqUJPKko1abRyyDfGcnU6hWMm7j" + ] + } + }, + "qubcoins": { + "name": "Qubcoins", + "network": "1", + "symbol": "QUB", + "skin": "qubcoins", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xb2d74b7a454eda300c6e633f5b593d128c0c0dcf", + "symbol": "QUB", + "decimals": 18 + } + } + ], + "members": [ + "0x41A2E2f0e3A93c16D124C635Ba4aFab4abAfF2b7", + "0x2678D2bFDfe5442207BA8ff45bD610B86283b270", + "0x89D107B71F31110d76eCAB4c79A4AC021e5fd5B0" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "raid-guild": { + "name": "Raid Guild", + "network": "1", + "symbol": "RAID", + "skin": "raid-guild", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x4BBC860B82E70CB7af1FD50dEBB0143E0F53e016", + "symbol": "RAID", + "decimals": 0 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "rari": { + "name": "Rari Capital", + "network": "1", + "symbol": "RGT", + "skin": "rari", + "domain": "vote.rari.capital", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xD291E7a03283640FDc51b121aC401383A46cC623", + "symbol": "RGT", + "decimals": 18 + } + }, + { + "name": "contract-call", + "params": { + "address": "0x9C0CaEb986c003417D21A7Daaf30221d61FC1043", + "symbol": "RGT", + "decimals": 18, + "methodABI": { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "holder", + "type": "address" + } + ], + "name": "getUnclaimedRgt", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } + } + }, + { + "name": "contract-call", + "params": { + "address": "0xA54B473028f4ba881F1eD6B670af4103e8F9B98a", + "symbol": "vRGT", + "decimals": 18, + "methodABI": { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "holder", + "type": "address" + } + ], + "name": "getUnclaimedPrivateRgt", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xf5C2D472C1f96b44d7BA22118F93876e2AA3aDD1", + "0xeAd815D7faD76bf587EBbC27CE3c0212c3B256Be", + "0x58C1A65f5F39dD1b4FA899455d319422dF4399F1", + "0xdDA9b40A85905023b74EF166Ded3C919d4BA5B9a", + "0xfb9F8Ea924dDbDB8C23c6a519ea8C70Cf8F7B92A", + "0x35aa01E8E16c35BDd5196844D4c9B729827B0CaC" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "invalids": [ + "QmNt4RFpBF956FZPN1G7CP1smTTpX1phRxpqoDb1Rgdjgp", + "QmNZP5NGpQonKGE9RFebDTvt9ajVbPC7qHNr9jXAz4zdeU" + ] + } + }, + "rdao": { + "name": "Revelation", + "network": "1", + "symbol": "RDAO", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x244bD173a540B5FCEa524E173b3FB6841C20Ab24", + "symbol": "RDAO", + "decimals": 18 + } + } + ], + "members": [ + "0xE4EeEb39039da82d5A392E925daadA76F17Dad26" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "reb2": { + "name": "Rebased v2", + "network": "1", + "symbol": "REB2", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF", + "symbol": "REB2", + "decimals": 9 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "rigoblock": { + "name": "RigoBlock", + "network": "1", + "symbol": "GRG", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x4fbb350052bca5417566f188eb2ebce5b19bc964", + "symbol": "GRG", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 5000 + } + }, + "rope": { + "name": "ROPETHEVOTE", + "network": "1", + "symbol": "$ROPE", + "skin": "rope", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xa5080230d752915F157FABe058d5E37c62947DEB", + "symbol": "$ROPE", + "decimals": 18 + } + } + ], + "members": [ + "0xAD16ebE6FfC7d96624A380F394cD64395B0C6144", + "0xC340B7A2A70d7e08F25435CB97F3B25A45002e6C", + "0xc391791Ecbb9B8CcCc9E708Fc847E941AF8025B2", + "0x329b90Dd19E3Ca381E5c05E071C276401D3c03C6", + "0xD507248FcB54D01143ca87E677b8619bE8934b97", + "0x8bb18f1eeB8d170F4edfE2C5D008986171B4e572", + "0x56CbA86e1552Ee3D9F75c620874423fed590564a", + "0xb92baB1C17435fd129CF3879740FbD2D92b08fB3", + "0xa75458342eF5965Fe48028d48945a85fea7B89da" + ], + "filters": { + "defaultTab": "core", + "minScore": 74.6 + } + }, + "rot": { + "name": "Rotten Swap", + "network": "1", + "symbol": "ROT", + "skin": "rot", + "domain": "vote.rottenswap.org", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x57325c17d41be64b62b536f535f9d5553d3e4bdb", + "decimals": 18, + "symbol": "ROT", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "rotBalanceAll", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xb2F861C61f703c59A01b748231bDE1D31bCb1A35" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "s-finance": { + "name": "S.Finance", + "network": "1", + "symbol": "SFG", + "domain": "signal.s.finance", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x8a6ACA71A218301c7081d4e96D64292D3B275ce0", + "symbol": "SFG", + "decimals": 18 + } + } + ], + "members": [ + "0x46287423a6939c1393e1078eE4A5656f733f80F2" + ], + "filters": { + "defaultTab": "all", + "minScore": 1000 + } + }, + "sake": { + "name": "SAKEVOTER", + "network": "1", + "symbol": "SAKE", + "skin": "sake", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x0e4b5a586b9bc8e4197b79b7fbe8b66e5aebf13a", + "symbol": "SAKE", + "decimals": 18 + } + } + ], + "members": [ + "0x142151D3b15b8961F2937Cf7880Bcd10c050800C", + "0x2454aB1a4204bCC3778DfeB7bd6E73b588A76566", + "0xD1Ba0570998815b13E2119F27e6189d080abde75" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "sav3": { + "name": "SAV3", + "network": "1", + "symbol": "SAV3", + "skin": "sav3", + "domain": "vote.sav3.org", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x5aefe39a1ccebc80c3c3ce1257b6dd60e0521763", + "decimals": 18, + "symbol": "SAV3", + "methodABI": { + "inputs": [ + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "sav3BalanceAll", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + } + } + ], + "members": [ + "0xb2F861C61f703c59A01b748231bDE1D31bCb1A35" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "sdoge": { + "name": "SDOGE", + "network": "1", + "symbol": "SDOGE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xb25FEda5512445Aa4e481Add71731cD0cffF18C1", + "symbol": "SDOGE", + "decimals": 18 + } + } + ], + "members": [ + "0x07679A0882Ea2c3C59207A1AC53F76511555fbd8" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "seal": { + "name": "Seal Finance", + "network": "1", + "symbol": "Seal", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x89CCE324dE3F212B39d090375b3732A19EC54d30", + "symbol": "Seal", + "decimals": 18 + } + } + ], + "members": [ + "0xde2d219fea5ebe1a75ddfbaf0b4477f6da757f76" + ], + "filters": { + "defaultTab": "all", + "minScore": 35 + } + }, + "send": { + "name": "Send Finance", + "network": "1", + "symbol": "$SEND", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x14c4d8e57751e083bcd1edcca5b435720166f5e9", + "symbol": "$SEND", + "decimals": 18 + } + } + ], + "members": [ + "0x35e1dE7f74FC1ad617D8977e6817de0F23eC1679" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "shilldao": { + "name": "ShillDAO", + "network": "1", + "symbol": "SHILL", + "skin": "shilldao", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x54c818a55a795493de47620fa08efae74fc48974", + "symbol": "SHILL", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "shrimp": { + "name": "SHRIMP.FINANCE", + "network": "1", + "symbol": "SHRIMP", + "skin": "shrimp", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x38c4102D11893351cED7eF187fCF43D33eb1aBE6", + "symbol": "SHRIMP", + "decimals": 18 + } + } + ], + "members": [ + "0xF5bC663Bca33af81E2fb8f72D24Cad0D14665871" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "shroom": { + "name": "shroom.finance", + "network": "1", + "symbol": "SHROOM", + "skin": "shroom", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183", + "symbol": "SHROOM", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "sleeping": { + "name": "sleep", + "network": "1", + "symbol": "SLEEP", + "skin": "sleeping", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x3C1EE45e11E90fC20427BE5e6Db5FEe557f1E07f", + "symbol": "SLEEP", + "decimals": 18 + } + } + ], + "members": [ + "0xFD1AbE6F05A17C2dc198F6f56Cb5d85Cc2279Ea9" + ], + "filters": { + "defaultTab": "core", + "minScore": 1000 + } + }, + "smol": { + "name": "smol", + "network": "1", + "symbol": "SMOL", + "skin": "smol", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x2216e873ea4282ebef7a02ac5aea220be6391a7c", + "symbol": "SMOL", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 100 + } + }, + "sogur": { + "name": "Sogur", + "network": "1", + "symbol": "SGR+SGN", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xaea8e1b6cb5c05d1dac618551c76bcd578ea3524", + "symbol": "SGR", + "decimals": 18 + } + }, + { + "name": "erc20-balance-of", + "params": { + "address": "0x082E6d22225a6a26ED3CD35342E6722dB31F42e5", + "symbol": "SGN", + "decimals": 18 + } + } + ], + "members": [ + "0x3Ff63EC64143993C9eDf89e36f58b9bd69f173AD" + ], + "filters": { + "defaultTab": "core", + "minScore": 10 + } + }, + "spaghetti": { + "name": "Spaghetti.Money", + "network": "1", + "symbol": "PASTA", + "skin": "spaghetti", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xE54f9E6Ab80ebc28515aF8b8233c1aeE6506a15E", + "symbol": "PASTA", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "spring-dao": { + "name": "SpringDAO", + "network": "1", + "symbol": "SPRNG", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x6D40A673446B2D00D1f9E85251209C638049ba22", + "symbol": "SPRNG", + "decimals": 2 + } + } + ], + "members": [ + "0x6268FF2E44Cc1EcC6ACf465fe42754A9F798B1f5" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "status": { + "name": "Status.im", + "network": "1", + "symbol": "SNT", + "skin": "status", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E", + "symbol": "SNT", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "swaphub": { + "name": "HUB", + "network": "1", + "symbol": "HUBDAO", + "skin": "swaphub", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x2B6da14f488fba03f6CF6E2a6B530d656a963755", + "symbol": "HUBDAO", + "decimals": 18 + } + } + ], + "members": [ + "0x2274c8C52C698864cA0fe80AaB3CB10799f8c3C7", + "0x019F6B845E10e936f7120C429e71F9d353eaF4FA" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "swapx": { + "name": "swapx.org", + "network": "1", + "symbol": "SWP", + "skin": "swapx", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xDA3145d0A373712E036106FC1fa34b1014807e68", + "symbol": "SWP", + "decimals": 18 + } + } + ], + "members": [ + "0xDeA9390e58473973DAF78EBdD62f5cdDAfDC3808", + "0xB5268ca044043aDA659Fdc7Ac4f825C25513818E", + "0xc1aD7FE67D08a93Ac5f13278086ba72E90EfCD48" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "swerve": { + "name": "Swerve", + "network": "1", + "symbol": "%SWRV", + "skin": "swerve", + "strategies": [ + { + "name": "erc20-balance-of-fixed-total", + "params": { + "address": "0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433", + "symbol": "%SWRV", + "decimals": 18, + "total": 50 + } + }, + { + "name": "erc20-balance-of-fixed-total", + "params": { + "address": "0xe5e7ddadd563018b0e692c1524b60b754fbd7f02", + "symbol": "%veSWRV", + "decimals": 18, + "total": 50 + } + } + ], + "members": [ + "0x6D3E136698beFEe231cD2E4E94bE0105D62FA01F", + "0xB2C5973EAE6c2a8e5803Aa9A3e0cb177aFE11CDe", + "0xCdF9b411015016E6a4CD16b5445Fa3a51e7e42CF" + ], + "filters": { + "defaultTab": "all", + "minScore": 0, + "invalids": [ + "QmSpJNN3rKADmBcZmUwbE8d1k2XfmW324pXv1aSRZjkaCt", + "QmRr7635pGFSkacbHWQKm4K6gH58uZL6vLZo6tkCAx9bVP", + "QmdNTkgm3JmdbPpJwdZey9S8o63qCS43p1g58FP2f8E97K", + "QmPZywKkKNpcf1yRJ6S4y1q47uZH1XErj6B1VVPw1urok5", + "QmUZsSis3h5zxC9299aeSgpYKuYnEinJtFNNbguJQfC6NJ", + "QmVxjqapGPZ6bgjCcDEAg5Ho9HnYR6fpfdmX26xLfbUW87", + "QmTwRS22WwBjMJ72wta9KyRMBqi9M52qX9JAy9w78udkDr", + "QmWTXz5ouAHnK8n3chqsQcb8UWAiukXwYUmZkL3o63UocB", + "QmW5agrTYduZaySnYYWHuDy4mcnodEARGb3ATgbuCcgv2E", + "QmP6HK8YFi5pb29tjzUKnXwjCyygbHywQPNfBSKwmtYpXm", + "QmQfb4ocAx4A8989Ch9LhMtwWNd9DaXNncdgg7sjrCJ3nX", + "QmVBUJ7RmQKx3GnRYHWPTJVpffoKy84pQGu4Hk8HVJa2RE", + "QmNPt9oexFooTAU8h8agTNV8r5dtkq81JvwoMqkJVvWH1w", + "QmYjvpjzyAFoeJzvdGYB1zGnWmo7tAGwCqxdjWpQQpGwfQ", + "QmVko47Yw7z7qsfaY7vnVtrGBTLsR4p5EMQ9mfmwds7NRc", + "QmaZfcsbJQAFsSVJjQBtQfCEUZyM3bA7K4iDMen91J8pzi", + "QmU9aEgy6RJKYyEiDsSXSJUt9uroM8P3N9rPU55sABJAS8", + "QmbBDgHcixKvcx3gWQXXTZFMznQuuk1PQEpd2V7SPvLhCb", + "QmSDM53haYzNkymAFbaybnx8FiaY7iUN2roVVeGZqfPuZN" + ] + } + }, + "taco": { + "name": "Taconomics", + "network": "1", + "symbol": "TACO", + "skin": "aave", + "domain": "vote.taconomics.io", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x00d1793d7c3aae506257ba985b34c76aaf642557", + "symbol": "TACO", + "decimals": 18 + } + } + ], + "members": [ + "0x82e56e4c3F198CdaA60FFBa3fDFbf4Ccc33E7051" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "tballiance": { + "name": "Tballiance", + "network": "42", + "symbol": "TBA", + "skin": "tballiance", + "domain": "tbavote.joyso.io", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x0E372DE03222B5636209B05f5b4A0Ec2460EE503", + "symbol": "TBA", + "decimals": 18 + } + } + ], + "members": [ + "0xE65AcF2EF9Ed393a8d0dDc677ca312Ba0399aEbD" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "tenspeed": { + "name": "TenSpeed", + "network": "1", + "symbol": "TENS", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796", + "symbol": "TENS", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "thelao": { + "name": "The LAO", + "network": "1", + "symbol": "LAO", + "skin": "thelao", + "strategies": [ + { + "name": "moloch", + "params": { + "address": "0x8f56682a50becb1df2fb8136954f2062871bc7fc", + "symbol": "LAO", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "thirm": { + "name": "Thirm", + "network": "1", + "symbol": "THIRM", + "skin": "thirm", + "domain": "dao.thirm.com", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xb526fd41360c98929006f3bdcbd16d55de4b0069", + "symbol": "THIRM", + "decimals": 18 + } + } + ], + "members": [ + "0xa34ef48b73870fa2aca1558239576ccbc60ad542" + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "toast": { + "name": "Toast.finance", + "network": "1", + "symbol": "HOUSE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xD82b34c04C182f337F050D4CdF9bAFa334e12a1A", + "symbol": "HOUSE", + "decimals": 0 + } + } + ], + "members": [ + "0x6cef9EcD79e87F8a88143eE9b464119bB296dA8b" + ], + "filters": { + "defaultTab": "all", + "minScore": 1, + "invalids": [ + "QmdZmo5G1fE6aS6fMbn5aKoooBRuGxm3wCPkCp5wBvMhG3", + "QmWXZAyuwzk5KyLmrfmSUF674wWkeqTFjG1qEyT5XTi5no", + "QmXjNuSA7W4LqbwDm3RmcoxXwasYtk2twDuJFhvzSWB29b", + "QmUkAhizp3V9whfQB1SkEgmxBdNzzzApwyZgSagdUuR717", + "QmdYEH5ZSeVktPdnpAJ4x2tVqGTNeRJitADEc6TKrRB45g" + ] + } + }, + "ton": { + "name": "TONCommunity.org", + "network": "1", + "symbol": "TON", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a", + "symbol": "TON", + "decimals": 18 + } + } + ], + "members": [ + "0x45Fc61A99e47d2DF0DB946377f2a54c53c47faba", + "0x7EF08DF99a2304cf3EC72e3eaEBc464Aee249DA6" + ], + "filters": { + "defaultTab": "ALL", + "minScore": 0 + } + }, + "trias": { + "name": "Trias", + "network": "1", + "symbol": "TRIAS", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xe431a4c5db8b73c773e06cf2587da1eb53c41373", + "symbol": "TRIAS", + "decimals": 18 + } + } + ], + "members": [ + "0x3ea5e18556edefff8b791fcc04f3e346584a3409" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "tripscommunity": { + "name": "Trips", + "network": "1", + "symbol": "TRIPS", + "skin": "tripscommunity", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x1350fbe8ce27762ec19134bf8fc405a427fe9bf1", + "symbol": "TRIPS", + "decimals": 18 + } + } + ], + "members": [ + "0xce73904422880604e78591fD6c758B0D5106dD50" + ], + "filters": { + "defaultTab": "core", + "minScore": 100, + "invalids": [ + "QmebhSMNjHhoCJGKBrZeC4Y5aLok1NybTXThG9JgEgJLtE", + "QmY6C3qaLBCEyrfi1XxvNGtsYH38VKdgyFGvv2zPXSA59n", + "Qmc9eKGWQDGkJXfxc3vbpPCHp1Z1CVTgn7Pby4X1FgU6Uk", + "Qmc1Pw8a8SHvg39uPG5WPet4WqHqRu9J38hGg4UsoKn4RA", + "Qmb2iXPwCLHAiZrKcQxT3gGjQVBoMDUgXZzVpJqBZNCMUo" + ] + } + }, + "trustwallet": { + "name": "Trust Wallet", + "network": "56", + "symbol": "TWT", + "skin": "trustwallet", + "domain": "governance.trustwallet.com", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x4b0f1812e5df2a09796481ff14017e6005508003", + "symbol": "TWT", + "decimals": 18 + } + } + ], + "members": [ + "0xb2Df0829ff3E1F0D9ecfB2B4784c00BB09f3D1cd", + "0xF4c5acD9fDf8E6bCb285D60C4B083f8A02e7816a" + ], + "filters": { + "defaultTab": "core", + "minScore": 1000000, + "invalids": [ + "QmYnwRRFPAMobxG82JeBKNKCTs267tkzebb7JGuH7HJkDP", + "QmQML6MUf5w5KLw7PeDQpioeLQYeZiSc7Ct4tEP1rqQtT6", + "QmPxDMtwNbNUmoQPX8RJKAaKb5PqCfFBSHg774c1kxAArw", + "QmWtiztDHr7pKNvSk4Gxjrfogj3gWJDm5NfViMCC4y8udc" + ] + } + }, + "ulu": { + "name": "Ulu", + "network": "1", + "symbol": "ULU", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4", + "symbol": "ULU", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "unicore": { + "name": "UniCore", + "network": "1", + "symbol": "UNICORE", + "skin": "unicore", + "domain": "vote.uvault.finance", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x5506861bbb104Baa8d8575e88E22084627B192D8", + "symbol": "UNICORE", + "decimals": 18 + } + } + ], + "members": [ + "0x688C3eE6E470b63a4Edfc9A798908b473B5CaA93", + "0x58071aeb3e5550A9359efBff98b7eCF59057799d", + "0x05957F3344255fDC9fE172E30016ee148D684313" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "uniswap": { + "name": "Uniswap", + "network": "1", + "symbol": "UNI", + "skin": "uniswap", + "about": "Only delegated UNI may be used to vote on proposals. You can delegate to yourself or another address here: https://app.uniswap.org/#/vote", + "location": "Ethereum", + "website": "https://uniswap.org", + "twitter": "uniswap", + "github": "Uniswap", + "email": "contact@uniswap.org", + "strategies": [ + { + "name": "uni", + "params": { + "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "symbol": "UNI", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1000 + } + }, + "wage": { + "name": "Wage.Money", + "network": "1", + "symbol": "$WAGE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xBebac860Dc2d572AD5e160d5d8368f8e95f85167", + "symbol": "$WAGE", + "decimals": 18 + } + } + ], + "members": [ + "0xA241FC0Dde7ff083C7b3d68bB8fCe593Acf4A960" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "weenus": { + "name": "WEENUS", + "network": "4", + "symbol": "WEENUS", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xaFF4481D10270F50f203E0763e2597776068CBc5", + "symbol": "WEENUS", + "decimals": 18 + } + }, + { + "name": "delegation", + "params": { + "symbol": "WEENUS (delegated)", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xaFF4481D10270F50f203E0763e2597776068CBc5", + "decimals": 18 + } + } + ] + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + }, + "plugins": { + "daoModule": { + "address": "0x5CC00E150CbFB64039Bdd076911ff0a81180F1b3" + } + } + }, + "weth": { + "name": "WETH", + "network": "1", + "symbol": "WETH", + "skin": "eth", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "symbol": "WETH", + "decimals": 18 + } + }, + { + "name": "erc20-balance-of-delegation", + "params": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "symbol": "WETH (delegated)", + "decimals": 18 + } + } + ] + }, + "weth-rinkeby": { + "name": "WETH Kovan", + "network": "42", + "symbol": "WETH", + "skin": "eth", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xd0a1e359811322d97991e03f863a0c30c2cf029c", + "symbol": "WETH", + "decimals": 18 + } + }, + { + "name": "erc20-balance-of-delegation", + "params": { + "address": "0xd0a1e359811322d97991e03f863a0c30c2cf029c", + "symbol": "WETH (delegated)", + "decimals": 18 + } + } + ] + }, + "wolfage": { + "name": "wolfage.finance", + "network": "1", + "symbol": "WEFI", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x31735f0292D42801dce3b0f83B0d9A09bFf75b07", + "symbol": "WEFI", + "decimals": 18 + } + } + ], + "members": [ + "0xAb10b4A7d034b4038A838Dbd0Dd04cc86B12e9a8" + ], + "filters": { + "defaultTab": "all", + "minScore": 1, + "invalids": [ + "QmPLF1dFZdma8TfQ7ysJUm8tS6Q5NCyFGpcWokadqh87jz", + "QmXtiWk4o9Dwhe1GKDdqLRGfkSFRPJRyZhBYnS7zHh5Wvd" + ] + } + }, + "wolfdefi": { + "name": "WolfDeFi", + "network": "4", + "symbol": "WOLF", + "skin": "wolfdefi", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x4193f0e524B396E6291461c58948Ab48B2B8e52a", + "symbol": "WOLF", + "decimals": 18 + } + } + ], + "members": [ + "0x8e9d312F6E0B3F511bb435AC289F2Fd6cf1F9C81", + "0x211ab65b1638ed6B820867035F82D0Ea180DdD59", + "0x5f8ddbae96fe224e21453C8eBd40EB652883823f", + "0xb6b7c3C5Bc1c76c9E3447e37C395c6a7863E10Fb" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "xfinance": { + "name": "xfinance", + "network": "1", + "symbol": "XFI", + "skin": "aave", + "domain": "gov.xfinance.io", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x5BEfBB272290dD5b8521D4a938f6c4757742c430", + "symbol": "XFI", + "decimals": 18 + } + } + ], + "members": [ + "0xF104f1d4F71920334DC765aD2194B8F450567DF2" + ], + "filters": { + "defaultTab": "all", + "minScore": 20 + } + }, + "y3d": { + "name": "Y3D", + "network": "1", + "symbol": "Y3D", + "skin": "y3d", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xc7fd9ae2cf8542d71186877e21107e1f3a0b55ef", + "symbol": "Y3D", + "decimals": 18 + } + } + ], + "members": [ + "0xa03239b8C59Df2C79665D8cfbf3A6C1a9B2e5668", + "0x6465F1250c9fe162602Db83791Fc3Fb202D70a7B", + "0xB4E597e34E3eC254e9e4795ECF1A31b9Fa1e40F4" + ], + "filters": { + "defaultTab": "core", + "minScore": 0.01 + } + }, + "yakuza": { + "name": "Yakuza", + "network": "1", + "symbol": "YKZ", + "skin": "yakuza", + "domain": "vote.ykz.network", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x87047986e8e4961c11d2edcd94285e3a1331d97b", + "symbol": "YKZ", + "decimals": 18 + } + } + ], + "members": [ + "0x69eF61AFc3AA356e1ac97347119d75cBdAbEF534" + ], + "filters": { + "defaultTab": "all", + "minScore": 1, + "invalids": [ + "QmdxrApBvuX55gZ8YXhMWycBurRZmK7erWvZeenusuSnAF" + ] + } + }, + "yaxis": { + "name": "yAxis", + "network": "1", + "symbol": "YAX", + "skin": "yaxis", + "domain": "gov.yaxis.io", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x162c07f7076b5287cf1d599972c480c51ae00743", + "symbol": "YAX VP", + "decimals": 18 + } + } + ], + "members": [ + "0x98d81E1C858B3cab59AaeDcb3eE0d98dED4a8195", + "0x4A1D8566cf32173ae8093b5024Ed3f643A00E22E", + "0x6F3FBBd7A55981c386A638648706B6D08b34De4E", + "0x1E1F235dCC97c71cd1A1b7D8e856a9FD2c7f9137", + "0x26d9E5f37f3232ec8747803990fFC42BC17aC9bd", + "0xbE84E63118fD55DE42236a68721845C8bc075076" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "yearn": { + "name": "yearn.finance (archive)", + "network": "1", + "symbol": "YFI", + "skin": "yearn", + "domain": "yearn.snapshot.page", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xBa37B002AbaFDd8E89a1995dA52740bbC013D992", + "symbol": "YFI", + "decimals": 18 + } + }, + { + "name": "yearn-vault", + "params": { + "address": "0xBA2E7Fed597fd0E3e70f5130BcDbbFE06bB94fe1", + "symbol": "YFI (yYFI)", + "decimals": 18 + } + }, + { + "name": "delegation", + "params": { + "symbol": "YFI (delegated)", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xBa37B002AbaFDd8E89a1995dA52740bbC013D992", + "decimals": 18 + } + }, + { + "name": "yearn-vault", + "params": { + "address": "0xBA2E7Fed597fd0E3e70f5130BcDbbFE06bB94fe1", + "decimals": 18 + } + } + ] + } + } + ], + "members": [ + "0x24A12Fa313F57aF541d447c594072A992c605DCf", + "0x8BBE4Ac64246d600BC2889ef5d83809D138F03DF", + "0xeF8305E140ac520225DAf050e2f71d5fBcC543e7", + "0x107174D70b33523E83711EA4C3F4229cdB8A7Cb1", + "0x0b21Dbc34A953a35dFA629ad31e1cEE3dE0433Fb", + "0x7A1057E6e9093DA9C1D4C1D049609B6889fC4c67", + "0x29C4dbC1a81d06c9AA2fAed93Bb8B4a78F3eabDb", + "0x0Cec743b8CE4Ef8802cAc0e5df18a180ed8402A7" + ], + "filters": { + "defaultTab": "all", + "minScore": 1, + "invalids": [ + "QmaCQEb57nUTsezKa8dsm369exVwMKhXVLTwcsG3XSYkKY" + ] + } + }, + "yeld": { + "name": "Yeld", + "network": "1", + "symbol": "YELD", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x468ab3b1f63A1C14b361bC367c3cC92277588Da1", + "symbol": "YELD", + "decimals": 18 + } + } + ], + "members": [ + "0xc6e3977472f88e45C8A8B796fB15dC115866f6a4" + ], + "filters": { + "defaultTab": "core", + "minScore": 10 + } + }, + "yfarm": { + "name": "YFARM", + "network": "1", + "symbol": "YFARM", + "skin": "yfarm", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1", + "symbol": "YFARM", + "decimals": 18 + } + } + ], + "members": [ + "0xf5d0fefaab749d8b14c27f0de60cc6e9e7f848d1" + ], + "filters": { + "defaultTab": "All", + "minScore": 5000 + } + }, + "yfbeta": { + "name": "yfBeta", + "network": "1", + "symbol": "YFBETA", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x89ee58af4871b474c30001982c3d7439c933c838", + "symbol": "YFBETA", + "decimals": 18 + } + } + ], + "members": [ + "0xbBa1b7890D6FAf87Db273544fd4CeFBe448285dD", + "0x056590F16D5b314a132BbCFb1283fEc5D5C6E670", + "0x364D9f3D68D75c1F7f79F3648b634981EAF6B814", + "0xF3dca43787d77f846974BE7d75BAeE8AaB856A39", + "0x1dADA6bf2CE25bF88308feb566ebad34bD24Cf45", + "0x67a49d4eC0E845F889e8AFE9f1934e78C8eA8C83" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "yffs": { + "name": "YFFS.FINANCE", + "network": "1", + "symbol": "YFFS", + "skin": "yffs", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x90D702f071d2af33032943137AD0aB4280705817", + "symbol": "YFFS", + "decimals": 18 + } + } + ], + "members": [ + "0x489B689850999F751760a38d03693Bd979C4A690" + ], + "filters": { + "defaultTab": "core", + "minScore": 0 + } + }, + "yflink": { + "name": "YFLink", + "network": "1", + "symbol": "YFL", + "skin": "yflink", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x75D1aA733920b14fC74c9F6e6faB7ac1EcE8482E", + "symbol": "yYFL", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "yieldfarming-insure": { + "name": "yieldfarming.insure", + "network": "1", + "symbol": "SAFE", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x1aa61c196e76805fcbe394ea00e4ffced24fc469", + "symbol": "SAFE", + "decimals": 18 + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "ymen": { + "name": "Y-Men", + "network": "1", + "symbol": "MUTANT", + "skin": "ymen", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0xA663121582725aA0eb8BF20B0F56F1917762e873", + "symbol": "MUTANT", + "decimals": 18 + } + } + ], + "members": [ + "0xf062EC431cF665e7C73E8FEaa62bC67E5a4dDf47" + ], + "filters": { + "defaultTab": "all", + "minScore": 0 + } + }, + "yuan": { + "name": "Yuan Finance", + "network": "1", + "symbol": "YUAN", + "strategies": [ + { + "name": "contract-call", + "params": { + "address": "0x4A3e164684812DfB684AC36457E7fA805087c68E", + "decimals": 24, + "symbol": "YUAN", + "methodABI": { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "balanceOfUnderlying", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } + } + } + ], + "filters": { + "defaultTab": "all", + "minScore": 22400, + "invalids": [] + } + }, + "zeta": { + "name": "ZETA", + "network": "1", + "symbol": "ZETA", + "skin": "zeta", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x6226392cf37FA359Bfa58C9Cb3d66a5f96083eB6", + "symbol": "ZETA", + "decimals": 18 + } + }, + { + "name": "erc20-balance-of", + "params": { + "address": "0x3446598b93A41543a470193D82E8C01a7f131fff", + "symbol": "ZETA (sZETA)", + "decimals": 18 + } + } + ], + "members": [ + "0x17142514BBb117aa14B80e081eC4423770cCB464", + "0x4e353dBDF4703aE9673c3B5894516d119e1afBEd", + "0xB23FaEeb4DE4D76f457cE9A6d25A414c4c46d238" + ], + "filters": { + "defaultTab": "core", + "minScore": 1 + } + }, + "zlot": { + "name": "zlot.finance", + "network": "1", + "symbol": "ZLOT", + "skin": "zlot", + "domain": "vote.zlot.finance", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x7c7b924b4eaed3da875bc792b5c1a0b33d118047", + "symbol": "ZLOT", + "decimals": 18 + } + } + ], + "members": [ + "0x2cDdCbc4305ba08a97A0ddE1AB9F07A6639F124e" + ], + "filters": { + "defaultTab": "all", + "minScore": 1 + } + }, + "zzz-finance": { + "name": "ZZZ.Finance", + "network": "1", + "symbol": "ZZZ", + "strategies": [ + { + "name": "erc20-balance-of", + "params": { + "address": "0x66b3037aa8dd64c3ef1aee13a4d1f2509f672d1c", + "symbol": "NAP", + "decimals": 18 + } + }, + { + "name": "erc20-balance-of-coeff", + "params": { + "address": "0xc75f15ada581219c95485c578e124df3985e4ce0", + "symbol": "ZZZ", + "decimals": 18, + "coeff": 2000 + } + } + ], + "members": [], + "filters": { + "defaultTab": "all", + "minScore": 20, + "onlyMembers": false, + "invalids": [ + "QmXjbYGmX4A4eoCx1VK2jihTZJ2V7YHkZapkiKfp1KbY1N", + "QmV3jj2np5zNMG18mmo9CCPVjN39byiABzpoucWsCGRi5x", + "QmV7u3iFF1AR3W1fa6rQgfLkbctdRRMkgy8AxfnYoKsKbc", + "QmQ9WpbpXhyBeBtTKENDRKRxgPVQxWb59PXrz39QD9Wi3L", + "QmWCcnASSRi3pSYUjPnFKbtGsUZH8QUwiirxN3Dp1EDZie", + "QmdXypNsVmXViecoyUjSJbeQ4o6yZdLjHBCUc1dHu2F3RZ", + "QmchufYhi7LbLasc4LbdTunBzwjN8u3YFSXKB5yM7H42Na", + "QmSsMqNE5s9WaZAjomDMvSg1mTFiLsuwsiCXpv7DqBAnL8", + "QmcadyTedffaE6CD3mmSwxLrTZVRwXPagBX11YCBuaFLVm", + "QmXTgpVpmVRTPG3GQJPLVRoW2okm3Tvn8RWruswhjXsRCQ", + "QmcDPrao3DakM3xzgEyRV9HVMwibuxuZYZVC7LLWYrkUph", + "QmNm8boPdETD9vB2dyXi93UnA8jw1zRUdU4KcnWmrdBa1D", + "QmWbDRdynXN4xnJiT5Ambp7H19ytSrREiU9qheqktJfhqi", + "QmRx4nppnTyjjVbQqQG5e9ZNsu7XPE6b7ypHvgRHTRTKkj", + "QmXJjL3ig9GGNDWxqPUnQGfhMeWVuVmR8dqgtUaaV49Dwz", + "QmZDRkFPCjrt4LverzFgjkb2hbpKuRsYdtF9sm8GKhH8nr", + "QmZK8oMK3am1psmFsQV6MNRdTkmmeqaLD6GKP2X2ZodPeP" + ] + } + } +} diff --git a/spaces/lexdao/index.json b/spaces/lexdao/index.json deleted file mode 100644 index 3dd2b526ef..0000000000 --- a/spaces/lexdao/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "lexdao", - "name": "LexDAO", - "chainId": 1, - "decimals": 18, - "symbol": "MYSTIC", - "defaultView": "all", - "address": "0x057e820D740D5AAaFfa3c6De08C5c98d990dB00d", - "token": "0x057e820D740D5AAaFfa3c6De08C5c98d990dB00d", - "core": [], - "min": 1000, - "invalid": [] -} diff --git a/spaces/lexdao/logo.png b/spaces/lexdao/logo.png deleted file mode 100644 index 6943187d89..0000000000 Binary files a/spaces/lexdao/logo.png and /dev/null differ diff --git a/spaces/lexdao/skin.scss b/spaces/lexdao/skin.scss deleted file mode 100644 index 2a885de71a..0000000000 --- a/spaces/lexdao/skin.scss +++ /dev/null @@ -1,9 +0,0 @@ -.lexdao { - --primary-color: #000000; - --bg-color: #000000; - --text-color: white; - --link-color: #ad3131; - --heading-color: #ad3131; - --border-color: #D4AF37; - --header-bg: #000000; -} diff --git a/spaces/lexdao/space.png b/spaces/lexdao/space.png deleted file mode 100644 index 6943187d89..0000000000 Binary files a/spaces/lexdao/space.png and /dev/null differ diff --git a/spaces/long/index.json b/spaces/long/index.json deleted file mode 100644 index 060495209a..0000000000 --- a/spaces/long/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "long", - "name": "Long", - "chainId": 1, - "decimals": 18, - "symbol": "LONGPOWER", - "defaultView": "core", - "address": "0xf3c13090b8aD08d8EeE1C3fd224E034f1F44820c", - "token": "0xf3c13090b8aD08d8EeE1C3fd224E034f1F44820c", - "core": [ - "0x0AF72515C8E832f079A628e6744faae20846c6C3" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/long/logo.png b/spaces/long/logo.png deleted file mode 100644 index 8d198c5ce9..0000000000 Binary files a/spaces/long/logo.png and /dev/null differ diff --git a/spaces/long/space.png b/spaces/long/space.png deleted file mode 100644 index 8d198c5ce9..0000000000 Binary files a/spaces/long/space.png and /dev/null differ diff --git a/spaces/maker/index.json b/spaces/maker/index.json deleted file mode 100644 index fff3c0cbb2..0000000000 --- a/spaces/maker/index.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "key": "maker", - "name": "MakerDAO", - "chainId": 1, - "decimals": 18, - "symbol": "MKR", - "defaultView": "all", - "address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", - "token": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", - "core": [], - "min": 0, - "invalid": [], - "strategies": [ - ["erc20-balance-of", { - "address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", - "symbol": "MKR", - "decimals": 18 - }], - ["maker-ds-chief", { - "symbol": "MKR DSChief", - "decimals": 18 - }] - ] -} diff --git a/spaces/maker/logo.png b/spaces/maker/logo.png deleted file mode 100644 index 7b7d27e420..0000000000 Binary files a/spaces/maker/logo.png and /dev/null differ diff --git a/spaces/maker/logo1.png b/spaces/maker/logo1.png deleted file mode 100644 index 7b7d27e420..0000000000 Binary files a/spaces/maker/logo1.png and /dev/null differ diff --git a/spaces/maker/space.png b/spaces/maker/space.png deleted file mode 100644 index 7b7d27e420..0000000000 Binary files a/spaces/maker/space.png and /dev/null differ diff --git a/spaces/momentum/index.json b/spaces/momentum/index.json deleted file mode 100644 index d38321fcf0..0000000000 --- a/spaces/momentum/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "momentum", - "name": "Momentum", - "chainId": 1, - "decimals": 10, - "symbol": "XMM", - "defaultView": "core", - "address": "0x9a7a4c141a3bcce4a31e42c1192ac6add35069b4", - "token": "0x9a7a4c141a3bcce4a31e42c1192ac6add35069b4", - "core": [ - "0xeF8305E140ac520225DAf050e2f71d5fBcC543e7" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/momentum/logo.png b/spaces/momentum/logo.png deleted file mode 100644 index 79e91d5a66..0000000000 Binary files a/spaces/momentum/logo.png and /dev/null differ diff --git a/spaces/momentum/space.png b/spaces/momentum/space.png deleted file mode 100644 index 79e91d5a66..0000000000 Binary files a/spaces/momentum/space.png and /dev/null differ diff --git a/spaces/mybit/index.json b/spaces/mybit/index.json deleted file mode 100644 index 95c90b105e..0000000000 --- a/spaces/mybit/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "mybit", - "name": "MyBit", - "chainId": 1, - "decimals": 18, - "symbol": "MYB", - "defaultView": "core", - "address": "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc", - "token": "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc", - "core": [ - "0x2B50d53c2d10954aEA741ae61001c3fb77717e5e" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/mybit/logo.png b/spaces/mybit/logo.png deleted file mode 100644 index e161a8afdf..0000000000 Binary files a/spaces/mybit/logo.png and /dev/null differ diff --git a/spaces/mybit/space.png b/spaces/mybit/space.png deleted file mode 100644 index e161a8afdf..0000000000 Binary files a/spaces/mybit/space.png and /dev/null differ diff --git a/spaces/nft/index.json b/spaces/nft/index.json deleted file mode 100644 index efd01f6f08..0000000000 --- a/spaces/nft/index.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "key": "nft", - "name": "NFT Protocol", - "chainId": 1, - "decimals": 18, - "symbol": "NFT", - "defaultView": "core", - "address": "0xcB8d1260F9c92A3A545d409466280fFdD7AF7042", - "token": "0xcB8d1260F9c92A3A545d409466280fFdD7AF7042", - "core": [ - "0x2FFBE7Cb6b8e3bA6B621242612685dAA687C03D5", - "0x1024E993f717a19B0b7131546b1996D65338e8E8" - ], - "min": 100, - "invalid": [ - "QmXAZP8tYwX2zZz5EzfxLZUYJt6TM9EmxY1L4qodhZ5zcZ" - ] -} diff --git a/spaces/nft/logo.png b/spaces/nft/logo.png deleted file mode 100644 index 016a01b6c8..0000000000 Binary files a/spaces/nft/logo.png and /dev/null differ diff --git a/spaces/nft/space.png b/spaces/nft/space.png deleted file mode 100644 index 016a01b6c8..0000000000 Binary files a/spaces/nft/space.png and /dev/null differ diff --git a/spaces/octofi/index.json b/spaces/octofi/index.json deleted file mode 100644 index 4f127002db..0000000000 --- a/spaces/octofi/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "octofi", - "name": "OctoFi", - "chainId": 1, - "decimals": 18, - "symbol": "OCTO", - "defaultView": "all", - "address": "0x7240ac91f01233baaf8b064248e80feaa5912ba3", - "token": "0x7240ac91f01233baaf8b064248e80feaa5912ba3", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/octofi/logo.png b/spaces/octofi/logo.png deleted file mode 100644 index c6d65836a2..0000000000 Binary files a/spaces/octofi/logo.png and /dev/null differ diff --git a/spaces/octofi/space.png b/spaces/octofi/space.png deleted file mode 100644 index c6d65836a2..0000000000 Binary files a/spaces/octofi/space.png and /dev/null differ diff --git a/spaces/pickle/index.json b/spaces/pickle/index.json deleted file mode 100644 index a54a82ec33..0000000000 --- a/spaces/pickle/index.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "key": "pickle", - "name": "PICKLE", - "chainId": 1, - "decimals": 9, - "symbol": "PICKLE C", - "defaultView": "core", - "address": "0x47b7b0983bf3b1d8d5b773006809edcb208af191", - "token": "0x47b7b0983bf3b1d8d5b773006809edcb208af191", - "core": [ - "0x907D9B32654B8D43e8737E0291Ad9bfcce01DAD6", - "0xeb8eFA8CAD41e89986aEF7E896A06fB2f1f7e932", - "0x821880a3E2bac432d67E5155e72BB655Ef65fa5E", - "0x5898Dc88E6f1BD8247f5e1E0E3eFf7231c143d10" - ], - "min": 0, - "invalid": [ - "QmUMiFfgY2ML4RpwP35eESUxc7G1hYAQnWDn4mKwsFv3ph", - "QmWFYq3fMvEge3XeukwEBedYXFQ7yxBhF7hs1zLP9o6gu6" - ] -} diff --git a/spaces/pickle/logo.png b/spaces/pickle/logo.png deleted file mode 100644 index 69d260ca46..0000000000 Binary files a/spaces/pickle/logo.png and /dev/null differ diff --git a/spaces/pickle/space.png b/spaces/pickle/space.png deleted file mode 100644 index 69d260ca46..0000000000 Binary files a/spaces/pickle/space.png and /dev/null differ diff --git a/spaces/piedao/index.json b/spaces/piedao/index.json deleted file mode 100644 index 2b82983123..0000000000 --- a/spaces/piedao/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "piedao", - "name": "PieDAO", - "chainId": 1, - "decimals": 18, - "symbol": "DOUGH", - "defaultView": "all", - "address": "0xad32A8e6220741182940c5aBF610bDE99E737b2D", - "token": "0xad32A8e6220741182940c5aBF610bDE99E737b2D", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/piedao/logo.png b/spaces/piedao/logo.png deleted file mode 100644 index 6d23bf4052..0000000000 Binary files a/spaces/piedao/logo.png and /dev/null differ diff --git a/spaces/piedao/space.png b/spaces/piedao/space.png deleted file mode 100644 index 6d23bf4052..0000000000 Binary files a/spaces/piedao/space.png and /dev/null differ diff --git a/spaces/pillar/index.json b/spaces/pillar/index.json deleted file mode 100644 index 1d4aca5f2e..0000000000 --- a/spaces/pillar/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "pillar", - "name": "Pillar", - "chainId": 1, - "decimals": 18, - "symbol": "PLR", - "defaultView": "all", - "address": "0xe3818504c1b32bf1557b16c238b2e01fd3149c17", - "token": "0xe3818504c1b32bf1557b16c238b2e01fd3149c17", - "core": [ - "0x2Abdb157b2603e17d531d4fc51a4fc6174c3dAEA" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/pillar/logo.png b/spaces/pillar/logo.png deleted file mode 100644 index 9bb96cb02f..0000000000 Binary files a/spaces/pillar/logo.png and /dev/null differ diff --git a/spaces/pillar/space.png b/spaces/pillar/space.png deleted file mode 100644 index 9bb96cb02f..0000000000 Binary files a/spaces/pillar/space.png and /dev/null differ diff --git a/spaces/raid-guild/index.json b/spaces/raid-guild/index.json deleted file mode 100644 index d355c70f74..0000000000 --- a/spaces/raid-guild/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "raid-guild", - "name": "Raid Guild", - "chainId": 1, - "decimals": 0, - "symbol": "RAID", - "defaultView": "all", - "address": "0x4BBC860B82E70CB7af1FD50dEBB0143E0F53e016", - "token": "0x4BBC860B82E70CB7af1FD50dEBB0143E0F53e016", - "core": [], - "min": 1, - "invalid": [] -} diff --git a/spaces/raid-guild/logo.png b/spaces/raid-guild/logo.png deleted file mode 100644 index d56c768a45..0000000000 Binary files a/spaces/raid-guild/logo.png and /dev/null differ diff --git a/spaces/raid-guild/space.png b/spaces/raid-guild/space.png deleted file mode 100644 index d56c768a45..0000000000 Binary files a/spaces/raid-guild/space.png and /dev/null differ diff --git a/spaces/rarible/index.json b/spaces/rarible/index.json deleted file mode 100644 index 08febcccf6..0000000000 --- a/spaces/rarible/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "rarible", - "name": "Rarible", - "chainId": 1, - "decimals": 18, - "symbol": "RARI", - "defaultView": "core", - "address": "0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF", - "token": "0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF", - "core": [ - "0xd2E34Eb34413eD691CEd0ED2d4746fE9158F78B7" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/rarible/logo.png b/spaces/rarible/logo.png deleted file mode 100644 index 8b75bda4c9..0000000000 Binary files a/spaces/rarible/logo.png and /dev/null differ diff --git a/spaces/rarible/space.png b/spaces/rarible/space.png deleted file mode 100644 index 8b75bda4c9..0000000000 Binary files a/spaces/rarible/space.png and /dev/null differ diff --git a/spaces/safe/index.json b/spaces/safe/index.json deleted file mode 100644 index efd0a7f8fd..0000000000 --- a/spaces/safe/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "safe", - "name": "SAFE", - "chainId": 1, - "decimals": 18, - "symbol": "SAFE", - "defaultView": "core", - "address": "0x1Aa61c196E76805fcBe394eA00e4fFCEd24FC469", - "token": "0x1Aa61c196E76805fcBe394eA00e4fFCEd24FC469", - "core": [ - "0x2f80E5163A7A774038753593010173322eA6f9fe" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/safe/logo.png b/spaces/safe/logo.png deleted file mode 100644 index ce2418ada7..0000000000 Binary files a/spaces/safe/logo.png and /dev/null differ diff --git a/spaces/safe/space.png b/spaces/safe/space.png deleted file mode 100644 index ce2418ada7..0000000000 Binary files a/spaces/safe/space.png and /dev/null differ diff --git a/spaces/sake/index.json b/spaces/sake/index.json deleted file mode 100644 index cad837b85f..0000000000 --- a/spaces/sake/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "sake", - "name": "Sake Swap", - "chainId": 1, - "decimals": 18, - "symbol": "SAKE", - "defaultView": "core", - "address": "0x066798d9ef0833ccc719076Dab77199eCbd178b0", - "token": "0x066798d9ef0833ccc719076Dab77199eCbd178b0", - "core": [ - "0x142151D3b15b8961F2937Cf7880Bcd10c050800C" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/sake/logo.png b/spaces/sake/logo.png deleted file mode 100644 index ada2ac2177..0000000000 Binary files a/spaces/sake/logo.png and /dev/null differ diff --git a/spaces/sake/space.png b/spaces/sake/space.png deleted file mode 100644 index e0f77fd5b5..0000000000 Binary files a/spaces/sake/space.png and /dev/null differ diff --git a/spaces/self/index.json b/spaces/self/index.json deleted file mode 100644 index 72535012c8..0000000000 --- a/spaces/self/index.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "key": "self", - "name": "Self Token", - "chainId": 1, - "decimals": 18, - "symbol": "SELF", - "defaultView": "core", - "address": "0x67ab11058ef23d0a19178f61a050d3c38f81ae21", - "token": "0x67ab11058ef23d0a19178f61a050d3c38f81ae21", - "core": [ - "0xb78abbb31871ff5a57950ada24fee878c266522d", - "0x96b32b26b92fe8644b5afcd53b154e090119442d", - "0x7d45dc3bb7b7ed12cce17a513aaa7f7a72e83145", - "0x6df4e3d4b4c2818c3f3a33ebf43f93175268104c" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/self/logo.png b/spaces/self/logo.png deleted file mode 100644 index f050d7e04e..0000000000 Binary files a/spaces/self/logo.png and /dev/null differ diff --git a/spaces/self/space.png b/spaces/self/space.png deleted file mode 100644 index f050d7e04e..0000000000 Binary files a/spaces/self/space.png and /dev/null differ diff --git a/spaces/shilldao/index.json b/spaces/shilldao/index.json deleted file mode 100644 index 4725cabd57..0000000000 --- a/spaces/shilldao/index.json +++ /dev/null @@ -1,13 +0,0 @@ - { - "key": "shilldao", - "name": "ShillDAO", - "chainId": 1, - "decimals": 18, - "symbol": "SHILL", - "defaultView": "all", - "address": "0x54c818a55a795493de47620fa08efae74fc48974", - "token": "0x54c818a55a795493de47620fa08efae74fc48974", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/shilldao/logo.png b/spaces/shilldao/logo.png deleted file mode 100644 index b7ed194a9f..0000000000 Binary files a/spaces/shilldao/logo.png and /dev/null differ diff --git a/spaces/shilldao/space.png b/spaces/shilldao/space.png deleted file mode 100644 index b7ed194a9f..0000000000 Binary files a/spaces/shilldao/space.png and /dev/null differ diff --git a/spaces/shrimp/index.json b/spaces/shrimp/index.json deleted file mode 100644 index 5a244f89cb..0000000000 --- a/spaces/shrimp/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "shrimp", - "name": "SHRIMP.FINANCE", - "chainId": 1, - "decimals": 18, - "symbol": "SHRIMP", - "defaultView": "all", - "address": "0x38c4102D11893351cED7eF187fCF43D33eb1aBE6", - "token": "0x38c4102D11893351cED7eF187fCF43D33eb1aBE6", - "core": [ - "0xF5bC663Bca33af81E2fb8f72D24Cad0D14665871" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/shrimp/logo.png b/spaces/shrimp/logo.png deleted file mode 100644 index 0df2a6c581..0000000000 Binary files a/spaces/shrimp/logo.png and /dev/null differ diff --git a/spaces/shrimp/space.png b/spaces/shrimp/space.png deleted file mode 100644 index 0df2a6c581..0000000000 Binary files a/spaces/shrimp/space.png and /dev/null differ diff --git a/spaces/shroom/index.json b/spaces/shroom/index.json deleted file mode 100644 index 7cdad0451f..0000000000 --- a/spaces/shroom/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "shroom", - "name": "shroom.finance", - "chainId": 1, - "decimals": 18, - "symbol": "SHROOM", - "defaultView": "core", - "address": "0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183", - "token": "0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/shroom/logo.png b/spaces/shroom/logo.png deleted file mode 100644 index 2f8334c472..0000000000 Binary files a/spaces/shroom/logo.png and /dev/null differ diff --git a/spaces/shroom/space.png b/spaces/shroom/space.png deleted file mode 100644 index 2f8334c472..0000000000 Binary files a/spaces/shroom/space.png and /dev/null differ diff --git a/spaces/spaghetti/index.json b/spaces/spaghetti/index.json deleted file mode 100644 index b7ca7913b3..0000000000 --- a/spaces/spaghetti/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "spaghetti", - "name": "Spaghetti.Money", - "chainId": 1, - "decimals": 18, - "symbol": "PASTA", - "defaultView": "all", - "address": "0xE54f9E6Ab80ebc28515aF8b8233c1aeE6506a15E", - "token": "0xE54f9E6Ab80ebc28515aF8b8233c1aeE6506a15E", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/spaghetti/logo.png b/spaces/spaghetti/logo.png deleted file mode 100644 index 3725eac942..0000000000 Binary files a/spaces/spaghetti/logo.png and /dev/null differ diff --git a/spaces/spaghetti/space.png b/spaces/spaghetti/space.png deleted file mode 100644 index 3725eac942..0000000000 Binary files a/spaces/spaghetti/space.png and /dev/null differ diff --git a/spaces/status/index.json b/spaces/status/index.json deleted file mode 100644 index f181541774..0000000000 --- a/spaces/status/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "status", - "name": "Status.im", - "chainId": 1, - "decimals": 18, - "symbol": "SNT", - "defaultView": "all", - "address": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E", - "token": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/status/logo.png b/spaces/status/logo.png deleted file mode 100644 index 959655c8af..0000000000 Binary files a/spaces/status/logo.png and /dev/null differ diff --git a/spaces/status/space.png b/spaces/status/space.png deleted file mode 100644 index 959655c8af..0000000000 Binary files a/spaces/status/space.png and /dev/null differ diff --git a/spaces/sushi/index.json b/spaces/sushi/index.json deleted file mode 100644 index d01d80f2df..0000000000 --- a/spaces/sushi/index.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "sushi", - "name": "Sushi", - "chainId": 1, - "decimals": 18, - "symbol": "SUSHIPOWAH", - "defaultView": "core", - "address": "0x598eb12A541AbbdB315045a4eDE8d277f18B8be9", - "token": "0x598eb12A541AbbdB315045a4eDE8d277f18B8be9", - "core": ["0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", "0x30a0911731f6eC80c87C4b99f27c254639A3Abcd"], - "min": 0, - "invalid": [ - "QmZieYbP3Chs1T4hzmZerBXJ9t7P3bJDj3hJDoaPaGrqjL", - "QmZyafpihwgPnhFKj2YNBncCtk6x5rr5zxHdY9cnGGL6EM", - "Qme74uoqAsHU3YSFvAsyCRnMK3VfGnFu7m4VHKXsbKPKtr", - "QmaJFZcHV8ZcU7Ka8pw8L5k6bELN7swA3L61Q7J4VKT81y", - "QmPZySS42gdeQr3hCeXw2TfviSqJVFxEB8KbrXsn6KVQH7" - ] -} diff --git a/spaces/sushi/logo.png b/spaces/sushi/logo.png deleted file mode 100644 index 7d6d879cb3..0000000000 Binary files a/spaces/sushi/logo.png and /dev/null differ diff --git a/spaces/sushi/space.png b/spaces/sushi/space.png deleted file mode 100644 index 7d6d879cb3..0000000000 Binary files a/spaces/sushi/space.png and /dev/null differ diff --git a/spaces/swaphub/index.json b/spaces/swaphub/index.json deleted file mode 100644 index eaa243a459..0000000000 --- a/spaces/swaphub/index.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "swaphub", - "name": "HUB", - "chainId": 1, - "decimals": 18, - "symbol": "HUBDAO", - "defaultView": "core", - "address": "0x2B6da14f488fba03f6CF6E2a6B530d656a963755", - "token": "0x2B6da14f488fba03f6CF6E2a6B530d656a963755", - "core": [ - "0x2274c8C52C698864cA0fe80AaB3CB10799f8c3C7", - "0x019F6B845E10e936f7120C429e71F9d353eaF4FA" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/swaphub/logo.png b/spaces/swaphub/logo.png deleted file mode 100644 index 5d9a810012..0000000000 Binary files a/spaces/swaphub/logo.png and /dev/null differ diff --git a/spaces/swaphub/space.png b/spaces/swaphub/space.png deleted file mode 100644 index 5d9a810012..0000000000 Binary files a/spaces/swaphub/space.png and /dev/null differ diff --git a/spaces/swapx/index.json b/spaces/swapx/index.json deleted file mode 100644 index 5b80f17756..0000000000 --- a/spaces/swapx/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "swapx", - "name": "swapx.org", - "chainId": 1, - "decimals": 18, - "symbol": "SWP", - "defaultView": "core", - "address": "0xDA3145d0A373712E036106FC1fa34b1014807e68", - "token": "0xDA3145d0A373712E036106FC1fa34b1014807e68", - "core": ["0xDeA9390e58473973DAF78EBdD62f5cdDAfDC3808", "0xB5268ca044043aDA659Fdc7Ac4f825C25513818E","0xc1aD7FE67D08a93Ac5f13278086ba72E90EfCD48"], - "min": 1, - "invalid": [] -} diff --git a/spaces/swapx/logo.png b/spaces/swapx/logo.png deleted file mode 100644 index e9afc80cb3..0000000000 Binary files a/spaces/swapx/logo.png and /dev/null differ diff --git a/spaces/swapx/space.png b/spaces/swapx/space.png deleted file mode 100644 index dde86576f8..0000000000 Binary files a/spaces/swapx/space.png and /dev/null differ diff --git a/spaces/swerve/index.json b/spaces/swerve/index.json deleted file mode 100644 index 62e98bf113..0000000000 --- a/spaces/swerve/index.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "key": "swerve", - "name": "Swerve", - "chainId": 1, - "decimals": 18, - "symbol": "SWRV", - "defaultView": "all", - "address": "0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433", - "token": "0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433", - "core": [ - "0x6D3E136698beFEe231cD2E4E94bE0105D62FA01F", - "0xB2C5973EAE6c2a8e5803Aa9A3e0cb177aFE11CDe", - "0xCdF9b411015016E6a4CD16b5445Fa3a51e7e42CF" - ], - "min": 100, - "invalid": [ - "QmTwRS22WwBjMJ72wta9KyRMBqi9M52qX9JAy9w78udkDr", - "QmWTXz5ouAHnK8n3chqsQcb8UWAiukXwYUmZkL3o63UocB", - "QmW5agrTYduZaySnYYWHuDy4mcnodEARGb3ATgbuCcgv2E", - "QmP6HK8YFi5pb29tjzUKnXwjCyygbHywQPNfBSKwmtYpXm", - "QmQfb4ocAx4A8989Ch9LhMtwWNd9DaXNncdgg7sjrCJ3nX", - "QmVBUJ7RmQKx3GnRYHWPTJVpffoKy84pQGu4Hk8HVJa2RE", - "QmNPt9oexFooTAU8h8agTNV8r5dtkq81JvwoMqkJVvWH1w", - "QmYjvpjzyAFoeJzvdGYB1zGnWmo7tAGwCqxdjWpQQpGwfQ", - "QmVko47Yw7z7qsfaY7vnVtrGBTLsR4p5EMQ9mfmwds7NRc", - "QmaZfcsbJQAFsSVJjQBtQfCEUZyM3bA7K4iDMen91J8pzi", - "QmU9aEgy6RJKYyEiDsSXSJUt9uroM8P3N9rPU55sABJAS8", - "QmbBDgHcixKvcx3gWQXXTZFMznQuuk1PQEpd2V7SPvLhCb", - "QmSDM53haYzNkymAFbaybnx8FiaY7iUN2roVVeGZqfPuZN" - ] -} diff --git a/spaces/swerve/logo.png b/spaces/swerve/logo.png deleted file mode 100644 index 42485f43b0..0000000000 Binary files a/spaces/swerve/logo.png and /dev/null differ diff --git a/spaces/swerve/space.png b/spaces/swerve/space.png deleted file mode 100644 index 42485f43b0..0000000000 Binary files a/spaces/swerve/space.png and /dev/null differ diff --git a/spaces/synthetix/index.json b/spaces/synthetix/index.json deleted file mode 100644 index 03cffbdf4f..0000000000 --- a/spaces/synthetix/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "synthetix", - "name": "Synthetix", - "chainId": 1, - "decimals": 18, - "symbol": "SNX", - "defaultView": "all", - "address": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", - "token": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/synthetix/logo.png b/spaces/synthetix/logo.png deleted file mode 100644 index 2a850de0af..0000000000 Binary files a/spaces/synthetix/logo.png and /dev/null differ diff --git a/spaces/synthetix/space.png b/spaces/synthetix/space.png deleted file mode 100644 index 2a850de0af..0000000000 Binary files a/spaces/synthetix/space.png and /dev/null differ diff --git a/spaces/toast/index.json b/spaces/toast/index.json deleted file mode 100644 index ea25813ed4..0000000000 --- a/spaces/toast/index.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "key": "toast", - "name": "Toast.finance", - "chainId": 1, - "decimals": 0, - "symbol": "HOUSE", - "defaultView": "all", - "address": "0xDD0c21B935038ae5904487F843D1498A09C91854", - "token": "0xDD0c21B935038ae5904487F843D1498A09C91854", - "core": [ - "0x6cef9EcD79e87F8a88143eE9b464119bB296dA8b" - ], - "min": 1, - "invalid": [ - "QmdZmo5G1fE6aS6fMbn5aKoooBRuGxm3wCPkCp5wBvMhG3", - "QmWXZAyuwzk5KyLmrfmSUF674wWkeqTFjG1qEyT5XTi5no", - "QmXjNuSA7W4LqbwDm3RmcoxXwasYtk2twDuJFhvzSWB29b", - "QmUkAhizp3V9whfQB1SkEgmxBdNzzzApwyZgSagdUuR717", - "QmdYEH5ZSeVktPdnpAJ4x2tVqGTNeRJitADEc6TKrRB45g" - ] -} diff --git a/spaces/toast/logo.png b/spaces/toast/logo.png deleted file mode 100644 index d18414aa65..0000000000 Binary files a/spaces/toast/logo.png and /dev/null differ diff --git a/spaces/toast/space.png b/spaces/toast/space.png deleted file mode 100644 index d18414aa65..0000000000 Binary files a/spaces/toast/space.png and /dev/null differ diff --git a/spaces/tokens.json b/spaces/tokens.json new file mode 100644 index 0000000000..86c9f191d9 --- /dev/null +++ b/spaces/tokens.json @@ -0,0 +1,156 @@ +{ + "0xAba8cAc6866B83Ae4eec97DD07ED254282f6aD8A": "yamv2", + "0x598eb12A541AbbdB315045a4eDE8d277f18B8be9": "sushipowah", + "0x47b7b0983bf3b1d8d5b773006809edcb208af191": "pickle", + "0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433": "swerve", + "0x26cf82e4ae43d31ea51e72b663d26e26a75af729": "based", + "0xBa37B002AbaFDd8E89a1995dA52740bbC013D992": "yearn", + "0x4b0f1812e5df2a09796481ff14017e6005508003": "trustwallet", + "0x2dbce82984595d977564888e08476053c6dbb0e3": "sushi", + "0x3F382DbD960E3a9bbCeaE22651E88158d2791550": "aavegotchi.eth", + "0xCE92FbAC689710bCa1e1c8DB265e9B06BCB85c08": "dego", + "0x9085738d9a4d9ac5dadfd630ac9090a49d98b72f": "lcore", + "0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF": "rarible", + "0xa5080230d752915F157FABe058d5E37c62947DEB": "rope", + "0x0A291AF57DEb09efd3760B8Ca7167207bcE019d6": "sake", + "0xae8bc96da4f9a9613c323478be181fdb2aa0e1bf": "mstable", + "0x89ee58af4871b474c30001982c3d7439c933c838": "yfbeta", + "0x468ab3b1f63A1C14b361bC367c3cC92277588Da1": "yeld", + "0x1d37986F252d0e349522EA6C3B98Cb935495E63E": "chartex", + "0x1350fbe8ce27762ec19134bf8fc405a427fe9bf1": "tripscommunity", + "0xDD0c21B935038ae5904487F843D1498A09C91854": "toast", + "0x38c4102D11893351cED7eF187fCF43D33eb1aBE6": "shrimp", + "0x7240ac91f01233baaf8b064248e80feaa5912ba3": "octofi", + "0x69692D3345010a207b759a7D1af6fc7F38b35c5E": "chadsvc", + "0x057e820D740D5AAaFfa3c6De08C5c98d990dB00d": "lexdao", + "0x4128fe23Ef23194E00405603c937b19d3e30482C": "percent", + "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83": "dfi", + "0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D": "dollar-protocol", + "0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9": "tokenlon", + "0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183": "shroom", + "0x260e63d91fccc499606bae3fe945c4ed1cf56a56": "moontools", + "0xcB8d1260F9c92A3A545d409466280fFdD7AF7042": "nft", + "0x56687cf29ac9751ce2a4e764680b6ad7e668942e": "jamm", + "0x9257e8c80119fedab64842024ced4113912b0ab1": "cartel", + "0x488E0369f9BC5C40C002eA7c1fe4fd01A198801c": "golff", + "0xad3770d8e35ee5932daf59c6270f09d0f9a93831": "pancake", + "0x1712aad2c773ee04bdc9114b32163c058321cd85": "limitswap", + "0x5f3b5DfEb7B28CDbD7FAba78963EE202a494e2A2": "curve", + "0xd04785c4d8195e4a54d9dec3a9043872875ae9e2": "rotten-swap", + "0x0AaCfbeC6a24756c20D41914F2caba817C0d8521": "yam.eth", + "0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de": "spaceswap", + "0xb526fd41360c98929006f3bdcbd16d55de4b0069": "thirm", + "0xa0246c9032bC3A600820415aE600c6388619A14D": "harvestfi.eth", + "0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1": "yfarm", + "0x2ba592F78dB6436527729929AAf6c908497cB200": "cream-finance.eth", + "0x8f56682a50becb1df2fb8136954f2062871bc7fc": "thelao", + "0x1aa61c196e76805fcbe394ea00e4ffced24fc469": "yieldfarming-insure", + "0x80fB784B7eD66730e8b1DBd9820aFD29931aab03": "aave", + "0xba100000625a3754423978a60c9317c58a424e3D": "balancer", + "0x3e780920601D61cEdb860fe9c4a90c9EA6A35E78": "boosted-finance", + "0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796": "tenspeed", + "0x28cb7e841ee97947a86B06fA4090C8451f64c0be": "yflink", + "0x95845b551302462a6141dd574889EEE1A914438D": "fairswap", + "0x77EC93780e478637ED777D2FB2Dc161048DfE6d8": "domo", + "0xA663121582725aA0eb8BF20B0F56F1917762e873": "ymen", + "0x22222C03318440305aC3e8a7820563d6A9FD777F": "clover", + "0x27054b13b1b798b345b591a4d22e6562d47ea75a": "vote.airswap.eth", + "0x6ce654ac973d326f89f0685e7459542641410ed9": "hubdao", + "0x960b236A07cf122663c4303350609A66A7B288C0": "aragon", + "0x90D702f071d2af33032943137AD0aB4280705817": "yffs", + "0x87047986e8e4961c11d2edcd94285e3a1331d97b": "yakuza", + "0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7": "akropolis.eth", + "0x4de25f080e02e8b3fdd450f0b2b9ed22c7e6cf0a": "captain", + "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F": "synthetix", + "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984": "uniswap", + "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739": "build", + "0x6226392cf37FA359Bfa58C9Cb3d66a5f96083eB6": "zeta", + "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b": "rallygov.eth", + "0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad": "creed", + "0xf6ec87dfe1ed3a7256cc0c38e3c8139103e9af3b": "gene-finance", + "0x30BCd71b8d21FE830e493b30e90befbA29de9114": "penguin-party", + "0x5d762f76b9e91f71cc4f94391bdfe6333db8519c": "iyffinance", + "0x94939D55000B31B7808904a80aA7Bab05eF59Ed6": "jiaozi", + "0x0e4b5a586b9bc8e4197b79b7fbe8b66e5aebf13a": "sake", + "0x89CCE324dE3F212B39d090375b3732A19EC54d30": "seal", + "0xb78b3320493a4efaa1028130c5ba26f0b6085ef8": "dracula", + "0xfb5453340c03db5ade474b27e68b6a9c6b2823eb": "metafactory.eth", + "0x6B175474E89094C44Da98b954EedeAC495271d0F": "dai", + "0xDA3145d0A373712E036106FC1fa34b1014807e68": "swapx", + "0xD85e2772912213e0c584d80B2694c79D6a09E39A": "arckyf", + "0xe6410569602124506658ff992f258616ea2d4a3d": "katana", + "0xA5C5C8Af327248c4c2dce810a3d3Cffb8C4F66ab": "lex", + "0xB987D48Ed8f2C468D52D6405624EADBa5e76d723": "stabilize-governance.eth", + "0x74603e780545d02C4257E7D2BE19c74dE7BE1952": "etgfinance", + "0x31735f0292D42801dce3b0f83B0d9A09bFf75b07": "wolfage", + "alpha-bsc": "alpha-bsc", + "0x5BEfBB272290dD5b8521D4a938f6c4757742c430": "xfinance", + "0xb2d74b7a454eda300c6e633f5b593d128c0c0dcf": "qubcoins", + "0x87b008e57f640d94ee44fd893f0323af933f9195": "coin", + "0x90f62B96a62801488b151fF3c65eaC5Fae21a962": "gem", + "0xe09216f1d343dd39d6aa732a08036fee48555af0": "contribute", + "0x62359ed7505efc61ff1d56fef82158ccaffa23d7": "core", + "0xEc0B6AFb3F9a609CEEd67e2CA551A4c573fd45F7": "daosquare", + "0xc75f15ada581219c95485c578e124df3985e4ce0": "zzz-finance", + "0xF5f8472045c9177B545Ea05fdA73848291a3f8B8": "gmt", + "0xe3818504c1b32bf1557b16c238b2e01fd3149c17": "pillar", + "0xB33FeD44291b302559869DEF4143C8B9D32024AF": "wolfdefi", + "0x5506861bbb104Baa8d8575e88E22084627B192D8": "unicore", + "0xb25FEda5512445Aa4e481Add71731cD0cffF18C1": "sdoge", + "0x8003c49f6ebacddc493ea47cab45e892d1b638a1": "amplegold", + "0x8a6ACA71A218301c7081d4e96D64292D3B275ce0": "s-finance", + "0x53f64be99da00fec224eaf9f8ce2012149d2fc88": "nice", + "0xD82b34c04C182f337F050D4CdF9bAFa334e12a1A": "toast", + "0x09a59b9B677cbAad89cd1ba37ea1d42D3449A6FC": "galaxy", + "0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF": "reb2", + "0x8B4684aFa6CaBa9837F998AdDC16DF02b391C764": "esprezzo", + "0x0E372DE03222B5636209B05f5b4A0Ec2460EE503": "tballiance", + "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4": "ulu", + "0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0": "dforce", + "0x8Ffb89D50eB0b9788f40123Cb3B8b8a84Edb4202": "lao", + "0x807645cfE91423898b2747251affA7141c0fCc22": "achievmintry", + "0xcD4292701995F4707AE63fb1a48d80dB2c5F04D4": "bee2", + "0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B": "finnexus", + "0x3C1EE45e11E90fC20427BE5e6Db5FEe557f1E07f": "sleeping", + "0x14c4d8e57751e083bcd1edcca5b435720166f5e9": "send", + "0x2b7018Fca0eccfBc738828e1E8f1C7038EBBCaa8": "egg", + "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44": "giveth", + "0x00d1793d7c3aae506257ba985b34c76aaf642557": "taco", + "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E": "status", + "0xc7fd9ae2cf8542d71186877e21107e1f3a0b55ef": "y3d", + "0xa1faa113cbE53436Df28FF0aEe54275c13B40975": "alpha-ethereum", + "0xBebac860Dc2d572AD5e160d5d8368f8e95f85167": "wage", + "0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a": "ton", + "0x30B1eFB052205E6CA3c4888C3C50C5b339cc0602": "cargo", + "0x4bebe99fac607dc7ef2d99d352ca18999f51b709": "ourbloc", + "0x6451571Cb5bEe9Fd575ad98506E96f3d09C66F91": "narwhal", + "0x9B44Df3318972bE845d83f961735609137C4C23c": "payrue", + "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14": "bella", + "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc": "mybit", + "0x54c818a55a795493de47620fa08efae74fc48974": "shilldao", + "0x9F59E5Ed123C10D57E92629612511b14628D2799": "web3-api", + "0xbbe319b73744db9d54f5d29df7d8256b7e43995c": "aragonchina", + "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2": "maker", + "0x2B6da14f488fba03f6CF6E2a6B530d656a963755": "swaphub", + "0x35A18000230DA775CAc24873d00Ff85BccdeD550": "cuni", + "0x2216e873ea4282ebef7a02ac5aea220be6391a7c": "smol", + "0x382d04194E3607dab5Ebaa5b9f8011A4c06e8b17": "bake", + "0xBa1A22228B091D2bC6E111df61Ae6f7e5102Da1a": "anjmol", + "0x4BBC860B82E70CB7af1FD50dEBB0143E0F53e016": "raid-guild", + "0xEf9c6629BEd99abCf3937eB0F6d72E5b219035aF": "music", + "0xCCf24F117acce3C138310412da44EA6236dda056": "kmpl", + "0x244bD173a540B5FCEa524E173b3FB6841C20Ab24": "rdao", + "0x748AD98b14C814B28812eB42ad219C8672909879": "dice", + "0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315": "alex", + "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2": "potion", + "0x44E0dDBc407aaA0dd9F99d59605f14D84F663419": "fries", + "0xd41de6a4af5fafa7c9483bdafeb592a626ba7584": "oaklanddao", + "0x84d7fc44e4121adb74ef8d00a0f94cee7880d473": "daniell-mesquita-xdai", + "0x15B3d410fCd0d695E1bbe4F717F8E1B6D0Fb2D0C": "fries", + "0xD46bA6D942050d489DBd938a2C909A5d5039A161": "ampleforth", + "0x4fbb350052bca5417566f188eb2ebce5b19bc964": "rigoblock", + "0xeaccb6E0f24d66cF4Aa6cBDa33971b9231d332a1": "polyient-games-governance", + "0xaea8e1b6cb5c05d1dac618551c76bcd578ea3524": "sogur", + "0x683EcFe5B148c8840998c1B4884F60a8eAD432D1": "d5", + "0xa150db9b1fa65b44799d4dd949d922c0a33ee606": "digital-reserve-currency" +} \ No newline at end of file diff --git a/spaces/ulu/index.json b/spaces/ulu/index.json deleted file mode 100644 index 38195f6f79..0000000000 --- a/spaces/ulu/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "ulu", - "name": "Ulu", - "chainId": 1, - "decimals": 18, - "symbol": "ULU", - "defaultView": "core", - "address": "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4", - "token": "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/ulu/logo.png b/spaces/ulu/logo.png deleted file mode 100644 index 7116ff987c..0000000000 Binary files a/spaces/ulu/logo.png and /dev/null differ diff --git a/spaces/ulu/space.png b/spaces/ulu/space.png deleted file mode 100644 index 7116ff987c..0000000000 Binary files a/spaces/ulu/space.png and /dev/null differ diff --git a/spaces/uma/index.json b/spaces/uma/index.json deleted file mode 100644 index cf1b8a50a3..0000000000 --- a/spaces/uma/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "uma", - "name": "UMA", - "chainId": 1, - "decimals": 18, - "symbol": "UMA", - "defaultView": "all", - "address": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", - "token": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/uma/logo.png b/spaces/uma/logo.png deleted file mode 100644 index 5ab2b18c25..0000000000 Binary files a/spaces/uma/logo.png and /dev/null differ diff --git a/spaces/uma/space.png b/spaces/uma/space.png deleted file mode 100644 index 5ab2b18c25..0000000000 Binary files a/spaces/uma/space.png and /dev/null differ diff --git a/spaces/unidao/index.json b/spaces/unidao/index.json deleted file mode 100644 index 1dde368d71..0000000000 --- a/spaces/unidao/index.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "key": "unidao", - "name": "UniDAO", - "chainId": 1, - "decimals": 18, - "symbol": "MRR", - "defaultView": "all", - "address": "0xC1d204fC521F9e125a55dd8b2152d7344766cC21", - "token": "0xC1d204fC521F9e125a55dd8b2152d7344766cC21", - "core": [ - "0xe5818d70a9b5aed2bfde4e41fbcb07dd80f8fc84", - "0x01e7f16e17c50d070eb66787f25ce3be405d6038", - "0x945294c67752bd0a453975c04e3078c487a858df", - "0xf854049d55535391aa4eaad47350ef7524990427", - "0xd33e60342df0b792f56a8e630989f6bffccd707c", - "0x94aff6c2c005567aa0e2a27f77701bb1b6679b6b" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/unidao/logo.png b/spaces/unidao/logo.png deleted file mode 100644 index 2dfa9b3b28..0000000000 Binary files a/spaces/unidao/logo.png and /dev/null differ diff --git a/spaces/unidao/space.png b/spaces/unidao/space.png deleted file mode 100644 index 2dfa9b3b28..0000000000 Binary files a/spaces/unidao/space.png and /dev/null differ diff --git a/spaces/uniswap/index.json b/spaces/uniswap/index.json deleted file mode 100644 index baab224ecc..0000000000 --- a/spaces/uniswap/index.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "key": "uniswap", - "name": "Uniswap", - "chainId": 1, - "decimals": 18, - "symbol": "UNI", - "defaultView": "all", - "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "token": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "core": [], - "min": 1000, - "invalid": [], - "strategies": [ - ["uni", { - "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "symbol": "UNI", - "decimals": 18 - }] - ] -} diff --git a/spaces/uniswap/logo.png b/spaces/uniswap/logo.png deleted file mode 100644 index 0c85c03ded..0000000000 Binary files a/spaces/uniswap/logo.png and /dev/null differ diff --git a/spaces/uniswap/skin.scss b/spaces/uniswap/skin.scss deleted file mode 100644 index d42d02e45f..0000000000 --- a/spaces/uniswap/skin.scss +++ /dev/null @@ -1,25 +0,0 @@ -.uniswap { - --primary-color: #ff007a; - --bg-color: #FFFFFF; - --text-color: #000000; - --link-color: #565A69; - --heading-color: #ff007a; - --border-color: #FF8CC3; - --header-bg: #FFFFFF; - - --block-bg: transparent; -} - -@media (prefers-color-scheme: dark) { - .uniswap { - --primary-color: #2172E5; - --bg-color: #212429; - --text-color: #FFFFFF; - --link-color: #C3C5CB; - --heading-color: #2172E5; - --border-color: #3680E7; - --header-bg: #212429; - - --block-bg: transparent; - } -} diff --git a/spaces/uniswap/space.png b/spaces/uniswap/space.png deleted file mode 100644 index 0c85c03ded..0000000000 Binary files a/spaces/uniswap/space.png and /dev/null differ diff --git a/spaces/yam/index.json b/spaces/yam/index.json deleted file mode 100644 index 747ec13a49..0000000000 --- a/spaces/yam/index.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "key": "yam", - "name": "Yam Finance", - "chainId": 1, - "decimals": 24, - "symbol": "YAM", - "defaultView": "core", - "address": "0xAba8cAc6866B83Ae4eec97DD07ED254282f6aD8A", - "token": "0xAba8cAc6866B83Ae4eec97DD07ED254282f6aD8A", - "core": [ - "0x683A78bA1f6b25E29fbBC9Cd1BFA29A51520De84" - ], - "min": 100, - "invalid": [ - "QmUbV7sQYep7yZnB3iNZ9ykArsEdBjG1zjXdrYvNkrDSaz", - "QmaZV3xnYuHqyi3oXFfBdV8F4CN7SPUpXUaKVctb22Qee3", - "QmVPZc6Q1HFqiYcMJs8kcsHjNKQarppDjAMozPfsonQ1XE", - "QmNvATiSgHPcLzqA8Mp6JNfu4mxfS9azSvtrQf1SABqHu1", - "QmUQbN5JivkNBiK7NquAJRLU6m6Vd1be3z9vhcNSBxm7bt", - "QmPTK7t8n6xEc4E3g5x33Jmjv6q2CWcLoc3ufmR1NaEiTk", - "Qmcur1jhdiEuzryQvoWfFv5TQsLkDoHaTMqPH8EzVpBoB8", - "QmfXaaDuyfGi5kbDwE5exP3g8was5B2DjnQ4ZmMjMfmPNr", - "Qmek4U45XoQtm2vXA4hG4rB9xHZN9aRHkyd6sijKApiPGP", - "QmPqrLyb1RxHLe9T6XoiAzUDkL8ajZkkkj9PvcrrKTEkEc", - "QmaifNEzQ9F93ivNaZ6SRJei9QHrxoJpUTKucehHSYL7Sx", - "QmQww7LQBqyPotZFe4pKAGo2yLGEtL5Sjb2WzKjzVQKpGe", - "QmQgsKr4yyV9iWKFZhLD1eXWmZkZW5SCMhgZXkmnXoxE8k", - "QmNXZJ2dDDP7meuzQQRnJoQAAFGsyUMzhwuZZwwz6Lw5LB", - "QmVPZc6Q1HFqiYcMJs8kcsHjNKQarppDjAMozPfsonQ1XE", - "QmfNyNy72CTEDZL4d38vxhEcMuoVSPqZYigSWCPShCyXu6", - "QmYGwg7yWJddFb85gdxt16CAeNthVecoYMe18zVFaGuMas", - "QmaaHZwX3VbefNjr51oB3YUCBPUCJE1eatga5AVHygmqDW", - "QmPVbErQ9Au7Q3RJ88FuvjKWgD42FWPJrMpVVuNQvC9PFe", - "QmY1Cpe2NhRSon4iVe8pZBGUg23brFPPyPMeT6gRiFZY3r", - "QmcdFBNaFQ6XPdYoCSHZDvUM3u5bkHTVweRkdBeg6YkkCt", - "QmSHZshfwsvHpLV8ZcMBPB69a5eKKe7yAkqJ4sRBAoWnzK", - "QmVrPxf79DCHBrLiS3G5KS8X5oqwXDq17arLsDdmuCjuwW", - "Qmc2DtjuN1vHthAiiiQwPRYoboPAL3A3wiVS2kpCC6RqRN", - "QmeLDhzXycwe2Rq81g6ry5QNsNh5sYUo3s4sn4ythUS1nD", - "QmWMSzR2q1uGDunRDoD1aQmgb7SFKDbDxie6RoroLgThx8", - "QmR4wBSLPBjHbXBPnqPNg6UUezxDsc1CkTBhC7AzdpppRS", - "QmXqBiYPUH7MY1vvGrpFtZhxsYBZH7qryoVEgWZi6iGjfn", - "QmZMw25zkUjPunrAbNXHjumadHUQpdaNweabJoAuoSSoEy", - "QmT5mL65fGkyrusCqgkFdt3jWygmkwkgRCHaBAaAPp4wEa", - "QmVik1ZErwPt7Cyi8GKeFnyovf9yeM82dGcYjkif2XwRCt", - "QmQ1FmUbTVpFDrbw9aymVvjDocvggeDkDaej1Lios2fxqg", - "QmXxeHtsquFDpWGUYGnbCrn6H6xo1m8RsLWmssg9azp1bn" - ] -} diff --git a/spaces/yam/logo.png b/spaces/yam/logo.png deleted file mode 100644 index 684d706fd0..0000000000 Binary files a/spaces/yam/logo.png and /dev/null differ diff --git a/spaces/yam/space.png b/spaces/yam/space.png deleted file mode 100644 index 684d706fd0..0000000000 Binary files a/spaces/yam/space.png and /dev/null differ diff --git a/spaces/yearn/index.json b/spaces/yearn/index.json deleted file mode 100644 index a2bb366d4e..0000000000 --- a/spaces/yearn/index.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "key": "yearn", - "name": "yearn.finance", - "chainId": 1, - "decimals": 18, - "symbol": "YFI", - "defaultView": "all", - "address": "0xBa37B002AbaFDd8E89a1995dA52740bbC013D992", - "token": "0xBa37B002AbaFDd8E89a1995dA52740bbC013D992", - "core": [ - "0x24A12Fa313F57aF541d447c594072A992c605DCf", - "0x8BBE4Ac64246d600BC2889ef5d83809D138F03DF", - "0xeF8305E140ac520225DAf050e2f71d5fBcC543e7", - "0x107174D70b33523E83711EA4C3F4229cdB8A7Cb1", - "0x0b21Dbc34A953a35dFA629ad31e1cEE3dE0433Fb", - "0x7A1057E6e9093DA9C1D4C1D049609B6889fC4c67", - "0x29C4dbC1a81d06c9AA2fAed93Bb8B4a78F3eabDb" - ], - "min": 1, - "invalid": [] -} diff --git a/spaces/yearn/logo.png b/spaces/yearn/logo.png deleted file mode 100644 index 9c225f4b6c..0000000000 Binary files a/spaces/yearn/logo.png and /dev/null differ diff --git a/spaces/yearn/space.png b/spaces/yearn/space.png deleted file mode 100644 index 9c225f4b6c..0000000000 Binary files a/spaces/yearn/space.png and /dev/null differ diff --git a/spaces/yfbeta/index.json b/spaces/yfbeta/index.json deleted file mode 100644 index 752f040376..0000000000 --- a/spaces/yfbeta/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "yfbeta", - "name": "yfBeta", - "chainId": 1, - "decimals": 18, - "symbol": "YFBETA", - "defaultView": "core", - "address": "0x89ee58af4871b474c30001982c3d7439c933c838", - "token": "0x89ee58af4871b474c30001982c3d7439c933c838", - "core": ["0xbBa1b7890D6FAf87Db273544fd4CeFBe448285dD"], - "min": 0, - "invalid": [] -} diff --git a/spaces/yfbeta/logo.png b/spaces/yfbeta/logo.png deleted file mode 100644 index 666c638e56..0000000000 Binary files a/spaces/yfbeta/logo.png and /dev/null differ diff --git a/spaces/yfbeta/space.png b/spaces/yfbeta/space.png deleted file mode 100644 index e5bd7ec995..0000000000 Binary files a/spaces/yfbeta/space.png and /dev/null differ diff --git a/spaces/yflink/index.json b/spaces/yflink/index.json deleted file mode 100644 index 773916d09e..0000000000 --- a/spaces/yflink/index.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "yflink", - "name": "YFLink", - "chainId": 1, - "decimals": 18, - "symbol": "YFL", - "defaultView": "all", - "address": "0x28cb7e841ee97947a86B06fA4090C8451f64c0be", - "token": "0x28cb7e841ee97947a86B06fA4090C8451f64c0be", - "core": [], - "min": 0, - "invalid": [], - "visible": false -} diff --git a/spaces/yflink/logo.png b/spaces/yflink/logo.png deleted file mode 100644 index f5cccbc84e..0000000000 Binary files a/spaces/yflink/logo.png and /dev/null differ diff --git a/spaces/yflink/space.png b/spaces/yflink/space.png deleted file mode 100644 index f5cccbc84e..0000000000 Binary files a/spaces/yflink/space.png and /dev/null differ diff --git a/spaces/yieldfarming-insure/index.json b/spaces/yieldfarming-insure/index.json deleted file mode 100644 index 238380d40a..0000000000 --- a/spaces/yieldfarming-insure/index.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "yieldfarming-insure", - "name": "yieldfarming.insure", - "chainId": 1, - "decimals": 18, - "symbol": "SAFE", - "defaultView": "all", - "address": "0x1aa61c196e76805fcbe394ea00e4ffced24fc469", - "token": "0x1aa61c196e76805fcbe394ea00e4ffced24fc469", - "core": [], - "min": 0, - "invalid": [] -} diff --git a/spaces/yieldfarming-insure/logo.png b/spaces/yieldfarming-insure/logo.png deleted file mode 100644 index de13932fa5..0000000000 Binary files a/spaces/yieldfarming-insure/logo.png and /dev/null differ diff --git a/spaces/yieldfarming-insure/space.png b/spaces/yieldfarming-insure/space.png deleted file mode 100644 index de13932fa5..0000000000 Binary files a/spaces/yieldfarming-insure/space.png and /dev/null differ diff --git a/spaces/ymen/index.json b/spaces/ymen/index.json deleted file mode 100644 index ecb568ef69..0000000000 --- a/spaces/ymen/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "ymen", - "name": "Y-Men", - "chainId": 1, - "decimals": 18, - "symbol": "MUTANT", - "defaultView": "all", - "address": "0xA663121582725aA0eb8BF20B0F56F1917762e873", - "token": "0xA663121582725aA0eb8BF20B0F56F1917762e873", - "core": [ - "0xf062EC431cF665e7C73E8FEaa62bC67E5a4dDf47" - ], - "min": 0, - "invalid": [] -} diff --git a/spaces/ymen/logo.png b/spaces/ymen/logo.png deleted file mode 100644 index 1331c203b1..0000000000 Binary files a/spaces/ymen/logo.png and /dev/null differ diff --git a/spaces/ymen/space.png b/spaces/ymen/space.png deleted file mode 100644 index 1331c203b1..0000000000 Binary files a/spaces/ymen/space.png and /dev/null differ