@clarigen/core 3.1.0 → 3.2.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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -88,8 +88,8 @@ interface ClarityAbiTypeNonFungibleToken<T = unknown> {
|
|
|
88
88
|
type: ClarityAbiType;
|
|
89
89
|
_t?: T;
|
|
90
90
|
}
|
|
91
|
-
type StacksEpochId = 'Epoch10' | 'Epoch20' | 'Epoch2_05' | 'Epoch21' | 'Epoch22' | 'Epoch23' | 'Epoch24' | 'Epoch25' | 'Epoch30' | 'Epoch31';
|
|
92
|
-
type ClarityVersion = 'Clarity1' | 'Clarity2';
|
|
91
|
+
type StacksEpochId = 'Epoch10' | 'Epoch20' | 'Epoch2_05' | 'Epoch21' | 'Epoch22' | 'Epoch23' | 'Epoch24' | 'Epoch25' | 'Epoch30' | 'Epoch31' | 'Epoch32' | 'Epoch33';
|
|
92
|
+
type ClarityVersion = 'Clarity1' | 'Clarity2' | 'Clarity3' | 'Clarity4';
|
|
93
93
|
type TypedAbi = Readonly<{
|
|
94
94
|
functions: {
|
|
95
95
|
[key: string]: TypedAbiFunction<TypedAbiArg<unknown, string>[], unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -88,8 +88,8 @@ interface ClarityAbiTypeNonFungibleToken<T = unknown> {
|
|
|
88
88
|
type: ClarityAbiType;
|
|
89
89
|
_t?: T;
|
|
90
90
|
}
|
|
91
|
-
type StacksEpochId = 'Epoch10' | 'Epoch20' | 'Epoch2_05' | 'Epoch21' | 'Epoch22' | 'Epoch23' | 'Epoch24' | 'Epoch25' | 'Epoch30' | 'Epoch31';
|
|
92
|
-
type ClarityVersion = 'Clarity1' | 'Clarity2';
|
|
91
|
+
type StacksEpochId = 'Epoch10' | 'Epoch20' | 'Epoch2_05' | 'Epoch21' | 'Epoch22' | 'Epoch23' | 'Epoch24' | 'Epoch25' | 'Epoch30' | 'Epoch31' | 'Epoch32' | 'Epoch33';
|
|
92
|
+
type ClarityVersion = 'Clarity1' | 'Clarity2' | 'Clarity3' | 'Clarity4';
|
|
93
93
|
type TypedAbi = Readonly<{
|
|
94
94
|
functions: {
|
|
95
95
|
[key: string]: TypedAbiFunction<TypedAbiArg<unknown, string>[], unknown>;
|
package/package.json
CHANGED