UNPKG

@metaplex-foundation/umi-http-fetch

Version:

An HTTP implementation relying on the fetch API

9 lines (7 loc) 213 B
import { UmiPlugin } from '@metaplex-foundation/umi'; import { createFetchHttp } from './createFetchHttp'; export const fetchHttp = (): UmiPlugin => ({ install(umi) { umi.http = createFetchHttp(); }, });