Giter Site home page Giter Site logo

Comments (3)

ecioppettini avatar ecioppettini commented on July 17, 2024 3

I just took a quick glance, so I may be missing something, but I think this line should probably be data instead of data[..4].

Otherwise it will never return the wrong length error (and may even panic if the input is shorter).

from cardano-serialization-lib.

v-almonacid avatar v-almonacid commented on July 17, 2024 1

Unfortunately the JS API is not very descriptive, and sometimes it's better to look in the rust source code to get a more precise idea about the expected data types. In this case, Ipv4 is actually

pub struct Ipv4([u8; 4]);

So it expects an array of 4 bytes, as a regular IP is actually defined at the low level.

You should probably try something like:

const bytes = [127, 0, 0, 1];
const ipv4 = Ipv4.new(Buffer.from(bytes));

from cardano-serialization-lib.

jvieiro avatar jvieiro commented on July 17, 2024

Unfortunately the JS API is not very descriptive, and sometimes it's better to look in the rust source code to get a more precise idea about the expected data types. In this case, Ipv4 is actually

pub struct Ipv4([u8; 4]);

So it expects an array of 4 bytes, as a regular IP is actually defined at the low level.

You should probably try something like:

const bytes = [127, 0, 0, 1];
const ipv4 = Ipv4.new(Buffer.from(bytes));

It worked for me, thanks!

from cardano-serialization-lib.

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.