All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.horizen.DefaultAccountBootstrappingTool Maven / Gradle / Ivy

Go to download

This module offers a way to create a sidechain's configuration file and some utilities (account model).

There is a newer version: 0.12.0
Show newest version
package io.horizen;

import io.horizen.tools.utils.ConsolePrinter;

public class DefaultAccountBootstrappingTool extends AbstractScBootstrappingTool {
    public DefaultAccountBootstrappingTool() {
        super(new ConsolePrinter());
    }

    public static void main(String[] args) {
        AbstractScBootstrappingTool bootstrap = new DefaultAccountBootstrappingTool();
        bootstrap.startCommandTool(args);
    }

    @Override
    protected ScBootstrappingToolCommandProcessor getBootstrappingToolCommandProcessor() {
        return new ScBootstrappingToolCommandProcessor(printer, new AccountModel());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy