Skip to content

Commit

Permalink
switched to arweave.net
Browse files Browse the repository at this point in the history
  • Loading branch information
hatskier committed Jun 15, 2021
1 parent b90c2f6 commit 8a444e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/arweave-signing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Arweave from "arweave";

describe("Test arweave signing and verification", () => {
const arweaveClient: Arweave = Arweave.init({
host: "arweave.dev",
host: "arweave.net",
port: 443,
protocol: "https",
});
Expand Down
2 changes: 1 addition & 1 deletion examples/discord-bots/memory-price-bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const redstone = require("../../lib/index.js");
const { runSimpleDiscordBot } = require("./simple-discord-bot");

async function getCurrentARPricePerGB() {
const response = await axios.get("https://arweave.dev/price/1073741824");
const response = await axios.get("https://arweave.net/price/1073741824");
return response.data * 0.000000000001;
}

Expand Down
2 changes: 1 addition & 1 deletion src/proxies/arweave-proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class ArweaveProxy {

constructor() {
this.arweaveClient = Arweave.init({
host: "arweave.dev",
host: "arweave.net",
port: 443,
protocol: "https",
});
Expand Down

0 comments on commit 8a444e1

Please sign in to comment.