How to use a Dynamic signer with permissionless.js
Permissionless.js allows you to plug in custom signers to control the accounts that you create. It is possible to use Dynamic as a signer with permissionless.js, allowing you to use Dynamic to create and control smart accounts and sign transactions.
Install the dependencies
npm i @dynamic-labs/sdk-react-core @dynamic-labs/wagmi-connector @dynamic-labs/ethereum permissionless viem wagmi
Create the Dynamic provider
Following Dynamic’s quickstart guide, set up the Dynamic provider in your app. Also integrate the DynamicWagmiConnector, which will allow you to use Dynamic as a signer with permissionless.js.
import {
DynamicContextProvider,
DynamicWidget,
} from "@dynamic-labs/sdk-react-core";
import { DynamicWagmiConnector } from "@dynamic-labs/wagmi-connector";
import { EthereumWalletConnectors } from "@dynamic-labs/ethereum";
export const App = () => {
return (
<DynamicContextProvider
settings={{
environmentId: "REPLACE-WITH-YOUR-ENVIRONMENT-ID",
walletConnectors: [EthereumWalletConnectors],
}}
>
<DynamicWagmiConnector>
<DynamicWidget />
</DynamicWagmiConnector>
</DynamicContextProvider>
);
};
Create the SmartAccountClient
Create the smart account client using the Dynamic signer. Note: DynamicWagmiConnector internally sets up the WagmiConfig, so there is no need to do it separately. This is where you would configure what smart account implementation (e.g. Safe, Kernel, Biconomy, SimpleAccount) and what paymaster logic you want to use.
import {
createSmartAccountClient,
walletClientToCustomSigner,
} from "permissionless";
import { signerToSimpleSmartAccount } from "permissionless/accounts";
import { useWalletClient } from "wagmi";
const { data: walletClient } = useWalletClient();
const customSigner = walletClientToCustomSigner(walletClient);
const simpleSmartAccountClient = await signerToSimpleSmartAccount(
publicClient,
{
entryPoint: "0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789",
signer: customSigner,
factoryAddress: "0x9406Cc6185a346906296840746125a0E44976454",
}
);
const smartAccountClient = createSmartAccountClient({
account: simpleSmartAccountClient,
chain: sepolia,
transport: http("<bundler_endpoint>"),
sponsorUserOperation: pimlicoPaymaster.sponsorUserOperation,
});
Send a transaction
You can now send transactions as normal. The sponsorUserOperation function will be called before each transaction is signed and sent, applying the custom paymaster logic you have set.
const txHash = await smartAccountClient.sendTransaction({
to: zeroAddress,
data: "0x",
value: BigInt(0),
});