Licensing
License Types
Private.sol

Private.sol

A simple license that always returns false on a call to auth(bytes32 id, address user)

Access Functions

auth(bytes32 id, address user)

Returns false.

The entirety of it's source code can be seen below:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
 
contract Private {
    constructor() {}
 
    function auth(bytes32, address) public pure returns (bool) {
        return false;
    }
}

See Smart Contracts for the address of this license.