-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
CAN_PASS_SIGN_TRANSACTION_URL = http://pass.can.app.s3-website-ap-southeast-1.amazonaws.com/sign-transaction | ||
LOGIN_BUTTON_CLASS_NAME = can-pass-login-button | ||
CAN_WALLET_GRAPHQL_ENDPOINT = https://gkqvmb5r76.execute-api.ap-southeast-1.amazonaws.com/dev/wallet | ||
CAN_WALLET_GRAPHQL_ENDPOINT = https://2jje08ikc2.execute-api.ap-southeast-1.amazonaws.com/dev/wallet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
export const LOGIN_BUTTON_CLASS_NAME = process.env.LOGIN_BUTTON_CLASS_NAME || 'can-pass-login-button'; | ||
export const CAN_WALLET_GRAPHQL_ENDPOINT = process.env.CAN_WALLET_GRAPHQL_ENDPOINT || '/wallet/graphql'; | ||
export const CAN_PASS_SIGN_TX_URL = process.env.CAN_PASS_SIGN_TRANSACTION_URL || '/sign-transaction'; | ||
export const LOGIN_BUTTON_CLASS_NAME = | ||
process.env.LOGIN_BUTTON_CLASS_NAME || "can-pass-login-button"; | ||
export const CAN_WALLET_GRAPHQL_ENDPOINT = | ||
process.env.CAN_WALLET_GRAPHQL_ENDPOINT || | ||
"https://2jje08ikc2.execute-api.ap-southeast-1.amazonaws.com/dev/wallet"; | ||
export const CAN_PASS_SIGN_TX_URL = | ||
process.env.CAN_PASS_SIGN_TRANSACTION_URL || | ||
"http://pass.can.app.s3-website-ap-southeast-1.amazonaws.com/sign-transaction"; |