693 Commits

Author SHA1 Message Date
B1n4ryR41nb0w
fcfbc6a448 added file pre check for faster loading 2025-04-06 18:59:04 +02:00
NicoSerranoP
085b794965 fix: better countdown + increase gh interval for timeouts 2025-03-06 13:45:56 -05:00
NicoSerranoP
fd1c02e7d7 fix: convert to milis the whole number 2025-02-20 22:56:39 -05:00
leopardracer
d832c6ff9d fix: typos in documentation files (#340)
* Update CHANGELOG.md

* Update README.md
2024-12-02 13:07:43 +00:00
NicoSerranoP
40b9b6e26b fix: increase memory in initEmptyWaitingQueueForCircuit 2024-11-26 17:56:55 -05:00
NicoSerranoP
c5bd5d37bf fix: increase bandada memory limit 2024-11-26 17:41:28 -05:00
NicoSerranoP
156891dd5a fix: try different set 2024-11-26 15:56:54 -05:00
NicoSerranoP
bbaaa16c7a fix: memory increase to 24gb 2024-11-26 15:30:35 -05:00
NicoSerranoP
06d1ee9074 fix: send cpu value as number 2024-11-26 13:23:46 -05:00
NicoSerranoP
a37008fed0 fix: increase cpu use 2024-11-26 12:26:24 -05:00
NicoSerranoP
b29242078b fix: increase memory limit for verify contribution cf 2024-11-26 11:54:36 -05:00
Geoff Lamperd
5bcb28e077 chore(release): Bump to v1.2.6 2024-09-25 12:00:41 +10:00
NicoSerranoP
513990be68 fix: move vkey data inside function 2024-09-24 12:10:12 -05:00
NicoSerranoP
3f25ebefcd feat: bump to 1.2.5 2024-09-23 22:58:02 -05:00
NicoSerranoP
a8f36492f4 Merge branch 'staging' into dev 2024-09-23 22:56:17 -05:00
Geoff Lamperd
4d91ce68fd chore: debug messages in setup Ceremony 2024-09-23 17:24:58 +10:00
Geoff Lamperd
06c8692566 chore: adds debug messages in createBucket 2024-09-23 13:12:08 +10:00
Geoff Lamperd
1ef3054da3 chore: adds debug messages in createBucket 2024-09-23 13:05:11 +10:00
Geoff Lamperd
1e87ae2ad0 clean up log function 2024-09-10 10:39:02 +10:00
Geoff Lamperd
894e9af30e log transcript in verify 2024-09-09 20:20:37 +10:00
Geoff Lamperd
45438fabbe fix: adjusts conditions to rigger coordinate 2024-09-02 15:56:53 +10:00
Geoff Lamperd
f688bf4a39 chore: better log levels for timeout function 2024-08-27 14:22:16 +10:00
ctrlc03
7679fe77c8 fix: do not timeout when completed 2024-08-22 21:34:00 +01:00
NicoSerranoP
ec0a079741 Merge branch 'dev' of https://github.com/privacy-scaling-explorations/p0tion into dev 2024-08-22 10:04:33 -03:00
NicoSerranoP
efb9e3a83b fix: hardcode aws tag to test new policy 2024-08-22 09:53:05 -03:00
Geoff Lamperd
6905bc69cb Merge branch 'dev' into dev 2024-08-19 14:19:48 +10:00
NicoSerranoP
e22d20d0b6 fix: set tag to AWS instance volume 2024-08-18 13:24:05 -03:00
NicoSerranoP
9239207daa feat: use AWS tag to comply to PSE policies 2024-08-16 16:32:39 -03:00
0xturboblitz
f3a7b62b59 fix tweet url when ceremony name includes spaces 2024-08-13 13:41:02 -07:00
Nico Serrano
6178e881c1 Merge branch 'dev' into better-error-in-func 2024-07-24 11:23:19 -05:00
Geoff Lamperd
a7b749e021 update backend version 2024-07-15 13:39:26 +10:00
Geoff Lamperd
5fad82d7a0 bump version 2024-07-12 15:19:25 +10:00
Geoff Lamperd
46e4606c34 fix: handle username with hyphens 2024-07-12 14:43:12 +10:00
Geoff Lamperd
3fb52f843f updates actions version 2024-07-12 14:15:41 +10:00
Geoff Lamperd
309266765a adds unit test for regex 2024-07-12 13:59:03 +10:00
Geoff Lamperd
dc0f0f6277 fix: adds unit test for regex pattern 2024-07-08 17:42:00 +10:00
Geoff Lamperd
4fd6ccee71 fix: hash regex include \r 2024-07-08 15:06:47 +10:00
Geoff Lamperd
6f686a5473 Merge remote-tracking branch 'origin/dev' into better-error-in-func 2024-07-05 16:56:41 +10:00
Geoff Lamperd
e7dac8583e chore: update actions version 2024-07-05 16:54:28 +10:00
Geoff Lamperd
21740b6aab fix: adds try/catch for verify 2024-07-05 12:30:07 +10:00
Jayden
7197129a42 Fix the issue that 'Firebase Function' might can't deploy
Might encounter an error when running the following commands:

```shell
cd packages/backend
yarn firebase:deploy
```

Error message:

```
⚠  functions: Upload Error: HTTP Error: 400, <?xml version='1.0' encoding='UTF-8'?><Error><Code>EntityTooLarge</Code><Message>Your proposed upload is larger than the maximum object size specified in your Policy Document.</Message><Details>Content-length exceeds upper bound on range</Details></Error>
```

Error Details: The uploaded Firebase function source code package is too large (exceeds 100MB).

Cause: After running `terraform` in the `backend/aws` folder, temporary files larger than 500MB are generated in `backend/aws`. The `backend/aws` folder is not needed for deploying Firebase functions.

**Solution**:

Modify the `firebase.json` file to exclude the `backend/aws` folder:

Before:

```json
    "functions": {
        "predeploy": "yarn --cwd \"$RESOURCE_DIR\" build",
        "source": "."
    }
```

After modification:

```json
    "functions": {
        "predeploy": "yarn --cwd \"$RESOURCE_DIR\" build",
        "source": ".",
        "ignore": [
            "node_modules",
            "aws"
        ]
    }
```

- Note:

  - Why add `node_modules`?

    In the [firebase-tools source code](https://github.com/firebase/firebase-tools/blob/v13.12.0/src/deploy/functions/prepareFunctionsUpload.ts#L75):

    ```typescript
    const ignore = config.ignore || ["node_modules", ".git"];
    ```

    When the `ignore` node is not configured, `node_modules` is automatically ignored. However, when `ignore` is manually added, you must also manually add `node_modules` to the `ignore` list.
2024-07-02 12:49:03 +08:00
Nico Serrano
531b682c26 Merge branch 'dev' into fix/finalize-ceremony-memory 2024-06-12 15:13:23 -04:00
Geoff Lamperd
c688853c91 chore: correct references to Hermez 2024-06-11 14:44:19 +10:00
Geoff Lamperd
5cb3cf9209 chore: bump package versions 2024-06-10 12:01:27 +10:00
Geoff Lamperd
b346db5f3d adds version note 2024-06-07 15:18:22 +10:00
Geoff Lamperd
d7602c6cc2 switch action to docker 2024-06-06 12:18:47 +10:00
Geoff Lamperd
9843891ddf fixes syntax 2024-06-04 14:11:13 +10:00
Geoff Lamperd
804239067c Merge branch 'dev' into update-phase1-links 2024-06-03 16:06:29 +10:00
Geoff Lamperd
b724c44187 timeout - include COMPLETED 2024-05-31 14:36:02 +10:00
Geoff Lamperd
d12e01ef80 updates Phase 1 file links 2024-05-24 17:04:55 +10:00