Variable $WhitelistContractConst

$WhitelistContract: {
    additionalProperties: false;
    properties: {
        contractAddress: {
            $ref: "#/components/schemas/ContractAddress";
            description: "Address of the smart-contract";
            example: "0x3D9819210A31b4961b30EF54bE2aeD79B9c9Cd3B";
        };
        status: {
            $ref: "#/components/schemas/WhitelistStatus";
            description: "Status of the contract in the whitelist";
        };
    };
    required: readonly ["status", "contractAddress"];
    type: "object";
} = ...