Skip to content

Commit

Permalink
chore: 🤖update sgx public key (#69)
Browse files Browse the repository at this point in the history
## Why?

We updated the fleek network sgx service out of alpha so the encryption
public key has changed (hopefully) for the final time
## How?

- Updated the PUBLIC_KEY const 

## Tickets?

- none

## Contribution checklist?

- [x] The commit messages are detailed
- [ ] The `build` command runs locally
- [ ] Assets or static content are linked and stored in the project
- [ ] You have manually tested
- [ ] You have provided tests

## Security checklist?

- [x] Sensitive data has been identified and is being protected properly
- [x] Injection has been prevented (parameterized queries, no eval or
system calls)

## Preview?

Optionally, provide the preview url here
  • Loading branch information
daltoncoder authored Nov 7, 2024
1 parent c7d922c commit 7ac2844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/functions/utils/getWasmCodeFromPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { output } from '../../../cli';
import { t } from '../../../utils/translation';

const PUBLIC_KEY =
'03a3fe41244add26af1f820d2acb4ad22b158ff7b69ce41401bf932d7734eb5d49';
'02de6500ea852d2f4bdc9b6812ac76477e45eae556998d357cfa84e5a0a71bddb4';

const getWasm = async (filePath: string) => {
const buffer = await fs.promises.readFile(filePath);
Expand Down

0 comments on commit 7ac2844

Please sign in to comment.