Skip to content

Commit

Permalink
Point directly to ardrive gateway (#242)
Browse files Browse the repository at this point in the history
* Mitigate 504 errors by pointing at AR host directly

* Bump version to 0.6.1
  • Loading branch information
sdlaver authored Jan 3, 2024
1 parent 3669fa6 commit d4f3c50
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solana-mobile/dapp-store-cli",
"version": "0.6.0",
"version": "0.6.1",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
Expand Down Expand Up @@ -53,7 +53,7 @@
"dependencies": {
"@aws-sdk/client-s3": "^3.321.1",
"@metaplex-foundation/js-plugin-aws": "^0.18.3",
"@solana-mobile/dapp-store-publishing-tools": "workspace:0.6.0",
"@solana-mobile/dapp-store-publishing-tools": "workspace:0.6.1",
"@solana/web3.js": "1.68.0",
"@types/semver": "^7.3.13",
"ajv": "^8.11.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/CliUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { awsStorage } from "@metaplex-foundation/js-plugin-aws";
import { S3StorageManager } from "./config/index.js";

export class Constants {
static CLI_VERSION = "0.6.0";
static CLI_VERSION = "0.6.1";
static CONFIG_FILE_NAME = "config.yaml";
static DEFAULT_RPC_DEVNET = "https://api.devnet.solana.com";

Expand Down Expand Up @@ -168,7 +168,7 @@ export const getMetaplexInstance = (
providerUrl: Constants.DEFAULT_RPC_DEVNET,
})
: new BundlrStorageDriver(metaplex, {
address: "https://up.arweave.net",
address: "https://turbo.ardrive.io",
});

metaplex.storage().setDriver(bundlrStorageDriver);
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solana-mobile/dapp-store-publishing-tools",
"version": "0.6.0",
"version": "0.6.1",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d4f3c50

Please sign in to comment.