Thirdweb SDK
Crear aplicación
npx thirdweb create --app
Interactuar con un contrato
Inicializar SDK en Celo
import { ThirdwebProvider } from "@thirdweb-dev/react";
import { Celo } from "@thirdweb-dev/chains";
const App = () => {
return (
<ThirdwebProvider activeChain={Celo}>
<YourApp />
</ThirdwebProvider>
);
};Obtener contrato
Llamar a funciones
Conectar billetera
Implementar aplicación
Last updated