Skip to content

Commit c51c7f4

Browse files
Update SDKs (#93)
* Update to dev sdk * Update SDKs * Update storage package
1 parent a3878ac commit c51c7f4

File tree

5 files changed

+184
-1111
lines changed

5 files changed

+184
-1111
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
"@chakra-ui/react": "^2.1.0",
5050
"@emotion/react": "^11",
5151
"@emotion/styled": "^11",
52-
"@thirdweb-dev/react": "^3.6.10-dev-5a5de2f",
53-
"@thirdweb-dev/sdk": "^3.6.10-dev-5a5de2f",
54-
"@thirdweb-dev/storage": "^1.0.4",
52+
"@thirdweb-dev/react": "^3.8.0-nightly-f295ec6",
53+
"@thirdweb-dev/sdk": "^3.8.0-nightly-f295ec6",
54+
"@thirdweb-dev/storage": "^1.0.7-nightly-f295ec6",
5555
"color": "^4.2.3",
5656
"ethers": "^5.7.0",
5757
"flat": "^5.0.2",

src/shared/claim-button-erc1155.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export const ERC1155ClaimButton: React.FC<ClaimButtonProps> = ({
221221
return "Checking eligibility...";
222222
}
223223

224-
return "Claiming not available";
224+
return "Minting not available";
225225
}, [
226226
isSoldOut,
227227
canClaim,

src/shared/claim-button-erc20.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export const ERC20ClaimButton: React.FC<ClaimButtonProps> = ({
214214
return "Checking eligibility...";
215215
}
216216

217-
return "Claiming not available";
217+
return "Minting not available";
218218
}, [
219219
isSoldOut,
220220
canClaim,

src/shared/claim-button-erc721.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export const ERC721ClaimButton: React.FC<ClaimButtonProps> = ({
216216
return "Checking eligibility...";
217217
}
218218

219-
return "Claiming not available";
219+
return "Minting not available";
220220
}, [
221221
isSoldOut,
222222
canClaim,

0 commit comments

Comments
 (0)