@switch (address.type || null) {
@case ('fee') {
fee
}
@case ('empty') {
empty
}
@case ('v0_p2wpkh') {
P2WPKH
}
@case ('v0_p2wsh') {
P2WSH
}
@case ('v1_p2tr') {
P2TR
}
@case ('provably_unspendable') {
provably unspendable
}
@case ('multisig') {
bare multisig
}
@case (null) {
unknown
}
@default {
{{ address.type.toUpperCase() }}
}
}