Skip to content
Snippets Groups Projects
  1. Sep 24, 2024
  2. Sep 20, 2024
    • Javier Viola's avatar
      add runtime_upgrade for releaychain (#259) · 6af6177b
      Javier Viola authored
      Added:
        - Helper to perform a runtime upgrade on the relaychain
       
      ```rust
          let wasm = "file_path__or__url_to_*.compact.compressed.wasm";
          network
              .relaychain()
              .runtime_upgrade(RuntimeUpgradeOptions::new(wasm.into()))
              .await?;
      ```
  3. Jun 14, 2024
  4. Jun 10, 2024
  5. Jun 09, 2024
  6. Jun 08, 2024
  7. May 16, 2024
  8. Apr 26, 2024
  9. Apr 15, 2024
  10. Mar 29, 2024
  11. Mar 26, 2024
  12. Mar 07, 2024
  13. Feb 26, 2024
  14. Feb 23, 2024
  15. Feb 21, 2024
  16. Feb 20, 2024
  17. Feb 15, 2024
  18. Feb 13, 2024
    • ordian's avatar
      Some issues spotted (#145) · 465a12f4
      ordian authored
      
      This PR lists some issues and suggested fixes for them (feel free to
      pick them up separately and close this PR):
      
      In addition to issues outlined in
      https://github.com/paritytech/zombienet-sdk/issues/117#issuecomment-1867941395,
      here are some issues spotted when writing
      https://github.com/paritytech/disabling-e2e-tests:
      - runtime genesis patch is applied incorrectly (extra `/genesis` pointer
      shouldn't be added)
      - malus accepts
      [subcommands](https://github.com/paritytech/polkadot-sdk/blob/4c0e0e071355c1048d75fba538c96c35ac743547/polkadot/zombienet_tests/functional/0008-dispute-old-finalized.toml#L25),
      having a command with spaces not supported, so I added a subcommand
      support
      - some types need to be exported in order to be able to reuse
      setup/helper functions across multiple tests
      - test cleanup doesn't always work (zombie polkadot processes - not
      fixed here)
      
      ---------
      
      Co-authored-by: default avatarJavier Viola <363911+pepoviola@users.noreply.github.com>
  19. Nov 27, 2023
  20. Nov 14, 2023
  21. Nov 12, 2023
  22. 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.