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
I'm using the src/idl/clearing_house.json data to parse returned errors, and have a local type declaration for the IDL structure. Might be handy to add to the SDK. Here is my partial (only using the errors portion):
export type ClearingHouseIdl = {
errors: ClearingHouseIdlErrors[];
};
export type ClearingHouseIdlErrors = {
code: number;
message: string;
name: string;
};
The text was updated successfully, but these errors were encountered:
I'm using the
src/idl/clearing_house.json
data to parse returned errors, and have a localtype
declaration for the IDL structure. Might be handy to add to the SDK. Here is my partial (only using the errors portion):The text was updated successfully, but these errors were encountered: