react/src/providers/OceanProvider/getDefaultProviders.ts

6 lines
174 B
TypeScript
Raw Normal View History

2020-07-20 12:22:26 +02:00
import { ICoreOptions } from 'web3modal/dist/helpers/types'
2020-07-16 11:25:01 +02:00
2020-07-20 12:22:26 +02:00
export async function getDefaultProviders(): Promise<Partial<ICoreOptions>> {
return { cacheProvider: true }
2020-07-16 11:25:01 +02:00
}