-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
232 lines (207 loc) · 7.03 KB
/
index.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
require('dotenv').config()
const { buyStorage } = require('./chain/buy-storage')
const { deployToken } = require('./token/deploy-token')
const { createToken } = require('./token/create-token')
const { issueToken } = require('./token/issue-token')
const { transferToken } = require('./token/transfer-token')
const { getBalance } = require('./token/get-balance')
const { createCollection } = require('./nft/create-collection')
const { setCollectionData } = require('./nft/set-collection-data')
const { createSchema } = require('./nft/create-schema')
const { createTemplate } = require('./nft/create-template')
const { burnNft } = require('./nft/burn-nft')
const { getTemplates } = require('./nft/get-templates')
const { getNfts } = require('./nft/get-nfts')
const { getNftsAdvanced } = require('./nft/get-nfts-advanced')
const { getListings } = require('./nft/get-listings')
const { setNftMutableData } = require('./nft/change-mutable-data')
const { createNft } = require('./nft/create-nft')
const { sellNft } = require('./nft/marketplace-sell')
const { buyNft } = require('./nft/marketplace-buy')
const { registerMarketplace } = require('./nft/register-marketplace')
const { cancelNftSale } = require('./nft/marketplace-unlist')
const { transferNft } = require('./nft/transfer-nft')
const { getMarketplaceBalances } = require('./nft/get-marketplace-balances')
const { withdrawCreatorBalance } = require('./nft/withdraw-creator-balance')
const { ACCOUNT } = require('./constants')
const main = async () => {
/**
* CHAIN
*/
// Buy Blockchain Storage
// Costs 22 XPR / KB (~6,600 XPR for 300KB)
await buyStorage({
bytes: 300000
})
/**
* TOKEN
*/
// Deploy Token
await deployToken()
// Create token
// Note that the .0000 means precision is 4 for this token
await createToken({
maximumSupply: '10000.0000 RANDOM'
})
// Issue token
await issueToken({
quantity: '10000.0000 RANDOM'
})
// Transfer token
await transferToken({
tokenContract: ACCOUNT, // Replace with eosio.token for XPR, xtokens for FOOBAR, etc
to: 'syed',
quantity: '1.0000 RANDOM',
memo: ''
})
// Get balance
const balance = await getBalance({
account: 'syed',
tokenContract: ACCOUNT,
tokenSymbol: 'RANDOM'
})
/**
* NFT Creation
*/
const COLLECTION_NAME = 'testdeploy'
// 1% from every sale
const CREATOR_FEE = 0.01
const SCHEMA_NAME = 'test'
// uint16 has max value of 65535, use uint32 or uin64 for higher ranges
const SCHEMA = {
image: 'image',
series: 'uint16',
name: 'string',
health: 'uint16',
}
// can only mint this many NFTs in the template (edition size)
const MAX_SUPPLY_TEMPLATE = 100
// This is template-level data that can NOT be modified
// Use https://pinata.cloud/ to upload image and get IPFS hash
const TEMPLATE_DATA = [
{ key: 'image', value: ['string', 'QmPfkthP29F3a4RauRSZnGuMy4QV7bKfS4fvdkUTvGL7Hi'] },
{ key: 'series', value: ['uint16', 1] },
{ key: 'name', value: ['string', 'RandomNFT'] },
]
// This is NFT-level specific data that can NOT be modified
const NFT_IMMUTABLE_DATA = []
// This is NFT-level specific data that can be modified
const NFT_MUTABLE_DATA = [
{ key: 'health', value: ['uint16', 1] },
]
// Create collection
await createCollection({
collection_name: COLLECTION_NAME,
creator_fee: CREATOR_FEE,
data: [
{"key": "name", "value": ["string", "Proton Monsters"]},
{"key": "img", "value": ["ipfs", "QmejwojCLwjbNxqVNwBhyvKj5jUM4kGsm4tGM2U8CbniXy"]},
{"key": "description", "value": ["string", ""]},
{"key": "url", "value": ["string", "https://nft.protonchain.com"]},
]
})
// Change col data
await setCollectionData({
collection_name: COLLECTION_NAME,
data: [
{"key": "name", "value": ["string", "Proton Monsters"]},
{"key": "img", "value": ["ipfs", "QmejwojCLwjbNxqVNwBhyvKj5jUM4kGsm4tGM2U8CbniXy"]},
{"key": "description", "value": ["string", "Monsters on Proton!"]},
{"key": "url", "value": ["string", "https://nft.protonchain.com"]},
]
})
// Create schema
await createSchema({
collection_name: COLLECTION_NAME,
schema_name: SCHEMA_NAME,
schema: SCHEMA
})
// Create template
await createTemplate({
collection_name: COLLECTION_NAME,
schema_name: SCHEMA_NAME,
max_supply: MAX_SUPPLY_TEMPLATE,
immutable_data: TEMPLATE_DATA
})
const templates = await getTemplates({
collection_name: COLLECTION_NAME
})
// Create NFT
await createNft({
collection_name: COLLECTION_NAME,
schema_name: SCHEMA_NAME,
template_id: templates[templates.length - 1].template_id,
immutable_data: NFT_IMMUTABLE_DATA,
mutable_data: NFT_MUTABLE_DATA
})
// Get NFTs
const nfts = await getNfts({
owner: ACCOUNT
})
const nftsAdvanced = await getNftsAdvanced({
owner: ACCOUNT,
collection_name: COLLECTION_NAME,
page: 1,
limit: 100
})
// Change mutable property
await setNftMutableData({
asset_owner: ACCOUNT,
asset_id: nfts[0].asset_id,
new_mutable_data: [
{ key: 'health', value: ['uint16', 2] }
]
})
// Burn NFT
await burnNft({
asset_id: nfts[0].asset_id,
})
/**
* NFT Marketplace
*/
// Register marketplace (ONLY IF YOU ARE CREATING YOUR OWN MARKETPLACE WEBSITE)
await registerMarketplace({
marketplace_name: ACCOUNT
})
// Sell NFT
const nft = nfts[0]
await sellNft({
asset_ids: [nft.asset_id],
listing_price: 1,
settlement_symbol: '4,XPR', // 4 is the precision of XPR
maker_marketplace: 'fees.market' // Only replace with your account if you have registered a marketplace
})
// Get Listings
const listings = await getListings({
seller: ACCOUNT,
collection_name: COLLECTION_NAME
})
const listing = listings[0]
// Buy NFT
await buyNft({
token_contract: listing.price.token_contract,
quantity: `${(+listing.price.amount).toFixed(listing.price.token_precision)} ${listing.price.token_symbol}`,
sale_id: listing.sale_id,
taker_marketplace: 'fees.market' // Only replace with your account if you have registered a marketplace
})
// Unlist NFT
await cancelNftSale({
sale_id: listing.sale_id
})
// Transfer NFT
await transferNft({
to: 'syed',
asset_ids: [nft.asset_id],
memo: ''
})
// Balance of creator fees (kept in contract until withdrawn)
const creatorBalances = await getMarketplaceBalances({
collection_creator: ACCOUNT
})
// Withdraw creator fees
await withdrawCreatorBalance({
collection_creator: ACCOUNT,
token_to_withdraw: '0.0001 XPR'
})
}
main()