neo-devpack-solidity 0.22.0

Production-focused Solidity-to-NeoVM compilation system
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

/**
 * @title NEP-30 Verification Callback
 * @dev Standardized contract-level verification entrypoint.
 * Spec: https://github.com/neo-project/proposals/blob/master/nep-30.mediawiki
 */
interface INEP30Verifiable {
    function verify() external returns (bool);
}