interface TLDRegistrarStorage {
    store: {
        auctions: BigMapAbstraction;
        bidder_balances: BigMapAbstraction;
        commitments: BigMapAbstraction;
        config: MichelsonMap<string, any>;
        enabled: boolean;
        owner: string;
        records: BigMapAbstraction;
    };
    trusted_senders: string[];
}

Properties

store: {
    auctions: BigMapAbstraction;
    bidder_balances: BigMapAbstraction;
    commitments: BigMapAbstraction;
    config: MichelsonMap<string, any>;
    enabled: boolean;
    owner: string;
    records: BigMapAbstraction;
}
trusted_senders: string[]