Giter Club home page Giter Club logo

cs-multiaddress's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cs-multiaddress's Issues

Having the possibility to add new protocols

I need to add new protocol in multi address.

In the projet go-threads they have a new protocol "thread" with this properties.

const (
	// Name is the protocol slug.
	Name = "thread"
	// Code is the protocol code.
	Code = 406
	// Version is the current protocol version.
	Version = "0.0.1"
	// Protocol is the threads protocol tag.
	Protocol protocol.ID = "/" + Name + "/" + Version
)

I've created a new class "Thread" derived from MultiaddressProtocol but I can't add it to Multibase. Methods are private.

namespace Textile.Threads.Core.Protocols
{
    public class Thread : MultiaddressProtocol
    {
        static Thread()
        {
            
        }
        public Thread() : base("thread", 406, -1)
        {
           
        }

        public override void Decode(string value) => Value = Multibase.Decode(value, out MultibaseEncoding _);
        public override void Decode(byte[] bytes) => Value = bytes;
        public override byte[] ToBytes() => (byte[])Value; 
        public override string ToString() => Multibase.Encode(MultibaseEncoding.Base32Lower, (byte[])Value);
    }
}

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.