@emurgo/cardano-serialization-lib-browser-inlined-gc 15.0.2 → 15.0.3

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.
@@ -1,9 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- export function encrypt_with_password(password: string, salt: string, nonce: string, data: string): string;
4
- export function decrypt_with_password(password: string, data: string): string;
5
- export function encode_json_str_to_plutus_datum(json: string, schema: PlutusDatumSchema): PlutusData;
6
- export function decode_plutus_datum_to_json_str(datum: PlutusData, schema: PlutusDatumSchema): string;
3
+ export function min_fee(tx: Transaction, linear_fee: LinearFee): BigNum;
4
+ export function calculate_ex_units_ceil_cost(ex_units: ExUnits, ex_unit_prices: ExUnitPrices): BigNum;
5
+ export function min_script_fee(tx: Transaction, ex_unit_prices: ExUnitPrices): BigNum;
6
+ export function min_ref_script_fee(total_ref_scripts_size: number, ref_script_coins_per_byte: UnitInterval): BigNum;
7
+ export function create_send_all(address: Address, utxos: TransactionUnspentOutputs, config: TransactionBuilderConfig): TransactionBatchList;
7
8
  export function make_daedalus_bootstrap_witness(tx_body_hash: TransactionHash, addr: ByronAddress, key: LegacyDaedalusPrivateKey): BootstrapWitness;
8
9
  export function make_icarus_bootstrap_witness(tx_body_hash: TransactionHash, addr: ByronAddress, key: Bip32PrivateKey): BootstrapWitness;
9
10
  export function make_vkey_witness(tx_body_hash: TransactionHash, sk: PrivateKey): Vkeywitness;
