Skip to content

Commit

Permalink
Clean up RPC endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm committed Oct 27, 2023
1 parent c1c3d37 commit 08aa17a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/umi-uploader-bundlr/test/BundlrUploader.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const getContext = async (
): Promise<Context> => {
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());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 08aa17a

Please sign in to comment.