interface NameRegistryStorage {
    actions: BigMapAbstraction;
    store: {
        expiry_map: BigMapAbstraction;
        owner: string;
        records: BigMapAbstraction;
        reverse_records: BigMapAbstraction;
        validators: string[];
    };
    trusted_senders: string[];
}

Properties

actions: BigMapAbstraction
store: {
    expiry_map: BigMapAbstraction;
    owner: string;
    records: BigMapAbstraction;
    reverse_records: BigMapAbstraction;
    validators: string[];
}
trusted_senders: string[]