ETH Price: $2,071.91 (+2.15%)

Contract Diff Checker

Contract Name:
EasySmartolutionProcessor

Contract Source Code:

File 1 of 1 : EasySmartolutionProcessor

pragma solidity ^0.4.25;

contract EasySmartolutionProcessor {
    address constant public smartolution = 0xB2D5468cF99176DA50F91E46B2c06B7BDb9D2656;
    
    constructor () public {
    }
    
    function () external payable {
        require(msg.value == 0, "This contract doest not accept ether");
    }

    function processPayment(address _participant) external {
        EasySmartolutionInterface(smartolution).processPayment(_participant);
    }
}

contract EasySmartolutionInterface {
    function processPayment(address _address) public;
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):