Is there a maximum/optimum amount of ERC-721 that can be issued per contract?Is there a max amount of gas per transaction?Awarding members after an ICO: batch or individually?Most efficient way of generating random ERC 721 NFTCalculating a minimum entry fee for a game based on typical minimum gas requirements?ERC 721 rental contracterc-721 erc-20 solidity code check effects interaction patternSame contract spending different amount of gas on its creationList holders and tokens for an ERC-721 contractERC721 Default ImplementationCan you add a link to a ERC-721
Will users know a CardView is clickable
...and then she held the gun
Does PC weight have a mechanical effect?
For Saintsbury, which English novelists constituted the "great quartet of the mid-eighteenth century"?
Can I appeal credit ding if ex-wife is responsible for paying mortgage?
How to avoid offending original culture when making conculture inspired from original
How do you translate “talk shit”?
Threading data on TimeSeries
100-doors puzzle
Leveraging cash for buying car
Is it possible to have battery technology that can't be duplicated?
How to remove multiple elements from Set/Map AND knowing which ones were removed?
Cant bend fingertip when finger is straight
How did Avada Kedavra get its name?
Should I email my professor to clear up a (possibly very irrelevant) awkward misunderstanding?
How did the European Union reach the figure of 3% as a maximum allowed deficit?
At zero velocity, is this object neither speeding up nor slowing down?
Does an African-American baby born in Youngstown, Ohio have a higher infant mortality rate than a baby born in Iran?
Can an open source licence be revoked if it violates employer's IP?
Manager wants to hire me; HR does not. How to proceed?
How do credit card companies know what type of business I'm paying for?
Arcane Tradition and Cost Efficiency: Learn spells on level-up, or learn them from scrolls/spellbooks?
Are soroban (Japanese abacus) classes worth doing?
Boss making me feel guilty for leaving the company at the end of my internship
Is there a maximum/optimum amount of ERC-721 that can be issued per contract?
Is there a max amount of gas per transaction?Awarding members after an ICO: batch or individually?Most efficient way of generating random ERC 721 NFTCalculating a minimum entry fee for a game based on typical minimum gas requirements?ERC 721 rental contracterc-721 erc-20 solidity code check effects interaction patternSame contract spending different amount of gas on its creationList holders and tokens for an ERC-721 contractERC721 Default ImplementationCan you add a link to a ERC-721
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Take a role playing game as example in which players are allowed to create any number of characters (each one defined by an ERC-721 token). What would be the consequences of having more than 10 billions of characters created? It's just a matter of the amount of gas players would require to create new characters?
gas erc-721
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Take a role playing game as example in which players are allowed to create any number of characters (each one defined by an ERC-721 token). What would be the consequences of having more than 10 billions of characters created? It's just a matter of the amount of gas players would require to create new characters?
gas erc-721
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Take a role playing game as example in which players are allowed to create any number of characters (each one defined by an ERC-721 token). What would be the consequences of having more than 10 billions of characters created? It's just a matter of the amount of gas players would require to create new characters?
gas erc-721
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Take a role playing game as example in which players are allowed to create any number of characters (each one defined by an ERC-721 token). What would be the consequences of having more than 10 billions of characters created? It's just a matter of the amount of gas players would require to create new characters?
gas erc-721
gas erc-721
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 8 hours ago
viarnesviarnes
1113
1113
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
viarnes is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
ERC721 gas costs are scale-invariant.
It's just a matter of the amount of gas players would require to create new characters?
Yes. That is correct. It is financially constrained.
An important heuristic is to avoid introducing anything in your contracts that would increase in cost in proportion to scale. In case that sounds cryptic: https://blog.b9lab.com/getting-loopy-with-solidity-1d51794622ad
Beyond the contracts themselves, client-side processes could be impacted by the size of arrays, etc., so keep that in mind, but generally you would be able to use familiar techniques to address performance concerns.
Hope it helps.
add a comment |
I demonstrated at NFT.nyc in March this year a technique to create NF token with O(1) cost. In other words, make as many as you want.
This is the same technique as used in Su Squares and you can see the slides at http://nft.life
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "642"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
viarnes is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fethereum.stackexchange.com%2fquestions%2f71811%2fis-there-a-maximum-optimum-amount-of-erc-721-that-can-be-issued-per-contract%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
ERC721 gas costs are scale-invariant.
It's just a matter of the amount of gas players would require to create new characters?
Yes. That is correct. It is financially constrained.
An important heuristic is to avoid introducing anything in your contracts that would increase in cost in proportion to scale. In case that sounds cryptic: https://blog.b9lab.com/getting-loopy-with-solidity-1d51794622ad
Beyond the contracts themselves, client-side processes could be impacted by the size of arrays, etc., so keep that in mind, but generally you would be able to use familiar techniques to address performance concerns.
Hope it helps.
add a comment |
ERC721 gas costs are scale-invariant.
It's just a matter of the amount of gas players would require to create new characters?
Yes. That is correct. It is financially constrained.
An important heuristic is to avoid introducing anything in your contracts that would increase in cost in proportion to scale. In case that sounds cryptic: https://blog.b9lab.com/getting-loopy-with-solidity-1d51794622ad
Beyond the contracts themselves, client-side processes could be impacted by the size of arrays, etc., so keep that in mind, but generally you would be able to use familiar techniques to address performance concerns.
Hope it helps.
add a comment |
ERC721 gas costs are scale-invariant.
It's just a matter of the amount of gas players would require to create new characters?
Yes. That is correct. It is financially constrained.
An important heuristic is to avoid introducing anything in your contracts that would increase in cost in proportion to scale. In case that sounds cryptic: https://blog.b9lab.com/getting-loopy-with-solidity-1d51794622ad
Beyond the contracts themselves, client-side processes could be impacted by the size of arrays, etc., so keep that in mind, but generally you would be able to use familiar techniques to address performance concerns.
Hope it helps.
ERC721 gas costs are scale-invariant.
It's just a matter of the amount of gas players would require to create new characters?
Yes. That is correct. It is financially constrained.
An important heuristic is to avoid introducing anything in your contracts that would increase in cost in proportion to scale. In case that sounds cryptic: https://blog.b9lab.com/getting-loopy-with-solidity-1d51794622ad
Beyond the contracts themselves, client-side processes could be impacted by the size of arrays, etc., so keep that in mind, but generally you would be able to use familiar techniques to address performance concerns.
Hope it helps.
answered 8 hours ago
Rob Hitchens - B9labRob Hitchens - B9lab
30.8k74586
30.8k74586
add a comment |
add a comment |
I demonstrated at NFT.nyc in March this year a technique to create NF token with O(1) cost. In other words, make as many as you want.
This is the same technique as used in Su Squares and you can see the slides at http://nft.life
add a comment |
I demonstrated at NFT.nyc in March this year a technique to create NF token with O(1) cost. In other words, make as many as you want.
This is the same technique as used in Su Squares and you can see the slides at http://nft.life
add a comment |
I demonstrated at NFT.nyc in March this year a technique to create NF token with O(1) cost. In other words, make as many as you want.
This is the same technique as used in Su Squares and you can see the slides at http://nft.life
I demonstrated at NFT.nyc in March this year a technique to create NF token with O(1) cost. In other words, make as many as you want.
This is the same technique as used in Su Squares and you can see the slides at http://nft.life
answered 5 hours ago
William EntrikenWilliam Entriken
1,063323
1,063323
add a comment |
add a comment |
viarnes is a new contributor. Be nice, and check out our Code of Conduct.
viarnes is a new contributor. Be nice, and check out our Code of Conduct.
viarnes is a new contributor. Be nice, and check out our Code of Conduct.
viarnes is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ethereum Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fethereum.stackexchange.com%2fquestions%2f71811%2fis-there-a-maximum-optimum-amount-of-erc-721-that-can-be-issued-per-contract%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown