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

software.crldev.elrondspringbootstarterreactive.config.constants.WalletConstants Maven / Gradle / Ivy

Go to download

A SpringBoot Starter solution designed to ensure easy and efficient integration with the Elrond Network using a Reactive API layer.

The newest version!
package software.crldev.elrondspringbootstarterreactive.config.constants;

/**
 * Class containing static config values used in Wallet construction and validation
 *
 * @author carlo_stanciu
 */
public class WalletConstants {

    public static final int DEFAULT_ENTROPY_BITS = 256;
    public static final int PRIVATE_KEY_LENGTH = 64;
    public static final String BIP39_SALT_MODIFIER = "mnemonic";
    public static final int BIP39_PBKDF2_ROUNDS = 2048;
    public static final String BIP32_SEED_MODIFIER = "ed25519 seed";
    public static final long[] ELROND_DERIVATION_PATH = {44, 508, 0, 0, 0};
    public static final long HARDENED_OFFSET = 0x80000000;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy