Skip to content

Commit 614aa98

Browse files
simple-nft > tokenization (#28)
1 parent ade869d commit 614aa98

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ node install.js
1919
You can rerun the install anytime to update all the test files and contracts. If you just want to download a specific challenge, you can run:
2020

2121
```
22-
node install.js --challenge challenge-simple-nft-example
22+
node install.js --challenge challenge-tokenization
2323
# you can run node install.js --help to see all the available challenges and options
2424
```
2525

@@ -31,15 +31,15 @@ yarn server
3131

3232
now visit http://localhost:54727/
3333

34-
- For pretty feedback, visit: http://localhost:54727/challenge-simple-nft-example/sepolia.etherscan.io/0xC7f0fd7ceBE69A3c4Ef28f7978bc5951064772f8
34+
- For pretty feedback, visit: http://localhost:54727/challenge-tokenization/sepolia.etherscan.io/0xC7f0fd7ceBE69A3c4Ef28f7978bc5951064772f8
3535
- The main API endpoint is a POST to http://localhost:54727/. E.g:
3636

3737
```
3838
POST http://localhost:54727
3939
Content-Type: application/json
4040
4141
{
42-
"challenge": "challenge-simple-nft-example",
42+
"challenge": "challenge-tokenization",
4343
"blockExplorer": "sepolia.etherscan.io",
4444
"address": "0xC7f0fd7ceBE69A3c4Ef28f7978bc5951064772f8"
4545
}
@@ -53,7 +53,7 @@ Content-Type: application/json
5353
x-api-key: YOUR_API_KEY
5454
5555
{
56-
"challengeId": "challenge-simple-nft-example"
56+
"challengeId": "challenge-tokenization"
5757
}
5858
```
5959

challenges.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const challenges = {
2-
"challenge-simple-nft-example": {
3-
name: "challenge-simple-nft-example",
2+
"challenge-tokenization": {
3+
name: "challenge-tokenization",
44
github: "https://github.com/scaffold-eth/se-2-challenges.git",
55
contractName: "YourCollectible",
66
testName: "YourCollectible.ts",

0 commit comments

Comments
 (0)