-
Notifications
You must be signed in to change notification settings - Fork 2
/
1.4.createAndTransfer.js
69 lines (55 loc) · 1.83 KB
/
1.4.createAndTransfer.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
const { NftFactory, Datatoken } = require('@oceanprotocol/lib');
const Web3 = require('web3');
const { provider, oceanConfig } = require('./config');
const web3 = new Web3(provider);
const createDataNFT = async () => {
const Factory = new NftFactory(oceanConfig.erc721FactoryAddress, web3);
const accounts = await web3.eth.getAccounts();
const publisherAccount = accounts[0];
const nftParams = {
name: '72120Bundle',
symbol: '72Bundle',
templateIndex: 1,
tokenURI: 'https://example.com',
transferable: true,
owner: publisherAccount
};
const erc20Params = {
templateIndex: 1,
cap: '100000',
feeAmount: '0',
paymentCollector: '0x0000000000000000000000000000000000000000',
feeToken: '0x0000000000000000000000000000000000000000',
minter: publisherAccount,
mpFeeAddress: '0x0000000000000000000000000000000000000000'
};
const result = await Factory.createNftWithErc20(
publisherAccount,
nftParams,
erc20Params
);
const erc721Address = result.events.NFTCreated.returnValues[0];
const datatokenAddress = result.events.TokenCreated.returnValues[0];
return {
erc721Address,
datatokenAddress
};
};
createDataNFT()
.then(async ({ erc721Address, datatokenAddress }) => {
console.log(`DataNft address ${erc721Address}`);
console.log(`Datatoken address ${datatokenAddress}`);
const accounts = await web3.eth.getAccounts();
const alice = accounts[0];
const bob = accounts[1];
const datatoken = new Datatoken(web3);
await datatoken.mint(datatokenAddress, alice, '1', alice);
await datatoken.transfer(datatokenAddress, bob, '1', alice);
const bobBalance = await datatoken.balance(datatokenAddress, bob);
console.log(`Bob balance ${bobBalance}`);
process.exit();
})
.catch((err) => {
console.error(err);
process.exit(1);
});