Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(chain): update url for cli connector [fixes DXJ-234] #111

Merged
merged 1 commit into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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