File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
packages/game-passes/contracts Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -939,6 +939,7 @@ contract SandboxPasses1155Upgradeable is
939939 * @return metadata Token metadata string
940940 * @return maxPerWallet Maximum tokens per wallet
941941 * @return treasuryWallet Treasury wallet for the token
942+ * @return totalMinted Total tokens minted for the token
942943 */
943944 function tokenConfigs (
944945 uint256 tokenId
@@ -951,7 +952,8 @@ contract SandboxPasses1155Upgradeable is
951952 uint256 maxSupply ,
952953 string memory metadata ,
953954 uint256 maxPerWallet ,
954- address treasuryWallet
955+ address treasuryWallet ,
956+ uint256 totalMinted
955957 )
956958 {
957959 TokenConfig storage config = _tokenStorage ().tokenConfigs[tokenId];
@@ -961,7 +963,8 @@ contract SandboxPasses1155Upgradeable is
961963 config.maxSupply,
962964 config.metadata,
963965 config.maxPerWallet,
964- config.treasuryWallet
966+ config.treasuryWallet,
967+ config.totalMinted
965968 );
966969 }
967970
You can’t perform that action at this time.
0 commit comments