@silvana-one/token 0.2.4 → 0.2.6
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/node/BondingCurveAdmin.d.ts +25 -22
- package/dist/node/FungibleToken.d.ts +16 -10
- package/dist/node/FungibleTokenAdvancedAdmin.d.ts +1 -1
- package/dist/node/FungibleTokenContract.d.ts +10 -7
- package/dist/node/bid.d.ts +1 -1
- package/dist/node/claim.d.ts +1 -1
- package/dist/node/div.d.ts +2 -2
- package/dist/node/offer.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/tsconfig.web.tsbuildinfo +1 -1
- package/dist/web/BondingCurveAdmin.d.ts +25 -22
- package/dist/web/FungibleToken.d.ts +16 -10
- package/dist/web/FungibleTokenAdvancedAdmin.d.ts +1 -1
- package/dist/web/FungibleTokenContract.d.ts +10 -7
- package/dist/web/bid.d.ts +1 -1
- package/dist/web/claim.d.ts +1 -1
- package/dist/web/div.d.ts +2 -2
- package/dist/web/offer.d.ts +1 -1
- package/package.json +5 -5
|
@@ -31,9 +31,9 @@ declare const BondingCurveParams_base: (new (value: {
|
|
|
31
31
|
};
|
|
32
32
|
} & {
|
|
33
33
|
fromValue: (value: {
|
|
34
|
-
startPrice: bigint | UInt64;
|
|
35
|
-
curveK: bigint | UInt64;
|
|
36
|
-
fee: bigint | UInt32;
|
|
34
|
+
startPrice: number | bigint | UInt64;
|
|
35
|
+
curveK: number | bigint | UInt64;
|
|
36
|
+
fee: number | bigint | UInt32;
|
|
37
37
|
mintingIsAllowed: boolean | import("node_modules/o1js/dist/node/lib/provable/bool.js").Bool;
|
|
38
38
|
}) => {
|
|
39
39
|
startPrice: UInt64;
|
|
@@ -148,10 +148,10 @@ declare const BondingMintEvent_base: (new (value: {
|
|
|
148
148
|
x: Field | bigint;
|
|
149
149
|
isOdd: Bool | boolean;
|
|
150
150
|
};
|
|
151
|
-
amount: bigint | UInt64;
|
|
152
|
-
price: bigint | UInt64;
|
|
153
|
-
payment: bigint | UInt64;
|
|
154
|
-
fee: bigint | UInt64;
|
|
151
|
+
amount: number | bigint | UInt64;
|
|
152
|
+
price: number | bigint | UInt64;
|
|
153
|
+
payment: number | bigint | UInt64;
|
|
154
|
+
fee: number | bigint | UInt64;
|
|
155
155
|
}) => {
|
|
156
156
|
to: PublicKey;
|
|
157
157
|
amount: UInt64;
|
|
@@ -253,11 +253,11 @@ declare const BondingRedeemEvent_base: (new (value: {
|
|
|
253
253
|
x: Field | bigint;
|
|
254
254
|
isOdd: Bool | boolean;
|
|
255
255
|
};
|
|
256
|
-
amount: bigint | UInt64;
|
|
257
|
-
payment: bigint | UInt64;
|
|
258
|
-
minBalance: bigint | UInt64;
|
|
259
|
-
maxSupply: bigint | UInt64;
|
|
260
|
-
fee: bigint | UInt64;
|
|
256
|
+
amount: number | bigint | UInt64;
|
|
257
|
+
payment: number | bigint | UInt64;
|
|
258
|
+
minBalance: number | bigint | UInt64;
|
|
259
|
+
maxSupply: number | bigint | UInt64;
|
|
260
|
+
fee: number | bigint | UInt64;
|
|
261
261
|
}) => {
|
|
262
262
|
seller: PublicKey;
|
|
263
263
|
amount: UInt64;
|
|
@@ -374,15 +374,15 @@ declare const BondingCurveAdminInitializeProps_base: (new (value: {
|
|
|
374
374
|
x: Field | bigint;
|
|
375
375
|
isOdd: Bool | boolean;
|
|
376
376
|
};
|
|
377
|
-
startPrice: bigint | UInt64;
|
|
378
|
-
curveK: bigint | UInt64;
|
|
377
|
+
startPrice: number | bigint | UInt64;
|
|
378
|
+
curveK: number | bigint | UInt64;
|
|
379
379
|
feeMaster: PublicKey | {
|
|
380
380
|
x: Field | bigint;
|
|
381
381
|
isOdd: Bool | boolean;
|
|
382
382
|
};
|
|
383
|
-
fee: bigint | UInt32;
|
|
384
|
-
launchFee: bigint | UInt64;
|
|
385
|
-
numberOfNewAccounts: bigint | UInt64;
|
|
383
|
+
fee: number | bigint | UInt32;
|
|
384
|
+
launchFee: number | bigint | UInt64;
|
|
385
|
+
numberOfNewAccounts: number | bigint | UInt64;
|
|
386
386
|
}) => {
|
|
387
387
|
tokenAddress: PublicKey;
|
|
388
388
|
startPrice: UInt64;
|
|
@@ -541,9 +541,9 @@ export declare const BondingCurveFungibleToken: {
|
|
|
541
541
|
getUnconstrained(): PublicKey;
|
|
542
542
|
getAndRequireSignature(): PublicKey;
|
|
543
543
|
};
|
|
544
|
-
readonly account: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Account;
|
|
545
|
-
readonly network: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Network;
|
|
546
|
-
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/precondition.js").CurrentSlot;
|
|
544
|
+
readonly account: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Account;
|
|
545
|
+
readonly network: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Network;
|
|
546
|
+
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").CurrentSlot;
|
|
547
547
|
approve(update: AccountUpdate | import("o1js").AccountUpdateTree | AccountUpdateForest): void;
|
|
548
548
|
send(args: {
|
|
549
549
|
to: PublicKey | AccountUpdate | import("o1js").SmartContract;
|
|
@@ -579,9 +579,9 @@ export declare const BondingCurveFungibleToken: {
|
|
|
579
579
|
rows: number;
|
|
580
580
|
digest: string;
|
|
581
581
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
582
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
582
583
|
}>;
|
|
583
584
|
_provers?: import("node_modules/o1js/dist/node/snarky.js").Pickles.Prover[];
|
|
584
|
-
_maxProofsVerified?: 0 | 1 | 2;
|
|
585
585
|
_verificationKey?: {
|
|
586
586
|
data: string;
|
|
587
587
|
hash: Field;
|
|
@@ -600,6 +600,7 @@ export declare const BondingCurveFungibleToken: {
|
|
|
600
600
|
proof: unknown;
|
|
601
601
|
maxProofsVerified: 0 | 2 | 1;
|
|
602
602
|
shouldVerify: import("node_modules/o1js/dist/node/lib/provable/bool.js").Bool;
|
|
603
|
+
declare(): boolean;
|
|
603
604
|
toJSON(): import("o1js").JsonProof;
|
|
604
605
|
publicFields(): {
|
|
605
606
|
input: import("node_modules/o1js/dist/node/lib/provable/field.js").Field[];
|
|
@@ -665,7 +666,7 @@ export declare const BondingCurveFungibleToken: {
|
|
|
665
666
|
_proofFromBase64(proofString: string, maxProofsVerified: 0 | 2 | 1): unknown;
|
|
666
667
|
_proofToBase64(proof: unknown, maxProofsVerified: 0 | 2 | 1): string;
|
|
667
668
|
};
|
|
668
|
-
compile({ cache, forceRecompile
|
|
669
|
+
compile({ cache, forceRecompile }?: {
|
|
669
670
|
cache?: import("o1js").Cache | undefined;
|
|
670
671
|
forceRecompile?: boolean | undefined;
|
|
671
672
|
}): Promise<{
|
|
@@ -677,6 +678,7 @@ export declare const BondingCurveFungibleToken: {
|
|
|
677
678
|
verify: (statement: import("node_modules/o1js/dist/node/snarky.js").Pickles.Statement<import("node_modules/o1js/dist/node/lib/provable/core/fieldvar.js").FieldConst>, proof: unknown) => Promise<boolean>;
|
|
678
679
|
}>;
|
|
679
680
|
digest(): Promise<string>;
|
|
681
|
+
getMaxProofsVerified(): Promise<0 | 2 | 1>;
|
|
680
682
|
runOutsideCircuit(run: () => void): void;
|
|
681
683
|
analyzeMethods({ printSummary }?: {
|
|
682
684
|
printSummary?: boolean | undefined;
|
|
@@ -685,6 +687,7 @@ export declare const BondingCurveFungibleToken: {
|
|
|
685
687
|
rows: number;
|
|
686
688
|
digest: string;
|
|
687
689
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
690
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
688
691
|
}>>;
|
|
689
692
|
};
|
|
690
693
|
export {};
|
|
@@ -60,9 +60,9 @@ declare const FungibleToken: {
|
|
|
60
60
|
getUnconstrained(): import("o1js").PublicKey;
|
|
61
61
|
getAndRequireSignature(): import("o1js").PublicKey;
|
|
62
62
|
};
|
|
63
|
-
readonly account: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Account;
|
|
64
|
-
readonly network: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Network;
|
|
65
|
-
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/precondition.js").CurrentSlot;
|
|
63
|
+
readonly account: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Account;
|
|
64
|
+
readonly network: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Network;
|
|
65
|
+
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").CurrentSlot;
|
|
66
66
|
approve(update: import("o1js").AccountUpdate | import("o1js").AccountUpdateTree | import("o1js").AccountUpdateForest): void;
|
|
67
67
|
send(args: {
|
|
68
68
|
to: import("o1js").PublicKey | import("o1js").AccountUpdate | import("o1js").SmartContract;
|
|
@@ -98,9 +98,9 @@ declare const FungibleToken: {
|
|
|
98
98
|
rows: number;
|
|
99
99
|
digest: string;
|
|
100
100
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
101
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
101
102
|
}>;
|
|
102
103
|
_provers?: import("node_modules/o1js/dist/node/snarky.js").Pickles.Prover[];
|
|
103
|
-
_maxProofsVerified?: 0 | 1 | 2;
|
|
104
104
|
_verificationKey?: {
|
|
105
105
|
data: string;
|
|
106
106
|
hash: import("o1js").Field;
|
|
@@ -119,6 +119,7 @@ declare const FungibleToken: {
|
|
|
119
119
|
proof: unknown;
|
|
120
120
|
maxProofsVerified: 0 | 2 | 1;
|
|
121
121
|
shouldVerify: import("node_modules/o1js/dist/node/lib/provable/bool.js").Bool;
|
|
122
|
+
declare(): boolean;
|
|
122
123
|
toJSON(): import("o1js").JsonProof;
|
|
123
124
|
publicFields(): {
|
|
124
125
|
input: import("node_modules/o1js/dist/node/lib/provable/field.js").Field[];
|
|
@@ -184,7 +185,7 @@ declare const FungibleToken: {
|
|
|
184
185
|
_proofFromBase64(proofString: string, maxProofsVerified: 0 | 2 | 1): unknown;
|
|
185
186
|
_proofToBase64(proof: unknown, maxProofsVerified: 0 | 2 | 1): string;
|
|
186
187
|
};
|
|
187
|
-
compile({ cache, forceRecompile
|
|
188
|
+
compile({ cache, forceRecompile }?: {
|
|
188
189
|
cache?: import("o1js").Cache | undefined;
|
|
189
190
|
forceRecompile?: boolean | undefined;
|
|
190
191
|
}): Promise<{
|
|
@@ -196,6 +197,7 @@ declare const FungibleToken: {
|
|
|
196
197
|
verify: (statement: import("node_modules/o1js/dist/node/snarky.js").Pickles.Statement<import("node_modules/o1js/dist/node/lib/provable/core/fieldvar.js").FieldConst>, proof: unknown) => Promise<boolean>;
|
|
197
198
|
}>;
|
|
198
199
|
digest(): Promise<string>;
|
|
200
|
+
getMaxProofsVerified(): Promise<0 | 2 | 1>;
|
|
199
201
|
runOutsideCircuit(run: () => void): void;
|
|
200
202
|
analyzeMethods({ printSummary }?: {
|
|
201
203
|
printSummary?: boolean | undefined;
|
|
@@ -204,6 +206,7 @@ declare const FungibleToken: {
|
|
|
204
206
|
rows: number;
|
|
205
207
|
digest: string;
|
|
206
208
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
209
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
207
210
|
}>>;
|
|
208
211
|
};
|
|
209
212
|
declare const AdvancedFungibleToken: {
|
|
@@ -266,9 +269,9 @@ declare const AdvancedFungibleToken: {
|
|
|
266
269
|
getUnconstrained(): import("o1js").PublicKey;
|
|
267
270
|
getAndRequireSignature(): import("o1js").PublicKey;
|
|
268
271
|
};
|
|
269
|
-
readonly account: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Account;
|
|
270
|
-
readonly network: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Network;
|
|
271
|
-
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/precondition.js").CurrentSlot;
|
|
272
|
+
readonly account: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Account;
|
|
273
|
+
readonly network: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Network;
|
|
274
|
+
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").CurrentSlot;
|
|
272
275
|
approve(update: import("o1js").AccountUpdate | import("o1js").AccountUpdateTree | import("o1js").AccountUpdateForest): void;
|
|
273
276
|
send(args: {
|
|
274
277
|
to: import("o1js").PublicKey | import("o1js").AccountUpdate | import("o1js").SmartContract;
|
|
@@ -304,9 +307,9 @@ declare const AdvancedFungibleToken: {
|
|
|
304
307
|
rows: number;
|
|
305
308
|
digest: string;
|
|
306
309
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
310
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
307
311
|
}>;
|
|
308
312
|
_provers?: import("node_modules/o1js/dist/node/snarky.js").Pickles.Prover[];
|
|
309
|
-
_maxProofsVerified?: 0 | 1 | 2;
|
|
310
313
|
_verificationKey?: {
|
|
311
314
|
data: string;
|
|
312
315
|
hash: import("o1js").Field;
|
|
@@ -325,6 +328,7 @@ declare const AdvancedFungibleToken: {
|
|
|
325
328
|
proof: unknown;
|
|
326
329
|
maxProofsVerified: 0 | 2 | 1;
|
|
327
330
|
shouldVerify: import("node_modules/o1js/dist/node/lib/provable/bool.js").Bool;
|
|
331
|
+
declare(): boolean;
|
|
328
332
|
toJSON(): import("o1js").JsonProof;
|
|
329
333
|
publicFields(): {
|
|
330
334
|
input: import("node_modules/o1js/dist/node/lib/provable/field.js").Field[];
|
|
@@ -390,7 +394,7 @@ declare const AdvancedFungibleToken: {
|
|
|
390
394
|
_proofFromBase64(proofString: string, maxProofsVerified: 0 | 2 | 1): unknown;
|
|
391
395
|
_proofToBase64(proof: unknown, maxProofsVerified: 0 | 2 | 1): string;
|
|
392
396
|
};
|
|
393
|
-
compile({ cache, forceRecompile
|
|
397
|
+
compile({ cache, forceRecompile }?: {
|
|
394
398
|
cache?: import("o1js").Cache | undefined;
|
|
395
399
|
forceRecompile?: boolean | undefined;
|
|
396
400
|
}): Promise<{
|
|
@@ -402,6 +406,7 @@ declare const AdvancedFungibleToken: {
|
|
|
402
406
|
verify: (statement: import("node_modules/o1js/dist/node/snarky.js").Pickles.Statement<import("node_modules/o1js/dist/node/lib/provable/core/fieldvar.js").FieldConst>, proof: unknown) => Promise<boolean>;
|
|
403
407
|
}>;
|
|
404
408
|
digest(): Promise<string>;
|
|
409
|
+
getMaxProofsVerified(): Promise<0 | 2 | 1>;
|
|
405
410
|
runOutsideCircuit(run: () => void): void;
|
|
406
411
|
analyzeMethods({ printSummary }?: {
|
|
407
412
|
printSummary?: boolean | undefined;
|
|
@@ -410,5 +415,6 @@ declare const AdvancedFungibleToken: {
|
|
|
410
415
|
rows: number;
|
|
411
416
|
digest: string;
|
|
412
417
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
418
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
413
419
|
}>>;
|
|
414
420
|
};
|
|
@@ -27,7 +27,7 @@ declare const AdvancedAdminData_base: (new (value: {
|
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
fromValue: (value: {
|
|
30
|
-
totalSupply: bigint | UInt64;
|
|
30
|
+
totalSupply: number | bigint | UInt64;
|
|
31
31
|
requireAdminSignatureForMint: boolean | import("node_modules/o1js/dist/node/lib/provable/bool.js").Bool;
|
|
32
32
|
anyoneCanMint: boolean | import("node_modules/o1js/dist/node/lib/provable/bool.js").Bool;
|
|
33
33
|
}) => {
|
|
@@ -104,9 +104,9 @@ export declare function FungibleTokenContract(adminContract: FungibleTokenAdminC
|
|
|
104
104
|
getUnconstrained(): PublicKey;
|
|
105
105
|
getAndRequireSignature(): PublicKey;
|
|
106
106
|
};
|
|
107
|
-
readonly account: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Account;
|
|
108
|
-
readonly network: import("node_modules/o1js/dist/node/lib/mina/precondition.js").Network;
|
|
109
|
-
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/precondition.js").CurrentSlot;
|
|
107
|
+
readonly account: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Account;
|
|
108
|
+
readonly network: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").Network;
|
|
109
|
+
readonly currentSlot: import("node_modules/o1js/dist/node/lib/mina/v1/precondition.js").CurrentSlot;
|
|
110
110
|
approve(update: AccountUpdate | import("o1js").AccountUpdateTree | AccountUpdateForest): void;
|
|
111
111
|
send(args: {
|
|
112
112
|
to: PublicKey | AccountUpdate | SmartContract;
|
|
@@ -142,9 +142,9 @@ export declare function FungibleTokenContract(adminContract: FungibleTokenAdminC
|
|
|
142
142
|
rows: number;
|
|
143
143
|
digest: string;
|
|
144
144
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
145
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
145
146
|
}>;
|
|
146
147
|
_provers?: import("node_modules/o1js/dist/node/snarky.js").Pickles.Prover[];
|
|
147
|
-
_maxProofsVerified?: 0 | 1 | 2;
|
|
148
148
|
_verificationKey?: {
|
|
149
149
|
data: string;
|
|
150
150
|
hash: Field;
|
|
@@ -163,6 +163,7 @@ export declare function FungibleTokenContract(adminContract: FungibleTokenAdminC
|
|
|
163
163
|
proof: unknown;
|
|
164
164
|
maxProofsVerified: 0 | 2 | 1;
|
|
165
165
|
shouldVerify: import("node_modules/o1js/dist/node/lib/provable/bool.js").Bool;
|
|
166
|
+
declare(): boolean;
|
|
166
167
|
toJSON(): import("o1js").JsonProof;
|
|
167
168
|
publicFields(): {
|
|
168
169
|
input: import("node_modules/o1js/dist/node/lib/provable/field.js").Field[];
|
|
@@ -228,7 +229,7 @@ export declare function FungibleTokenContract(adminContract: FungibleTokenAdminC
|
|
|
228
229
|
_proofFromBase64(proofString: string, maxProofsVerified: 0 | 2 | 1): unknown;
|
|
229
230
|
_proofToBase64(proof: unknown, maxProofsVerified: 0 | 2 | 1): string;
|
|
230
231
|
};
|
|
231
|
-
compile({ cache, forceRecompile
|
|
232
|
+
compile({ cache, forceRecompile }?: {
|
|
232
233
|
cache?: import("o1js").Cache | undefined;
|
|
233
234
|
forceRecompile?: boolean | undefined;
|
|
234
235
|
}): Promise<{
|
|
@@ -240,6 +241,7 @@ export declare function FungibleTokenContract(adminContract: FungibleTokenAdminC
|
|
|
240
241
|
verify: (statement: import("node_modules/o1js/dist/node/snarky.js").Pickles.Statement<import("node_modules/o1js/dist/node/lib/provable/core/fieldvar.js").FieldConst>, proof: unknown) => Promise<boolean>;
|
|
241
242
|
}>;
|
|
242
243
|
digest(): Promise<string>;
|
|
244
|
+
getMaxProofsVerified(): Promise<0 | 2 | 1>;
|
|
243
245
|
runOutsideCircuit(run: () => void): void;
|
|
244
246
|
analyzeMethods({ printSummary }?: {
|
|
245
247
|
printSummary?: boolean | undefined;
|
|
@@ -248,6 +250,7 @@ export declare function FungibleTokenContract(adminContract: FungibleTokenAdminC
|
|
|
248
250
|
rows: number;
|
|
249
251
|
digest: string;
|
|
250
252
|
gates: import("node_modules/o1js/dist/node/snarky.js").Gate[];
|
|
253
|
+
proofs: import("node_modules/o1js/dist/node/lib/proof-system/proof.js").ProofClass[];
|
|
251
254
|
}>>;
|
|
252
255
|
};
|
|
253
256
|
declare const SetAdminEvent_base: (new (value: {
|
|
@@ -368,7 +371,7 @@ declare const MintEvent_base: (new (value: {
|
|
|
368
371
|
x: Field | bigint;
|
|
369
372
|
isOdd: Bool | boolean;
|
|
370
373
|
};
|
|
371
|
-
amount: bigint | Types.UInt64;
|
|
374
|
+
amount: number | bigint | Types.UInt64;
|
|
372
375
|
}) => {
|
|
373
376
|
recipient: PublicKey;
|
|
374
377
|
amount: Types.UInt64;
|
|
@@ -429,7 +432,7 @@ declare const BurnEvent_base: (new (value: {
|
|
|
429
432
|
x: Field | bigint;
|
|
430
433
|
isOdd: Bool | boolean;
|
|
431
434
|
};
|
|
432
|
-
amount: bigint | Types.UInt64;
|
|
435
|
+
amount: number | bigint | Types.UInt64;
|
|
433
436
|
}) => {
|
|
434
437
|
from: PublicKey;
|
|
435
438
|
amount: Types.UInt64;
|
package/dist/node/bid.d.ts
CHANGED
package/dist/node/claim.d.ts
CHANGED
package/dist/node/div.d.ts
CHANGED
|
@@ -20,8 +20,8 @@ declare const MulDivResult_base: (new (value: {
|
|
|
20
20
|
};
|
|
21
21
|
} & {
|
|
22
22
|
fromValue: (value: {
|
|
23
|
-
result: bigint | UInt64;
|
|
24
|
-
remainder: bigint | UInt64;
|
|
23
|
+
result: number | bigint | UInt64;
|
|
24
|
+
remainder: number | bigint | UInt64;
|
|
25
25
|
}) => {
|
|
26
26
|
result: UInt64;
|
|
27
27
|
remainder: UInt64;
|
package/dist/node/offer.d.ts
CHANGED