forked from DogStark/Wordbloc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminipay-integration.js
More file actions
226 lines (191 loc) · 7.19 KB
/
Copy pathminipay-integration.js
File metadata and controls
226 lines (191 loc) · 7.19 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// MiniPay Integration Hook for SpellBloc
import { useState, useEffect, useCallback } from 'react';
export const useSpellBlocPayments = () => {
const [isConnected, setIsConnected] = useState(false);
const [account, setAccount] = useState(null);
const [balance, setBalance] = useState('0');
const [loading, setLoading] = useState(false);
const [error, setError] = useState(null);
// Contract addresses (will be updated after deployment)
const SPELLBLOC_PAYMENT_CONTRACT = process.env.NEXT_PUBLIC_PAYMENT_CONTRACT || '0x...';
const CUSD_TOKEN_ADDRESS = '0x765DE816845861e75A25fCA122bb6898B8B1282a'; // Celo mainnet cUSD
// Subscription plans with prices in CUSD
const SUBSCRIPTION_PLANS = {
monthly: {
price: '2.5',
duration: 30,
name: 'Monthly Premium',
features: ['Unlimited hints', 'All game modes', 'Progress analytics']
},
yearly: {
price: '25',
duration: 365,
name: 'Yearly Premium',
features: ['All monthly features', '2 months free', 'Priority support']
},
family: {
price: '40',
duration: 365,
name: 'Family Plan',
features: ['Up to 4 children', 'All premium features', 'Teacher dashboard']
}
};
// Initialize MiniPay connection
const connectMiniPay = useCallback(async () => {
setLoading(true);
setError(null);
try {
// Check if MiniPay is available
if (typeof window !== 'undefined' && window.ethereum) {
// Request account access
const accounts = await window.ethereum.request({
method: 'eth_requestAccounts'
});
if (accounts.length > 0) {
setAccount(accounts[0]);
setIsConnected(true);
// Get cUSD balance
await updateBalance(accounts[0]);
console.log('✅ MiniPay connected:', accounts[0]);
}
} else {
throw new Error('MiniPay not detected. Please use MiniPay browser.');
}
} catch (err) {
console.error('❌ MiniPay connection failed:', err);
setError(err.message);
} finally {
setLoading(false);
}
}, []);
// Update cUSD balance
const updateBalance = useCallback(async (address) => {
try {
if (!window.ethereum) return;
const balanceHex = await window.ethereum.request({
method: 'eth_call',
params: [{
to: CUSD_TOKEN_ADDRESS,
data: `0x70a08231000000000000000000000000${address.slice(2)}`
}, 'latest']
});
const balanceWei = parseInt(balanceHex, 16);
const balanceCUSD = (balanceWei / 1e18).toFixed(2);
setBalance(balanceCUSD);
} catch (err) {
console.error('❌ Balance update failed:', err);
}
}, []);
// Purchase subscription
const purchaseSubscription = useCallback(async (planType) => {
if (!isConnected || !account) {
throw new Error('Please connect MiniPay first');
}
const plan = SUBSCRIPTION_PLANS[planType];
if (!plan) {
throw new Error('Invalid subscription plan');
}
setLoading(true);
setError(null);
try {
console.log(`🛒 Purchasing ${plan.name} for ${plan.price} cUSD...`);
// Convert price to wei (18 decimals)
const priceWei = (parseFloat(plan.price) * 1e18).toString(16);
// Send transaction via MiniPay
const txHash = await window.ethereum.request({
method: 'eth_sendTransaction',
params: [{
from: account,
to: SPELLBLOC_PAYMENT_CONTRACT,
value: `0x${priceWei}`,
gas: '0x5208', // 21000 gas
gasPrice: '0x3B9ACA00' // 1 gwei
}]
});
console.log('✅ Transaction sent:', txHash);
// Wait for confirmation
await waitForTransaction(txHash);
// Update balance
await updateBalance(account);
// Store subscription locally
const subscription = {
planType,
txHash,
startDate: new Date().toISOString(),
endDate: new Date(Date.now() + plan.duration * 24 * 60 * 60 * 1000).toISOString(),
active: true
};
localStorage.setItem('spellbloc_subscription', JSON.stringify(subscription));
return {
success: true,
txHash,
subscription
};
} catch (err) {
console.error('❌ Purchase failed:', err);
setError(err.message);
throw err;
} finally {
setLoading(false);
}
}, [isConnected, account, updateBalance]);
// Wait for transaction confirmation
const waitForTransaction = useCallback(async (txHash) => {
let attempts = 0;
const maxAttempts = 30; // 30 seconds timeout
while (attempts < maxAttempts) {
try {
const receipt = await window.ethereum.request({
method: 'eth_getTransactionReceipt',
params: [txHash]
});
if (receipt && receipt.status === '0x1') {
console.log('✅ Transaction confirmed:', txHash);
return receipt;
}
} catch (err) {
console.log('⏳ Waiting for confirmation...');
}
await new Promise(resolve => setTimeout(resolve, 1000));
attempts++;
}
throw new Error('Transaction confirmation timeout');
}, []);
// Get current subscription status
const getSubscriptionStatus = useCallback(() => {
try {
const stored = localStorage.getItem('spellbloc_subscription');
if (!stored) return null;
const subscription = JSON.parse(stored);
const now = new Date();
const endDate = new Date(subscription.endDate);
return {
...subscription,
isActive: subscription.active && endDate > now,
daysRemaining: Math.max(0, Math.ceil((endDate - now) / (1000 * 60 * 60 * 24)))
};
} catch (err) {
console.error('❌ Subscription status error:', err);
return null;
}
}, []);
return {
isConnected,
account,
balance,
loading,
error,
connectMiniPay,
purchaseSubscription,
getSubscriptionStatus,
subscriptionPlans: SUBSCRIPTION_PLANS
};
};
// Utility functions
export const formatCUSD = (amount) => {
return `${parseFloat(amount).toFixed(2)} cUSD`;
};
export const shortenAddress = (address) => {
if (!address) return '';
return `${address.slice(0, 6)}...${address.slice(-4)}`;
};