Skip to content

Commit

Permalink
feat(chain): update url for cli connector [fixes DXJ-234] (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsartem authored Jan 18, 2023
1 parent becb28b commit 8f0b001
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ ARGUMENTS
FLAGS
--force Force install even if the dependency/dependencies is/are already installed
--no-input Don't interactively ask for any input from the user
--toolchain=<toolchain_name> Rustup toolchain name (such as stable or nightly-x86_64)
--toolchain=<toolchain_name> Rustup toolchain name (such as stable or nightly-2022-09-15-x86_64)

DESCRIPTION
Install cargo project dependencies (all dependencies are cached inside .fluence/cargo directory of the current user)
Expand Down Expand Up @@ -314,7 +314,7 @@ ARGUMENTS
FLAGS
--force Force install even if the dependency/dependencies is/are already installed
--no-input Don't interactively ask for any input from the user
--toolchain=<toolchain_name> Rustup toolchain name (such as stable or nightly-x86_64)
--toolchain=<toolchain_name> Rustup toolchain name (such as stable or nightly-2022-09-15-x86_64)

DESCRIPTION
Install cargo project dependencies (all dependencies are cached inside .fluence/cargo directory of the current user)
Expand Down Expand Up @@ -343,7 +343,7 @@ ARGUMENTS
FLAGS
--force Force install even if the dependency/dependencies is/are already installed
--no-input Don't interactively ask for any input from the user
--toolchain=<toolchain_name> Rustup toolchain name (such as stable or nightly-x86_64)
--toolchain=<toolchain_name> Rustup toolchain name (such as stable or nightly-2022-09-15-x86_64)

DESCRIPTION
Install cargo project dependencies (all dependencies are cached inside .fluence/cargo directory of the current user)
Expand Down
3 changes: 1 addition & 2 deletions src/lib/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ export type ChainConfig = {
chainId: number;
};

// TODO DXJ-234: add actual url
export const CLI_CONNECTOR_URL = "http://localhost:3000";
export const CLI_CONNECTOR_URL = "https://cli-connector.fluence.dev";
export const DEAL_CONFIG: Record<ChainNetwork, ChainConfig> = {
local: {
ethereumNodeUrl: "http://127.0.0.1:8545",
Expand Down

0 comments on commit 8f0b001

Please sign in to comment.