-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
55 lines (44 loc) · 1.25 KB
/
index.js
File metadata and controls
55 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { createCollectionByName } from "./src/collectionMint.js";
import { createCoreNFTMint } from "./src/coreNFTMint.js";
import { verifyCollection } from "./src/verifyCollection.js";
import express from "express";
var app = express();
/* 2. listen()メソッドを実行して3000番ポートで待ち受け。*/
var server = app.listen(3000, function(){
console.log("Node.js is listening to PORT:" + server.address().port);
});
app.use(express.json());
app.post("/collection", async function(req, res, next){
if( req.body.name != undefined ){
const collection = await createCollectionByName(req.body.name);
res.json({
"status": true,
"collection" : collection
})
return;
}
res.json({
"status": false,
a: req.body
});
});
app.post("/nft", async function(req, res, next){
if( req.body != undefined ){
await createCoreNFTMint(req.body, res);
return;
}
res.json({
"status": false,
a: req.body
});
});
app.put("/nft/verify", async function(req, res, next){
if( req.body != undefined ){
await verifyCollection(req.body, res);
return;
}
res.json({
"status": false,
a: req.body
});
});