You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Design the runtime API to invoke XCQ from offchain context (SDK, wallets, dApps, etc)
typeXcq = // TBDtypeXcqResponse = // TBD
type XcqError = // TBD
type XcqResult = Result<XcqResponse,XcqResult>;typeSizeLimitedXcq = WithMaxSize<Xcq,GetUsize<1024*512>>;// max size is chain specific and for WithMaxSize see https://github.com/paritytech/polkadot-sdk/issues/4092pubtraitXcqApi{/// Execute the provided XCQ with an optional weight limit/// Return the result and consumed weight/// When weight_limit is none, the chain specific upper weight is usedfnexecute_query(query:SizeLimitedXcq,weight_limit:Option<Weight>) -> (XcqResult,Weight);}
The text was updated successfully, but these errors were encountered:
Design the runtime API to invoke XCQ from offchain context (SDK, wallets, dApps, etc)
The text was updated successfully, but these errors were encountered: