Completar Pedido

Información de CompraActualiza tu Pedido y Ahorra!
Pago
ServicioQuantityPrecio
No products available
import { ThirdwebProvider, ConnectButton } from "@thirdweb-dev/react"; import { createWallet, walletConnect, inAppWallet, } from "@thirdweb-dev/wallets"; const client = createThirdwebClient({ clientId: "YOUR_ACTUAL_CLIENT_ID", }); const wallets = [ createWallet("io.metamask"), createWallet("com.coinbase.wallet"), walletConnect(), inAppWallet({ auth: { options: [ "email", "google", "apple", "facebook", "phone", ], }, }), ]; export default function App() { return ( ); }