-
Notifications
You must be signed in to change notification settings - Fork 9
PodType
Eduard S. edited this page Jul 8, 2025
·
2 revisions
The standard pod types are defined in the pod2 library
| PodType | Name |
|---|---|
| 0 | None |
| 1 | MockSigned |
| 2 | MockMain |
| 3 | MockEmpty |
| 4 | Signed |
| 5 | Main |
| 6 | Empty |
Introduction pods are implemented in external libraries by anyone and by convention use PodType > 1000. We list them here to define a canonical assignment of PodType values.
| PodType | Name | url |
|---|---|---|
| 1001 | Ecdsa signature verification | https://github.com/0xPARC/introduction-pods/blob/20ee8c0030c7a207c439703c7f1a6eb69778e6a9/src/ecdsapod.rs |
| 1002 | Ed25519 signature verification | https://github.com/0xPARC/introduction-pods/blob/20ee8c0030c7a207c439703c7f1a6eb69778e6a9/src/ed25519pod.rs |
| 1003 | RSA signature verification | https://github.com/0xPARC/introduction-pods/blob/20ee8c0030c7a207c439703c7f1a6eb69778e6a9/src/rsapod.rs |
| 1004 | MDL verification | https://github.com/0xPARC/introduction-pods/pull/9 |