1. Jan 06, 2024
  2. 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
  3. Nov 27, 2023
  4. Nov 26, 2023
  5. Nov 24, 2023
  6. Nov 14, 2023
  7. Nov 12, 2023
  8. Nov 09, 2023
  9. Nov 08, 2023
  10. Nov 07, 2023
  11. Nov 06, 2023
  12. Oct 24, 2023
  13. 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
  14. Oct 11, 2023
  15. Oct 06, 2023
  16. Oct 05, 2023