Giter Club home page Giter Club logo

Comments (4)

piux2 avatar piux2 commented on May 23, 2024

Here is the problem.

  1. gno's amino marshaled pubkey byte length is 58
  2. converted base256 pubkey byte length is 93
  3. encoded bech32 pubkey byte length is 104

however, the github.com/btcsuite/btcutil v1.0.2 require the bech32 max length to be 90

When we add gno pubkey back to the local keybase, btcutil.bech32 tried to decode it and threw an error.
"invalid bech32 string length 104"

Solution:

  1. install the latest version of btcutil
    github.com/btcsuite/btcd/btcutil v1.1.1

  2. call a new method bech32.DecodeNoLimit(bech), which does not limit the pubkey bech32 length to 90.

hrp, data, err := bech32.Decode(bech)

https://github.com/btcsuite/btcd/blob/74e9690d0e402446c3c366d595123e7219f8cce7/btcutil/bech32/bech32.go#L264

I will make a pull request, if this solution is accepted.

from gno.

piux2 avatar piux2 commented on May 23, 2024

Trade-Off:

Since Bech32 is designed for max length 90 bytes/character with 6 checksum characters to detect and correct 4 errors with 0 faults. When we extend the length to 104, it will slightly decrease the success rate of error detection.

However, the chances of failure could be tiny. According to the BIP173 the current code selection performs well up to 1023 characters.

from gno.

jaekwon avatar jaekwon commented on May 23, 2024

that sounds great, yes please.

from gno.

moul avatar moul commented on May 23, 2024

Fixed by #264

from gno.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.