mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
* rainbowkit setup and web3 cleanup * finalize setup * make transaction work * switch to @kremalicious/react-feather * update tests * remove @loadable/component * update test
14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
export function configureChains() {
|
|
return { chains: [{}], provider: {} }
|
|
}
|
|
|
|
export const apiProvider = {
|
|
infura: jest.fn(),
|
|
alchemy: jest.fn(),
|
|
fallback: jest.fn()
|
|
}
|
|
|
|
export function getDefaultWallets() {
|
|
return { connectors: [{}] }
|
|
}
|