-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04-contract.ts
294 lines (259 loc) · 7.04 KB
/
04-contract.ts
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
import { RLP } from "@ethereumjs/rlp";
import { secp256k1 } from "@noble/curves/secp256k1";
import { keccak_256 } from "@noble/hashes/sha3";
import { bytesToHex, hexToBytes } from "@noble/hashes/utils";
import axios from "axios";
import assert from "assert";
import { ethers } from "ethers";
import CounterContract from "../artifacts/contracts/Counter.sol/Counter.json" assert { type: "json" };
const { abi, bytecode } = CounterContract;
const NODE_LOCATION = "http://127.0.0.1:8545/";
// This keeps track of our rpc calls
let rpcId = 40;
let nonce = 1n;
// deploy with ethers
const contractAddress = await deploy();
// Get the secret key
const sk = 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80n;
// Generate the public key
const pk = secp256k1.ProjectivePoint.BASE.multiply(sk)
.toRawBytes(false) // false here means uncompressed which adds 0x04 to start of bytes
.slice(1);
// Public keys are not addresses this is how we get Our address
const address = "0x" + bytesToHex(keccak_256(pk).slice(-20));
console.log("Account", {
PrivKey: `0x${sk.toString(16)}`,
PubKey: `0x${bytesToHex(pk)}`,
Address: address,
});
// Get the chainId
let res = await axios.post(NODE_LOCATION, {
jsonrpc: "2.0",
method: "eth_chainId",
params: [],
id: ++rpcId,
});
const chainId = BigInt(res.data.result);
console.log(`The chainId is ${chainId}`);
// Prepare smart contract call
const setCount = (amount: bigint) =>
BigInt(
"0x" +
bytesToHex(
new Uint8Array([
// Function sig
...keccak_256(
hexToBytes(fromAscii("setCount(uint256)").slice(2))
).slice(0, 4),
// Argument
...padBytes(amount, 32),
])
)
);
const getCount = () =>
BigInt(
"0x" +
bytesToHex(
new Uint8Array([
// Function sig
...keccak_256(hexToBytes(fromAscii("getCount()").slice(2))).slice(
0,
4
),
])
)
);
const increment = () =>
BigInt(
"0x" +
bytesToHex(
// Function sig
keccak_256(hexToBytes(fromAscii("increment()").slice(2))).slice(0, 4)
)
);
const decrement = () =>
BigInt(
"0x" +
bytesToHex(
// Function sig
keccak_256(hexToBytes(fromAscii("increment()").slice(2))).slice(0, 4)
)
);
// Here are our basic transaction details
res = await axios.post(NODE_LOCATION, {
jsonrpc: "2.0",
method: "eth_sendRawTransaction",
params: [
signTransaction(
{
chainId,
nonce: nonce++, // This must increase for every tx
maxPriorityFeePerGas: 10n,
maxFeePerGas: 875000000n,
gasLimit: 90000n,
to: BigInt(contractAddress),
value: 0n,
data: setCount(10n),
accessList: [],
},
sk
),
],
id: ++rpcId,
});
console.log("Transaction submitted:\n " + res.data.result);
res = await axios.post(NODE_LOCATION, {
jsonrpc: "2.0",
method: "eth_call",
params: [
{
to: contractAddress,
data: "0x" + getCount().toString(16),
},
"latest",
],
id: ++rpcId,
});
assert(BigInt(res.data.result) === 10n);
// Here are our basic transaction details
res = await axios.post(NODE_LOCATION, {
jsonrpc: "2.0",
method: "eth_sendRawTransaction",
params: [
signTransaction(
{
chainId,
nonce: nonce++, // This must increase for every tx
maxPriorityFeePerGas: 10n,
maxFeePerGas: 875000000n,
gasLimit: 90000n,
to: BigInt(contractAddress),
value: 0n,
data: increment(),
accessList: [],
},
sk
),
],
id: ++rpcId,
});
console.log("Transaction submitted:\n " + res.data.result);
res = await axios.post(NODE_LOCATION, {
jsonrpc: "2.0",
method: "eth_call",
params: [
{
to: contractAddress,
data: "0x" + getCount().toString(16),
},
"latest",
],
id: ++rpcId,
});
assert(BigInt(res.data.result) === 11n);
function fromAscii(stringValue: string) {
let hex = "";
for (let i = 0; i < stringValue.length; i++) {
const code = stringValue.charCodeAt(i);
const n = code.toString(16);
hex += n.length < 2 ? `0${n}` : n;
}
return `0x${hex}`;
}
function padBytes(n: bigint, len: number) {
let hex = n.toString(16);
hex = hex.length % 2 !== 0 ? "0" + hex : hex;
const bytes = hexToBytes(hex);
if (len < bytes.length)
throw new Error("Byte length is greater than padding");
return new Uint8Array([...new Uint8Array(len - bytes.length), ...bytes]);
}
// Helper for preparing bigints for RLP encoding
function bigIntToBytes(value: bigint): Uint8Array {
// First we get the hex string from the bigint
let hex = value.toString(16);
// Next we pad the string so we have an even number of bytes for each Uint8Array item
let paddedHex = hex.length % 2 ? `0${hex}` : hex;
// Then we convert to bytes
let bytes = hexToBytes(paddedHex);
// Then we ditch the leading 0 bytes
let first = bytes[0];
while (bytes.length > 0 && first.toString() === "0") {
bytes = bytes.slice(1);
first = bytes[0];
}
return bytes;
}
async function deploy() {
const provider = new ethers.JsonRpcProvider(NODE_LOCATION);
const factory = new ethers.ContractFactory(
abi,
bytecode,
await provider.getSigner("0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266")
);
const contract = await factory.deploy();
const address = await contract.getAddress();
return address;
}
function signTransaction(
tx: {
chainId: bigint;
nonce: bigint;
maxPriorityFeePerGas: bigint;
maxFeePerGas: bigint;
gasLimit: bigint;
to: bigint;
value: bigint;
data: bigint;
accessList: never[];
},
sk: bigint
) {
console.log(`The Transaction is `, tx);
// Encode the transaction details as a Uint8Array using RLP encoding
const raw = new Uint8Array([
0x02,
...RLP.encode([
bigIntToBytes(tx.chainId),
bigIntToBytes(tx.nonce),
bigIntToBytes(tx.maxPriorityFeePerGas),
bigIntToBytes(tx.maxFeePerGas),
bigIntToBytes(tx.gasLimit),
bigIntToBytes(tx.to),
bigIntToBytes(tx.value),
tx.data,
tx.accessList,
]),
]);
// Get the message hash
const msgHash = keccak_256(raw);
// Generate a signature for the hash (r & s)
const sig = secp256k1.sign(msgHash, sk);
const signedTx = {
...tx,
v: BigInt(sig.recovery), //+ 27n + 2n * BigInt(chainId),
r: sig.r,
s: sig.s,
};
console.log(`The Signed Transaction is `, signedTx);
const signedRaw = new Uint8Array([
0x02,
...RLP.encode([
bigIntToBytes(signedTx.chainId),
bigIntToBytes(signedTx.nonce),
bigIntToBytes(signedTx.maxPriorityFeePerGas),
bigIntToBytes(signedTx.maxFeePerGas),
bigIntToBytes(signedTx.gasLimit),
bigIntToBytes(signedTx.to),
bigIntToBytes(signedTx.value),
signedTx.data,
signedTx.accessList,
bigIntToBytes(signedTx.v),
bigIntToBytes(signedTx.r),
bigIntToBytes(signedTx.s),
]),
]);
const rawSignedTx = "0x" + bytesToHex(signedRaw);
console.log(`The Raw Signed Transaction is:\n `, rawSignedTx);
return rawSignedTx;
}