Skip to content
  1. Nov 29, 2023
    • Javier Viola's avatar
      feat: add parachains to a running network (#142) · 9ba4b139
      Javier Viola authored
      This pr make possible to add a new parachain to a running network (see
      `add_para.rs` example), for that we allow to create a new parachain
      config (using the same builder but in a different context) like this:
      
      ```rs
      let para_config = network.para_config_builder()
              .with_id(100)
              .with_default_command("polkadot-parachain")
              .with_collator(|c| {
                  c.with_name("col-100-1")
              })
              .build()?;
      ```
      And then deploy that parachain by calling `add_parachain` (the second
      parameter of the fn allow to use a custom chain-spec for the
      relaychain).
      
      ```rs
      network.add_parachain(&para_config, None).await?;
      ```
      
      // TODO:
      - [x] docs
      - [ ] test (integration)
      9ba4b139
  2. Nov 27, 2023
  3. Nov 26, 2023
  4. Nov 24, 2023
  5. Nov 14, 2023
  6. Nov 12, 2023
  7. Nov 09, 2023
  8. Nov 08, 2023
  9. Nov 07, 2023
    • PG Herveou's avatar
      Expose Top level API through zombienet-sdk crate (#126) · 439a8dea
      PG Herveou authored
      Following up on take 1
      https://github.com/paritytech/zombienet-sdk/pull/124
      
      Apart from better logs, I realize that one of the only thing missing now
      for us to start consuming this project is a top level package available
      (with it's dependencies) on crates.io. This PR serves mainly as a
      discussion point to get there.
      It would be great if we could publish an early version (0.0.1?) on
      crates.io so that we can start using this asap.
      439a8dea
  10. Nov 06, 2023
  11. Oct 24, 2023
  12. Oct 20, 2023
    • Loris Moulin's avatar
      Refacto/native provider (#123) · a1b87d6c
      Loris Moulin authored
      - Split native provider into multiple smaller files and each with their
      respective tests
      - Update ProviderNode.command() to ProviderNode.program()
      - Update ProviderNamespace.id() to ProviderNamespace.name()
      a1b87d6c
  13. Oct 11, 2023
  14. Oct 06, 2023
  15. Oct 05, 2023