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 @@ -929,6 +929,7 @@ contract SandboxPasses1155Upgradeable is
929929 * @return metadata Token metadata string
930930 * @return maxPerWallet Maximum tokens per wallet
931931 * @return treasuryWallet Treasury wallet for the token
932+ * @return totalMinted Total tokens minted for the token
932933 */
933934 function tokenConfigs (
934935 uint256 tokenId
@@ -941,7 +942,8 @@ contract SandboxPasses1155Upgradeable is
941942 uint256 maxSupply ,
942943 string memory metadata ,
943944 uint256 maxPerWallet ,
944- address treasuryWallet
945+ address treasuryWallet ,
946+ uint256 totalMinted
945947 )
946948 {
947949 TokenConfig storage config = _tokenStorage ().tokenConfigs[tokenId];
@@ -951,7 +953,8 @@ contract SandboxPasses1155Upgradeable is
951953 config.maxSupply,
952954 config.metadata,
953955 config.maxPerWallet,
954- config.treasuryWallet
956+ config.treasuryWallet,
957+ config.totalMinted
955958 );
956959 }
957960
You can’t perform that action at this time.
0 commit comments