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