Skip to content

Instantly share code, notes, and snippets.

@jackpmorgan
Created January 27, 2022 12:57
Show Gist options
  • Save jackpmorgan/2feedf81e5adff2a868c5b621cf9dd7b to your computer and use it in GitHub Desktop.
Save jackpmorgan/2feedf81e5adff2a868c5b621cf9dd7b to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/finance/PaymentSplitter.sol";
contract PAYMENTS is PaymentSplitter {
constructor (address[] memory _payees, uint256[] memory _shares) PaymentSplitter(_payees, _shares) payable {}
}
/**
["0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db","0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB","0x617F2E2fD72FD9D5503197092aC168c91465E7f2"]
*/
/**
[20,40,40]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment