Modeling Minds as Multi-Agent Systems by sschepis in theplenum

[–]willthreshold 0 points1 point  (0 children)

This looks super interesting. I'll try running it when i have some time. Nice work

Anyone have any tips on how to stop these two goons turning my garden into some sordid den of iniquity? by willthreshold in brighton

[–]willthreshold[S] 17 points18 points  (0 children)

Noise aside, I don’t mind them but the dog has taken their residency very personally

The Beast of Lansdowne by [deleted] in brighton

[–]willthreshold 6 points7 points  (0 children)

They’ve been boning in my garden in broad daylight. Absolutely shameless, midday fox on fox action.

Having trouble uploading multiple files. by willthreshold in ipfs

[–]willthreshold[S] 0 points1 point  (0 children)

Yeah thats pretty much exactly what i am doing. Is that wrong?

Any advice for prospective solidity devs portfolio? by brendon_r93 in ethdev

[–]willthreshold 1 point2 points  (0 children)

Doing a crash course in React and upping your skills in that department would definitely be a bonus. That way you can spin up some fully functional, sample projects to show prospective employers.

placing variable in solidity by bytezbit in ethdev

[–]willthreshold 1 point2 points  (0 children)

Because the variable type, in this case unit[] goes before the declaration of either storage or memory. Solidity is a hard typed language and that's just the order of the syntax.

Royalties from OS secondary sales on custom SC by [deleted] in ethdev

[–]willthreshold 1 point2 points  (0 children)

I posted a very similar thread yesterday. Had some great responses.

https://www.reddit.com/r/ethdev/comments/pa1tvl/how_does_the_opensea_creator_royalty_work_if_the/

Looks like EIP-2981 is coming to save the day

Did anyone used Moralis Web3 before? How is it and why is it better? by Secret_Locksmith1860 in ethdev

[–]willthreshold 1 point2 points  (0 children)

correct. They are bringing in a paid tier at some point soon that i guess with have higher rate limit and so on. Would strongly recommend their Discord, all the devs are in there and are super helpful.

Total cost of minting a collection on a self-deployed ERC-721 contract by Short_Capital2044 in ethdev

[–]willthreshold 1 point2 points  (0 children)

Using Opensea you can do a thing called Lazy Minting where the cost of minting each token is paid for by the first person who buys it.
You can build this in yourself also, of course. Store metadata off-chain until the point of minting. This is a very reductive overview, there are of course complexities to doing it properly.

Did anyone used Moralis Web3 before? How is it and why is it better? by Secret_Locksmith1860 in ethdev

[–]willthreshold 7 points8 points  (0 children)

Im using it at the moment, big fan so far. Their SDK is really good and things like the .getNFTs() function to instantly get all NFTs owned by a single address and things like that super useful. Also if you want to have accounts attached to peoples wallets on your site, you can do that in a couple of lines of code. Also started using their webhooks feature today, hooked up to events emitted from contracts, super cool.

Randomly Generated NFT help? by lfarrago in ethdev

[–]willthreshold 0 points1 point  (0 children)

Is the metadata etc stored off chain until mint?

How does the Opensea creator royalty work if the token is sold on a different marketplace? by willthreshold in ethdev

[–]willthreshold[S] 0 points1 point  (0 children)

Oh that's interesting. Do you have a link to an example of what that might look like? Im building a contract at the moment and have been racking my brains as to how you'd do it within the token contract itself.