mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-23 02:10:01 +01:00
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: [{}] }
|
|
}
|