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