Skip to content

Encoding and decoding Viacoin Segregated Witness addresses in Bech32 format

Notifications You must be signed in to change notification settings

viacoin/rust-bech32-viacoin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Viacoin Bech32

Encodes and decodes Viacoin Segregated Witness addresses in the Bech32 format described in BIP-0173.

Example

use viacoin_bech32::{WitnessProgram, u5};
use viacoin_bech32::constants::Network;

let witness_program = WitnessProgram::new(
    u5::try_from_u8(0).unwrap(),
    vec![
        0x00, 0x00, 0x00, 0xc4, 0xa5, 0xca, 0xd4, 0x62,
        0x21, 0xb2, 0xa1, 0x87, 0x90, 0x5e, 0x52, 0x66,
        0x36, 0x2b, 0x99, 0xd5, 0xe9, 0x1c, 0x6c, 0xe2,
        0x4d, 0x16, 0x5d, 0xab, 0x93, 0xe8, 0x64, 0x33],
    Network::Viacoin,
).unwrap();

let address = witness_program.to_address();
assert_eq!(address,
           "via1qqqqqp399et2xygdj5xreqhjjvcmzhxw4aywxecjdzew6hylgvseslnpyya".to_string());

let decoded = WitnessProgram::from_address(&address).unwrap();
assert_eq!(decoded, witness_program);

About

Encoding and decoding Viacoin Segregated Witness addresses in Bech32 format

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 100.0%