Skip to content

Instantly share code, notes, and snippets.

contract IGivethBridge {
function donateAndCreateGiver(address giver, uint64 receiverId, address token, uint _amount) payable public {
}
}
contract Donator {
IGivethBridge givethBridge = IGivethBridge(0xC59dCE5CCC065A4b51A2321F857466A25ca49B40);
uint64 public givethReceiverId = 226;
import './SafeMath.sol';
import './Stoppable.sol';
import './MyCoolNFT.sol';
/**
* @title NFT Linkdrop Contract
*
*/
contract NFTLinkdropContract is Stoppable {