-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSSP_Wallet_API_Example.html
136 lines (136 loc) · 4.35 KB
/
SSP_Wallet_API_Example.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Basic SSP Connector Interaction</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
}
button {
margin: 10px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>SSP Interaction</h1>
<button id="button1">Test signing message</button>
<button id="button2">Test paying with Flux</button>
<button id="button3">Test paying with ETH</button>
<button id="button4">Test paying with USDT on ETH chain</button>
<button id="button5">
Test obtaining all supported chains information
</button>
<button id="button6">Test obtaining user synced chains information</button>
<button id="button7">
Test obtaining tokens information for ETH chain
</button>
<button id="button8">
Test obtaining addresses information for BTC chain
</button>
<button id="button9">
Test obtaining addresses information for ETH chain
</button>
<button id="button10">
Test obtaining information about all user addresses and synced chains
</button>
<script>
// Event listeners for buttons
document.getElementById('button1').addEventListener('click', () =>
window.ssp
.request('sspwid_sign_message', { message: 'Hello SSP' })
.then((response) => {
console.log(response);
}),
);
document.getElementById('button2').addEventListener('click', () =>
window.ssp
.request('pay', {
message: 'Hello SSP',
amount: '4.124',
address: 't1eabPBaLCqNgttQMnAoohPaQM6u2vFwTNJ',
chain: 'flux',
})
.then((response) => {
console.log(response);
}),
);
document.getElementById('button3').addEventListener('click', () =>
window.ssp
.request('pay', {
message: 'Hello SSP',
amount: '4.124',
address: '0x342c34702929849b6deaa47496d211cbe4167fa5',
chain: 'eth',
})
.then((response) => {
console.log(response);
}),
);
document.getElementById('button4').addEventListener('click', () =>
window.ssp
.request('pay', {
message: 'Hello SSP',
amount: '5.124',
address: '0x342c34702929849b6deaa47496d211cbe4167fa5',
chain: 'eth',
contract: '0xdac17f958d2ee523a2206206994597c13d831ec7',
})
.then((response) => {
console.log(response);
}),
);
document.getElementById('button5').addEventListener('click', () =>
window.ssp.request('chains_info').then((response) => {
console.log(response);
}),
);
document.getElementById('button6').addEventListener('click', () =>
window.ssp.request('user_chains_info').then((response) => {
console.log(response);
}),
);
document.getElementById('button7').addEventListener('click', () =>
window.ssp
.request('chain_tokens', { chain: 'eth' })
.then((response) => {
console.log(response);
}),
);
document.getElementById('button8').addEventListener('click', () =>
window.ssp
.request('user_addresses', { chain: 'btc' })
.then((response) => {
console.log(response);
}),
);
document.getElementById('button9').addEventListener('click', () =>
window.ssp
.request('user_addresses', { chain: 'eth' })
.then((response) => {
console.log(response);
window.ssp
.request('user_addresses', { chain: 'flux' })
.then((response) => {
console.log(response);
});
}),
);
document.getElementById('button10').addEventListener('click', () =>
window.ssp.request('user_chains_addresses_all').then((response) => {
console.log(response);
}),
);
</script>
</body>
</html>