@@ -952,6 +952,9 @@ export namespace pruntime_rpc {
952952
953953 /** PhactoryInfo maxSupportedPinkRuntimeVersion */
954954 maxSupportedPinkRuntimeVersion ?: ( string | null ) ;
955+
956+ /** PhactoryInfo supportedAttestationMethods */
957+ supportedAttestationMethods ?: ( string [ ] | null ) ;
955958 }
956959
957960 /** Represents a PhactoryInfo. */
@@ -1029,6 +1032,9 @@ export namespace pruntime_rpc {
10291032 /** PhactoryInfo maxSupportedPinkRuntimeVersion. */
10301033 public maxSupportedPinkRuntimeVersion : string ;
10311034
1035+ /** PhactoryInfo supportedAttestationMethods. */
1036+ public supportedAttestationMethods : string [ ] ;
1037+
10321038 /** PhactoryInfo _genesisBlockHash. */
10331039 public _genesisBlockHash ?: "genesisBlockHash" ;
10341040
@@ -2277,6 +2283,9 @@ export namespace pruntime_rpc {
22772283
22782284 /** ContractQueryResponse encodedEncryptedData */
22792285 encodedEncryptedData ?: ( Uint8Array | null ) ;
2286+
2287+ /** ContractQueryResponse blocknum */
2288+ blocknum ?: ( number | null ) ;
22802289 }
22812290
22822291 /** Represents a ContractQueryResponse. */
@@ -2291,6 +2300,9 @@ export namespace pruntime_rpc {
22912300 /** ContractQueryResponse encodedEncryptedData. */
22922301 public encodedEncryptedData : Uint8Array ;
22932302
2303+ /** ContractQueryResponse blocknum. */
2304+ public blocknum : number ;
2305+
22942306 /**
22952307 * Creates a new ContractQueryResponse instance using the specified properties.
22962308 * @param [properties] Properties to set
@@ -3114,8 +3126,14 @@ export namespace pruntime_rpc {
31143126 /** ClusterInfo stateRoot */
31153127 stateRoot ?: ( string | null ) ;
31163128
3117- /** ClusterInfo contracts */
3118- contracts ?: ( string [ ] | null ) ;
3129+ /** ClusterInfo systemContract */
3130+ systemContract ?: ( string | null ) ;
3131+
3132+ /** ClusterInfo loggerContract */
3133+ loggerContract ?: ( string | null ) ;
3134+
3135+ /** ClusterInfo numberOfContracts */
3136+ numberOfContracts ?: ( number | Long | null ) ;
31193137 }
31203138
31213139 /** Represents a ClusterInfo. */
@@ -3136,8 +3154,14 @@ export namespace pruntime_rpc {
31363154 /** ClusterInfo stateRoot. */
31373155 public stateRoot : string ;
31383156
3139- /** ClusterInfo contracts. */
3140- public contracts : string [ ] ;
3157+ /** ClusterInfo systemContract. */
3158+ public systemContract : string ;
3159+
3160+ /** ClusterInfo loggerContract. */
3161+ public loggerContract : string ;
3162+
3163+ /** ClusterInfo numberOfContracts. */
3164+ public numberOfContracts : ( number | Long ) ;
31413165
31423166 /**
31433167 * Creates a new ClusterInfo instance using the specified properties.
0 commit comments