-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.ts
54 lines (43 loc) · 1.4 KB
/
deploy.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
import { Btccontracts } from './src/contracts/btccontracts'
import {
bsv,
TestWallet,
DefaultProvider,
sha256,
toByteString,
} from 'scrypt-ts'
import * as dotenv from 'dotenv'
// Load the .env file
dotenv.config()
if (!process.env.PRIVATE_KEY) {
throw new Error(
'No "PRIVATE_KEY" found in .env, Please run "npm run genprivkey" to generate a private key'
)
}
// Read the private key from the .env file.
// The default private key inside the .env file is meant to be used for the Bitcoin testnet.
// See https://scrypt.io/docs/bitcoin-basics/bsv/#private-keys
const privateKey = bsv.PrivateKey.fromWIF(process.env.PRIVATE_KEY || '')
// Prepare signer.
// See https://scrypt.io/docs/how-to-deploy-and-call-a-contract/#prepare-a-signer-and-provider
const signer = new TestWallet(
privateKey,
new DefaultProvider({
network: bsv.Networks.testnet,
})
)
async function main() {
await Btccontracts.loadArtifact()
// TODO: Adjust the amount of satoshis locked in the smart contract:
const amount = 1
const instance = new Btccontracts(
// TODO: Adjust constructor parameter values:
sha256(toByteString('hello world', true))
)
// Connect to a signer.
await instance.connect(signer)
// Contract deployment.
const deployTx = await instance.deploy(amount)
console.log(`Btccontracts contract deployed: ${deployTx.id}`)
}
main()