Utilities for bitcoin addresses
⚠️ This is experimental. Please use at your own risk.⚠️
Add package to Cargo.toml file
rust [dependencies] bitcoin-address = "0.1.4"
```rust use bitcoinaddress::{ islegacy, isnestedsegwit, issegwitnative, issegwitv0, issegwitv1, is_taproot, }
let legacyaddress = "1J9uwBYepTm5737RtzkSEePTevGgDGLP5S".tostring(); let nestedsegwitaddress = "37u4L57bLqZ8NL9bs1GNX2x52KxviDfvPp".tostring(); let nativesegwitaddress = "bc1qfvmj8jse4r7203mrchfyt24sjcpna3s2y35ylp".tostring(); let taprootaddress = "bc1p8denc9m4sqe9hluasrvxkkdqgkydrk5ctxre5nkk4qwdvefn0sdsc6eqxe".tostring();
isnestedsegwit(&nestedsegwitaddress) // => true islegacy(&legacyaddress) // => true issegwitnative(&nestedsegwitaddress) // => true issegwitv0(&nestedsegwitaddress) // => true issegwitv0(&nativesegwitaddress) // => true issegwitv1(&taprootaddress) // => true istaproot(&taproot_address) // => true ```
To learn about the types of bitcoin addresses, see the RESOURCES.md
MIT © Joe Gesualdo