-
Notifications
You must be signed in to change notification settings - Fork 0
/
renderer.js
89 lines (68 loc) · 2.04 KB
/
renderer.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
console.log("welcome to minifirefly!")
const preload = window["__MINIFIREFLY__"];
window["api"] = {}
const handle = window["api"]
// ---
const removeWallet = () => {
preload.removeWallet()
window["_wallet"] = null
console.log("👋 REMOVED wallet")
}
handle["removeWallet"] = removeWallet
// ---
const createWallet = () => {
preload.createWallet().then((wallet) => {
window["_wallet"] = wallet
console.log("🆕 CREATED wallet: ", wallet)
})
}
handle["createWallet"] = createWallet
// ---
const loadWallet = () => {
preload.loadWallet().then((wallet) => {
window["_wallet"] = wallet
console.log("🔄 LOADED wallet: ", wallet)
})
}
handle["loadWallet"] = loadWallet
// ---
const implicitAccountCreationAddress = () => {
window["_wallet"].implicitAccountCreationAddress().then((address) => {
console.log("💸 SEND funds to ", address);
window["address"] = address
})
}
handle["implicitAccountCreationAddress"] = implicitAccountCreationAddress
// ---
const sync = () => {
window["_wallet"].sync({ syncImplicitAccounts: true }).then(async () => {
console.log("📡 SYNCHED wallet", (await window["_wallet"].getBalance()).baseCoin)
})
}
handle["sync"] = sync
// ---
const implicitAccounts = () => {
window["_wallet"].implicitAccounts().then((implicitAccounts) => {
window["_implicitAccounts"] = implicitAccounts
console.log("✅ implicitAccounts", implicitAccounts)
})
}
handle["implicitAccounts"] = implicitAccounts
// ---
const prepareImplicitAccountTransition = () => {
window["_wallet"].prepareImplicitAccountTransition(window["_implicitAccounts"][0].outputId).then((res) => {
console.log("✅✅ prepareImplicitAccountTransition", res)
})
}
handle["prepareImplicitAccountTransition"] = prepareImplicitAccountTransition
setTimeout(async () => {
console.clear()
console.log(`
Use the 'api' object with these methods:
1. createWallet / loadWallet / removeWallet
2. implicitAccountCreationAddress
3. sync
4. implicitAccounts
5. prepareImplicitAccountTransition
`)
}, 100)