diff --git a/packages/umi-uploader-bundlr/test/BundlrUploader.test.ts b/packages/umi-uploader-bundlr/test/BundlrUploader.test.ts index 79c8f959..bf3a3f29 100644 --- a/packages/umi-uploader-bundlr/test/BundlrUploader.test.ts +++ b/packages/umi-uploader-bundlr/test/BundlrUploader.test.ts @@ -24,7 +24,7 @@ const getContext = async ( ): Promise => { const context = createUmi().use({ install(umi) { - umi.use(web3JsRpc('https://metaplex.devnet.rpcpool.com/')); + umi.use(web3JsRpc('https://api.devnet.solana.com')); umi.use(web3JsEddsa()); umi.use(fetchHttp()); umi.use(httpDownloader()); diff --git a/packages/umi-uploader-nft-storage/test/NftStorageUploader.test.ts b/packages/umi-uploader-nft-storage/test/NftStorageUploader.test.ts index 15463293..88723968 100644 --- a/packages/umi-uploader-nft-storage/test/NftStorageUploader.test.ts +++ b/packages/umi-uploader-nft-storage/test/NftStorageUploader.test.ts @@ -21,7 +21,7 @@ test('example test', async (t) => { const getContext = (options?: NftStorageUploaderOptions): Context => createUmi().use({ install(umi) { - umi.use(web3JsRpc('https://metaplex.devnet.rpcpool.com/')); + umi.use(web3JsRpc('https://api.devnet.solana.com')); umi.use(web3JsEddsa()); umi.use(fetchHttp()); umi.use(httpDownloader());