alkanesjs 1.2.2 → 1.2.4
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.browser.mjs +8266 -2006
- package/dist/index.browser.mjs.map +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +6120 -3014
- package/dist/index.js.map +4 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -328,8 +328,8 @@ declare class OrdRpcProvider {
|
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
interface EncodedAlkaneId {
|
|
331
|
-
block:
|
|
332
|
-
tx:
|
|
331
|
+
block: bigint;
|
|
332
|
+
tx: bigint;
|
|
333
333
|
}
|
|
334
334
|
type AlkaneEncoded = {
|
|
335
335
|
value: string;
|
|
@@ -425,10 +425,10 @@ type AlkaneEncodedSimulationRequest = {
|
|
|
425
425
|
alkanes: any[];
|
|
426
426
|
transaction: string;
|
|
427
427
|
block: string;
|
|
428
|
-
height:
|
|
428
|
+
height: bigint;
|
|
429
429
|
txindex: number;
|
|
430
430
|
target: EncodedAlkaneId;
|
|
431
|
-
inputs:
|
|
431
|
+
inputs: bigint[];
|
|
432
432
|
pointer: number;
|
|
433
433
|
refundPointer: number;
|
|
434
434
|
vout: number;
|