Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Move `seeds.pinned` out of network scope
Sebastian Martinez committed 3 years ago
commit c81e2862ab9a165e8d1e6aae73b7ac13115653e6
parent b65399f9b49e63e46a245ea99e3b2fd8696d0bf9
2 files changed +14 -17
modified src/config.json
@@ -26,19 +26,6 @@
    "users": {
      "pinned": ["cloudhead.radicle.eth"]
    },
-
    "seeds": {
-
      "pinned": {
-
        "willow.radicle.garden": {
-
          "emoji": "🪵"
-
        },
-
        "pine.radicle.garden": {
-
          "emoji": "🌲"
-
        },
-
        "maple.radicle.garden": {
-
          "emoji": "🍁"
-
        }
-
      }
-
    },
    "safe": {
      "api": "https://safe-transaction.gnosis.io",
      "viewer": "https://gnosis-safe.io/app/#/safes"
@@ -69,9 +56,6 @@
    "users": {
      "pinned": []
    },
-
    "seeds": {
-
      "pinned": []
-
    },
    "safe": {
      "api": "https://safe-transaction.rinkeby.gnosis.io",
      "viewer": "https://rinkeby.gnosis-safe.io/app/#/safes"
@@ -95,6 +79,19 @@
      "git": { "port": 443 }
    }
  },
+
  "seeds": {
+
    "pinned": {
+
      "willow.radicle.garden": {
+
        "emoji": "🪵"
+
      },
+
      "pine.radicle.garden": {
+
        "emoji": "🌲"
+
      },
+
      "maple.radicle.garden": {
+
        "emoji": "🍁"
+
      }
+
    }
+
  },
  "projects": {
    "pinned": [
      {
modified src/config.ts
@@ -115,7 +115,6 @@ export class Config {
    this.reverseRegistrar = cfg.reverseRegistrar;
    this.orgs = cfg.orgs;
    this.users = cfg.users;
-
    this.seeds = cfg.seeds;
    this.safe = cfg.safe;
    this.safe.client = this.safe.api
      ? new SafeServiceClient(this.safe.api)
@@ -124,6 +123,7 @@ export class Config {
    this.signer = null;
    this.gasLimits = gasLimits;
    this.projects = config.projects;
+
    this.seeds = config.seeds;
    this.abi = config.abi;
    this.ceramic = {
      client: ceramic,