-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoken-update-admin-key.js
More file actions
88 lines (74 loc) · 2.95 KB
/
token-update-admin-key.js
File metadata and controls
88 lines (74 loc) · 2.95 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
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
console.clear();
require("dotenv").config();
const {
AccountId,
PrivateKey,
Client,
TokenCreateTransaction,
TokenUpdateTransaction,
TokenType,
Hbar,
TokenSupplyType,
AccountCreateTransaction
} = require("@hashgraph/sdk");
// Configure accounts and client, and generate needed keys
const operatorId = AccountId.fromString(process.env.OPERATOR_ID);
const operatorKey = PrivateKey.fromString(process.env.OPERATOR_PVKEY);
const client = Client.forTestnet().setOperator(operatorId, operatorKey);
client.setDefaultMaxTransactionFee(new Hbar(100));
const adminKey = PrivateKey.generateED25519();
const treasuryKey = PrivateKey.generateED25519();
const newAdminKey = PrivateKey.generateED25519();
async function main() {
// Create accounts
console.log(`- Creating accounts...`);
const [adminAccStatus, adminId] = await accountCreatorFcn(adminKey, 3);
console.log(`- Created admin account ${adminId} that has a balance of 3ℏ`);
const [treasuryAccStatus, treasuryId] = await accountCreatorFcn(treasuryKey, 3);
console.log(`- Created treasury account ${treasuryId} that has a balance of 3ℏ`);
const [newAdminAccStatus, newAdminId] = await accountCreatorFcn(newAdminKey, 3);
console.log(`- Created new admin account ${newAdminId} that has a balance of 3ℏ`);
// Create NFT
console.log(`\n- Creating NFT (with admin and supply key set)`);
let nftCreateTx = await new TokenCreateTransaction()
.setTokenName("Fall Collection")
.setTokenSymbol("LEAF")
.setTokenType(TokenType.NonFungibleUnique)
.setDecimals(0)
.setInitialSupply(0)
.setTreasuryAccountId(treasuryId)
.setSupplyType(TokenSupplyType.Finite)
.setMaxSupply(5)
// Set admin key
.setAdminKey(adminKey)
.setSupplyKey(adminKey)
.freezeWith(client)
.sign(treasuryKey);
let nftCreateTxSign = await nftCreateTx.sign(adminKey);
let nftCreateSubmit = await nftCreateTxSign.execute(client);
let nftCreateRx = await nftCreateSubmit.getReceipt(client);
let tokenId = nftCreateRx.tokenId;
console.log(`- Created NFT with Token ID: ${tokenId}`);
// Update admin key (old and new admin key need to sign)
console.log('\n- Updating token with new admin key');
let tokenUpdateTx = await new TokenUpdateTransaction()
.setTokenId(tokenId)
.setAdminKey(newAdminKey)
.freezeWith(client)
.sign(newAdminKey);
let tokenUpdateTxSign = await tokenUpdateTx.sign(adminKey);
let tokenUpdateTxSubmit = await tokenUpdateTxSign.execute(client);
let tokenUpdateTxRx = await tokenUpdateTxSubmit.getReceipt(client);
console.log('- Updated admin key');
client.close();
// ACCOUNT CREATOR FUNCTION ==========================================
async function accountCreatorFcn(pvKey, iBal) {
const response = await new AccountCreateTransaction()
.setInitialBalance(new Hbar(iBal))
.setKey(pvKey.publicKey)
.execute(client);
const receipt = await response.getReceipt(client);
return [receipt.status, receipt.accountId];
}
}
main();