Circle
This tutorial guides you through using Dynamic as a signer for Circle Smart Accounts. You can refer to this dev doc to learn more about Circle’s Modular Wallets offering.
Setup
-
Register a Circle Developer account. In the Configurator section of the Circle Developer Console under Modalar Wallets, grab your Client URL, and create a new Client Key.
-
Register a Dynamic account. Grab your environment ID from the SDK & API keys page of the Dynamic Dashboard.
-
In the Chains And Networks page of the Dynamic Dashboard, enable the EVM network/s you want to use with Circle. In this example we use Polygon Amoy, so please make sure that’s enabled.
Code Implementation
- Create a vanilla React app that implements Dynamic by running
npx create-dynamic-app@latest
in your terminal of choice, choosing the following stack:
-
Navigate to the project directory and install the given dependencies by running
npm install
. Then also install the extra Circle SDK dependency by runningnpm install @circle-fin/modular-wallets-core
. -
Create a
.env
file in the project directory and add the following environment variables:
-
In
src/App.js
, replace the value for theenvironmentId
with your own Dynamic environment ID. -
Navigate to
src/Main.js
, and replace the current contents with the following:
- Run the app by running
npm start
, check out the UI, once you signup/login, you should see the following:
- Add a valid address to send to, and an amount that is within your wallet’s balance plus a reasonable gas fee. Click on the “Send” button, and you should see the transaction hash in the UI!
Troubleshooting
- Execution reverted for an unknown reason This is most likely due to the account not having enough ETH to pay for the transfer, make sure your smart wallet is funded!
Was this page helpful?