|
@@ -12,8 +12,11 @@ export type Idl = {
|
|
events?: IdlEvent[];
|
|
events?: IdlEvent[];
|
|
errors?: IdlErrorCode[];
|
|
errors?: IdlErrorCode[];
|
|
constants?: IdlConstant[];
|
|
constants?: IdlConstant[];
|
|
|
|
+ metadata?: IdlMetadata;
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+export type IdlMetadata = any;
|
|
|
|
+
|
|
export type IdlConstant = {
|
|
export type IdlConstant = {
|
|
name: string;
|
|
name: string;
|
|
type: IdlType;
|
|
type: IdlType;
|