-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
index.js
257 lines (222 loc) · 6.33 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
const Web3 = require('web3');
const fs = require('fs');
const contractOfIncrementer = require('./compile');
require('dotenv').config();
const privatekey = process.env.PRIVATE_KEY;
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
/*
-- Define Provider --
*/
// Provider
const providerRPC = {
development: 'https://sepolia.infura.io/v3/' + process.env.INFURA_ID,
moonbase: 'https://rpc.testnet.moonbeam.network',
};
const web3 = new Web3(providerRPC.development); //Change to correct network
// Create account with privatekey
const account = web3.eth.accounts.privateKeyToAccount(privatekey);
const account_from = {
privateKey: privatekey,
accountAddress: account.address,
};
// Get abi & bin
const bytecode = contractOfIncrementer.evm.bytecode.object;
const abi = contractOfIncrementer.abi;
/*
*
*
* -- Verify Deployment --
*
*/
const Trans = async () => {
console.log('============================ 1. Deploy Contract');
console.log(`Attempting to deploy from account ${account.address}`);
// Create Contract Instance
const deployContract = new web3.eth.Contract(abi);
// Create Deployment Tx
const deployTx = deployContract.deploy({
data: bytecode,
arguments: [5],
});
// Sign Tx
const createTransaction = await web3.eth.accounts.signTransaction(
{
data: deployTx.encodeABI(),
gas: 8000000,
},
account_from.privateKey
);
// Get Transaction Receipt
const createReceipt = await web3.eth.sendSignedTransaction(
createTransaction.rawTransaction
);
console.log(`Contract deployed at address: ${createReceipt.contractAddress}`);
const deployedBlockNumber = createReceipt.blockNumber;
/*
*
*
*
* -- Verify Interface of Increment --
*
*
*/
// Create the contract with contract address
console.log();
console.log(
'============================ 2. Call Contract Interface getNumber'
);
let incrementer = new web3.eth.Contract(abi, createReceipt.contractAddress);
console.log(
`Making a call to contract at address: ${createReceipt.contractAddress}`
);
let number = await incrementer.methods.getNumber().call();
console.log(`The current number stored is: ${number}`);
// Add 3 to Contract Public Variable
console.log();
console.log(
'============================ 3. Call Contract Interface increment'
);
const _value = 3;
let incrementTx = incrementer.methods.increment(_value);
// Sign with Pk
let incrementTransaction = await web3.eth.accounts.signTransaction(
{
to: createReceipt.contractAddress,
data: incrementTx.encodeABI(),
gas: 8000000,
},
account_from.privateKey
);
// Send Transactoin and Get TransactionHash
const incrementReceipt = await web3.eth.sendSignedTransaction(
incrementTransaction.rawTransaction
);
console.log(`Tx successful with hash: ${incrementReceipt.transactionHash}`);
number = await incrementer.methods.getNumber().call();
console.log(`After increment, the current number stored is: ${number}`);
/*
*
*
*
* -- Verify Interface of Reset --
*
*
*/
console.log();
console.log('============================ 4. Call Contract Interface reset');
const resetTx = incrementer.methods.reset();
const resetTransaction = await web3.eth.accounts.signTransaction(
{
to: createReceipt.contractAddress,
data: resetTx.encodeABI(),
gas: 8000000,
},
account_from.privateKey
);
const resetcReceipt = await web3.eth.sendSignedTransaction(
resetTransaction.rawTransaction
);
console.log(`Tx successful with hash: ${resetcReceipt.transactionHash}`);
number = await incrementer.methods.getNumber().call();
console.log(`After reset, the current number stored is: ${number}`);
/*
*
*
*
* -- Listen to Event Increment --
*
*
*/
console.log();
console.log('============================ 5. Listen to Events');
console.log(' Listen to Increment Event only once && continuouslly');
// sepolia don't support http protocol to event listen, need to use websocket
// more details , please refer to https://medium.com/blockcentric/listening-for-smart-contract-events-on-public-blockchains-fdb5a8ac8b9a
const web3Socket = new Web3(
'wss://sepolia.infura.io/ws/v3/' + process.env.INFURA_ID
);
// listen to Increment event only once
incrementer.once('Increment', (error, event) => {
console.log('I am a onetime event listner, I am going to die now');
});
// listen to Increment event continuously
web3Socket.eth.subscribe('logs',{
address: createReceipt.contractAddress,
topics: []
},(error,result) => {
if(error){
console.error(error)
}
}
).on("data", (event) => {
console.log("New event: ", event);
})
.on("error", (error) => {
console.error("Error: ", error);
});
for (let step = 0; step < 3; step++) {
incrementTransaction = await web3.eth.accounts.signTransaction(
{
to: createReceipt.contractAddress,
data: incrementTx.encodeABI(),
gas: 8000000,
},
account_from.privateKey
);
await web3.eth.sendSignedTransaction(incrementTransaction.rawTransaction);
console.log("Waiting for events")
await sleep(3000);
if (step == 2) {
// clear all the listeners
web3Socket.eth.clearSubscriptions();
console.log('Clearing all the events listeners !!!!');
}
}
/*
*
*
*
* -- Get past events --
*
*
*/
console.log();
console.log('============================ 6. Going to get past events');
const pastEvents = await incrementer.getPastEvents('Increment', {
fromBlock: deployedBlockNumber,
toBlock: 'latest',
});
pastEvents.map((event) => {
console.log(event);
});
/*
*
*
*
* -- Check Transaction Error --
*
*
*/
console.log();
console.log('============================ 7. Check the transaction error');
incrementTx = incrementer.methods.increment(0);
incrementTransaction = await web3.eth.accounts.signTransaction(
{
to: createReceipt.contractAddress,
data: incrementTx.encodeABI(),
gas: 8000000,
},
account_from.privateKey
);
await web3.eth
.sendSignedTransaction(incrementTransaction.rawTransaction)
.on('error', console.error);
};
Trans()
.then(() => process.exit(0))
.catch((error) => {
console.error(error);
process.exit(1);
});