-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathp2pkh.js
40 lines (31 loc) · 1.56 KB
/
p2pkh.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
import { URL } from 'url';
import { compileFile } from 'cashc';
import { ElectrumNetworkProvider, Contract, SignatureTemplate } from 'cashscript';
import { stringify } from '@bitauth/libauth';
// Import Alice's keys from common-js.js
import { alicePkh, alicePriv, alicePub } from './common-js.js';
// Compile the P2PKH contract to an artifact object
const artifact = compileFile(new URL('p2pkh.cash', import.meta.url));
// Initialise a network provider for network operations on CHIPNET
const provider = new ElectrumNetworkProvider('chipnet');
// Instantiate a new contract using the compiled artifact and network provider
// AND providing the constructor parameters (pkh: alicePkh)
const contract = new Contract(artifact, [alicePkh], { provider });
// Get contract balance & output address + balance
console.log('contract address:', contract.address);
console.log('contract balance:', await contract.getBalance());
// Call the spend function with alice's signature + pk
// And use it to send 0. 000 100 00 BCH back to the contract's address
const tx = await contract.functions
.spend(alicePub, new SignatureTemplate(alicePriv))
.to(contract.address, 10000n)
.send();
console.log('transaction details:', stringify(tx));
// Call the spend function with alice's signature + pk
// And use it to send two outputs of 0. 000 150 00 BCH back to the contract's address
const tx2 = await contract.functions
.spend(alicePub, new SignatureTemplate(alicePriv))
.to(contract.address, 15000n)
.to(contract.address, 15000n)
.send();
console.log('transaction details:', stringify(tx2));