dbPubkeyMappings static method
Implementation
static List<DbPubkeyMapping> dbPubkeyMappings(List<PubkeyMapping> mappings) {
return mappings
.map(
(e) => DbPubkeyMapping(pubKey: e.pubKey, marker: e.rwMarker.name),
)
.toList();
}