9285aaf487
* removed sealed impl of serde for tx::Fee * further upgraded cosmwasm to 1.3.0 * wip * created schema for mixnet contract * updated return type of 'GetBondedMixnodeDetailsByIdentity' query * fixed imported version of serde_json_wasm * updated return type of 'GetFamilyByHead' query * updated return type of 'GetFamilyByLabel' query * updated return type of 'GetFamilyMembersByHead' and 'GetFamilyMembersByLabel' queries * fixed broken tests due to type changes * added support for GetFamilyMembersByLabel and GetFamilyMembersByHead queries in 'mixnet_query_client' * moved 'Account' and 'VestingContractError' to common crate * created schema for vesting contract * Added documentation for all query messages in the vesting contract * improved mixnet contract schema by adding documentation to all query types * feature-locking cw2 import * created schema for the name service contract * created schema for the service provider directory contract * created schema for the coconut bandwidth contract * created schema for the coconut dkg contract * created schema for the coconut cw4 group contract * created schema for the coconut cw3 multisig contract * fixed missing import and adjusted makefile * cargo fmt * clippy * adjusted contract CI to build with --lib flag * missing --lib flag in the makefile * updated lock files * makefile for generating the schemas * added github action to check for schema difference * adding missing step to checkout the repo
26 lines
691 B
Makefile
26 lines
691 B
Makefile
schema: coconut-bandwidth-schema coconut-dkg-schema mixnet-schema name-service-schema service-provider-directory-schema vesting-schema multisig-schema group-schema
|
|
|
|
coconut-bandwidth-schema:
|
|
$(MAKE) -C coconut-bandwidth generate-schema
|
|
|
|
coconut-dkg-schema:
|
|
$(MAKE) -C coconut-dkg generate-schema
|
|
|
|
mixnet-schema:
|
|
$(MAKE) -C mixnet generate-schema
|
|
|
|
name-service-schema:
|
|
$(MAKE) -C name-service generate-schema
|
|
|
|
service-provider-directory-schema:
|
|
$(MAKE) -C service-provider-directory generate-schema
|
|
|
|
vesting-schema:
|
|
$(MAKE) -C vesting generate-schema
|
|
|
|
multisig-schema:
|
|
$(MAKE) -C multisig/cw3-flex-multisig generate-schema
|
|
|
|
group-schema:
|
|
$(MAKE) -C multisig/cw4-group generate-schema
|