Discover more of SonicScan Block Explorer's tools and services in one place.
Contract Source Code:
File 1 of 1 : ChildChainSolidInterface.sol
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.19; contract ChildChainSolidInterface { event Approval( address indexed owner, address indexed spender, uint256 value ); event Initialized(uint8 version); event Transfer(address indexed from, address indexed to, uint256 value); function allowance(address owner, address spender) external view returns (uint256) {} function approve(address spender, uint256 amount) external returns (bool) {} function balanceOf(address account) external view returns (uint256) {} function decimals() external view returns (uint8) {} function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {} function increaseAllowance(address spender, uint256 addedValue) external returns (bool) {} function initialize() external {} function mint(address _to, uint256 _amount) external {} function burn(uint256 _amount) external {} function minter() external view returns (address) {} function solidBridge() external view returns (address) {} function name() external view returns (string memory) {} function symbol() external view returns (string memory) {} function totalSupply() external view returns (uint256) {} function transfer(address to, uint256 amount) external returns (bool) {} function setBridge(address _bridge) external {} function setMinter(address _minter) external {} function transferFrom( address from, address to, uint256 amount ) external returns (bool) {} }
Please enter a contract address above to load the contract details and source code.
Please DO NOT store any passwords or private keys here. A private note (up to 100 characters) can be saved and is useful for transaction tracking.
This website uses cookies to improve your experience. By continuing to use this website, you agree to its Terms and Privacy Policy.