@@ -37,11 +38,10 @@ export function encode_json_str_to_native_script(json: string, self_xpub: string
37
38
  * WARNING this function will be deleted after all tags for set types will be mandatory. Approx after next hf
38
39
  */
39
40
  export function has_transaction_set_tag(tx_bytes: Uint8Array): TransactionSetsState;
40
- export function create_send_all(address: Address, utxos: TransactionUnspentOutputs, config: TransactionBuilderConfig): TransactionBatchList;
41
- export function min_fee(tx: Transaction, linear_fee: LinearFee): BigNum;
42
- export function calculate_ex_units_ceil_cost(ex_units: ExUnits, ex_unit_prices: ExUnitPrices): BigNum;
43
- export function min_script_fee(tx: Transaction, ex_unit_prices: ExUnitPrices): BigNum;
44
- export function min_ref_script_fee(total_ref_scripts_size: number, ref_script_coins_per_byte: UnitInterval): BigNum;
41
+ export function encrypt_with_password(password: string, salt: string, nonce: string, data: string): string;
42
+ export function decrypt_with_password(password: string, data: string): string;
43
+ export function encode_json_str_to_plutus_datum(json: string, schema: PlutusDatumSchema): PlutusData;
44
+ export function decode_plutus_datum_to_json_str(datum: PlutusData, schema: PlutusDatumSchema): string;
45
45
  export function encode_arbitrary_bytes_as_metadatum(bytes: Uint8Array): TransactionMetadatum;
46
46
  export function decode_arbitrary_bytes_from_metadatum(metadata: TransactionMetadatum): Uint8Array;
47
47
  export function encode_json_str_to_metadatum(json: string, schema: MetadataJsonSchema): TransactionMetadatum;
@@ -281,7 +281,6 @@ export enum VoterKind {
281
281
  export class Address {
282
282
  private constructor();
283
283
  free(): void;
284
- [Symbol.dispose](): void;
285
284
  static from_bytes(data: Uint8Array): Address;
286
285
  to_json(): string;
287
286
  to_js_value(): AddressJSON;
@@ -299,7 +298,6 @@ export class Address {
299
298
  export class Anchor {
300
299
  private constructor();
301
300
  free(): void;
302
- [Symbol.dispose](): void;
303
301
  to_bytes(): Uint8Array;
304
302
  static from_bytes(bytes: Uint8Array): Anchor;
305
303
  to_hex(): string;
@@ -314,7 +312,6 @@ export class Anchor {
314
312
  export class AnchorDataHash {
315
313
  private constructor();
316
314
  free(): void;
317
- [Symbol.dispose](): void;
318
315
  static from_bytes(bytes: Uint8Array): AnchorDataHash;
319
316
  to_bytes(): Uint8Array;
320
317
  to_bech32(prefix: string): string;
@@ -325,7 +322,6 @@ export class AnchorDataHash {
325
322
  export class AssetName {
326
323
  private constructor();
327
324
  free(): void;
328
- [Symbol.dispose](): void;
329
325
  to_bytes(): Uint8Array;
330
326
  static from_bytes(bytes: Uint8Array): AssetName;
331
327
  to_hex(): string;
@@ -339,7 +335,6 @@ export class AssetName {
339
335
  export class AssetNames {
340
336
  private constructor();
341
337
  free(): void;
342
- [Symbol.dispose](): void;
343
338
  to_bytes(): Uint8Array;
344
339
  static from_bytes(bytes: Uint8Array): AssetNames;
345
340
  to_hex(): string;
@@ -355,7 +350,6 @@ export class AssetNames {
355
350
  export class Assets {
356
351
  private constructor();
357
352
  free(): void;
358
- [Symbol.dispose](): void;
359
353
  to_bytes(): Uint8Array;
360
354
  static from_bytes(bytes: Uint8Array): Assets;
361
355
  to_hex(): string;
@@ -372,7 +366,6 @@ export class Assets {
372
366
  export class AuxiliaryData {
373
367
  private constructor();
374
368
  free(): void;
375
- [Symbol.dispose](): void;
376
369
  to_bytes(): Uint8Array;
377
370
  static from_bytes(bytes: Uint8Array): AuxiliaryData;
378
371
  to_hex(): string;
@@ -393,7 +386,6 @@ export class AuxiliaryData {
393
386
  export class AuxiliaryDataHash {
394
387
  private constructor();
395
388
  free(): void;
396
- [Symbol.dispose](): void;
397
389
  static from_bytes(bytes: Uint8Array): AuxiliaryDataHash;
398
390
  to_bytes(): Uint8Array;
399
391
  to_bech32(prefix: string): string;
@@ -404,7 +396,6 @@ export class AuxiliaryDataHash {
404
396
  export class AuxiliaryDataSet {
405
397
  private constructor();
406
398
  free(): void;
407
- [Symbol.dispose](): void;
408
399
  static new(): AuxiliaryDataSet;
409
400
  len(): number;
410
401
  insert(tx_index: number, data: AuxiliaryData): AuxiliaryData | undefined;
@@ -414,7 +405,6 @@ export class AuxiliaryDataSet {
414
405
  export class BaseAddress {
415
406
  private constructor();
416
407
  free(): void;
417
- [Symbol.dispose](): void;
418
408
  static new(network: number, payment: Credential, stake: Credential): BaseAddress;
419
409
  payment_cred(): Credential;
420
410
  stake_cred(): Credential;
@@ -425,7 +415,6 @@ export class BaseAddress {
425
415
  export class BigInt {
426
416
  private constructor();
427
417
  free(): void;
428
- [Symbol.dispose](): void;
429
418
  to_bytes(): Uint8Array;
430
419
  static from_bytes(bytes: Uint8Array): BigInt;
431
420
  to_hex(): string;
@@ -452,7 +441,6 @@ export class BigInt {
452
441
  export class BigNum {
453
442
  private constructor();
454
443
  free(): void;
455
- [Symbol.dispose](): void;
456
444
  to_bytes(): Uint8Array;
457
445
  static from_bytes(bytes: Uint8Array): BigNum;
458
446
  to_hex(): string;
@@ -481,7 +469,6 @@ export class BigNum {
481
469
  export class Bip32PrivateKey {
482
470
  private constructor();
483
471
  free(): void;
484
- [Symbol.dispose](): void;
485
472
  /**
486
473
  * derive this private key with the given index.
487
474
  *
@@ -533,7 +520,6 @@ export class Bip32PrivateKey {
533
520
  export class Bip32PublicKey {
534
521
  private constructor();
535
522
  free(): void;
536
- [Symbol.dispose](): void;
537
523
  static from_hex(hex_str: string): Bip32PublicKey;
538
524
  to_hex(): string;
539
525
  chaincode(): Uint8Array;
@@ -572,7 +558,6 @@ export class Bip32PublicKey {
572
558
  export class Block {
573
559
  private constructor();
574
560
  free(): void;
575
- [Symbol.dispose](): void;
576
561
  to_bytes(): Uint8Array;
577
562
  static from_bytes(bytes: Uint8Array): Block;
578
563
  to_hex(): string;
@@ -590,7 +575,6 @@ export class Block {
590
575
  export class BlockHash {
591
576
  private constructor();
592
577
  free(): void;
593
- [Symbol.dispose](): void;
594
578
  static from_bytes(bytes: Uint8Array): BlockHash;
595
579
  to_bytes(): Uint8Array;
596
580
  to_bech32(prefix: string): string;
@@ -601,7 +585,6 @@ export class BlockHash {
601
585
  export class BootstrapWitness {
602
586
  private constructor();
603
587
  free(): void;
604
- [Symbol.dispose](): void;
605
588
  to_bytes(): Uint8Array;
606
589
  static from_bytes(bytes: Uint8Array): BootstrapWitness;
607
590
  to_hex(): string;
@@ -618,7 +601,6 @@ export class BootstrapWitness {
618
601
  export class BootstrapWitnesses {
619
602
  private constructor();
620
603
  free(): void;
621
- [Symbol.dispose](): void;
622
604
  to_bytes(): Uint8Array;
623
605
  static from_bytes(bytes: Uint8Array): BootstrapWitnesses;
624
606
  to_hex(): string;
@@ -638,7 +620,6 @@ export class BootstrapWitnesses {
638
620
  export class ByronAddress {
639
621
  private constructor();
640
622
  free(): void;
641
- [Symbol.dispose](): void;
642
623
  to_base58(): string;
643
624
  to_bytes(): Uint8Array;
644
625
  static from_bytes(bytes: Uint8Array): ByronAddress;
@@ -659,7 +640,6 @@ export class ByronAddress {
659
640
  export class Certificate {
660
641
  private constructor();
661
642
  free(): void;
662
- [Symbol.dispose](): void;
663
643
  to_bytes(): Uint8Array;
664
644
  static from_bytes(bytes: Uint8Array): Certificate;
665
645
  to_hex(): string;
@@ -731,7 +711,6 @@ export class Certificate {
731
711
  export class Certificates {
732
712
  private constructor();
733
713
  free(): void;
734
- [Symbol.dispose](): void;
735
714
  to_bytes(): Uint8Array;
736
715
  static from_bytes(bytes: Uint8Array): Certificates;
737
716
  to_hex(): string;
@@ -751,7 +730,6 @@ export class Certificates {
751
730
  export class CertificatesBuilder {
752
731
  private constructor();
753
732
  free(): void;
754
- [Symbol.dispose](): void;
755
733
  static new(): CertificatesBuilder;
756
734
  add(cert: Certificate): void;
757
735
  add_with_plutus_witness(cert: Certificate, witness: PlutusWitness): void;
@@ -767,7 +745,6 @@ export class CertificatesBuilder {
767
745
  export class ChangeConfig {
768
746
  private constructor();
769
747
  free(): void;
770
- [Symbol.dispose](): void;
771
748
  static new(address: Address): ChangeConfig;
772
749
  change_address(address: Address): ChangeConfig;
773
750
  change_plutus_data(plutus_data: OutputDatum): ChangeConfig;
@@ -776,7 +753,6 @@ export class ChangeConfig {
776
753
  export class Committee {
777
754
  private constructor();
778
755
  free(): void;
779
- [Symbol.dispose](): void;
780
756
  to_bytes(): Uint8Array;
781
757
  static from_bytes(bytes: Uint8Array): Committee;
782
758
  to_hex(): string;
@@ -793,7 +769,6 @@ export class Committee {
793
769
  export class CommitteeColdResign {
794
770
  private constructor();
795
771
  free(): void;
796
- [Symbol.dispose](): void;
797
772
  to_bytes(): Uint8Array;
798
773
  static from_bytes(bytes: Uint8Array): CommitteeColdResign;
799
774
  to_hex(): string;
@@ -810,7 +785,6 @@ export class CommitteeColdResign {
810
785
  export class CommitteeHotAuth {
811
786
  private constructor();
812
787
  free(): void;
813
- [Symbol.dispose](): void;
814
788
  to_bytes(): Uint8Array;
815
789
  static from_bytes(bytes: Uint8Array): CommitteeHotAuth;
816
790
  to_hex(): string;
@@ -826,7 +800,6 @@ export class CommitteeHotAuth {
826
800
  export class Constitution {
827
801
  private constructor();
828
802
  free(): void;
829
- [Symbol.dispose](): void;
830
803
  to_bytes(): Uint8Array;
831
804
  static from_bytes(bytes: Uint8Array): Constitution;
832
805
  to_hex(): string;
@@ -842,7 +815,6 @@ export class Constitution {
842
815
  export class ConstrPlutusData {
843
816
  private constructor();
844
817
  free(): void;
845
- [Symbol.dispose](): void;
846
818
  to_bytes(): Uint8Array;
847
819
  static from_bytes(bytes: Uint8Array): ConstrPlutusData;
848
820
  to_hex(): string;
@@ -854,7 +826,6 @@ export class ConstrPlutusData {
854
826
  export class CostModel {
855
827
  private constructor();
856
828
  free(): void;
857
- [Symbol.dispose](): void;
858
829
  to_bytes(): Uint8Array;
859
830
  static from_bytes(bytes: Uint8Array): CostModel;
860
831
  to_hex(): string;
@@ -878,7 +849,6 @@ export class CostModel {
878
849
  export class Costmdls {
879
850
  private constructor();
880
851
  free(): void;
881
- [Symbol.dispose](): void;
882
852
  to_bytes(): Uint8Array;
883
853
  static from_bytes(bytes: Uint8Array): Costmdls;
884
854
  to_hex(): string;
@@ -896,7 +866,6 @@ export class Costmdls {
896
866
  export class Credential {
897
867
  private constructor();
898
868
  free(): void;
899
- [Symbol.dispose](): void;
900
869
  static from_keyhash(hash: Ed25519KeyHash): Credential;
901
870
  static from_scripthash(hash: ScriptHash): Credential;
902
871
  to_keyhash(): Ed25519KeyHash | undefined;
@@ -914,7 +883,6 @@ export class Credential {
914
883
  export class Credentials {
915
884
  private constructor();
916
885
  free(): void;
917
- [Symbol.dispose](): void;
918
886
  to_bytes(): Uint8Array;
919
887
  static from_bytes(bytes: Uint8Array): Credentials;
920
888
  to_hex(): string;
@@ -934,7 +902,6 @@ export class Credentials {
934
902
  export class DNSRecordAorAAAA {
935
903
  private constructor();
936
904
  free(): void;
937
- [Symbol.dispose](): void;
938
905
  to_bytes(): Uint8Array;
939
906
  static from_bytes(bytes: Uint8Array): DNSRecordAorAAAA;
940
907
  to_hex(): string;
@@ -948,7 +915,6 @@ export class DNSRecordAorAAAA {
948
915
  export class DNSRecordSRV {
949
916
  private constructor();
950
917
  free(): void;
951
- [Symbol.dispose](): void;
952
918
  to_bytes(): Uint8Array;
953
919
  static from_bytes(bytes: Uint8Array): DNSRecordSRV;
954
920
  to_hex(): string;
@@ -962,7 +928,6 @@ export class DNSRecordSRV {
962
928
  export class DRep {
963
929
  private constructor();
964
930
  free(): void;
965
- [Symbol.dispose](): void;
966
931
  to_bytes(): Uint8Array;
967
932
  static from_bytes(bytes: Uint8Array): DRep;
968
933
  to_hex(): string;
@@ -984,7 +949,6 @@ export class DRep {
984
949
  export class DRepDeregistration {
985
950
  private constructor();
986
951
  free(): void;
987
- [Symbol.dispose](): void;
988
952
  to_bytes(): Uint8Array;
989
953
  static from_bytes(bytes: Uint8Array): DRepDeregistration;
990
954
  to_hex(): string;
@@ -1000,7 +964,6 @@ export class DRepDeregistration {
1000
964
  export class DRepRegistration {
1001
965
  private constructor();
1002
966
  free(): void;
1003
- [Symbol.dispose](): void;
1004
967
  to_bytes(): Uint8Array;
1005
968
  static from_bytes(bytes: Uint8Array): DRepRegistration;
1006
969
  to_hex(): string;
@@ -1018,7 +981,6 @@ export class DRepRegistration {
1018
981
  export class DRepUpdate {
1019
982
  private constructor();
1020
983
  free(): void;
1021
- [Symbol.dispose](): void;
1022
984
  to_bytes(): Uint8Array;
1023
985
  static from_bytes(bytes: Uint8Array): DRepUpdate;
1024
986
  to_hex(): string;
@@ -1035,7 +997,6 @@ export class DRepUpdate {
1035
997
  export class DRepVotingThresholds {
1036
998
  private constructor();
1037
999
  free(): void;
1038
- [Symbol.dispose](): void;
1039
1000
  to_bytes(): Uint8Array;
1040
1001
  static from_bytes(bytes: Uint8Array): DRepVotingThresholds;
1041
1002
  to_hex(): string;
@@ -1068,14 +1029,12 @@ export class DRepVotingThresholds {
1068
1029
  export class DataCost {
1069
1030
  private constructor();
1070
1031
  free(): void;
1071
- [Symbol.dispose](): void;
1072
1032
  static new_coins_per_byte(coins_per_byte: BigNum): DataCost;
1073
1033
  coins_per_byte(): BigNum;
1074
1034
  }
1075
1035
  export class DataHash {
1076
1036
  private constructor();
1077
1037
  free(): void;
1078
- [Symbol.dispose](): void;
1079
1038
  static from_bytes(bytes: Uint8Array): DataHash;
1080
1039
  to_bytes(): Uint8Array;
1081
1040
  to_bech32(prefix: string): string;
@@ -1086,14 +1045,12 @@ export class DataHash {
1086
1045
  export class DatumSource {
1087
1046
  private constructor();
1088
1047
  free(): void;
1089
- [Symbol.dispose](): void;
1090
1048
  static new(datum: PlutusData): DatumSource;
1091
1049
  static new_ref_input(input: TransactionInput): DatumSource;
1092
1050
  }
1093
1051
  export class Ed25519KeyHash {
1094
1052
  private constructor();
1095
1053
  free(): void;
1096
- [Symbol.dispose](): void;
1097
1054
  static from_bytes(bytes: Uint8Array): Ed25519KeyHash;
1098
1055
  to_bytes(): Uint8Array;
1099
1056
  to_bech32(prefix: string): string;
@@ -1104,7 +1061,6 @@ export class Ed25519KeyHash {
1104
1061
  export class Ed25519KeyHashes {
1105
1062
  private constructor();
1106
1063
  free(): void;
1107
- [Symbol.dispose](): void;
1108
1064
  to_bytes(): Uint8Array;
1109
1065
  static from_bytes(bytes: Uint8Array): Ed25519KeyHashes;
1110
1066
  to_hex(): string;
@@ -1126,7 +1082,6 @@ export class Ed25519KeyHashes {
1126
1082
  export class Ed25519Signature {
1127
1083
  private constructor();
1128
1084
  free(): void;
1129
- [Symbol.dispose](): void;
1130
1085
  to_bytes(): Uint8Array;
1131
1086
  to_bech32(): string;
1132
1087
  to_hex(): string;
@@ -1137,7 +1092,6 @@ export class Ed25519Signature {
1137
1092
  export class EnterpriseAddress {
1138
1093
  private constructor();
1139
1094
  free(): void;
1140
- [Symbol.dispose](): void;
1141
1095
  static new(network: number, payment: Credential): EnterpriseAddress;
1142
1096
  payment_cred(): Credential;
1143
1097
  to_address(): Address;
@@ -1147,7 +1101,6 @@ export class EnterpriseAddress {
1147
1101
  export class ExUnitPrices {
1148
1102
  private constructor();
1149
1103
  free(): void;
1150
- [Symbol.dispose](): void;
1151
1104
  to_bytes(): Uint8Array;
1152
1105
  static from_bytes(bytes: Uint8Array): ExUnitPrices;
1153
1106
  to_hex(): string;
@@ -1162,7 +1115,6 @@ export class ExUnitPrices {
1162
1115
  export class ExUnits {
1163
1116
  private constructor();
1164
1117
  free(): void;
1165
- [Symbol.dispose](): void;
1166
1118
  to_bytes(): Uint8Array;
1167
1119
  static from_bytes(bytes: Uint8Array): ExUnits;
1168
1120
  to_hex(): string;
@@ -1181,7 +1133,6 @@ export class ExUnits {
1181
1133
  export class FixedBlock {
1182
1134
  private constructor();
1183
1135
  free(): void;
1184
- [Symbol.dispose](): void;
1185
1136
  static from_bytes(bytes: Uint8Array): FixedBlock;
1186
1137
  static from_hex(hex_str: string): FixedBlock;
1187
1138
  header(): Header;
@@ -1194,7 +1145,6 @@ export class FixedBlock {
1194
1145
  export class FixedTransaction {
1195
1146
  private constructor();
1196
1147
  free(): void;
1197
- [Symbol.dispose](): void;
1198
1148
  to_bytes(): Uint8Array;
1199
1149
  static from_bytes(bytes: Uint8Array): FixedTransaction;
1200
1150
  to_hex(): string;
@@ -1231,7 +1181,6 @@ export class FixedTransaction {
1231
1181
  export class FixedTransactionBodies {
1232
1182
  private constructor();
1233
1183
  free(): void;
1234
- [Symbol.dispose](): void;
1235
1184
  static from_bytes(bytes: Uint8Array): FixedTransactionBodies;
1236
1185
  static from_hex(hex_str: string): FixedTransactionBodies;
1237
1186
  static new(): FixedTransactionBodies;
@@ -1246,7 +1195,6 @@ export class FixedTransactionBodies {
1246
1195
  export class FixedTransactionBody {
1247
1196
  private constructor();
1248
1197
  free(): void;
1249
- [Symbol.dispose](): void;
1250
1198
  static from_bytes(bytes: Uint8Array): FixedTransactionBody;
1251
1199
  static from_hex(hex_str: string): FixedTransactionBody;
1252
1200
  transaction_body(): TransactionBody;
@@ -1263,7 +1211,6 @@ export class FixedTransactionBody {
1263
1211
  export class FixedTxWitnessesSet {
1264
1212
  private constructor();
1265
1213
  free(): void;
1266
- [Symbol.dispose](): void;
1267
1214
  tx_witnesses_set(): TransactionWitnessSet;
1268
1215
  add_vkey_witness(vkey_witness: Vkeywitness): void;
1269
1216
  add_bootstrap_witness(bootstrap_witness: BootstrapWitness): void;
@@ -1276,7 +1223,6 @@ export class FixedTxWitnessesSet {
1276
1223
  export class FixedVersionedBlock {
1277
1224
  private constructor();
1278
1225
  free(): void;
1279
- [Symbol.dispose](): void;
1280
1226
  static from_bytes(bytes: Uint8Array): FixedVersionedBlock;
1281
1227
  static from_hex(hex_str: string): FixedVersionedBlock;
1282
1228
  block(): FixedBlock;
@@ -1285,7 +1231,6 @@ export class FixedVersionedBlock {
1285
1231
  export class GeneralTransactionMetadata {
1286
1232
  private constructor();
1287
1233
  free(): void;
1288
- [Symbol.dispose](): void;
1289
1234
  to_bytes(): Uint8Array;
1290
1235
  static from_bytes(bytes: Uint8Array): GeneralTransactionMetadata;
1291
1236
  to_hex(): string;
@@ -1302,7 +1247,6 @@ export class GeneralTransactionMetadata {
1302
1247
  export class GenesisDelegateHash {
1303
1248
  private constructor();
1304
1249
  free(): void;
1305
- [Symbol.dispose](): void;
1306
1250
  static from_bytes(bytes: Uint8Array): GenesisDelegateHash;
1307
1251
  to_bytes(): Uint8Array;
1308
1252
  to_bech32(prefix: string): string;
@@ -1313,7 +1257,6 @@ export class GenesisDelegateHash {
1313
1257
  export class GenesisHash {
1314
1258
  private constructor();
1315
1259
  free(): void;
1316
- [Symbol.dispose](): void;
1317
1260
  static from_bytes(bytes: Uint8Array): GenesisHash;
1318
1261
  to_bytes(): Uint8Array;
1319
1262
  to_bech32(prefix: string): string;
@@ -1324,7 +1267,6 @@ export class GenesisHash {
1324
1267
  export class GenesisHashes {
1325
1268
  private constructor();
1326
1269
  free(): void;
1327
- [Symbol.dispose](): void;
1328
1270
  to_bytes(): Uint8Array;
1329
1271
  static from_bytes(bytes: Uint8Array): GenesisHashes;
1330
1272
  to_hex(): string;
@@ -1340,7 +1282,6 @@ export class GenesisHashes {
1340
1282
  export class GenesisKeyDelegation {
1341
1283
  private constructor();
1342
1284
  free(): void;
1343
- [Symbol.dispose](): void;
1344
1285
  to_bytes(): Uint8Array;
1345
1286
  static from_bytes(bytes: Uint8Array): GenesisKeyDelegation;
1346
1287
  to_hex(): string;
@@ -1356,7 +1297,6 @@ export class GenesisKeyDelegation {
1356
1297
  export class GovernanceAction {
1357
1298
  private constructor();
1358
1299
  free(): void;
1359
- [Symbol.dispose](): void;
1360
1300
  to_bytes(): Uint8Array;
1361
1301
  static from_bytes(bytes: Uint8Array): GovernanceAction;
1362
1302
  to_hex(): string;
@@ -1383,7 +1323,6 @@ export class GovernanceAction {
1383
1323
  export class GovernanceActionId {
1384
1324
  private constructor();
1385
1325
  free(): void;
1386
- [Symbol.dispose](): void;
1387
1326
  to_bytes(): Uint8Array;
1388
1327
  static from_bytes(bytes: Uint8Array): GovernanceActionId;
1389
1328
  to_hex(): string;
@@ -1398,7 +1337,6 @@ export class GovernanceActionId {
1398
1337
  export class GovernanceActionIds {
1399
1338
  private constructor();
1400
1339
  free(): void;
1401
- [Symbol.dispose](): void;
1402
1340
  to_json(): string;
1403
1341
  to_js_value(): GovernanceActionIdsJSON;
1404
1342
  static from_json(json: string): GovernanceActionIds;
@@ -1410,7 +1348,6 @@ export class GovernanceActionIds {
1410
1348
  export class HardForkInitiationAction {
1411
1349
  private constructor();
1412
1350
  free(): void;
1413
- [Symbol.dispose](): void;
1414
1351
  to_bytes(): Uint8Array;
1415
1352
  static from_bytes(bytes: Uint8Array): HardForkInitiationAction;
1416
1353
  to_hex(): string;
@@ -1426,7 +1363,6 @@ export class HardForkInitiationAction {
1426
1363
  export class Header {
1427
1364
  private constructor();
1428
1365
  free(): void;
1429
- [Symbol.dispose](): void;
1430
1366
  to_bytes(): Uint8Array;
1431
1367
  static from_bytes(bytes: Uint8Array): Header;
1432
1368
  to_hex(): string;
@@ -1441,7 +1377,6 @@ export class Header {
1441
1377
  export class HeaderBody {
1442
1378
  private constructor();
1443
1379
  free(): void;
1444
- [Symbol.dispose](): void;
1445
1380
  to_bytes(): Uint8Array;
1446
1381
  static from_bytes(bytes: Uint8Array): HeaderBody;
1447
1382
  to_hex(): string;
@@ -1498,13 +1433,11 @@ export class HeaderBody {
1498
1433
  export class InfoAction {
1499
1434
  private constructor();
1500
1435
  free(): void;
1501
- [Symbol.dispose](): void;
1502
1436
  static new(): InfoAction;
1503
1437
  }
1504
1438
  export class Int {
1505
1439
  private constructor();
1506
1440
  free(): void;
1507
- [Symbol.dispose](): void;
1508
1441
  to_bytes(): Uint8Array;
1509
1442
  static from_bytes(bytes: Uint8Array): Int;
1510
1443
  to_hex(): string;
@@ -1560,7 +1493,6 @@ export class Int {
1560
1493
  export class Ipv4 {
1561
1494
  private constructor();
1562
1495
  free(): void;
1563
- [Symbol.dispose](): void;
1564
1496
  to_bytes(): Uint8Array;
1565
1497
  static from_bytes(bytes: Uint8Array): Ipv4;
1566
1498
  to_hex(): string;
@@ -1574,7 +1506,6 @@ export class Ipv4 {
1574
1506
  export class Ipv6 {
1575
1507
  private constructor();
1576
1508
  free(): void;
1577
- [Symbol.dispose](): void;
1578
1509
  to_bytes(): Uint8Array;
1579
1510
  static from_bytes(bytes: Uint8Array): Ipv6;
1580
1511
  to_hex(): string;
@@ -1588,14 +1519,12 @@ export class Ipv6 {
1588
1519
  export class KESSignature {
1589
1520
  private constructor();
1590
1521
  free(): void;
1591
- [Symbol.dispose](): void;
1592
1522
  to_bytes(): Uint8Array;
1593
1523
  static from_bytes(bytes: Uint8Array): KESSignature;
1594
1524
  }
1595
1525
  export class KESVKey {
1596
1526
  private constructor();
1597
1527
  free(): void;
1598
- [Symbol.dispose](): void;
1599
1528
  static from_bytes(bytes: Uint8Array): KESVKey;
1600
1529
  to_bytes(): Uint8Array;
1601
1530
  to_bech32(prefix: string): string;
@@ -1606,7 +1535,6 @@ export class KESVKey {
1606
1535
  export class Language {
1607
1536
  private constructor();
1608
1537
  free(): void;
1609
- [Symbol.dispose](): void;
1610
1538
  to_bytes(): Uint8Array;
1611
1539
  static from_bytes(bytes: Uint8Array): Language;
1612
1540
  to_hex(): string;
@@ -1622,7 +1550,6 @@ export class Language {
1622
1550
  export class Languages {
1623
1551
  private constructor();
1624
1552
  free(): void;
1625
- [Symbol.dispose](): void;
1626
1553
  static new(): Languages;
1627
1554
  len(): number;
1628
1555
  get(index: number): Language;
@@ -1632,7 +1559,6 @@ export class Languages {
1632
1559
  export class LegacyDaedalusPrivateKey {
1633
1560
  private constructor();
1634
1561
  free(): void;
1635
- [Symbol.dispose](): void;
1636
1562
  static from_bytes(bytes: Uint8Array): LegacyDaedalusPrivateKey;
1637
1563
  as_bytes(): Uint8Array;
1638
1564
  chaincode(): Uint8Array;
@@ -1640,7 +1566,6 @@ export class LegacyDaedalusPrivateKey {
1640
1566
  export class LinearFee {
1641
1567
  private constructor();
1642
1568
  free(): void;
1643
- [Symbol.dispose](): void;
1644
1569
  constant(): BigNum;
1645
1570
  coefficient(): BigNum;
1646
1571
  static new(coefficient: BigNum, constant: BigNum): LinearFee;
@@ -1648,7 +1573,6 @@ export class LinearFee {
1648
1573
  export class MIRToStakeCredentials {
1649
1574
  private constructor();
1650
1575
  free(): void;
1651
- [Symbol.dispose](): void;
1652
1576
  to_bytes(): Uint8Array;
1653
1577
  static from_bytes(bytes: Uint8Array): MIRToStakeCredentials;
1654
1578
  to_hex(): string;
@@ -1665,7 +1589,6 @@ export class MIRToStakeCredentials {
1665
1589
  export class MalformedAddress {
1666
1590
  private constructor();
1667
1591
  free(): void;
1668
- [Symbol.dispose](): void;
1669
1592
  original_bytes(): Uint8Array;
1670
1593
  to_address(): Address;
1671
1594
  static from_address(addr: Address): MalformedAddress | undefined;
@@ -1673,7 +1596,6 @@ export class MalformedAddress {
1673
1596
  export class MetadataList {
1674
1597
  private constructor();
1675
1598
  free(): void;
1676
- [Symbol.dispose](): void;
1677
1599
  to_bytes(): Uint8Array;
1678
1600
  static from_bytes(bytes: Uint8Array): MetadataList;
1679
1601
  to_hex(): string;
@@ -1686,7 +1608,6 @@ export class MetadataList {
1686
1608
  export class MetadataMap {
1687
1609
  private constructor();
1688
1610
  free(): void;
1689
- [Symbol.dispose](): void;
1690
1611
  to_bytes(): Uint8Array;
1691
1612
  static from_bytes(bytes: Uint8Array): MetadataMap;
1692
1613
  to_hex(): string;
@@ -1705,7 +1626,6 @@ export class MetadataMap {
1705
1626
  export class Mint {
1706
1627
  private constructor();
1707
1628
  free(): void;
1708
- [Symbol.dispose](): void;
1709
1629
  to_bytes(): Uint8Array;
1710
1630
  static from_bytes(bytes: Uint8Array): Mint;
1711
1631
  to_hex(): string;
@@ -1731,7 +1651,6 @@ export class Mint {
1731
1651
  export class MintAssets {
1732
1652
  private constructor();
1733
1653
  free(): void;
1734
- [Symbol.dispose](): void;
1735
1654
  static new(): MintAssets;
1736
1655
  static new_from_entry(key: AssetName, value: Int): MintAssets;
1737
1656
  len(): number;
@@ -1742,7 +1661,6 @@ export class MintAssets {
1742
1661
  export class MintBuilder {
1743
1662
  private constructor();
1744
1663
  free(): void;
1745
- [Symbol.dispose](): void;
1746
1664
  static new(): MintBuilder;
1747
1665
  add_asset(mint: MintWitness, asset_name: AssetName, amount: Int): void;
1748
1666
  set_asset(mint: MintWitness, asset_name: AssetName, amount: Int): void;
@@ -1757,14 +1675,12 @@ export class MintBuilder {
1757
1675
  export class MintWitness {
1758
1676
  private constructor();
1759
1677
  free(): void;
1760
- [Symbol.dispose](): void;
1761
1678
  static new_native_script(native_script: NativeScriptSource): MintWitness;
1762
1679
  static new_plutus_script(plutus_script: PlutusScriptSource, redeemer: Redeemer): MintWitness;
1763
1680
  }
1764
1681
  export class MintsAssets {
1765
1682
  private constructor();
1766
1683
  free(): void;
1767
- [Symbol.dispose](): void;
1768
1684
  to_json(): string;
1769
1685
  to_js_value(): MintsAssetsJSON;
1770
1686
  static from_json(json: string): MintsAssets;
@@ -1776,7 +1692,6 @@ export class MintsAssets {
1776
1692
  export class MoveInstantaneousReward {
1777
1693
  private constructor();
1778
1694
  free(): void;
1779
- [Symbol.dispose](): void;
1780
1695
  to_bytes(): Uint8Array;
1781
1696
  static from_bytes(bytes: Uint8Array): MoveInstantaneousReward;
1782
1697
  to_hex(): string;
@@ -1794,7 +1709,6 @@ export class MoveInstantaneousReward {
1794
1709
  export class MoveInstantaneousRewardsCert {
1795
1710
  private constructor();
1796
1711
  free(): void;
1797
- [Symbol.dispose](): void;
1798
1712
  to_bytes(): Uint8Array;
1799
1713
  static from_bytes(bytes: Uint8Array): MoveInstantaneousRewardsCert;
1800
1714
  to_hex(): string;
@@ -1808,7 +1722,6 @@ export class MoveInstantaneousRewardsCert {
1808
1722
  export class MultiAsset {
1809
1723
  private constructor();
1810
1724
  free(): void;
1811
- [Symbol.dispose](): void;
1812
1725
  to_bytes(): Uint8Array;
1813
1726
  static from_bytes(bytes: Uint8Array): MultiAsset;
1814
1727
  to_hex(): string;
@@ -1852,7 +1765,6 @@ export class MultiAsset {
1852
1765
  export class MultiHostName {
1853
1766
  private constructor();
1854
1767
  free(): void;
1855
- [Symbol.dispose](): void;
1856
1768
  to_bytes(): Uint8Array;
1857
1769
  static from_bytes(bytes: Uint8Array): MultiHostName;
1858
1770
  to_hex(): string;
@@ -1866,7 +1778,6 @@ export class MultiHostName {
1866
1778
  export class NativeScript {
1867
1779
  private constructor();
1868
1780
  free(): void;
1869
- [Symbol.dispose](): void;
1870
1781
  to_bytes(): Uint8Array;
1871
1782
  static from_bytes(bytes: Uint8Array): NativeScript;
1872
1783
  to_hex(): string;
@@ -1898,7 +1809,6 @@ export class NativeScript {
1898
1809
  export class NativeScriptSource {
1899
1810
  private constructor();
1900
1811
  free(): void;
1901
- [Symbol.dispose](): void;
1902
1812
  static new(script: NativeScript): NativeScriptSource;
1903
1813
  static new_ref_input(script_hash: ScriptHash, input: TransactionInput, script_size: number): NativeScriptSource;
1904
1814
  set_required_signers(key_hashes: Ed25519KeyHashes): void;
@@ -1907,7 +1817,6 @@ export class NativeScriptSource {
1907
1817
  export class NativeScripts {
1908
1818
  private constructor();
1909
1819
  free(): void;
1910
- [Symbol.dispose](): void;
1911
1820
  static new(): NativeScripts;
1912
1821
  len(): number;
1913
1822
  get(index: number): NativeScript;
@@ -1923,7 +1832,6 @@ export class NativeScripts {
1923
1832
  export class NetworkId {
1924
1833
  private constructor();
1925
1834
  free(): void;
1926
- [Symbol.dispose](): void;
1927
1835
  to_bytes(): Uint8Array;
1928
1836
  static from_bytes(bytes: Uint8Array): NetworkId;
1929
1837
  to_hex(): string;
@@ -1938,7 +1846,6 @@ export class NetworkId {
1938
1846
  export class NetworkInfo {
1939
1847
  private constructor();
1940
1848
  free(): void;
1941
- [Symbol.dispose](): void;
1942
1849
  static new(network_id: number, protocol_magic: number): NetworkInfo;
1943
1850
  network_id(): number;
1944
1851
  protocol_magic(): number;
@@ -1949,7 +1856,6 @@ export class NetworkInfo {
1949
1856
  export class NewConstitutionAction {
1950
1857
  private constructor();
1951
1858
  free(): void;
1952
- [Symbol.dispose](): void;
1953
1859
  to_bytes(): Uint8Array;
1954
1860
  static from_bytes(bytes: Uint8Array): NewConstitutionAction;
1955
1861
  to_hex(): string;
@@ -1966,7 +1872,6 @@ export class NewConstitutionAction {
1966
1872
  export class NoConfidenceAction {
1967
1873
  private constructor();
1968
1874
  free(): void;
1969
- [Symbol.dispose](): void;
1970
1875
  to_bytes(): Uint8Array;
1971
1876
  static from_bytes(bytes: Uint8Array): NoConfidenceAction;
1972
1877
  to_hex(): string;
@@ -1981,7 +1886,6 @@ export class NoConfidenceAction {
1981
1886
  export class Nonce {
1982
1887
  private constructor();
1983
1888
  free(): void;
1984
- [Symbol.dispose](): void;
1985
1889
  to_bytes(): Uint8Array;
1986
1890
  static from_bytes(bytes: Uint8Array): Nonce;
1987
1891
  to_hex(): string;
@@ -1996,7 +1900,6 @@ export class Nonce {
1996
1900
  export class OperationalCert {
1997
1901
  private constructor();
1998
1902
  free(): void;
1999
- [Symbol.dispose](): void;
2000
1903
  to_bytes(): Uint8Array;
2001
1904
  static from_bytes(bytes: Uint8Array): OperationalCert;
2002
1905
  to_hex(): string;
@@ -2013,7 +1916,6 @@ export class OperationalCert {
2013
1916
  export class OutputDatum {
2014
1917
  private constructor();
2015
1918
  free(): void;
2016
- [Symbol.dispose](): void;
2017
1919
  static new_data_hash(data_hash: DataHash): OutputDatum;
2018
1920
  static new_data(data: PlutusData): OutputDatum;
2019
1921
  data_hash(): DataHash | undefined;
@@ -2022,7 +1924,6 @@ export class OutputDatum {
2022
1924
  export class ParameterChangeAction {
2023
1925
  private constructor();
2024
1926
  free(): void;
2025
- [Symbol.dispose](): void;
2026
1927
  to_bytes(): Uint8Array;
2027
1928
  static from_bytes(bytes: Uint8Array): ParameterChangeAction;
2028
1929
  to_hex(): string;
@@ -2041,7 +1942,6 @@ export class ParameterChangeAction {
2041
1942
  export class PlutusData {
2042
1943
  private constructor();
2043
1944
  free(): void;
2044
- [Symbol.dispose](): void;
2045
1945
  to_bytes(): Uint8Array;
2046
1946
  static from_bytes(bytes: Uint8Array): PlutusData;
2047
1947
  to_hex(): string;
@@ -2070,7 +1970,6 @@ export class PlutusData {
2070
1970
  export class PlutusList {
2071
1971
  private constructor();
2072
1972
  free(): void;
2073
- [Symbol.dispose](): void;
2074
1973
  to_bytes(): Uint8Array;
2075
1974
  static from_bytes(bytes: Uint8Array): PlutusList;
2076
1975
  to_hex(): string;
@@ -2083,7 +1982,6 @@ export class PlutusList {
2083
1982
  export class PlutusMap {
2084
1983
  private constructor();
2085
1984
  free(): void;
2086
- [Symbol.dispose](): void;
2087
1985
  to_bytes(): Uint8Array;
2088
1986
  static from_bytes(bytes: Uint8Array): PlutusMap;
2089
1987
  to_hex(): string;
@@ -2104,7 +2002,6 @@ export class PlutusMap {
2104
2002
  export class PlutusMapValues {
2105
2003
  private constructor();
2106
2004
  free(): void;
2107
- [Symbol.dispose](): void;
2108
2005
  static new(): PlutusMapValues;
2109
2006
  len(): number;
2110
2007
  get(index: number): PlutusData | undefined;
@@ -2113,7 +2010,6 @@ export class PlutusMapValues {
2113
2010
  export class PlutusScript {
2114
2011
  private constructor();
2115
2012
  free(): void;
2116
- [Symbol.dispose](): void;
2117
2013
  to_bytes(): Uint8Array;
2118
2014
  static from_bytes(bytes: Uint8Array): PlutusScript;
2119
2015
  to_hex(): string;
@@ -2179,7 +2075,6 @@ export class PlutusScript {
2179
2075
  export class PlutusScriptSource {
2180
2076
  private constructor();
2181
2077
  free(): void;
2182
- [Symbol.dispose](): void;
2183
2078
  static new(script: PlutusScript): PlutusScriptSource;
2184
2079
  static new_ref_input(script_hash: ScriptHash, input: TransactionInput, lang_ver: Language, script_size: number): PlutusScriptSource;
2185
2080
  set_required_signers(key_hashes: Ed25519KeyHashes): void;
@@ -2188,7 +2083,6 @@ export class PlutusScriptSource {
2188
2083
  export class PlutusScripts {
2189
2084
  private constructor();
2190
2085
  free(): void;
2191
- [Symbol.dispose](): void;
2192
2086
  to_bytes(): Uint8Array;
2193
2087
  static from_bytes(bytes: Uint8Array): PlutusScripts;
2194
2088
  to_hex(): string;
@@ -2204,7 +2098,6 @@ export class PlutusScripts {
2204
2098
  export class PlutusWitness {
2205
2099
  private constructor();
2206
2100
  free(): void;
2207
- [Symbol.dispose](): void;
2208
2101
  static new(script: PlutusScript, datum: PlutusData, redeemer: Redeemer): PlutusWitness;
2209
2102
  static new_with_ref(script: PlutusScriptSource, datum: DatumSource, redeemer: Redeemer): PlutusWitness;
2210
2103
  static new_without_datum(script: PlutusScript, redeemer: Redeemer): PlutusWitness;
@@ -2216,7 +2109,6 @@ export class PlutusWitness {
2216
2109
  export class PlutusWitnesses {
2217
2110
  private constructor();
2218
2111
  free(): void;
2219
- [Symbol.dispose](): void;
2220
2112
  static new(): PlutusWitnesses;
2221
2113
  len(): number;
2222
2114
  get(index: number): PlutusWitness;
@@ -2225,7 +2117,6 @@ export class PlutusWitnesses {
2225
2117
  export class Pointer {
2226
2118
  private constructor();
2227
2119
  free(): void;
2228
- [Symbol.dispose](): void;
2229
2120
  cert_index_bignum(): BigNum;
2230
2121
  tx_index_bignum(): BigNum;
2231
2122
  slot_bignum(): BigNum;
@@ -2243,7 +2134,6 @@ export class Pointer {
2243
2134
  export class PointerAddress {
2244
2135
  private constructor();
2245
2136
  free(): void;
2246
- [Symbol.dispose](): void;
2247
2137
  static new(network: number, payment: Credential, stake: Pointer): PointerAddress;
2248
2138
  payment_cred(): Credential;
2249
2139
  stake_pointer(): Pointer;
@@ -2254,7 +2144,6 @@ export class PointerAddress {
2254
2144
  export class PoolMetadata {
2255
2145
  private constructor();
2256
2146
  free(): void;
2257
- [Symbol.dispose](): void;
2258
2147
  to_bytes(): Uint8Array;
2259
2148
  static from_bytes(bytes: Uint8Array): PoolMetadata;
2260
2149
  to_hex(): string;
@@ -2269,7 +2158,6 @@ export class PoolMetadata {
2269
2158
  export class PoolMetadataHash {
2270
2159
  private constructor();
2271
2160
  free(): void;
2272
- [Symbol.dispose](): void;
2273
2161
  static from_bytes(bytes: Uint8Array): PoolMetadataHash;
2274
2162
  to_bytes(): Uint8Array;
2275
2163
  to_bech32(prefix: string): string;
@@ -2280,7 +2168,6 @@ export class PoolMetadataHash {
2280
2168
  export class PoolParams {
2281
2169
  private constructor();
2282
2170
  free(): void;
2283
- [Symbol.dispose](): void;
2284
2171
  to_bytes(): Uint8Array;
2285
2172
  static from_bytes(bytes: Uint8Array): PoolParams;
2286
2173
  to_hex(): string;
@@ -2302,7 +2189,6 @@ export class PoolParams {
2302
2189
  export class PoolRegistration {
2303
2190
  private constructor();
2304
2191
  free(): void;
2305
- [Symbol.dispose](): void;
2306
2192
  to_bytes(): Uint8Array;
2307
2193
  static from_bytes(bytes: Uint8Array): PoolRegistration;
2308
2194
  to_hex(): string;
@@ -2316,7 +2202,6 @@ export class PoolRegistration {
2316
2202
  export class PoolRetirement {
2317
2203
  private constructor();
2318
2204
  free(): void;
2319
- [Symbol.dispose](): void;
2320
2205
  to_bytes(): Uint8Array;
2321
2206
  static from_bytes(bytes: Uint8Array): PoolRetirement;
2322
2207
  to_hex(): string;
@@ -2331,7 +2216,6 @@ export class PoolRetirement {
2331
2216
  export class PoolVotingThresholds {
2332
2217
  private constructor();
2333
2218
  free(): void;
2334
- [Symbol.dispose](): void;
2335
2219
  to_bytes(): Uint8Array;
2336
2220
  static from_bytes(bytes: Uint8Array): PoolVotingThresholds;
2337
2221
  to_hex(): string;
@@ -2349,7 +2233,6 @@ export class PoolVotingThresholds {
2349
2233
  export class PrivateKey {
2350
2234
  private constructor();
2351
2235
  free(): void;
2352
- [Symbol.dispose](): void;
2353
2236
  static from_hex(hex_str: string): PrivateKey;
2354
2237
  to_hex(): string;
2355
2238
  sign(message: Uint8Array): Ed25519Signature;
@@ -2375,7 +2258,6 @@ export class PrivateKey {
2375
2258
  export class ProposedProtocolParameterUpdates {
2376
2259
  private constructor();
2377
2260
  free(): void;
2378
- [Symbol.dispose](): void;
2379
2261
  to_bytes(): Uint8Array;
2380
2262
  static from_bytes(bytes: Uint8Array): ProposedProtocolParameterUpdates;
2381
2263
  to_hex(): string;
@@ -2392,7 +2274,6 @@ export class ProposedProtocolParameterUpdates {
2392
2274
  export class ProtocolParamUpdate {
2393
2275
  private constructor();
2394
2276
  free(): void;
2395
- [Symbol.dispose](): void;
2396
2277
  to_bytes(): Uint8Array;
2397
2278
  static from_bytes(bytes: Uint8Array): ProtocolParamUpdate;
2398
2279
  to_hex(): string;
@@ -2481,7 +2362,6 @@ export class ProtocolParamUpdate {
2481
2362
  export class ProtocolVersion {
2482
2363
  private constructor();
2483
2364
  free(): void;
2484
- [Symbol.dispose](): void;
2485
2365
  to_bytes(): Uint8Array;
2486
2366
  static from_bytes(bytes: Uint8Array): ProtocolVersion;
2487
2367
  to_hex(): string;
@@ -2499,7 +2379,6 @@ export class ProtocolVersion {
2499
2379
  export class PublicKey {
2500
2380
  private constructor();
2501
2381
  free(): void;
2502
- [Symbol.dispose](): void;
2503
2382
  static from_hex(hex_str: string): PublicKey;
2504
2383
  to_hex(): string;
2505
2384
  hash(): Ed25519KeyHash;
@@ -2518,7 +2397,6 @@ export class PublicKey {
2518
2397
  }
2519
2398
  export class PublicKeys {
2520
2399
  free(): void;
2521
- [Symbol.dispose](): void;
2522
2400
  constructor();
2523
2401
  size(): number;
2524
2402
  get(index: number): PublicKey;
@@ -2527,7 +2405,6 @@ export class PublicKeys {
2527
2405
  export class Redeemer {
2528
2406
  private constructor();
2529
2407
  free(): void;
2530
- [Symbol.dispose](): void;
2531
2408
  to_bytes(): Uint8Array;
2532
2409
  static from_bytes(bytes: Uint8Array): Redeemer;
2533
2410
  to_hex(): string;
@@ -2544,7 +2421,6 @@ export class Redeemer {
2544
2421
  export class RedeemerTag {
2545
2422
  private constructor();
2546
2423
  free(): void;
2547
- [Symbol.dispose](): void;
2548
2424
  to_bytes(): Uint8Array;
2549
2425
  static from_bytes(bytes: Uint8Array): RedeemerTag;
2550
2426
  to_hex(): string;
@@ -2563,7 +2439,6 @@ export class RedeemerTag {
2563
2439
  export class Redeemers {
2564
2440
  private constructor();
2565
2441
  free(): void;
2566
- [Symbol.dispose](): void;
2567
2442
  to_bytes(): Uint8Array;
2568
2443
  static from_bytes(bytes: Uint8Array): Redeemers;
2569
2444
  to_hex(): string;
@@ -2584,7 +2459,6 @@ export class Redeemers {
2584
2459
  export class Relay {
2585
2460
  private constructor();
2586
2461
  free(): void;
2587
- [Symbol.dispose](): void;
2588
2462
  to_bytes(): Uint8Array;
2589
2463
  static from_bytes(bytes: Uint8Array): Relay;
2590
2464
  to_hex(): string;
@@ -2603,7 +2477,6 @@ export class Relay {
2603
2477
  export class Relays {
2604
2478
  private constructor();
2605
2479
  free(): void;
2606
- [Symbol.dispose](): void;
2607
2480
  to_bytes(): Uint8Array;
2608
2481
  static from_bytes(bytes: Uint8Array): Relays;
2609
2482
  to_hex(): string;
@@ -2619,7 +2492,6 @@ export class Relays {
2619
2492
  export class RewardAddress {
2620
2493
  private constructor();
2621
2494
  free(): void;
2622
- [Symbol.dispose](): void;
2623
2495
  static new(network: number, payment: Credential): RewardAddress;
2624
2496
  payment_cred(): Credential;
2625
2497
  to_address(): Address;
@@ -2629,7 +2501,6 @@ export class RewardAddress {
2629
2501
  export class RewardAddresses {
2630
2502
  private constructor();
2631
2503
  free(): void;
2632
- [Symbol.dispose](): void;
2633
2504
  to_bytes(): Uint8Array;
2634
2505
  static from_bytes(bytes: Uint8Array): RewardAddresses;
2635
2506
  to_hex(): string;
@@ -2645,7 +2516,6 @@ export class RewardAddresses {
2645
2516
  export class ScriptAll {
2646
2517
  private constructor();
2647
2518
  free(): void;
2648
- [Symbol.dispose](): void;
2649
2519
  to_bytes(): Uint8Array;
2650
2520
  static from_bytes(bytes: Uint8Array): ScriptAll;
2651
2521
  to_hex(): string;
@@ -2659,7 +2529,6 @@ export class ScriptAll {
2659
2529
  export class ScriptAny {
2660
2530
  private constructor();
2661
2531
  free(): void;
2662
- [Symbol.dispose](): void;
2663
2532
  to_bytes(): Uint8Array;
2664
2533
  static from_bytes(bytes: Uint8Array): ScriptAny;
2665
2534
  to_hex(): string;
@@ -2673,7 +2542,6 @@ export class ScriptAny {
2673
2542
  export class ScriptDataHash {
2674
2543
  private constructor();
2675
2544
  free(): void;
2676
- [Symbol.dispose](): void;
2677
2545
  static from_bytes(bytes: Uint8Array): ScriptDataHash;
2678
2546
  to_bytes(): Uint8Array;
2679
2547
  to_bech32(prefix: string): string;
@@ -2684,7 +2552,6 @@ export class ScriptDataHash {
2684
2552
  export class ScriptHash {
2685
2553
  private constructor();
2686
2554
  free(): void;
2687
- [Symbol.dispose](): void;
2688
2555
  static from_bytes(bytes: Uint8Array): ScriptHash;
2689
2556
  to_bytes(): Uint8Array;
2690
2557
  to_bech32(prefix: string): string;
@@ -2695,7 +2562,6 @@ export class ScriptHash {
2695
2562
  export class ScriptHashes {
2696
2563
  private constructor();
2697
2564
  free(): void;
2698
- [Symbol.dispose](): void;
2699
2565
  to_bytes(): Uint8Array;
2700
2566
  static from_bytes(bytes: Uint8Array): ScriptHashes;
2701
2567
  to_hex(): string;
@@ -2711,7 +2577,6 @@ export class ScriptHashes {
2711
2577
  export class ScriptNOfK {
2712
2578
  private constructor();
2713
2579
  free(): void;
2714
- [Symbol.dispose](): void;
2715
2580
  to_bytes(): Uint8Array;
2716
2581
  static from_bytes(bytes: Uint8Array): ScriptNOfK;
2717
2582
  to_hex(): string;
@@ -2726,7 +2591,6 @@ export class ScriptNOfK {
2726
2591
  export class ScriptPubkey {
2727
2592
  private constructor();
2728
2593
  free(): void;
2729
- [Symbol.dispose](): void;
2730
2594
  to_bytes(): Uint8Array;
2731
2595
  static from_bytes(bytes: Uint8Array): ScriptPubkey;
2732
2596
  to_hex(): string;
@@ -2740,7 +2604,6 @@ export class ScriptPubkey {
2740
2604
  export class ScriptRef {
2741
2605
  private constructor();
2742
2606
  free(): void;
2743
- [Symbol.dispose](): void;
2744
2607
  to_bytes(): Uint8Array;
2745
2608
  static from_bytes(bytes: Uint8Array): ScriptRef;
2746
2609
  to_hex(): string;
@@ -2764,7 +2627,6 @@ export class ScriptRef {
2764
2627
  export class SingleHostAddr {
2765
2628
  private constructor();
2766
2629
  free(): void;
2767
- [Symbol.dispose](): void;
2768
2630
  to_bytes(): Uint8Array;
2769
2631
  static from_bytes(bytes: Uint8Array): SingleHostAddr;
2770
2632
  to_hex(): string;
@@ -2780,7 +2642,6 @@ export class SingleHostAddr {
2780
2642
  export class SingleHostName {
2781
2643
  private constructor();
2782
2644
  free(): void;
2783
- [Symbol.dispose](): void;
2784
2645
  to_bytes(): Uint8Array;
2785
2646
  static from_bytes(bytes: Uint8Array): SingleHostName;
2786
2647
  to_hex(): string;
@@ -2795,7 +2656,6 @@ export class SingleHostName {
2795
2656
  export class StakeAndVoteDelegation {
2796
2657
  private constructor();
2797
2658
  free(): void;
2798
- [Symbol.dispose](): void;
2799
2659
  to_bytes(): Uint8Array;
2800
2660
  static from_bytes(bytes: Uint8Array): StakeAndVoteDelegation;
2801
2661
  to_hex(): string;
@@ -2812,7 +2672,6 @@ export class StakeAndVoteDelegation {
2812
2672
  export class StakeDelegation {
2813
2673
  private constructor();
2814
2674
  free(): void;
2815
- [Symbol.dispose](): void;
2816
2675
  to_bytes(): Uint8Array;
2817
2676
  static from_bytes(bytes: Uint8Array): StakeDelegation;
2818
2677
  to_hex(): string;
@@ -2828,7 +2687,6 @@ export class StakeDelegation {
2828
2687
  export class StakeDeregistration {
2829
2688
  private constructor();
2830
2689
  free(): void;
2831
- [Symbol.dispose](): void;
2832
2690
  to_bytes(): Uint8Array;
2833
2691
  static from_bytes(bytes: Uint8Array): StakeDeregistration;
2834
2692
  to_hex(): string;
@@ -2845,7 +2703,6 @@ export class StakeDeregistration {
2845
2703
  export class StakeRegistration {
2846
2704
  private constructor();
2847
2705
  free(): void;
2848
- [Symbol.dispose](): void;
2849
2706
  to_bytes(): Uint8Array;
2850
2707
  static from_bytes(bytes: Uint8Array): StakeRegistration;
2851
2708
  to_hex(): string;
@@ -2862,7 +2719,6 @@ export class StakeRegistration {
2862
2719
  export class StakeRegistrationAndDelegation {
2863
2720
  private constructor();
2864
2721
  free(): void;
2865
- [Symbol.dispose](): void;
2866
2722
  to_bytes(): Uint8Array;
2867
2723
  static from_bytes(bytes: Uint8Array): StakeRegistrationAndDelegation;
2868
2724
  to_hex(): string;
@@ -2879,7 +2735,6 @@ export class StakeRegistrationAndDelegation {
2879
2735
  export class StakeVoteRegistrationAndDelegation {
2880
2736
  private constructor();
2881
2737
  free(): void;
2882
- [Symbol.dispose](): void;
2883
2738
  to_bytes(): Uint8Array;
2884
2739
  static from_bytes(bytes: Uint8Array): StakeVoteRegistrationAndDelegation;
2885
2740
  to_hex(): string;
@@ -2897,7 +2752,6 @@ export class StakeVoteRegistrationAndDelegation {
2897
2752
  export class Strings {
2898
2753
  private constructor();
2899
2754
  free(): void;
2900
- [Symbol.dispose](): void;
2901
2755
  static new(): Strings;
2902
2756
  len(): number;
2903
2757
  get(index: number): string;
@@ -2906,7 +2760,6 @@ export class Strings {
2906
2760
  export class TimelockExpiry {
2907
2761
  private constructor();
2908
2762
  free(): void;
2909
- [Symbol.dispose](): void;
2910
2763
  to_bytes(): Uint8Array;
2911
2764
  static from_bytes(bytes: Uint8Array): TimelockExpiry;
2912
2765
  to_hex(): string;
@@ -2927,7 +2780,6 @@ export class TimelockExpiry {
2927
2780
  export class TimelockStart {
2928
2781
  private constructor();
2929
2782
  free(): void;
2930
- [Symbol.dispose](): void;
2931
2783
  to_bytes(): Uint8Array;
2932
2784
  static from_bytes(bytes: Uint8Array): TimelockStart;
2933
2785
  to_hex(): string;
@@ -2954,7 +2806,6 @@ export class TimelockStart {
2954
2806
  export class Transaction {
2955
2807
  private constructor();
2956
2808
  free(): void;
2957
- [Symbol.dispose](): void;
2958
2809
  to_bytes(): Uint8Array;
2959
2810
  static from_bytes(bytes: Uint8Array): Transaction;
2960
2811
  to_hex(): string;
@@ -2972,21 +2823,18 @@ export class Transaction {
2972
2823
  export class TransactionBatch {
2973
2824
  private constructor();
2974
2825
  free(): void;
2975
- [Symbol.dispose](): void;
2976
2826
  len(): number;
2977
2827
  get(index: number): Transaction;
2978
2828
  }
2979
2829
  export class TransactionBatchList {
2980
2830
  private constructor();
2981
2831
  free(): void;
2982
- [Symbol.dispose](): void;
2983
2832
  len(): number;
2984
2833
  get(index: number): TransactionBatch;
2985
2834
  }
2986
2835
  export class TransactionBodies {
2987
2836
  private constructor();
2988
2837
  free(): void;
2989
- [Symbol.dispose](): void;
2990
2838
  to_bytes(): Uint8Array;
2991
2839
  static from_bytes(bytes: Uint8Array): TransactionBodies;
2992
2840
  to_hex(): string;
@@ -3002,7 +2850,6 @@ export class TransactionBodies {
3002
2850
  export class TransactionBody {
3003
2851
  private constructor();
3004
2852
  free(): void;
3005
- [Symbol.dispose](): void;
3006
2853
  to_bytes(): Uint8Array;
3007
2854
  static from_bytes(bytes: Uint8Array): TransactionBody;
3008
2855
  to_hex(): string;
@@ -3084,7 +2931,6 @@ export class TransactionBody {
3084
2931
  export class TransactionBuilder {
3085
2932
  private constructor();
3086
2933
  free(): void;
3087
- [Symbol.dispose](): void;
3088
2934
  /**
3089
2935
  * This automatically selects and adds inputs from {inputs} consisting of just enough to cover
3090
2936
  * the outputs that have already been added.
@@ -3374,12 +3220,10 @@ export class TransactionBuilder {
3374
3220
  export class TransactionBuilderConfig {
3375
3221
  private constructor();
3376
3222
  free(): void;
3377
- [Symbol.dispose](): void;
3378
3223
  }
3379
3224
  export class TransactionBuilderConfigBuilder {
3380
3225
  private constructor();
3381
3226
  free(): void;
3382
- [Symbol.dispose](): void;
3383
3227
  static new(): TransactionBuilderConfigBuilder;
3384
3228
  fee_algo(fee_algo: LinearFee): TransactionBuilderConfigBuilder;
3385
3229
  coins_per_utxo_byte(coins_per_utxo_byte: BigNum): TransactionBuilderConfigBuilder;
@@ -3404,7 +3248,6 @@ export class TransactionBuilderConfigBuilder {
3404
3248
  export class TransactionHash {
3405
3249
  private constructor();
3406
3250
  free(): void;
3407
- [Symbol.dispose](): void;
3408
3251
  static from_bytes(bytes: Uint8Array): TransactionHash;
3409
3252
  to_bytes(): Uint8Array;
3410
3253
  to_bech32(prefix: string): string;
@@ -3415,7 +3258,6 @@ export class TransactionHash {
3415
3258
  export class TransactionInput {
3416
3259
  private constructor();
3417
3260
  free(): void;
3418
- [Symbol.dispose](): void;
3419
3261
  to_bytes(): Uint8Array;
3420
3262
  static from_bytes(bytes: Uint8Array): TransactionInput;
3421
3263
  to_hex(): string;
@@ -3430,7 +3272,6 @@ export class TransactionInput {
3430
3272
  export class TransactionInputs {
3431
3273
  private constructor();
3432
3274
  free(): void;
3433
- [Symbol.dispose](): void;
3434
3275
  to_bytes(): Uint8Array;
3435
3276
  static from_bytes(bytes: Uint8Array): TransactionInputs;
3436
3277
  to_hex(): string;
@@ -3451,7 +3292,6 @@ export class TransactionInputs {
3451
3292
  export class TransactionMetadatum {
3452
3293
  private constructor();
3453
3294
  free(): void;
3454
- [Symbol.dispose](): void;
3455
3295
  to_bytes(): Uint8Array;
3456
3296
  static from_bytes(bytes: Uint8Array): TransactionMetadatum;
3457
3297
  to_hex(): string;
@@ -3471,7 +3311,6 @@ export class TransactionMetadatum {
3471
3311
  export class TransactionMetadatumLabels {
3472
3312
  private constructor();
3473
3313
  free(): void;
3474
- [Symbol.dispose](): void;
3475
3314
  to_bytes(): Uint8Array;
3476
3315
  static from_bytes(bytes: Uint8Array): TransactionMetadatumLabels;
3477
3316
  to_hex(): string;
@@ -3484,7 +3323,6 @@ export class TransactionMetadatumLabels {
3484
3323
  export class TransactionOutput {
3485
3324
  private constructor();
3486
3325
  free(): void;
3487
- [Symbol.dispose](): void;
3488
3326
  to_bytes(): Uint8Array;
3489
3327
  static from_bytes(bytes: Uint8Array): TransactionOutput;
3490
3328
  to_hex(): string;
@@ -3509,7 +3347,6 @@ export class TransactionOutput {
3509
3347
  export class TransactionOutputAmountBuilder {
3510
3348
  private constructor();
3511
3349
  free(): void;
3512
- [Symbol.dispose](): void;
3513
3350
  with_value(amount: Value): TransactionOutputAmountBuilder;
3514
3351
  with_coin(coin: BigNum): TransactionOutputAmountBuilder;
3515
3352
  with_coin_and_asset(coin: BigNum, multiasset: MultiAsset): TransactionOutputAmountBuilder;
@@ -3526,7 +3363,6 @@ export class TransactionOutputAmountBuilder {
3526
3363
  export class TransactionOutputBuilder {
3527
3364
  private constructor();
3528
3365
  free(): void;
3529
- [Symbol.dispose](): void;
3530
3366
  static new(): TransactionOutputBuilder;
3531
3367
  with_address(address: Address): TransactionOutputBuilder;
3532
3368
  with_data_hash(data_hash: DataHash): TransactionOutputBuilder;
@@ -3537,7 +3373,6 @@ export class TransactionOutputBuilder {
3537
3373
  export class TransactionOutputs {
3538
3374
  private constructor();
3539
3375
  free(): void;
3540
- [Symbol.dispose](): void;
3541
3376
  to_bytes(): Uint8Array;
3542
3377
  static from_bytes(bytes: Uint8Array): TransactionOutputs;
3543
3378
  to_hex(): string;
@@ -3553,7 +3388,6 @@ export class TransactionOutputs {
3553
3388
  export class TransactionUnspentOutput {
3554
3389
  private constructor();
3555
3390
  free(): void;
3556
- [Symbol.dispose](): void;
3557
3391
  to_bytes(): Uint8Array;
3558
3392
  static from_bytes(bytes: Uint8Array): TransactionUnspentOutput;
3559
3393
  to_hex(): string;
@@ -3568,7 +3402,6 @@ export class TransactionUnspentOutput {
3568
3402
  export class TransactionUnspentOutputs {
3569
3403
  private constructor();
3570
3404
  free(): void;
3571
- [Symbol.dispose](): void;
3572
3405
  to_json(): string;
3573
3406
  to_js_value(): TransactionUnspentOutputsJSON;
3574
3407
  static from_json(json: string): TransactionUnspentOutputs;
@@ -3580,7 +3413,6 @@ export class TransactionUnspentOutputs {
3580
3413
  export class TransactionWitnessSet {
3581
3414
  private constructor();
3582
3415
  free(): void;
3583
- [Symbol.dispose](): void;
3584
3416
  to_bytes(): Uint8Array;
3585
3417
  static from_bytes(bytes: Uint8Array): TransactionWitnessSet;
3586
3418
  to_hex(): string;
@@ -3605,7 +3437,6 @@ export class TransactionWitnessSet {
3605
3437
  export class TransactionWitnessSets {
3606
3438
  private constructor();
3607
3439
  free(): void;
3608
- [Symbol.dispose](): void;
3609
3440
  to_bytes(): Uint8Array;
3610
3441
  static from_bytes(bytes: Uint8Array): TransactionWitnessSets;
3611
3442
  to_hex(): string;
@@ -3621,7 +3452,6 @@ export class TransactionWitnessSets {
3621
3452
  export class TreasuryWithdrawals {
3622
3453
  private constructor();
3623
3454
  free(): void;
3624
- [Symbol.dispose](): void;
3625
3455
  to_json(): string;
3626
3456
  to_js_value(): TreasuryWithdrawalsJSON;
3627
3457
  static from_json(json: string): TreasuryWithdrawals;
@@ -3634,7 +3464,6 @@ export class TreasuryWithdrawals {
3634
3464
  export class TreasuryWithdrawalsAction {
3635
3465
  private constructor();
3636
3466
  free(): void;
3637
- [Symbol.dispose](): void;
3638
3467
  to_bytes(): Uint8Array;
3639
3468
  static from_bytes(bytes: Uint8Array): TreasuryWithdrawalsAction;
3640
3469
  to_hex(): string;
@@ -3650,7 +3479,6 @@ export class TreasuryWithdrawalsAction {
3650
3479
  export class TxInputsBuilder {
3651
3480
  private constructor();
3652
3481
  free(): void;
3653
- [Symbol.dispose](): void;
3654
3482
  static new(): TxInputsBuilder;
3655
3483
  add_regular_utxo(utxo: TransactionUnspentOutput): void;
3656
3484
  add_plutus_script_utxo(utxo: TransactionUnspentOutput, witness: PlutusWitness): void;
@@ -3694,7 +3522,6 @@ export class TxInputsBuilder {
3694
3522
  export class URL {
3695
3523
  private constructor();
3696
3524
  free(): void;
3697
- [Symbol.dispose](): void;
3698
3525
  to_bytes(): Uint8Array;
3699
3526
  static from_bytes(bytes: Uint8Array): URL;
3700
3527
  to_hex(): string;
@@ -3708,7 +3535,6 @@ export class URL {
3708
3535
  export class UnitInterval {
3709
3536
  private constructor();
3710
3537
  free(): void;
3711
- [Symbol.dispose](): void;
3712
3538
  to_bytes(): Uint8Array;
3713
3539
  static from_bytes(bytes: Uint8Array): UnitInterval;
3714
3540
  to_hex(): string;
@@ -3723,7 +3549,6 @@ export class UnitInterval {
3723
3549
  export class Update {
3724
3550
  private constructor();
3725
3551
  free(): void;
3726
- [Symbol.dispose](): void;
3727
3552
  to_bytes(): Uint8Array;
3728
3553
  static from_bytes(bytes: Uint8Array): Update;
3729
3554
  to_hex(): string;
@@ -3738,7 +3563,6 @@ export class Update {
3738
3563
  export class UpdateCommitteeAction {
3739
3564
  private constructor();
3740
3565
  free(): void;
3741
- [Symbol.dispose](): void;
3742
3566
  to_bytes(): Uint8Array;
3743
3567
  static from_bytes(bytes: Uint8Array): UpdateCommitteeAction;
3744
3568
  to_hex(): string;
@@ -3755,7 +3579,6 @@ export class UpdateCommitteeAction {
3755
3579
  export class VRFCert {
3756
3580
  private constructor();
3757
3581
  free(): void;
3758
- [Symbol.dispose](): void;
3759
3582
  to_bytes(): Uint8Array;
3760
3583
  static from_bytes(bytes: Uint8Array): VRFCert;
3761
3584
  to_hex(): string;
@@ -3770,7 +3593,6 @@ export class VRFCert {
3770
3593
  export class VRFKeyHash {
3771
3594
  private constructor();
3772
3595
  free(): void;
3773
- [Symbol.dispose](): void;
3774
3596
  static from_bytes(bytes: Uint8Array): VRFKeyHash;
3775
3597
  to_bytes(): Uint8Array;
3776
3598
  to_bech32(prefix: string): string;
@@ -3781,7 +3603,6 @@ export class VRFKeyHash {
3781
3603
  export class VRFVKey {
3782
3604
  private constructor();
3783
3605
  free(): void;
3784
- [Symbol.dispose](): void;
3785
3606
  static from_bytes(bytes: Uint8Array): VRFVKey;
3786
3607
  to_bytes(): Uint8Array;
3787
3608
  to_bech32(prefix: string): string;
@@ -3792,7 +3613,6 @@ export class VRFVKey {
3792
3613
  export class Value {
3793
3614
  private constructor();
3794
3615
  free(): void;
3795
- [Symbol.dispose](): void;
3796
3616
  to_bytes(): Uint8Array;
3797
3617
  static from_bytes(bytes: Uint8Array): Value;
3798
3618
  to_hex(): string;
@@ -3820,7 +3640,6 @@ export class Value {
3820
3640
  export class VersionedBlock {
3821
3641
  private constructor();
3822
3642
  free(): void;
3823
- [Symbol.dispose](): void;
3824
3643
  to_bytes(): Uint8Array;
3825
3644
  static from_bytes(bytes: Uint8Array): VersionedBlock;
3826
3645
  to_hex(): string;
@@ -3835,7 +3654,6 @@ export class VersionedBlock {
3835
3654
  export class Vkey {
3836
3655
  private constructor();
3837
3656
  free(): void;
3838
- [Symbol.dispose](): void;
3839
3657
  to_bytes(): Uint8Array;
3840
3658
  static from_bytes(bytes: Uint8Array): Vkey;
3841
3659
  to_hex(): string;
@@ -3849,7 +3667,6 @@ export class Vkey {
3849
3667
  export class Vkeys {
3850
3668
  private constructor();
3851
3669
  free(): void;
3852
- [Symbol.dispose](): void;
3853
3670
  static new(): Vkeys;
3854
3671
  len(): number;
3855
3672
  get(index: number): Vkey;
@@ -3858,7 +3675,6 @@ export class Vkeys {
3858
3675
  export class Vkeywitness {
3859
3676
  private constructor();
3860
3677
  free(): void;
3861
- [Symbol.dispose](): void;
3862
3678
  to_bytes(): Uint8Array;
3863
3679
  static from_bytes(bytes: Uint8Array): Vkeywitness;
3864
3680
  to_hex(): string;
@@ -3873,7 +3689,6 @@ export class Vkeywitness {
3873
3689
  export class Vkeywitnesses {
3874
3690
  private constructor();
3875
3691
  free(): void;
3876
- [Symbol.dispose](): void;
3877
3692
  to_bytes(): Uint8Array;
3878
3693
  static from_bytes(bytes: Uint8Array): Vkeywitnesses;
3879
3694
  to_hex(): string;
@@ -3893,7 +3708,6 @@ export class Vkeywitnesses {
3893
3708
  export class VoteDelegation {
3894
3709
  private constructor();
3895
3710
  free(): void;
3896
- [Symbol.dispose](): void;
3897
3711
  to_bytes(): Uint8Array;
3898
3712
  static from_bytes(bytes: Uint8Array): VoteDelegation;
3899
3713
  to_hex(): string;
@@ -3909,7 +3723,6 @@ export class VoteDelegation {
3909
3723
  export class VoteRegistrationAndDelegation {
3910
3724
  private constructor();
3911
3725
  free(): void;
3912
- [Symbol.dispose](): void;
3913
3726
  to_bytes(): Uint8Array;
3914
3727
  static from_bytes(bytes: Uint8Array): VoteRegistrationAndDelegation;
3915
3728
  to_hex(): string;
@@ -3926,7 +3739,6 @@ export class VoteRegistrationAndDelegation {
3926
3739
  export class Voter {
3927
3740
  private constructor();
3928
3741
  free(): void;
3929
- [Symbol.dispose](): void;
3930
3742
  to_bytes(): Uint8Array;
3931
3743
  static from_bytes(bytes: Uint8Array): Voter;
3932
3744
  to_hex(): string;
@@ -3947,7 +3759,6 @@ export class Voter {
3947
3759
  export class Voters {
3948
3760
  private constructor();
3949
3761
  free(): void;
3950
- [Symbol.dispose](): void;
3951
3762
  to_json(): string;
3952
3763
  to_js_value(): VotersJSON;
3953
3764
  static from_json(json: string): Voters;
@@ -3959,7 +3770,6 @@ export class Voters {
3959
3770
  export class VotingBuilder {
3960
3771
  private constructor();
3961
3772
  free(): void;
3962
- [Symbol.dispose](): void;
3963
3773
  static new(): VotingBuilder;
3964
3774
  add(voter: Voter, gov_action_id: GovernanceActionId, voting_procedure: VotingProcedure): void;
3965
3775
  add_with_plutus_witness(voter: Voter, gov_action_id: GovernanceActionId, voting_procedure: VotingProcedure, witness: PlutusWitness): void;
@@ -3973,7 +3783,6 @@ export class VotingBuilder {
3973
3783
  export class VotingProcedure {
3974
3784
  private constructor();
3975
3785
  free(): void;
3976
- [Symbol.dispose](): void;
3977
3786
  to_bytes(): Uint8Array;
3978
3787
  static from_bytes(bytes: Uint8Array): VotingProcedure;
3979
3788
  to_hex(): string;
@@ -3989,7 +3798,6 @@ export class VotingProcedure {
3989
3798
  export class VotingProcedures {
3990
3799
  private constructor();
3991
3800
  free(): void;
3992
- [Symbol.dispose](): void;
3993
3801
  to_bytes(): Uint8Array;
3994
3802
  static from_bytes(bytes: Uint8Array): VotingProcedures;
3995
3803
  to_hex(): string;
@@ -4006,7 +3814,6 @@ export class VotingProcedures {
4006
3814
  export class VotingProposal {
4007
3815
  private constructor();
4008
3816
  free(): void;
4009
- [Symbol.dispose](): void;
4010
3817
  to_bytes(): Uint8Array;
4011
3818
  static from_bytes(bytes: Uint8Array): VotingProposal;
4012
3819
  to_hex(): string;
@@ -4023,7 +3830,6 @@ export class VotingProposal {
4023
3830
  export class VotingProposalBuilder {
4024
3831
  private constructor();
4025
3832
  free(): void;
4026
- [Symbol.dispose](): void;
4027
3833
  static new(): VotingProposalBuilder;
4028
3834
  add(proposal: VotingProposal): void;
4029
3835
  add_with_plutus_witness(proposal: VotingProposal, witness: PlutusWitness): void;
@@ -4035,7 +3841,6 @@ export class VotingProposalBuilder {
4035
3841
  export class VotingProposals {
4036
3842
  private constructor();
4037
3843
  free(): void;
4038
- [Symbol.dispose](): void;
4039
3844
  to_bytes(): Uint8Array;
4040
3845
  static from_bytes(bytes: Uint8Array): VotingProposals;
4041
3846
  to_hex(): string;
@@ -4057,7 +3862,6 @@ export class VotingProposals {
4057
3862
  export class Withdrawals {
4058
3863
  private constructor();
4059
3864
  free(): void;
4060
- [Symbol.dispose](): void;
4061
3865
  to_bytes(): Uint8Array;
4062
3866
  static from_bytes(bytes: Uint8Array): Withdrawals;
4063
3867
  to_hex(): string;
@@ -4074,7 +3878,6 @@ export class Withdrawals {
4074
3878
  export class WithdrawalsBuilder {
4075
3879
  private constructor();
4076
3880
  free(): void;
4077
- [Symbol.dispose](): void;
4078
3881
  static new(): WithdrawalsBuilder;
4079
3882
  add(address: RewardAddress, coin: BigNum): void;
4080
3883
  add_with_plutus_witness(address: RewardAddress, coin: BigNum, witness: PlutusWitness): void;