Bounties

Workshop recording

Check back soon!

Adding Soneium as a network in Dynamic

import { DynamicContextProvider } from "@dynamic-labs/sdk-react-core"
import { EthereumWalletConnectors} from "@dynamic-labs/ethereum"
import { soneiumMinato } from "viem/chains"

<DynamicContextProvider settings={{
    environmentId: "XXXXXX",
    walletConnectors: [EthereumWalletConnectors],
    overrides: {
        evmNetworks: [
            {
                chainId: soneiumMinato.id,
                networkId: soneiumMinato.id,
                name: soneiumMinato.name,
                nativeCurrency: soneiumMinato.nativeCurrency,
                rpcUrls: [...soneiumMinato.rpcUrls.default.http],
                iconUrls: ["https://soneium.org/favicon.ico"],
                blockExplorerUrls: [soneiumMinato.blockExplorers.default.url]
            }
        ]
    }
}}>
    <App />
</DynamicContextProvider>

Dapp-Wagmi-Dynamic Example

This is a fork of the Wagmi example in the Soneium docs. We’ve switched Rainbowkit for Dynamic for you!

https://github.com/matthew1809/soneium-examples/tree/main/apps/dapp-wagmi-dynamic

Requesting access to server wallets

Ping @matthewfoyle on Telegram to get access.