Skip to content

Commit

Permalink
Update Prysm 5.1.0 token (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev authored Oct 7, 2024
1 parent 2e91403 commit 3ae2652
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/brain/src/modules/config/getValidatorToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const getValidatorToken = (consensusClient: ConsensusClient): string => {
if (consensusClient === ConsensusClient.Lighthouse)
return "api-token-0x0200e6ce18e26fd38caca7ae1bfb9e2bba7efb20ed2746ad17f2f6dda44603152d";
if (consensusClient === ConsensusClient.Prysm)
return "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.MxwOozSH-TLbW_XKepjyYDHm2IT8Ki0tD3AHuajfNMg";
return "0xd59b8238ecaeb255d62c85c6ca8aee185870bd7a27e43f85fd2658267036d94a";
if (consensusClient === ConsensusClient.Nimbus)
return "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.MxwOozSH-TLbW_XKepjyYDHm2IT8Ki0tD3AHuajfNMg";
if (consensusClient === ConsensusClient.Lodestar)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe.skip("Cron: Prater", () => {
containerName:
"DAppNodePackage-validator.prysm-prater.dnp.dappnode.eth",
token:
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.MxwOozSH-TLbW_XKepjyYDHm2IT8Ki0tD3AHuajfNMg",
"0xd59b8238ecaeb255d62c85c6ca8aee185870bd7a27e43f85fd2658267036d94a",
},*/
{
name: "Lighthouse",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe.skip("Validator API: Prater", () => {
{
name: "Prysm",
containerName: "DAppNodePackage-validator.prysm-prater.dnp.dappnode.eth",
token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.MxwOozSH-TLbW_XKepjyYDHm2IT8Ki0tD3AHuajfNMg"
token: "0xd59b8238ecaeb255d62c85c6ca8aee185870bd7a27e43f85fd2658267036d94a"
}
/**{
name: "Lighthouse",
Expand Down
2 changes: 1 addition & 1 deletion packages/brain/test/unit/modules/db/index.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe("DataBase", () => {
const validatorApi = new ValidatorApi(
{
baseUrl: `http://${consensusIp}:3500`,
authToken: `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.MxwOozSH-TLbW_XKepjyYDHm2IT8Ki0tD3AHuajfNMg`
authToken: `0xd59b8238ecaeb255d62c85c6ca8aee185870bd7a27e43f85fd2658267036d94a`
},
Network.Prater
);
Expand Down

0 comments on commit 3ae2652

Please sign in to comment.