Skip to content

Commit

Permalink
Change network codeword and address error
Browse files Browse the repository at this point in the history
  • Loading branch information
chasefleming committed Feb 23, 2024
1 parent f1f3101 commit fccb6ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const PUBLIC_KEY_FORMAT_ERROR =
"Public key must be a hexadecimal string with no spaces."
export const PUBLIC_KEY_MISSING_ERROR = "Public key is required."
export const ADDRESS_FORMAT_ERROR =
"Address must be a 16-character or 42-character hexadecimal string."
"Address must be a 16-character Cadence address or 42-character Ethereum address."
export const ADDRESS_MISSING_ERROR = "Address is required."
export const CREATE_ACCOUNT_ERROR = "Account creation has failed"
export const FUND_ACCOUNT_ERROR = "Account funding has failed"
Expand All @@ -37,5 +37,5 @@ export const ADDRESS_REGEXP = /^(0x)?([0-9a-fA-F]{16}|[0-9a-fA-F]{40})$/

export const NETWORK_CODEWORDS = {
testnet: "0x6834ba37b3980209",
crescendo: "0x6834ba37b3980209",
crescendo: "0x5211829E88528817",
}

0 comments on commit fccb6ab

Please sign in to comment.