-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-js.js
140 lines (128 loc) · 3.7 KB
/
index-js.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
import {
createWalletClient,
custom,
formatEther,
parseEther,
defineChain,
createPublicClient,
} from "https://esm.sh/viem"
import "https://esm.sh/viem/window"
import { abi, contractAddress } from "./constants.js"
const connectButton = document.getElementById("connectButton")
const fundButton = document.getElementById("fundButton")
const balanceButton = document.getElementById("balanceButton")
const withdrawButton = document.getElementById("withdrawButton")
const ethAmountInput = document.getElementById("ethAmount")
let walletClient
let publicClient
async function connect() {
if (typeof window.ethereum !== "undefined") {
walletClient = createWalletClient({
transport: custom(window.ethereum),
})
await walletClient.requestAddresses()
connectButton.innerHTML = "Connected"
} else {
connectButton.innerHTML = "Please install MetaMask"
}
}
async function fund() {
const ethAmount = ethAmountInput.value
console.log(`Funding with ${ethAmount}...`)
if (typeof window.ethereum !== "undefined") {
try {
walletClient = createWalletClient({
transport: custom(window.ethereum),
})
const [account] = await walletClient.requestAddresses()
const currentChain = await getCurrentChain(walletClient)
console.log("Processing transaction...")
publicClient = createPublicClient({
transport: custom(window.ethereum),
})
const { request } = await publicClient.simulateContract({
address: contractAddress,
abi,
functionName: "fund",
account,
chain: currentChain,
value: parseEther(ethAmount),
})
const hash = await walletClient.writeContract(request)
console.log("Transaction processed: ", hash)
} catch (error) {
console.log(error)
}
} else {
fundButton.innerHTML = "Please install MetaMask"
}
}
async function getBalance() {
if (typeof window.ethereum !== "undefined") {
try {
publicClient = createPublicClient({
transport: custom(window.ethereum),
})
const balance = await publicClient.getBalance({
address: contractAddress,
})
console.log(formatEther(balance))
} catch (error) {
console.log(error)
}
} else {
balanceButton.innerHTML = "Please install MetaMask"
}
}
async function withdraw() {
console.log(`Withdrawing...`)
if (typeof window.ethereum !== "undefined") {
try {
walletClient = createWalletClient({
transport: custom(window.ethereum),
})
publicClient = createPublicClient({
transport: custom(window.ethereum),
})
const [account] = await walletClient.requestAddresses()
const currentChain = await getCurrentChain(walletClient)
console.log("Processing transaction...")
const { request } = await publicClient.simulateContract({
account,
address: contractAddress,
abi,
functionName: "withdraw",
chain: currentChain,
})
const hash = await walletClient.writeContract(request)
console.log("Transaction processed: ", hash)
} catch (error) {
console.log(error)
}
} else {
withdrawButton.innerHTML = "Please install MetaMask"
}
}
async function getCurrentChain(client) {
const chainId = await client.getChainId()
const currentChain = defineChain({
id: chainId,
name: "Custom Chain",
nativeCurrency: {
name: "Ether",
symbol: "ETH",
decimals: 18,
},
rpcUrls: {
default: {
http: ["http://localhost:8545"],
},
},
})
return currentChain
}
// Event listeners
connectButton.onclick = connect
fundButton.onclick = fund
balanceButton.onclick = getBalance
withdrawButton.onclick = withdraw