Skip to content

Commit

Permalink
Merge pull request #142 from golemfactory/0.3-update-repo-fallback-an…
Browse files Browse the repository at this point in the history
…d-subnet

update the fallback repo url, update the default subnet
  • Loading branch information
shadeofblue authored Mar 8, 2021
2 parents bcee119 + dbf1bd6 commit 7c47017
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/blender/blender.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function main(subnetTag, driver, network) {
}

program
.option("--subnet-tag <subnet>", "set subnet name", "community.4")
.option("--subnet-tag <subnet>", "set subnet name", "devnet-beta.1")
.option("--driver <driver>", "payment driver name, for example 'zksync'", "zksync")
.option("--network <network>", "network name, for example 'rinkeby'", "rinkeby")
.option("-d, --debug", "output extra debugging");
Expand Down
2 changes: 1 addition & 1 deletion examples/blender/blender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function main(subnetTag: string, driver?: string, network?: string) {
}

program
.option("--subnet-tag <subnet>", "set subnet name", "community.4")
.option("--subnet-tag <subnet>", "set subnet name", "devnet-beta.1")
.option("--driver <driver>", "payment driver name, for example 'zksync'", "zksync")
.option("--network <network>", "network name, for example 'rinkeby'", "rinkeby")
.option("-d, --debug", "output extra debugging");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yajsapi",
"version": "0.3.1-alpha.4",
"version": "0.3.1-alpha.5",
"description": "NodeJS API for Next Golem",
"repository": "https://github.com/golemfactory/yajsapi",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion yajsapi/package/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { VmPackageFormat, VmRequest } from "../props/inf";
import { logger } from "../utils";


const FALLBACK_REPO_URL = "http://3.249.139.167:8000";
const FALLBACK_REPO_URL = "http://yacn2.dev.golem.network:8000";
export const DEFAULT_REPO_SRV = "_girepo._tcp.dev.golem.network";

export type RepoOpts = {
Expand Down

0 comments on commit 7c47017

Please sign in to comment.