Hansel

Results 17 comments of Hansel

@mw2000 I have not been able to work on it too much. Please let me know if you do create a PR that way I can take a look at...

@mw2000 would you benefit from me posting what I have in this thread to use as reference? I would love to collaborate and get this done as soon as we...

Just got this to compile on remix but I have not tested this structure a lot. My original design didn't include the release functions for ERC20 tokens I have added...

using it ```solidity // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721PaymentSplitter.sol"; contract MyToken is ERC721PaymentSplitter { constructor() ERC721("MyToken", "MTK") {} } ```

Hi @Amxx I’m trying to solve a problem that most creators/artist have out here which is giving back to their community. At a high level how would you design this...

I’m afraid my understanding is limited to be able surgically pull from the abstract payment splitter @Amxx provided. I just started solidity programming this year so I am still learning....

The problem I had using the original PaymentSplitter is that you cannot rely on `mapping(address => uint256) private _released;` because tokenId needs to be the main tracker (since owner can...

Hi @Amxx thank you for replying. I look some more through the AbstractPaymentSplitter and I see that you use Distribution. AddressToIntWithTotal to handle the releases and adjustments. From what I...

I understand now. Thank you so much @Amxx for the explanation, I can see now why you made those tradeoffs. This has given me much to think about while I...

I already did this guys. I combined the ERC721 + PaymentSplitter for my first drop. I just forked and working on a PR to the ERC721 extensions folder since I...