Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Hyperspace mantis #515

Draft
wants to merge 23 commits into
base: hyperspace-solana
Choose a base branch
from
Draft

WIP: Hyperspace mantis #515

wants to merge 23 commits into from

Commits on Sep 4, 2024

  1. Configuration menu
    Copy the full SHA
    d708918 View commit details
    Browse the repository at this point in the history
  2. add cf-solana light-client

    dhruvja committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    6d87ed0 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Configuration menu
    Copy the full SHA
    3ab4a3f View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. setup tests and fix issues

    dhruvja committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    a12f834 View commit details
    Browse the repository at this point in the history
  2. fix clippy

    dhruvja committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    1d252e2 View commit details
    Browse the repository at this point in the history
  3. add witness account

    dhruvja committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    7deab03 View commit details
    Browse the repository at this point in the history
  4. fetch trie with witness

    dhruvja committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    145e4fc View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2024

  1. fix tests

    dhruvja committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    fd2c377 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. fix race condition

    dhruvja committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    1723983 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. minor changes

    dhruvja committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    f4b16a6 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. fix all issues

    dhruvja committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    b91b701 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. fix events

    dhruvja committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    4e40e9f View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2024

  1. add config

    dhruvja committed Oct 11, 2024
    Configuration menu
    Copy the full SHA
    1a2bd80 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c76b7d View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. mantis finality notifications

    dhruvja committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    e57a433 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. light-clients: fix cf-solana and ics10-grandpa-cw builds (#516)

    For cf-solana, replace dependencies to refer to git repository rather
    than using path pointing outside of the repository and fix paths for
    DecodeError and BadMessage types.
    
    For ics10-grandpa-cw remove unnecessary as_bytes method calls which
    were there presumably because SUBSTITUTE_PREFIX and SUBJECT_PREFIX
    consts were different type at some point.
    mina86 authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    a041a6b View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. Configuration menu
    Copy the full SHA
    a502e81 View commit details
    Browse the repository at this point in the history
  2. parachain-node: fix build with std feature

    This addresses the following error present whet `std` feature is
    enabled:
    
        error: couldn't read .../debug/build/parachain-runtime-7decbbfb16bf29dd/out/wasm_binary.rs: No such file or directory (os error 2)
          --> utils/parachain-node/runtime/src/lib.rs:21:1
           |
        21 | include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
           | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    mina86 committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    5d290bd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e9b7e55 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. Replace Anchor dependency with a smaller fork (#519)

    Replace Anchor dependency with a fork which diverges less from 0.29.
    The previous one had 30 commits on top of v0.29.0 tag (with 29 pulled
    from Anchor master).  The new one is v0.29.0 with just a single commit
    that we need on top of it.
    mina86 authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    173c094 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c2206d View commit details
    Browse the repository at this point in the history
  3. hyperspace: fix witness account change

    Previous change adding witness account to solana-ibc calls was
    incomplete as it didn’t add the dependency.  I missed that the code
    wasn’t actually compiling due to many warnings polluting the build.
    This commit fixes all that.
    mina86 committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    2c319b6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6d43430 View commit details
    Browse the repository at this point in the history