Right now we inherit the `ProvingKey` and `VerifyingKey` structs from our halo2 fork. We should wrap these structs into a meta struct, like: ```rust VersionedProvingKey { pk: ProvingKey, version: String } ``` And add the version to the structs as such
Right now we inherit the
ProvingKeyandVerifyingKeystructs from our halo2 fork. We should wrap these structs into a meta struct, like:And add the version to the structs as such