Licensing
License Types
Public.sol

Public.sol

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

Access Functions

auth(bytes32 id, address user)

Returns true.

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

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

See Smart Contracts for the address of this license.