Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: axonweb3/axon
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.0-beta
Choose a base ref
...
head repository: axonweb3/axon
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.1-beta
Choose a head ref
  • 6 commits
  • 9 files changed
  • 3 contributors

Commits on Jan 10, 2024

  1. fix: peer id generation encoding

    Samuel Dare committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    1b13554 View commit details
    Browse the repository at this point in the history
  2. fix: push keys to key_pair vector

    Samuel Dare committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    4614d49 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Configuration menu
    Copy the full SHA
    2dce264 View commit details
    Browse the repository at this point in the history
  2. chore(CI): fix e2e metamask not found (#1652)

    Update setup.js
    Update web3_clientVersion.test.js
    
    (cherry picked from commit 83ad796)
    sunchengzhu authored and Flouse committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    571510e View commit details
    Browse the repository at this point in the history
  3. fix(cli): Fix peer_id generation (#1656)

    <!--  Thanks for sending a pull request! -->
    
    ## What this PR does / why we need it?
    
    This PR fixes a bug in the key generation , where peer_id is hex
    encoded.
    
    ### What is the impact of this PR?
    
    #### Before 
    
    ```
    /axon$ ./target/release/axon generate-keypair -n 1 -p .
    {
      "keypairs": [
        {
          "index": 0,
          "net_private_key": "0x3e7ee435ec780adc22913cf43dcf81849596e66436d6ea92473b5aa38ce59355",
          "public_key": "0x02817154cbb0946980b352378b7366fc86dff6ca5f71a3c3767accd4d35481aa16",
          "address": "0x1F781E1FA61dce22A256873Af1E4066D6f2Db042",
          "peer_id": "0x516d5475796e324b445a66685271665763666f79656a424e53737554414b75567432616a6e4d6331524858664737",
          "bls_private_key": "0x72e19bff8b6a260ff33c57fede34d3ff5cad1891f48674db952413f45324da07",
          "bls_public_key": "0x9688b98d4c203d42e0d73b7bd233c5e73b5a92804fc7ac5446ee80d9758d0da9f6250fea030377a697e29059c0e98f29"
        }
      ]
    }
    ```
    
    #### After
    
    ```
     ./target/release/axon generate-keypair -n 1 -p . | grep peer_id
          "peer_id": "QmS93dMohH8pvvV9ULSGSX7YmPuEbx7gr29Qfyfp1Ch5KA",
    ```
    
    No Breaking Change
    Flouse authored Jan 11, 2024
    Configuration menu
    Copy the full SHA
    b4054ec View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bed1656 View commit details
    Browse the repository at this point in the history
Loading