Cardano-wallet local-cluster empty wallets

Hi, I’m trying to run the local-cluster from cardano-wallet to run some tests but after the cluster is running the wallets list is en empty array.

I did clone the repo and install the cluster with:
stack install cardano-wallet:exe:local-cluster then start it with local-cluster. It seems working and I see the logs:

Do I need to wait until some epoch or something in order the wallets show ups, I shouldn’t right?

The network information:

{

  "network_tip": {

    "time": "2021-03-31T01:35:09Z",

    "epoch_number": 42,

    "absolute_slot_number": 2100,

    "slot_number": 0

  },

  "node_era": "mary",

  "node_tip": {

    "height": {

      "quantity": 1002,

      "unit": "block"

    },

    "time": "2021-03-31T01:35:09Z",

    "epoch_number": 42,

    "absolute_slot_number": 2100,

    "slot_number": 0

  },

  "sync_progress": {

    "status": "ready"

  },

  "next_epoch": {

    "epoch_start_time": "2021-03-31T01:35:19Z",

    "epoch_number": 43

  }

}

The pools:

[

  {

    "flags": [],

    "metrics": {

      "saturation": 7.993218220282113e-2,

      "non_myopic_member_rewards": {

        "quantity": 0,

        "unit": "lovelace"

      },

      "produced_blocks": {

        "quantity": 103,

        "unit": "block"

      },

      "relative_stake": {

        "quantity": 2.66,

        "unit": "percent"

      }

    },

    "retirement": {

      "epoch_start_time": "2021-07-24T19:14:49Z",

      "epoch_number": 1000000

    },

    "cost": {

      "quantity": 0,

      "unit": "lovelace"

    },

    "margin": {

      "quantity": 10,

      "unit": "percent"

    },

    "pledge": {

      "quantity": 1000000000000,

      "unit": "lovelace"

    },

    "id": "pool1hvg5evmawhaq2fsr9rprtg76u226x0gt5e62t6c78etgu2j7xtn"

  },

  {

    "flags": [],

    "metrics": {

      "saturation": 4.4736759741790165e-2,

      "non_myopic_member_rewards": {

        "quantity": 0,

        "unit": "lovelace"

      },

      "produced_blocks": {

        "quantity": 62,

        "unit": "block"

      },

      "relative_stake": {

        "quantity": 1.49,

        "unit": "percent"

      }

    },

    "retirement": {

      "epoch_start_time": "2021-04-11T15:14:49Z",

      "epoch_number": 100000

    },

    "cost": {

      "quantity": 0,

      "unit": "lovelace"

    },

    "margin": {

      "quantity": 10,

      "unit": "percent"

    },

    "pledge": {

      "quantity": 1000000000000,

      "unit": "lovelace"

    },

    "id": "pool1k3tk3sdzmf9az04u4g0229qgak33mnppwewvh4q8ek5ly09nqjm"

  },

  {

    "flags": [],

    "metrics": {

      "saturation": 0.13619622545797117,

      "non_myopic_member_rewards": {

        "quantity": 0,

        "unit": "lovelace"

      },

      "produced_blocks": {

        "quantity": 271,

        "unit": "block"

      },

      "relative_stake": {

        "quantity": 4.54,

        "unit": "percent"

      }

    },

    "cost": {

      "quantity": 0,

      "unit": "lovelace"

    },

    "margin": {

      "quantity": 10,

      "unit": "percent"

    },

    "pledge": {

      "quantity": 2000000000000,

      "unit": "lovelace"

    },

    "id": "pool1as50x0wtumtyqzs7tceeh5ry0syh8jnvpnuu9wlxswxuv48sw4w"

  }

]

Here you can find the cluster structure
cluster-structure.pdf (71.1 KB)

You need to create/restore wallets for them to appear in the list…

2 Likes

You need to create/restore wallets for them to appear in the list…

Ok, now I get it, they are in the blockchain I just need to “load” it on cardano-wallet through create/restore endpoint, thanks!

1 Like