File size: 10,807 Bytes
78d0e31 |
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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
import { ethers } from "ethers"
import { FLB_TOKEN_ADDRESSES } from "./constants"
// Celo network configuration
export const CELO_NETWORKS = {
mainnet: {
chainId: 42220,
chainIdHex: "0xa4ec",
name: "Celo Mainnet",
rpcUrl: "https://forno.celo.org",
blockExplorer: "https://celoscan.io",
nativeCurrency: {
name: "CELO",
symbol: "CELO",
decimals: 18,
},
},
alfajores: {
chainId: 44787,
chainIdHex: "0xaef3",
name: "Celo Alfajores Testnet",
rpcUrl: "https://alfajores-forno.celo-testnet.org",
blockExplorer: "https://alfajores.celoscan.io",
nativeCurrency: {
name: "CELO",
symbol: "CELO",
decimals: 18,
},
},
}
export interface WalletState {
connected: boolean
address: string | null
chainId: number | null
balance: {
celo: string
flb: string
}
provider: ethers.providers.Web3Provider | null
signer: ethers.Signer | null
isConnecting: boolean
error: string | null
}
export class CeloWalletManager {
private state: WalletState = {
connected: false,
address: null,
chainId: null,
balance: { celo: "0", flb: "0" },
provider: null,
signer: null,
isConnecting: false,
error: null,
}
private listeners: ((state: WalletState) => void)[] = []
private initialized = false
constructor() {
if (typeof window !== "undefined") {
this.initialize()
}
}
private async initialize() {
if (this.initialized) return
this.initialized = true
if (document.readyState === "loading") {
await new Promise((resolve) => {
document.addEventListener("DOMContentLoaded", resolve)
})
}
await new Promise((resolve) => setTimeout(resolve, 100))
this.initializeEventListeners()
await this.checkExistingConnection()
}
private async checkExistingConnection() {
if (!this.isWalletAvailable()) return
try {
const accounts = await window.ethereum.request({
method: "eth_accounts",
})
if (accounts && accounts.length > 0) {
await this.reconnectWallet(accounts[0])
}
} catch (error) {
console.log("No existing connection found:", error)
}
}
private async reconnectWallet(account: string) {
try {
const provider = new ethers.providers.Web3Provider(window.ethereum)
const signer = provider.getSigner()
const network = await provider.getNetwork()
this.state = {
...this.state,
connected: true,
address: account,
chainId: network.chainId,
provider,
signer,
error: null,
}
await this.updateBalance()
this.notifyListeners()
} catch (error) {
console.error("Failed to reconnect wallet:", error)
}
}
private isWalletAvailable(): boolean {
return typeof window !== "undefined" && typeof window.ethereum !== "undefined"
}
private initializeEventListeners() {
if (!this.isWalletAvailable()) return
try {
window.ethereum.on("accountsChanged", this.handleAccountsChanged.bind(this))
window.ethereum.on("chainChanged", this.handleChainChanged.bind(this))
window.ethereum.on("disconnect", this.handleDisconnect.bind(this))
} catch (error) {
console.error("Failed to initialize event listeners:", error)
}
}
private handleAccountsChanged(accounts: string[]) {
if (accounts.length === 0) {
this.disconnect()
} else if (accounts[0] !== this.state.address) {
this.state.address = accounts[0]
this.updateBalance()
this.notifyListeners()
}
}
private handleChainChanged(chainId: string) {
const newChainId = Number.parseInt(chainId, 16)
if (newChainId !== this.state.chainId) {
this.state.chainId = newChainId
this.updateBalance()
this.notifyListeners()
}
}
private handleDisconnect() {
this.disconnect()
}
private notifyListeners() {
this.listeners.forEach((listener) => {
try {
listener({ ...this.state })
} catch (error) {
console.error("Error in wallet state listener:", error)
}
})
}
public subscribe(listener: (state: WalletState) => void) {
this.listeners.push(listener)
return () => {
this.listeners = this.listeners.filter((l) => l !== listener)
}
}
public async connectWallet(): Promise<boolean> {
if (this.state.isConnecting) return false
this.state.isConnecting = true
this.state.error = null
this.notifyListeners()
try {
if (!this.isWalletAvailable()) {
throw new Error("No wallet found. Please install MetaMask, Valora, or another Web3 wallet.")
}
const accounts = await window.ethereum.request({
method: "eth_requestAccounts",
})
if (!accounts || accounts.length === 0) {
throw new Error("No accounts found. Please unlock your wallet.")
}
const provider = new ethers.providers.Web3Provider(window.ethereum)
const signer = provider.getSigner()
const network = await provider.getNetwork()
this.state = {
...this.state,
connected: true,
address: accounts[0],
chainId: network.chainId,
provider,
signer,
isConnecting: false,
error: null,
}
await this.switchToCeloNetwork()
await this.updateBalance()
this.notifyListeners()
return true
} catch (error: any) {
console.error("Failed to connect wallet:", error)
this.state.isConnecting = false
this.state.error = error.message || "Failed to connect wallet"
this.notifyListeners()
return false
}
}
public async switchToCeloNetwork(network: "mainnet" | "alfajores" = "alfajores"): Promise<boolean> {
if (!this.isWalletAvailable()) return false
try {
const targetNetwork = CELO_NETWORKS[network]
if (this.state.chainId === targetNetwork.chainId) {
return true
}
try {
await window.ethereum.request({
method: "wallet_switchEthereumChain",
params: [{ chainId: targetNetwork.chainIdHex }],
})
return true
} catch (switchError: any) {
if (switchError.code === 4902) {
await window.ethereum.request({
method: "wallet_addEthereumChain",
params: [
{
chainId: targetNetwork.chainIdHex,
chainName: targetNetwork.name,
nativeCurrency: targetNetwork.nativeCurrency,
rpcUrls: [targetNetwork.rpcUrl],
blockExplorerUrls: [targetNetwork.blockExplorer],
},
],
})
return true
}
throw switchError
}
} catch (error) {
console.error("Failed to switch network:", error)
return false
}
}
public async updateBalance(): Promise<void> {
if (!this.state.provider || !this.state.address) return
try {
const celoBalance = await this.state.provider.getBalance(this.state.address)
this.state.balance.celo = ethers.utils.formatEther(celoBalance)
const flbBalance = await this.getFLBBalance()
this.state.balance.flb = flbBalance
this.notifyListeners()
} catch (error) {
console.error("Failed to update balance:", error)
}
}
private async getFLBBalance(): Promise<string> {
if (!this.state.provider || !this.state.address) return "0"
try {
const network = await this.state.provider.getNetwork()
let tokenAddress: string
if (network.chainId === 42220) {
tokenAddress = FLB_TOKEN_ADDRESSES.CELO_MAINNET
} else if (network.chainId === 44787) {
tokenAddress = FLB_TOKEN_ADDRESSES.CELO_ALFAJORES
} else {
return "0"
}
if (tokenAddress === "0x0000000000000000000000000000000000000000") {
return "0"
}
const contract = new ethers.Contract(
tokenAddress,
["function balanceOf(address) view returns (uint256)"],
this.state.provider,
)
const balance = await contract.balanceOf(this.state.address)
return ethers.utils.formatEther(balance)
} catch (error) {
console.error("Failed to get FLB balance:", error)
return "0"
}
}
public disconnect(): void {
this.state = {
connected: false,
address: null,
chainId: null,
balance: { celo: "0", flb: "0" },
provider: null,
signer: null,
isConnecting: false,
error: null,
}
this.notifyListeners()
}
public getState(): WalletState {
return { ...this.state }
}
public async sendTransaction(to: string, value: string, data?: string): Promise<string> {
if (!this.state.signer) {
throw new Error("Wallet not connected")
}
try {
const tx = await this.state.signer.sendTransaction({
to,
value: ethers.utils.parseEther(value),
data: data || "0x",
})
return tx.hash
} catch (error) {
console.error("Transaction failed:", error)
throw error
}
}
public async mintFLBTokens(amount = "100"): Promise<string> {
if (!this.state.signer || !this.state.address) {
throw new Error("Wallet not connected")
}
try {
const network = await this.state.provider?.getNetwork()
if (!network || network.chainId !== 44787) {
throw new Error("Please switch to Celo Alfajores testnet")
}
const tokenAddress = FLB_TOKEN_ADDRESSES.CELO_ALFAJORES
// For now, this is a placeholder - actual minting would require contract owner
throw new Error(
"Minting functionality requires validator registration. Please use the validator onboarding flow.",
)
} catch (error) {
console.error("Failed to mint FLB tokens:", error)
throw error
}
}
}
let celoWalletManager: CeloWalletManager | null = null
export function getCeloWalletManager(): CeloWalletManager {
if (typeof window === "undefined") {
return {
getState: () => ({
connected: false,
address: null,
chainId: null,
balance: { celo: "0", flb: "0" },
provider: null,
signer: null,
isConnecting: false,
error: null,
}),
subscribe: () => () => {},
connectWallet: async () => false,
switchToCeloNetwork: async () => false,
updateBalance: async () => {},
disconnect: () => {},
sendTransaction: async () => {
throw new Error("Not available on server")
},
mintFLBTokens: async () => {
throw new Error("Not available on server")
},
} as any
}
if (!celoWalletManager) {
celoWalletManager = new CeloWalletManager()
}
return celoWalletManager
}
|