Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.slice.so/llms.txt

Use this file to discover all available pages before exploring further.

Wagmi config

Some actions require a Wagmi config to be passed as param.
import { createConfig } from "@wagmi/core"
import { base } from "@wagmi/core/chains"

const config = createConfig({
  chains: [base],
  transports: {
    [base.id]: http(`https://mainnet.base.org`)
  }
})
Refer to the Wagmi documentation for more information.