@exponent-labs/exponent-idl 0.1.7 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/exponent_core.d.ts +779 -48
- package/build/exponent_core.json +779 -48
- package/build/index.d.ts +11 -0
- package/package.json +1 -1
- package/src/exponent_core.json +779 -48
- package/src/exponent_core.ts +779 -48
package/build/index.d.ts
CHANGED
|
@@ -348,6 +348,7 @@ export declare const IDL: {
|
|
|
348
348
|
variants?: undefined;
|
|
349
349
|
};
|
|
350
350
|
docs?: undefined;
|
|
351
|
+
repr?: undefined;
|
|
351
352
|
} | {
|
|
352
353
|
name: string;
|
|
353
354
|
type: {
|
|
@@ -375,6 +376,7 @@ export declare const IDL: {
|
|
|
375
376
|
fields?: undefined;
|
|
376
377
|
};
|
|
377
378
|
docs?: undefined;
|
|
379
|
+
repr?: undefined;
|
|
378
380
|
} | {
|
|
379
381
|
name: string;
|
|
380
382
|
type: {
|
|
@@ -389,6 +391,7 @@ export declare const IDL: {
|
|
|
389
391
|
fields?: undefined;
|
|
390
392
|
};
|
|
391
393
|
docs?: undefined;
|
|
394
|
+
repr?: undefined;
|
|
392
395
|
} | {
|
|
393
396
|
name: string;
|
|
394
397
|
docs: string[];
|
|
@@ -421,9 +424,13 @@ export declare const IDL: {
|
|
|
421
424
|
})[];
|
|
422
425
|
variants?: undefined;
|
|
423
426
|
};
|
|
427
|
+
repr?: undefined;
|
|
424
428
|
} | {
|
|
425
429
|
name: string;
|
|
426
430
|
docs: string[];
|
|
431
|
+
repr: {
|
|
432
|
+
kind: string;
|
|
433
|
+
};
|
|
427
434
|
type: {
|
|
428
435
|
kind: string;
|
|
429
436
|
fields: {
|
|
@@ -451,6 +458,7 @@ export declare const IDL: {
|
|
|
451
458
|
})[];
|
|
452
459
|
variants?: undefined;
|
|
453
460
|
};
|
|
461
|
+
repr?: undefined;
|
|
454
462
|
} | {
|
|
455
463
|
name: string;
|
|
456
464
|
type: {
|
|
@@ -476,6 +484,7 @@ export declare const IDL: {
|
|
|
476
484
|
variants?: undefined;
|
|
477
485
|
};
|
|
478
486
|
docs?: undefined;
|
|
487
|
+
repr?: undefined;
|
|
479
488
|
} | {
|
|
480
489
|
name: string;
|
|
481
490
|
type: {
|
|
@@ -532,6 +541,7 @@ export declare const IDL: {
|
|
|
532
541
|
variants?: undefined;
|
|
533
542
|
};
|
|
534
543
|
docs?: undefined;
|
|
544
|
+
repr?: undefined;
|
|
535
545
|
} | {
|
|
536
546
|
name: string;
|
|
537
547
|
type: {
|
|
@@ -564,6 +574,7 @@ export declare const IDL: {
|
|
|
564
574
|
variants?: undefined;
|
|
565
575
|
};
|
|
566
576
|
docs?: undefined;
|
|
577
|
+
repr?: undefined;
|
|
567
578
|
})[];
|
|
568
579
|
};
|
|
569
580
|
export declare const PROGRAM_ID: string;
|