convertBits static method
Convert bits from one size to another Used for bech32 encoding/decoding
Implementation
static List<int> convertBits(List<int> data, int from, int to, bool pad) {
return Nip19Utils.convertBits(data, from, to, pad);
}
Convert bits from one size to another Used for bech32 encoding/decoding
static List<int> convertBits(List<int> data, int from, int to, bool pad) {
return Nip19Utils.convertBits(data, from, to, pad);
}