-
Notifications
You must be signed in to change notification settings - Fork 71
fix: rename PLATFORM_WALLET_PASSWORD to PLATFORM_WALLET_KEY #1477
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,7 @@ [email protected] | |
| AFJ_VERSION=ghcr.io/credebl/credo-controller:latest | ||
|
|
||
| PLATFORM_WALLET_NAME=platform-admin | ||
| PLATFORM_WALLET_PASSWORD='U2FsdGVkX19l6w/PpuicnGBYThBHolzF27oN0JwfWkc=' | ||
| PLATFORM_WALLET_KEY='U2FsdGVkX19l6w/PpuicnGBYThBHolzF27oN0JwfWkc=' | ||
| PLATFORM_SEED=000000000000000000000000Steward1 | ||
| PLATFORM_ID=1 | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -29,7 +29,7 @@ async function bootstrap(): Promise<void> { | |||||
|
|
||||||
| const agentSpinupPayload: IAgentSpinupDto = { | ||||||
| walletName: process.env.PLATFORM_WALLET_NAME, | ||||||
| walletPassword: process.env.PLATFORM_WALLET_PASSWORD, | ||||||
| walletPassword: process.env.PLATFORM_WALLET_KEY, | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix trailing whitespace. There is trailing whitespace at the end of line 32. Please remove it to maintain consistent formatting. Apply this diff to remove the trailing whitespace: - walletPassword: process.env.PLATFORM_WALLET_KEY,
+ walletPassword: process.env.PLATFORM_WALLET_KEY,📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| seed: process.env.PLATFORM_SEED, | ||||||
| orgName: `${CommonConstants.PLATFORM_ADMIN_ORG}`, | ||||||
| platformAdminEmail: process.env.PLATFORM_ADMIN_EMAIL, | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix trailing whitespace.
There is trailing whitespace at the end of line 53. Please remove it to maintain consistent formatting.
Apply this diff to remove the trailing whitespace:
📝 Committable suggestion
🧰 Tools
🪛 dotenv-linter (3.3.0)
[warning] 53-53: [TrailingWhitespace] Trailing whitespace detected
(TrailingWhitespace)
[warning] 53-53: [UnorderedKey] The PLATFORM_WALLET_KEY key should go before the PLATFORM_WALLET_NAME key
(UnorderedKey)
🪛 Gitleaks (8.28.0)
[high] 53-53: Detected a Generic API Key, potentially exposing access to various services and sensitive operations.
(generic-api-key)
🤖 Prompt for AI Agents