@aptos-labs/ts-sdk 1.33.0 → 1.33.2-sc.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/README.md +11 -6
- package/dist/common/{accountAddress-fJZJVSBc.d.ts → accountAddress-Cf1amU98.d.ts} +293 -1
- package/dist/common/{chunk-F43XVDYJ.js → chunk-IHUCZKG2.js} +1 -1
- package/dist/common/chunk-IHUCZKG2.js.map +1 -0
- package/dist/common/cli/index.d.ts +56 -9
- package/dist/common/cli/index.js +1 -1
- package/dist/common/cli/index.js.map +1 -1
- package/dist/common/index.d.ts +2126 -305
- package/dist/common/index.js +33 -33
- package/dist/common/index.js.map +1 -1
- package/dist/esm/{Ed25519Account-B3xHXAQe.d.mts → Ed25519Account-D4j3_WIS.d.mts} +122 -12
- package/dist/esm/account/AbstractKeylessAccount.d.mts +82 -7
- package/dist/esm/account/AbstractKeylessAccount.mjs +1 -1
- package/dist/esm/account/Account.d.mts +6 -4
- package/dist/esm/account/Account.mjs +1 -1
- package/dist/esm/account/AccountUtils.d.mts +65 -0
- package/dist/esm/account/AccountUtils.mjs +2 -0
- package/dist/esm/account/Ed25519Account.d.mts +4 -2
- package/dist/esm/account/Ed25519Account.mjs +1 -1
- package/dist/esm/account/EphemeralKeyPair.d.mts +30 -1
- package/dist/esm/account/EphemeralKeyPair.mjs +1 -1
- package/dist/esm/account/FederatedKeylessAccount.d.mts +26 -5
- package/dist/esm/account/FederatedKeylessAccount.mjs +1 -1
- package/dist/esm/account/KeylessAccount.d.mts +31 -5
- package/dist/esm/account/KeylessAccount.mjs +1 -1
- package/dist/esm/account/MultiKeyAccount.d.mts +41 -5
- package/dist/esm/account/MultiKeyAccount.mjs +1 -1
- package/dist/esm/account/SingleKeyAccount.d.mts +5 -3
- package/dist/esm/account/SingleKeyAccount.mjs +1 -1
- package/dist/esm/account/index.d.mts +5 -2
- package/dist/esm/account/index.mjs +1 -1
- package/dist/esm/account/utils.d.mts +19 -0
- package/dist/esm/account/utils.mjs +2 -0
- package/dist/esm/api/account.d.mts +26 -4
- package/dist/esm/api/account.mjs +1 -1
- package/dist/esm/api/ans.d.mts +19 -2
- package/dist/esm/api/ans.mjs +1 -1
- package/dist/esm/api/aptos.d.mts +7 -2
- package/dist/esm/api/aptos.mjs +1 -1
- package/dist/esm/api/aptosConfig.d.mts +17 -0
- package/dist/esm/api/aptosConfig.mjs +1 -1
- package/dist/esm/api/coin.d.mts +8 -3
- package/dist/esm/api/coin.mjs +1 -1
- package/dist/esm/api/digitalAsset.d.mts +30 -2
- package/dist/esm/api/digitalAsset.mjs +1 -1
- package/dist/esm/api/event.d.mts +7 -0
- package/dist/esm/api/event.mjs +1 -1
- package/dist/esm/api/faucet.d.mts +12 -2
- package/dist/esm/api/faucet.mjs +1 -1
- package/dist/esm/api/fungibleAsset.d.mts +12 -2
- package/dist/esm/api/fungibleAsset.mjs +1 -1
- package/dist/esm/api/general.d.mts +15 -1
- package/dist/esm/api/general.mjs +1 -1
- package/dist/esm/api/index.d.mts +5 -2
- package/dist/esm/api/index.mjs +1 -1
- package/dist/esm/api/keyless.d.mts +10 -3
- package/dist/esm/api/keyless.mjs +1 -1
- package/dist/esm/api/object.d.mts +4 -0
- package/dist/esm/api/object.mjs +1 -1
- package/dist/esm/api/staking.d.mts +6 -0
- package/dist/esm/api/staking.mjs +1 -1
- package/dist/esm/api/table.d.mts +6 -0
- package/dist/esm/api/table.mjs +1 -1
- package/dist/esm/api/transaction.d.mts +25 -6
- package/dist/esm/api/transaction.mjs +1 -1
- package/dist/esm/api/transactionSubmission/build.d.mts +72 -1
- package/dist/esm/api/transactionSubmission/build.mjs +1 -1
- package/dist/esm/api/transactionSubmission/helpers.d.mts +2 -0
- package/dist/esm/api/transactionSubmission/helpers.mjs +1 -1
- package/dist/esm/api/transactionSubmission/management.d.mts +9 -2
- package/dist/esm/api/transactionSubmission/management.mjs +1 -1
- package/dist/esm/api/transactionSubmission/sign.d.mts +8 -2
- package/dist/esm/api/transactionSubmission/sign.mjs +1 -1
- package/dist/esm/api/transactionSubmission/sign.mjs.map +1 -1
- package/dist/esm/api/transactionSubmission/simulate.d.mts +7 -1
- package/dist/esm/api/transactionSubmission/simulate.mjs +1 -1
- package/dist/esm/api/transactionSubmission/submit.d.mts +7 -1
- package/dist/esm/api/transactionSubmission/submit.mjs +1 -1
- package/dist/esm/api/utils.d.mts +2 -0
- package/dist/esm/api/utils.mjs +1 -1
- package/dist/esm/bcs/consts.d.mts +1 -0
- package/dist/esm/bcs/deserializer.d.mts +57 -2
- package/dist/esm/bcs/deserializer.mjs +1 -1
- package/dist/esm/bcs/index.d.mts +1 -0
- package/dist/esm/bcs/index.mjs +1 -1
- package/dist/esm/bcs/serializable/entryFunctionBytes.d.mts +11 -0
- package/dist/esm/bcs/serializable/entryFunctionBytes.mjs +1 -1
- package/dist/esm/bcs/serializable/fixedBytes.d.mts +13 -0
- package/dist/esm/bcs/serializable/fixedBytes.mjs +1 -1
- package/dist/esm/bcs/serializable/movePrimitives.d.mts +25 -0
- package/dist/esm/bcs/serializable/movePrimitives.mjs +1 -1
- package/dist/esm/bcs/serializable/moveStructs.d.mts +57 -0
- package/dist/esm/bcs/serializable/moveStructs.mjs +1 -1
- package/dist/esm/bcs/serializer.d.mts +61 -0
- package/dist/esm/bcs/serializer.mjs +1 -1
- package/dist/esm/{chunk-XVPWTWPY.mjs → chunk-32WLD3F3.mjs} +2 -2
- package/dist/esm/chunk-32WLD3F3.mjs.map +1 -0
- package/dist/esm/chunk-35DKMW7Q.mjs +2 -0
- package/dist/esm/chunk-35DKMW7Q.mjs.map +1 -0
- package/dist/esm/chunk-3OLFJ65O.mjs +2 -0
- package/dist/esm/chunk-3OLFJ65O.mjs.map +1 -0
- package/dist/esm/chunk-3XH3NNSR.mjs +2 -0
- package/dist/esm/chunk-3XH3NNSR.mjs.map +1 -0
- package/dist/esm/chunk-4RXKALLC.mjs +2 -0
- package/dist/esm/chunk-4RXKALLC.mjs.map +1 -0
- package/dist/esm/{chunk-64IZ5PQR.mjs → chunk-4UYVRG5Z.mjs} +2 -2
- package/dist/esm/chunk-4UYVRG5Z.mjs.map +1 -0
- package/dist/esm/chunk-4YLUM62M.mjs +2 -0
- package/dist/esm/chunk-4YLUM62M.mjs.map +1 -0
- package/dist/esm/{chunk-KKLF7DQV.mjs → chunk-4ZJJINCW.mjs} +2 -2
- package/dist/esm/chunk-4ZJJINCW.mjs.map +1 -0
- package/dist/esm/{chunk-U7UTBXJD.mjs → chunk-66AQ2MJ6.mjs} +2 -2
- package/dist/esm/chunk-66AQ2MJ6.mjs.map +1 -0
- package/dist/esm/{chunk-LZ5PSDOS.mjs → chunk-67BUAZ6O.mjs} +2 -2
- package/dist/esm/chunk-67BUAZ6O.mjs.map +1 -0
- package/dist/esm/{chunk-A3USS2NC.mjs → chunk-67ZANQ3R.mjs} +2 -2
- package/dist/esm/chunk-67ZANQ3R.mjs.map +1 -0
- package/dist/esm/{chunk-JUQBFGUD.mjs → chunk-6IIAGMDR.mjs} +2 -2
- package/dist/esm/chunk-6IIAGMDR.mjs.map +1 -0
- package/dist/esm/{chunk-BWV6OYLG.mjs → chunk-6IPM5P4L.mjs} +2 -2
- package/dist/esm/chunk-6IPM5P4L.mjs.map +1 -0
- package/dist/esm/{chunk-WXLSHECY.mjs → chunk-6XHBRRS6.mjs} +2 -2
- package/dist/esm/chunk-6XHBRRS6.mjs.map +1 -0
- package/dist/esm/chunk-7HLNV3QL.mjs +2 -0
- package/dist/esm/chunk-7HLNV3QL.mjs.map +1 -0
- package/dist/esm/{chunk-CK5NDXQT.mjs → chunk-A3NEASNH.mjs} +2 -2
- package/dist/esm/chunk-A3NEASNH.mjs.map +1 -0
- package/dist/esm/{chunk-2CJC43CV.mjs → chunk-A5L76YP7.mjs} +1 -1
- package/dist/esm/chunk-A5L76YP7.mjs.map +1 -0
- package/dist/esm/{chunk-P74XXLE4.mjs → chunk-AD3A7DTH.mjs} +2 -2
- package/dist/esm/chunk-AD3A7DTH.mjs.map +1 -0
- package/dist/esm/chunk-AIABPCUF.mjs +2 -0
- package/dist/esm/{chunk-YQHOQJRQ.mjs.map → chunk-AIABPCUF.mjs.map} +1 -1
- package/dist/esm/{chunk-AOROYJ74.mjs → chunk-AZWVCBK2.mjs} +2 -2
- package/dist/esm/chunk-AZWVCBK2.mjs.map +1 -0
- package/dist/esm/chunk-BFIXIXHO.mjs +2 -0
- package/dist/esm/chunk-BFIXIXHO.mjs.map +1 -0
- package/dist/esm/{chunk-6ZOVTYLJ.mjs → chunk-BI3BTSUB.mjs} +2 -2
- package/dist/esm/chunk-BI3BTSUB.mjs.map +1 -0
- package/dist/esm/{chunk-OIOGOW6I.mjs → chunk-C3Q23D22.mjs} +1 -1
- package/dist/esm/chunk-C3Q23D22.mjs.map +1 -0
- package/dist/esm/{chunk-KPPM2BSC.mjs → chunk-CDYLZDD2.mjs} +2 -2
- package/dist/esm/chunk-CDYLZDD2.mjs.map +1 -0
- package/dist/esm/{chunk-5XLZACVT.mjs → chunk-CGTHWGSJ.mjs} +2 -2
- package/dist/esm/chunk-CGTHWGSJ.mjs.map +1 -0
- package/dist/esm/{chunk-P6RNNESB.mjs → chunk-CNCRJ56P.mjs} +2 -2
- package/dist/esm/chunk-CNCRJ56P.mjs.map +1 -0
- package/dist/esm/{chunk-VQZMI3EZ.mjs → chunk-CWKNJZB6.mjs} +2 -2
- package/dist/esm/chunk-CWKNJZB6.mjs.map +1 -0
- package/dist/esm/chunk-CWRANLXZ.mjs +2 -0
- package/dist/esm/chunk-CWRANLXZ.mjs.map +1 -0
- package/dist/esm/{chunk-476F5NJ6.mjs → chunk-CYMVZJHC.mjs} +2 -2
- package/dist/esm/chunk-CYMVZJHC.mjs.map +1 -0
- package/dist/esm/{chunk-V4FKFCBL.mjs → chunk-DAFSKSZ5.mjs} +1 -1
- package/dist/esm/chunk-DAFSKSZ5.mjs.map +1 -0
- package/dist/esm/chunk-DPW6ELCQ.mjs +2 -0
- package/dist/esm/chunk-DPW6ELCQ.mjs.map +1 -0
- package/dist/esm/{chunk-HKVZ7CAG.mjs → chunk-DW3ETAZB.mjs} +2 -2
- package/dist/esm/chunk-DW3ETAZB.mjs.map +1 -0
- package/dist/esm/{chunk-AJ5JHBAE.mjs → chunk-EBMEXURY.mjs} +2 -2
- package/dist/esm/chunk-EBMEXURY.mjs.map +1 -0
- package/dist/esm/{chunk-4IQZOAN7.mjs → chunk-EBS4BKER.mjs} +2 -2
- package/dist/esm/chunk-EBS4BKER.mjs.map +1 -0
- package/dist/esm/{chunk-VAKNMHOA.mjs → chunk-ECZYQTNN.mjs} +2 -2
- package/dist/esm/chunk-ECZYQTNN.mjs.map +1 -0
- package/dist/esm/chunk-EMURYYVO.mjs +2 -0
- package/dist/esm/chunk-EMURYYVO.mjs.map +1 -0
- package/dist/esm/chunk-F2ZTBAJJ.mjs +2 -0
- package/dist/esm/chunk-F2ZTBAJJ.mjs.map +1 -0
- package/dist/esm/chunk-FC2IYWI7.mjs +2 -0
- package/dist/esm/chunk-FC2IYWI7.mjs.map +1 -0
- package/dist/esm/chunk-FKJ3GCBI.mjs +2 -0
- package/dist/esm/chunk-FKJ3GCBI.mjs.map +1 -0
- package/dist/esm/{chunk-AKIO3OIT.mjs → chunk-FN4C3CKC.mjs} +2 -2
- package/dist/esm/chunk-FN4C3CKC.mjs.map +1 -0
- package/dist/esm/{chunk-6AEXQEO2.mjs → chunk-FNXO3URE.mjs} +2 -2
- package/dist/esm/chunk-FNXO3URE.mjs.map +1 -0
- package/dist/esm/{chunk-FH27D7S3.mjs → chunk-FQECACH3.mjs} +2 -2
- package/dist/esm/chunk-FQECACH3.mjs.map +1 -0
- package/dist/esm/{chunk-LK67PZX3.mjs → chunk-FQXEX2HN.mjs} +2 -2
- package/dist/esm/chunk-FQXEX2HN.mjs.map +1 -0
- package/dist/esm/{chunk-T6ADNZE5.mjs → chunk-G4O6FXCF.mjs} +2 -2
- package/dist/esm/chunk-G4O6FXCF.mjs.map +1 -0
- package/dist/esm/chunk-G5ZWH5T3.mjs +2 -0
- package/dist/esm/chunk-G5ZWH5T3.mjs.map +1 -0
- package/dist/esm/{chunk-HULCIESG.mjs → chunk-GL4OJVYH.mjs} +2 -2
- package/dist/esm/chunk-GL4OJVYH.mjs.map +1 -0
- package/dist/esm/{chunk-GMKKHGXK.mjs → chunk-GOXRBEIJ.mjs} +1 -1
- package/dist/esm/chunk-GOXRBEIJ.mjs.map +1 -0
- package/dist/esm/chunk-GP4TLDVZ.mjs +1 -0
- package/dist/esm/{chunk-ALOYOMRE.mjs → chunk-H3XZ3FZY.mjs} +2 -2
- package/dist/esm/{chunk-ALOYOMRE.mjs.map → chunk-H3XZ3FZY.mjs.map} +1 -1
- package/dist/esm/{chunk-O4MRRWRI.mjs → chunk-I7JGKVOC.mjs} +2 -2
- package/dist/esm/chunk-I7JGKVOC.mjs.map +1 -0
- package/dist/esm/{chunk-6Q2O5G3J.mjs → chunk-IF4UU2MT.mjs} +1 -1
- package/dist/esm/chunk-IF4UU2MT.mjs.map +1 -0
- package/dist/esm/{chunk-QN7AK5PU.mjs → chunk-IJ2QKE4W.mjs} +2 -2
- package/dist/esm/chunk-IJ2QKE4W.mjs.map +1 -0
- package/dist/esm/chunk-JJM6ELMS.mjs +2 -0
- package/dist/esm/chunk-JJM6ELMS.mjs.map +1 -0
- package/dist/esm/{chunk-TQA6HY6A.mjs → chunk-K2CSACQY.mjs} +2 -2
- package/dist/esm/chunk-K2CSACQY.mjs.map +1 -0
- package/dist/esm/{chunk-2D7OMWVL.mjs → chunk-KFCLSJC3.mjs} +2 -2
- package/dist/esm/chunk-KFGXOZ77.mjs +2 -0
- package/dist/esm/chunk-KFGXOZ77.mjs.map +1 -0
- package/dist/esm/{chunk-B5BXB2BB.mjs → chunk-KG23XFU2.mjs} +2 -2
- package/dist/esm/chunk-KG23XFU2.mjs.map +1 -0
- package/dist/esm/chunk-KNTAED2Z.mjs +2 -0
- package/dist/esm/chunk-KNTAED2Z.mjs.map +1 -0
- package/dist/esm/{chunk-4ZNSNWQL.mjs → chunk-KPLWOVKG.mjs} +2 -2
- package/dist/esm/chunk-KPLWOVKG.mjs.map +1 -0
- package/dist/esm/{chunk-BRV3RLKW.mjs → chunk-MT2RJ7H3.mjs} +2 -2
- package/dist/esm/chunk-MT2RJ7H3.mjs.map +1 -0
- package/dist/esm/{chunk-ACVIE7IE.mjs → chunk-N4DM5FYH.mjs} +2 -2
- package/dist/esm/chunk-N4DM5FYH.mjs.map +1 -0
- package/dist/esm/{chunk-Q3CWUEXI.mjs → chunk-N4VVDQA5.mjs} +2 -2
- package/dist/esm/chunk-N4VVDQA5.mjs.map +1 -0
- package/dist/esm/{chunk-LGTOOAQI.mjs → chunk-N6YTF76Q.mjs} +2 -2
- package/dist/esm/chunk-N6YTF76Q.mjs.map +1 -0
- package/dist/esm/{chunk-OEM75TVE.mjs → chunk-NDUIXMIA.mjs} +2 -2
- package/dist/esm/chunk-NDUIXMIA.mjs.map +1 -0
- package/dist/esm/{chunk-FUC7SLH7.mjs → chunk-NW2WUKWV.mjs} +2 -2
- package/dist/esm/chunk-NW2WUKWV.mjs.map +1 -0
- package/dist/esm/{chunk-I3452DF5.mjs → chunk-ODEDSSQL.mjs} +2 -2
- package/dist/esm/chunk-ODEDSSQL.mjs.map +1 -0
- package/dist/esm/{chunk-42H7WETG.mjs → chunk-ORMOQWWH.mjs} +2 -2
- package/dist/esm/chunk-ORMOQWWH.mjs.map +1 -0
- package/dist/esm/{chunk-JKA22FG5.mjs → chunk-P4VF7BN4.mjs} +2 -2
- package/dist/esm/chunk-P4VF7BN4.mjs.map +1 -0
- package/dist/esm/chunk-P54RNN4V.mjs +2 -0
- package/dist/esm/chunk-P54RNN4V.mjs.map +1 -0
- package/dist/esm/{chunk-D54FD6XE.mjs → chunk-PHJRCZQ3.mjs} +2 -2
- package/dist/esm/chunk-PHJRCZQ3.mjs.map +1 -0
- package/dist/esm/{chunk-YITOC4Z6.mjs → chunk-PNDCGNVH.mjs} +2 -2
- package/dist/esm/chunk-PNDCGNVH.mjs.map +1 -0
- package/dist/esm/{chunk-Y5HLXDYG.mjs → chunk-PTS3BTOU.mjs} +2 -2
- package/dist/esm/chunk-PTS3BTOU.mjs.map +1 -0
- package/dist/esm/{chunk-737YW3CY.mjs → chunk-PUNTBVRJ.mjs} +2 -2
- package/dist/esm/chunk-PUNTBVRJ.mjs.map +1 -0
- package/dist/esm/{chunk-MWNYODWU.mjs → chunk-Q2C6ZY5N.mjs} +2 -2
- package/dist/esm/chunk-Q2C6ZY5N.mjs.map +1 -0
- package/dist/esm/{chunk-R2YT2IM5.mjs → chunk-Q3VS6AEN.mjs} +2 -2
- package/dist/esm/{chunk-R2YT2IM5.mjs.map → chunk-Q3VS6AEN.mjs.map} +1 -1
- package/dist/esm/{chunk-JNO7KPMG.mjs → chunk-Q4C4U6I4.mjs} +2 -2
- package/dist/esm/chunk-Q4C4U6I4.mjs.map +1 -0
- package/dist/esm/{chunk-F45G3GP3.mjs → chunk-QHEKBHNU.mjs} +2 -2
- package/dist/esm/chunk-R7QOPBWA.mjs +2 -0
- package/dist/esm/chunk-R7QOPBWA.mjs.map +1 -0
- package/dist/esm/{chunk-J7PJSK3J.mjs → chunk-RJ7F4JDV.mjs} +1 -1
- package/dist/esm/chunk-RJ7F4JDV.mjs.map +1 -0
- package/dist/esm/chunk-ROT6S6BM.mjs +2 -0
- package/dist/esm/chunk-ROT6S6BM.mjs.map +1 -0
- package/dist/esm/{chunk-OGBU52BQ.mjs → chunk-SOLQ5VON.mjs} +2 -2
- package/dist/esm/chunk-SOLQ5VON.mjs.map +1 -0
- package/dist/esm/{chunk-L3J2QVIY.mjs → chunk-SQR3AIY7.mjs} +2 -2
- package/dist/esm/chunk-SQR3AIY7.mjs.map +1 -0
- package/dist/esm/{chunk-SPRNSFUV.mjs → chunk-STY74NUA.mjs} +2 -2
- package/dist/esm/chunk-STY74NUA.mjs.map +1 -0
- package/dist/esm/{chunk-YT3IP57B.mjs → chunk-SZRZ3HIL.mjs} +2 -2
- package/dist/esm/chunk-SZRZ3HIL.mjs.map +1 -0
- package/dist/esm/{chunk-QZT2M7UA.mjs → chunk-T6NQDM7D.mjs} +2 -2
- package/dist/esm/chunk-T6NQDM7D.mjs.map +1 -0
- package/dist/esm/{chunk-ZMBXHMVQ.mjs → chunk-TOBQ5UE6.mjs} +2 -2
- package/dist/esm/chunk-TOBQ5UE6.mjs.map +1 -0
- package/dist/esm/{chunk-4ULPBQ3M.mjs → chunk-UF6SI2QE.mjs} +2 -2
- package/dist/esm/chunk-UF6SI2QE.mjs.map +1 -0
- package/dist/esm/chunk-UIRAXHDH.mjs +1 -0
- package/dist/esm/chunk-UIRAXHDH.mjs.map +1 -0
- package/dist/esm/{chunk-S3YVCCYI.mjs → chunk-UONSJQUV.mjs} +2 -2
- package/dist/esm/chunk-UONSJQUV.mjs.map +1 -0
- package/dist/esm/{chunk-S22QVNK7.mjs → chunk-UQ7D5CSM.mjs} +2 -2
- package/dist/esm/chunk-UQ7D5CSM.mjs.map +1 -0
- package/dist/esm/{chunk-5O3RHPER.mjs → chunk-UYONA6PP.mjs} +2 -2
- package/dist/esm/chunk-UYONA6PP.mjs.map +1 -0
- package/dist/esm/{chunk-A7TJF3BX.mjs → chunk-VCIJX6R4.mjs} +2 -2
- package/dist/esm/chunk-VCIJX6R4.mjs.map +1 -0
- package/dist/esm/{chunk-FSBEKFEF.mjs → chunk-VVAKGJDN.mjs} +2 -2
- package/dist/esm/chunk-VVAKGJDN.mjs.map +1 -0
- package/dist/esm/chunk-VZELORLW.mjs +2 -0
- package/dist/esm/chunk-VZELORLW.mjs.map +1 -0
- package/dist/esm/{chunk-IHGA5KAD.mjs → chunk-W4BSN6SK.mjs} +1 -1
- package/dist/esm/chunk-W4BSN6SK.mjs.map +1 -0
- package/dist/esm/chunk-WCMW2L3P.mjs +2 -0
- package/dist/esm/chunk-WCMW2L3P.mjs.map +1 -0
- package/dist/esm/{chunk-XOOYRVFK.mjs → chunk-X3SO2LDX.mjs} +2 -2
- package/dist/esm/chunk-X3SO2LDX.mjs.map +1 -0
- package/dist/esm/{chunk-TTERI67T.mjs → chunk-XGF7UNEW.mjs} +2 -2
- package/dist/esm/chunk-XGF7UNEW.mjs.map +1 -0
- package/dist/esm/chunk-XHPWHA6B.mjs +2 -0
- package/dist/esm/chunk-XHPWHA6B.mjs.map +1 -0
- package/dist/esm/{chunk-2E3BT4YW.mjs → chunk-XIFIACCB.mjs} +2 -2
- package/dist/esm/chunk-XIFIACCB.mjs.map +1 -0
- package/dist/esm/chunk-XJJVJOX5.mjs +2 -0
- package/dist/esm/{chunk-UGTIALNW.mjs.map → chunk-XJJVJOX5.mjs.map} +1 -1
- package/dist/esm/{chunk-OPO5EYF7.mjs → chunk-XKUIMGKU.mjs} +2 -2
- package/dist/esm/chunk-XKUIMGKU.mjs.map +1 -0
- package/dist/esm/{chunk-7ZVXQAG4.mjs → chunk-XLFX2YQA.mjs} +2 -2
- package/dist/esm/chunk-XLFX2YQA.mjs.map +1 -0
- package/dist/esm/chunk-XTOIL6MB.mjs +2 -0
- package/dist/esm/chunk-XTOIL6MB.mjs.map +1 -0
- package/dist/esm/{chunk-RV7PNWDY.mjs → chunk-Y6QTKAQO.mjs} +2 -2
- package/dist/esm/chunk-Y6QTKAQO.mjs.map +1 -0
- package/dist/esm/{chunk-HBIDHQ2M.mjs → chunk-YOZBVVKL.mjs} +1 -1
- package/dist/esm/chunk-YOZBVVKL.mjs.map +1 -0
- package/dist/esm/{chunk-QK32EQSF.mjs → chunk-YPGI5HAA.mjs} +2 -2
- package/dist/esm/chunk-YPGI5HAA.mjs.map +1 -0
- package/dist/esm/{chunk-GT7QFXER.mjs → chunk-ZJNPBHEI.mjs} +2 -2
- package/dist/esm/chunk-ZJNPBHEI.mjs.map +1 -0
- package/dist/esm/cli/index.d.mts +1 -0
- package/dist/esm/cli/index.mjs +1 -1
- package/dist/esm/cli/localNode.d.mts +20 -8
- package/dist/esm/cli/localNode.mjs +1 -1
- package/dist/esm/cli/move.d.mts +36 -0
- package/dist/esm/cli/move.mjs +1 -1
- package/dist/esm/client/core.d.mts +5 -0
- package/dist/esm/client/core.mjs +1 -1
- package/dist/esm/client/get.d.mts +34 -1
- package/dist/esm/client/get.mjs +1 -1
- package/dist/esm/client/index.d.mts +2 -1
- package/dist/esm/client/index.mjs +1 -1
- package/dist/esm/client/post.d.mts +38 -0
- package/dist/esm/client/post.mjs +1 -1
- package/dist/esm/core/account/index.d.mts +1 -0
- package/dist/esm/core/account/index.mjs +1 -1
- package/dist/esm/core/account/utils/address.d.mts +7 -0
- package/dist/esm/core/account/utils/address.mjs +1 -1
- package/dist/esm/core/account/utils/index.d.mts +1 -0
- package/dist/esm/core/account/utils/index.mjs +1 -1
- package/dist/esm/core/accountAddress.d.mts +47 -0
- package/dist/esm/core/accountAddress.mjs +1 -1
- package/dist/esm/core/authenticationKey.d.mts +2 -1
- package/dist/esm/core/authenticationKey.mjs +1 -1
- package/dist/esm/core/common.d.mts +14 -0
- package/dist/esm/core/common.mjs +1 -1
- package/dist/esm/core/crypto/ed25519.d.mts +58 -5
- package/dist/esm/core/crypto/ed25519.mjs +1 -1
- package/dist/esm/core/crypto/ephemeral.d.mts +24 -1
- package/dist/esm/core/crypto/ephemeral.mjs +1 -1
- package/dist/esm/core/crypto/federatedKeyless.d.mts +14 -1
- package/dist/esm/core/crypto/federatedKeyless.mjs +1 -1
- package/dist/esm/core/crypto/hdKey.d.mts +28 -0
- package/dist/esm/core/crypto/hdKey.mjs +1 -1
- package/dist/esm/core/crypto/index.d.mts +3 -2
- package/dist/esm/core/crypto/index.mjs +1 -1
- package/dist/esm/core/crypto/keyless.d.mts +132 -1
- package/dist/esm/core/crypto/keyless.mjs +1 -1
- package/dist/esm/core/crypto/multiEd25519.d.mts +42 -1
- package/dist/esm/core/crypto/multiEd25519.mjs +1 -1
- package/dist/esm/core/crypto/multiKey.d.mts +39 -1
- package/dist/esm/core/crypto/multiKey.mjs +1 -1
- package/dist/esm/core/crypto/poseidon.d.mts +10 -0
- package/dist/esm/core/crypto/poseidon.mjs +1 -1
- package/dist/esm/core/crypto/privateKey.d.mts +10 -1
- package/dist/esm/core/crypto/privateKey.mjs +1 -1
- package/dist/esm/core/crypto/proof.d.mts +3 -0
- package/dist/esm/core/crypto/proof.mjs +1 -1
- package/dist/esm/core/crypto/publicKey.d.mts +2 -1
- package/dist/esm/core/crypto/publicKey.mjs +1 -1
- package/dist/esm/core/crypto/secp256k1.d.mts +52 -3
- package/dist/esm/core/crypto/secp256k1.mjs +1 -1
- package/dist/esm/core/crypto/signature.d.mts +7 -0
- package/dist/esm/core/crypto/signature.mjs +1 -1
- package/dist/esm/core/crypto/singleKey.d.mts +37 -2
- package/dist/esm/core/crypto/singleKey.mjs +1 -1
- package/dist/esm/core/crypto/utils.d.mts +3 -0
- package/dist/esm/core/crypto/utils.mjs +1 -1
- package/dist/esm/core/hex.d.mts +21 -0
- package/dist/esm/core/hex.mjs +1 -1
- package/dist/esm/core/index.d.mts +3 -2
- package/dist/esm/core/index.mjs +1 -1
- package/dist/esm/errors/index.d.mts +1 -0
- package/dist/esm/errors/index.mjs +1 -1
- package/dist/esm/index.d.mts +9 -6
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/internal/account.d.mts +25 -4
- package/dist/esm/internal/account.mjs +1 -1
- package/dist/esm/internal/ans.d.mts +28 -2
- package/dist/esm/internal/ans.mjs +1 -1
- package/dist/esm/internal/coin.d.mts +4 -1
- package/dist/esm/internal/coin.mjs +1 -1
- package/dist/esm/internal/digitalAsset.d.mts +32 -2
- package/dist/esm/internal/digitalAsset.mjs +1 -1
- package/dist/esm/internal/event.d.mts +6 -0
- package/dist/esm/internal/event.mjs +1 -1
- package/dist/esm/internal/faucet.d.mts +6 -0
- package/dist/esm/internal/faucet.mjs +1 -1
- package/dist/esm/internal/fungibleAsset.d.mts +9 -2
- package/dist/esm/internal/fungibleAsset.mjs +1 -1
- package/dist/esm/internal/general.d.mts +8 -0
- package/dist/esm/internal/general.mjs +1 -1
- package/dist/esm/internal/keyless.d.mts +7 -2
- package/dist/esm/internal/keyless.mjs +1 -1
- package/dist/esm/internal/object.d.mts +3 -0
- package/dist/esm/internal/object.mjs +1 -1
- package/dist/esm/internal/staking.d.mts +6 -1
- package/dist/esm/internal/staking.mjs +1 -1
- package/dist/esm/internal/table.d.mts +4 -0
- package/dist/esm/internal/table.mjs +1 -1
- package/dist/esm/internal/transaction.d.mts +15 -0
- package/dist/esm/internal/transaction.mjs +1 -1
- package/dist/esm/internal/transactionSubmission.d.mts +17 -5
- package/dist/esm/internal/transactionSubmission.mjs +1 -1
- package/dist/esm/internal/view.d.mts +3 -1
- package/dist/esm/internal/view.mjs +1 -1
- package/dist/esm/{publicKey-BVXX1nVl.d.mts → publicKey-BMtGNNLg.d.mts} +36 -0
- package/dist/esm/transactions/authenticator/account.d.mts +29 -1
- package/dist/esm/transactions/authenticator/account.mjs +1 -1
- package/dist/esm/transactions/authenticator/index.d.mts +3 -1
- package/dist/esm/transactions/authenticator/index.mjs +1 -1
- package/dist/esm/transactions/authenticator/transaction.d.mts +24 -2
- package/dist/esm/transactions/authenticator/transaction.mjs +1 -1
- package/dist/esm/transactions/index.d.mts +6 -3
- package/dist/esm/transactions/index.mjs +1 -1
- package/dist/esm/transactions/instances/chainId.d.mts +9 -0
- package/dist/esm/transactions/instances/chainId.mjs +1 -1
- package/dist/esm/transactions/instances/identifier.d.mts +9 -0
- package/dist/esm/transactions/instances/identifier.mjs +1 -1
- package/dist/esm/transactions/instances/index.d.mts +3 -1
- package/dist/esm/transactions/instances/index.mjs +1 -1
- package/dist/esm/transactions/instances/moduleId.d.mts +11 -0
- package/dist/esm/transactions/instances/moduleId.mjs +1 -1
- package/dist/esm/transactions/instances/multiAgentTransaction.d.mts +9 -0
- package/dist/esm/transactions/instances/multiAgentTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/rawTransaction.d.mts +31 -0
- package/dist/esm/transactions/instances/rawTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/rotationProofChallenge.d.mts +8 -1
- package/dist/esm/transactions/instances/rotationProofChallenge.mjs +1 -1
- package/dist/esm/transactions/instances/signedTransaction.d.mts +11 -1
- package/dist/esm/transactions/instances/signedTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/simpleTransaction.d.mts +9 -0
- package/dist/esm/transactions/instances/simpleTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/transactionArgument.d.mts +17 -0
- package/dist/esm/transactions/instances/transactionPayload.d.mts +49 -0
- package/dist/esm/transactions/instances/transactionPayload.mjs +1 -1
- package/dist/esm/transactions/management/accountSequenceNumber.d.mts +20 -2
- package/dist/esm/transactions/management/accountSequenceNumber.mjs +1 -1
- package/dist/esm/transactions/management/asyncQueue.d.mts +16 -0
- package/dist/esm/transactions/management/asyncQueue.mjs +1 -1
- package/dist/esm/transactions/management/index.d.mts +4 -2
- package/dist/esm/transactions/management/index.mjs +1 -1
- package/dist/esm/transactions/management/transactionWorker.d.mts +46 -7
- package/dist/esm/transactions/management/transactionWorker.mjs +1 -1
- package/dist/esm/transactions/scriptComposer/index.d.mts +47 -0
- package/dist/esm/transactions/scriptComposer/index.mjs +2 -0
- package/dist/esm/transactions/scriptComposer/index.mjs.map +1 -0
- package/dist/esm/transactions/transactionBuilder/helpers.d.mts +65 -1
- package/dist/esm/transactions/transactionBuilder/helpers.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/index.d.mts +4 -2
- package/dist/esm/transactions/transactionBuilder/index.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/remoteAbi.d.mts +37 -3
- package/dist/esm/transactions/transactionBuilder/remoteAbi.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/signingMessage.d.mts +11 -1
- package/dist/esm/transactions/transactionBuilder/signingMessage.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/transactionBuilder.d.mts +43 -1
- package/dist/esm/transactions/transactionBuilder/transactionBuilder.mjs +1 -1
- package/dist/esm/transactions/typeTag/index.d.mts +83 -0
- package/dist/esm/transactions/typeTag/index.mjs +1 -1
- package/dist/esm/transactions/typeTag/parser.d.mts +9 -0
- package/dist/esm/transactions/typeTag/parser.mjs +1 -1
- package/dist/esm/transactions/types.d.mts +90 -2
- package/dist/esm/types/index.d.mts +1 -0
- package/dist/esm/types/index.mjs +1 -1
- package/dist/esm/types/indexer.d.mts +52 -0
- package/dist/esm/types/keyless.d.mts +12 -0
- package/dist/esm/types/types.d.mts +1 -0
- package/dist/esm/utils/apiEndpoints.d.mts +30 -0
- package/dist/esm/utils/apiEndpoints.mjs +1 -1
- package/dist/esm/utils/const.d.mts +24 -0
- package/dist/esm/utils/const.mjs +1 -1
- package/dist/esm/utils/helpers.d.mts +21 -0
- package/dist/esm/utils/helpers.mjs +1 -1
- package/dist/esm/utils/index.d.mts +1 -0
- package/dist/esm/utils/index.mjs +1 -1
- package/dist/esm/utils/memoize.d.mts +4 -0
- package/dist/esm/utils/memoize.mjs +1 -1
- package/dist/esm/utils/normalizeBundle.d.mts +9 -0
- package/dist/esm/utils/normalizeBundle.mjs +1 -1
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +10 -4
- package/src/account/AbstractKeylessAccount.ts +80 -9
- package/src/account/Account.ts +51 -6
- package/src/account/AccountUtils.ts +216 -0
- package/src/account/Ed25519Account.ts +26 -0
- package/src/account/EphemeralKeyPair.ts +30 -0
- package/src/account/FederatedKeylessAccount.ts +10 -3
- package/src/account/KeylessAccount.ts +13 -1
- package/src/account/MultiKeyAccount.ts +75 -12
- package/src/account/SingleKeyAccount.ts +63 -6
- package/src/account/index.ts +1 -0
- package/src/account/utils.ts +16 -0
- package/src/api/account.ts +22 -2
- package/src/api/ans.ts +15 -0
- package/src/api/aptos.ts +3 -0
- package/src/api/aptosConfig.ts +24 -0
- package/src/api/coin.ts +3 -0
- package/src/api/digitalAsset.ts +26 -0
- package/src/api/event.ts +6 -0
- package/src/api/faucet.ts +11 -2
- package/src/api/fungibleAsset.ts +8 -0
- package/src/api/general.ts +12 -0
- package/src/api/keyless.ts +6 -0
- package/src/api/object.ts +3 -0
- package/src/api/staking.ts +5 -0
- package/src/api/table.ts +5 -0
- package/src/api/transaction.ts +19 -3
- package/src/api/transactionSubmission/build.ts +89 -2
- package/src/api/transactionSubmission/helpers.ts +2 -0
- package/src/api/transactionSubmission/management.ts +5 -0
- package/src/api/transactionSubmission/sign.ts +4 -0
- package/src/api/transactionSubmission/simulate.ts +4 -0
- package/src/api/transactionSubmission/submit.ts +4 -0
- package/src/api/utils.ts +1 -0
- package/src/bcs/deserializer.ts +64 -2
- package/src/bcs/serializable/entryFunctionBytes.ts +10 -0
- package/src/bcs/serializable/fixedBytes.ts +12 -0
- package/src/bcs/serializable/movePrimitives.ts +26 -0
- package/src/bcs/serializable/moveStructs.ts +56 -0
- package/src/bcs/serializer.ts +64 -1
- package/src/cli/localNode.ts +22 -8
- package/src/cli/move.ts +42 -0
- package/src/client/core.ts +4 -0
- package/src/client/get.ts +75 -1
- package/src/client/post.ts +37 -0
- package/src/core/account/utils/address.ts +6 -0
- package/src/core/accountAddress.ts +46 -0
- package/src/core/authenticationKey.ts +22 -0
- package/src/core/common.ts +14 -0
- package/src/core/crypto/ed25519.ts +58 -4
- package/src/core/crypto/ephemeral.ts +22 -0
- package/src/core/crypto/federatedKeyless.ts +12 -0
- package/src/core/crypto/hdKey.ts +29 -0
- package/src/core/crypto/keyless.ts +134 -0
- package/src/core/crypto/multiEd25519.ts +40 -0
- package/src/core/crypto/multiKey.ts +37 -1
- package/src/core/crypto/poseidon.ts +20 -0
- package/src/core/crypto/privateKey.ts +17 -8
- package/src/core/crypto/proof.ts +2 -0
- package/src/core/crypto/publicKey.ts +14 -0
- package/src/core/crypto/secp256k1.ts +62 -5
- package/src/core/crypto/signature.ts +8 -0
- package/src/core/crypto/singleKey.ts +34 -2
- package/src/core/crypto/utils.ts +2 -0
- package/src/core/hex.ts +20 -0
- package/src/internal/account.ts +27 -7
- package/src/internal/ans.ts +27 -0
- package/src/internal/coin.ts +1 -0
- package/src/internal/digitalAsset.ts +30 -0
- package/src/internal/event.ts +6 -0
- package/src/internal/faucet.ts +5 -0
- package/src/internal/fungibleAsset.ts +5 -0
- package/src/internal/general.ts +7 -0
- package/src/internal/keyless.ts +4 -0
- package/src/internal/object.ts +2 -0
- package/src/internal/staking.ts +5 -1
- package/src/internal/table.ts +3 -0
- package/src/internal/transaction.ts +16 -0
- package/src/internal/transactionSubmission.ts +15 -2
- package/src/transactions/authenticator/account.ts +26 -0
- package/src/transactions/authenticator/transaction.ts +20 -0
- package/src/transactions/index.ts +1 -0
- package/src/transactions/instances/chainId.ts +8 -0
- package/src/transactions/instances/identifier.ts +8 -0
- package/src/transactions/instances/moduleId.ts +10 -0
- package/src/transactions/instances/multiAgentTransaction.ts +8 -0
- package/src/transactions/instances/rawTransaction.ts +30 -0
- package/src/transactions/instances/rotationProofChallenge.ts +6 -0
- package/src/transactions/instances/signedTransaction.ts +8 -0
- package/src/transactions/instances/simpleTransaction.ts +8 -0
- package/src/transactions/instances/transactionArgument.ts +16 -0
- package/src/transactions/instances/transactionPayload.ts +50 -0
- package/src/transactions/management/accountSequenceNumber.ts +16 -0
- package/src/transactions/management/asyncQueue.ts +16 -0
- package/src/transactions/management/transactionWorker.ts +42 -5
- package/src/transactions/scriptComposer/index.ts +86 -0
- package/src/transactions/transactionBuilder/helpers.ts +82 -10
- package/src/transactions/transactionBuilder/remoteAbi.ts +75 -1
- package/src/transactions/transactionBuilder/signingMessage.ts +10 -0
- package/src/transactions/transactionBuilder/transactionBuilder.ts +58 -0
- package/src/transactions/typeTag/index.ts +82 -0
- package/src/transactions/typeTag/parser.ts +24 -0
- package/src/transactions/types.ts +89 -0
- package/src/types/index.ts +1 -0
- package/src/types/indexer.ts +52 -0
- package/src/types/keyless.ts +12 -0
- package/src/utils/apiEndpoints.ts +30 -2
- package/src/utils/const.ts +24 -1
- package/src/utils/helpers.ts +22 -0
- package/src/utils/memoize.ts +6 -0
- package/src/utils/normalizeBundle.ts +8 -1
- package/src/version.ts +1 -1
- package/dist/common/chunk-F43XVDYJ.js.map +0 -1
- package/dist/esm/chunk-2CJC43CV.mjs.map +0 -1
- package/dist/esm/chunk-2E3BT4YW.mjs.map +0 -1
- package/dist/esm/chunk-42H7WETG.mjs.map +0 -1
- package/dist/esm/chunk-476F5NJ6.mjs.map +0 -1
- package/dist/esm/chunk-4IQZOAN7.mjs.map +0 -1
- package/dist/esm/chunk-4O5XDQDO.mjs +0 -2
- package/dist/esm/chunk-4O5XDQDO.mjs.map +0 -1
- package/dist/esm/chunk-4ULPBQ3M.mjs.map +0 -1
- package/dist/esm/chunk-4ZNSNWQL.mjs.map +0 -1
- package/dist/esm/chunk-5B3SMBXQ.mjs +0 -2
- package/dist/esm/chunk-5B3SMBXQ.mjs.map +0 -1
- package/dist/esm/chunk-5O3RHPER.mjs.map +0 -1
- package/dist/esm/chunk-5XLZACVT.mjs.map +0 -1
- package/dist/esm/chunk-64IZ5PQR.mjs.map +0 -1
- package/dist/esm/chunk-6AEXQEO2.mjs.map +0 -1
- package/dist/esm/chunk-6Q2O5G3J.mjs.map +0 -1
- package/dist/esm/chunk-6ZOVTYLJ.mjs.map +0 -1
- package/dist/esm/chunk-737YW3CY.mjs.map +0 -1
- package/dist/esm/chunk-7ZA434Z3.mjs +0 -2
- package/dist/esm/chunk-7ZA434Z3.mjs.map +0 -1
- package/dist/esm/chunk-7ZVXQAG4.mjs.map +0 -1
- package/dist/esm/chunk-A3USS2NC.mjs.map +0 -1
- package/dist/esm/chunk-A7TJF3BX.mjs.map +0 -1
- package/dist/esm/chunk-ACVIE7IE.mjs.map +0 -1
- package/dist/esm/chunk-AITN3DO4.mjs +0 -2
- package/dist/esm/chunk-AITN3DO4.mjs.map +0 -1
- package/dist/esm/chunk-AJ5JHBAE.mjs.map +0 -1
- package/dist/esm/chunk-AKIO3OIT.mjs.map +0 -1
- package/dist/esm/chunk-AOROYJ74.mjs.map +0 -1
- package/dist/esm/chunk-AVZYJAXR.mjs +0 -2
- package/dist/esm/chunk-AVZYJAXR.mjs.map +0 -1
- package/dist/esm/chunk-B5BXB2BB.mjs.map +0 -1
- package/dist/esm/chunk-BRV3RLKW.mjs.map +0 -1
- package/dist/esm/chunk-BWV6OYLG.mjs.map +0 -1
- package/dist/esm/chunk-CK5NDXQT.mjs.map +0 -1
- package/dist/esm/chunk-D3OEQLUE.mjs +0 -2
- package/dist/esm/chunk-D3OEQLUE.mjs.map +0 -1
- package/dist/esm/chunk-D52UKPQF.mjs +0 -2
- package/dist/esm/chunk-D52UKPQF.mjs.map +0 -1
- package/dist/esm/chunk-D54FD6XE.mjs.map +0 -1
- package/dist/esm/chunk-FD6FGKYY.mjs +0 -1
- package/dist/esm/chunk-FH27D7S3.mjs.map +0 -1
- package/dist/esm/chunk-FSBEKFEF.mjs.map +0 -1
- package/dist/esm/chunk-FUC7SLH7.mjs.map +0 -1
- package/dist/esm/chunk-GAEAYY44.mjs +0 -1
- package/dist/esm/chunk-GMKKHGXK.mjs.map +0 -1
- package/dist/esm/chunk-GT7QFXER.mjs.map +0 -1
- package/dist/esm/chunk-H7PDLUNP.mjs +0 -2
- package/dist/esm/chunk-H7PDLUNP.mjs.map +0 -1
- package/dist/esm/chunk-HBIDHQ2M.mjs.map +0 -1
- package/dist/esm/chunk-HKVZ7CAG.mjs.map +0 -1
- package/dist/esm/chunk-HULCIESG.mjs.map +0 -1
- package/dist/esm/chunk-I3452DF5.mjs.map +0 -1
- package/dist/esm/chunk-I5OYNCZS.mjs +0 -1
- package/dist/esm/chunk-IHGA5KAD.mjs.map +0 -1
- package/dist/esm/chunk-J7PJSK3J.mjs.map +0 -1
- package/dist/esm/chunk-JKA22FG5.mjs.map +0 -1
- package/dist/esm/chunk-JNO7KPMG.mjs.map +0 -1
- package/dist/esm/chunk-JUQBFGUD.mjs.map +0 -1
- package/dist/esm/chunk-JYGAG754.mjs +0 -2
- package/dist/esm/chunk-JYGAG754.mjs.map +0 -1
- package/dist/esm/chunk-KKLF7DQV.mjs.map +0 -1
- package/dist/esm/chunk-KPPM2BSC.mjs.map +0 -1
- package/dist/esm/chunk-L3J2QVIY.mjs.map +0 -1
- package/dist/esm/chunk-LGTOOAQI.mjs.map +0 -1
- package/dist/esm/chunk-LK67PZX3.mjs.map +0 -1
- package/dist/esm/chunk-LRN4ALMT.mjs +0 -2
- package/dist/esm/chunk-LRN4ALMT.mjs.map +0 -1
- package/dist/esm/chunk-LWXBEIFO.mjs +0 -2
- package/dist/esm/chunk-LWXBEIFO.mjs.map +0 -1
- package/dist/esm/chunk-LZ5PSDOS.mjs.map +0 -1
- package/dist/esm/chunk-MCWOKFVH.mjs +0 -2
- package/dist/esm/chunk-MCWOKFVH.mjs.map +0 -1
- package/dist/esm/chunk-MHN6XY4Z.mjs +0 -2
- package/dist/esm/chunk-MHN6XY4Z.mjs.map +0 -1
- package/dist/esm/chunk-MV5PGWJQ.mjs +0 -2
- package/dist/esm/chunk-MV5PGWJQ.mjs.map +0 -1
- package/dist/esm/chunk-MWNYODWU.mjs.map +0 -1
- package/dist/esm/chunk-O4MRRWRI.mjs.map +0 -1
- package/dist/esm/chunk-OEM75TVE.mjs.map +0 -1
- package/dist/esm/chunk-OGBU52BQ.mjs.map +0 -1
- package/dist/esm/chunk-OIOGOW6I.mjs.map +0 -1
- package/dist/esm/chunk-OPO5EYF7.mjs.map +0 -1
- package/dist/esm/chunk-P6RNNESB.mjs.map +0 -1
- package/dist/esm/chunk-P74XXLE4.mjs.map +0 -1
- package/dist/esm/chunk-Q3CWUEXI.mjs.map +0 -1
- package/dist/esm/chunk-QK32EQSF.mjs.map +0 -1
- package/dist/esm/chunk-QLC7SSLJ.mjs +0 -2
- package/dist/esm/chunk-QLC7SSLJ.mjs.map +0 -1
- package/dist/esm/chunk-QN7AK5PU.mjs.map +0 -1
- package/dist/esm/chunk-QZT2M7UA.mjs.map +0 -1
- package/dist/esm/chunk-RV7PNWDY.mjs.map +0 -1
- package/dist/esm/chunk-S22QVNK7.mjs.map +0 -1
- package/dist/esm/chunk-S3YVCCYI.mjs.map +0 -1
- package/dist/esm/chunk-SMFTISPN.mjs +0 -2
- package/dist/esm/chunk-SMFTISPN.mjs.map +0 -1
- package/dist/esm/chunk-SPRNSFUV.mjs.map +0 -1
- package/dist/esm/chunk-T6ADNZE5.mjs.map +0 -1
- package/dist/esm/chunk-TQA6HY6A.mjs.map +0 -1
- package/dist/esm/chunk-TTERI67T.mjs.map +0 -1
- package/dist/esm/chunk-U7UTBXJD.mjs.map +0 -1
- package/dist/esm/chunk-UGTIALNW.mjs +0 -2
- package/dist/esm/chunk-UZTJWOLS.mjs +0 -2
- package/dist/esm/chunk-UZTJWOLS.mjs.map +0 -1
- package/dist/esm/chunk-V4FKFCBL.mjs.map +0 -1
- package/dist/esm/chunk-V5NDNR36.mjs +0 -2
- package/dist/esm/chunk-V5NDNR36.mjs.map +0 -1
- package/dist/esm/chunk-VAKNMHOA.mjs.map +0 -1
- package/dist/esm/chunk-VELQA2Y3.mjs +0 -2
- package/dist/esm/chunk-VELQA2Y3.mjs.map +0 -1
- package/dist/esm/chunk-VQZMI3EZ.mjs.map +0 -1
- package/dist/esm/chunk-WTWWJWKC.mjs +0 -2
- package/dist/esm/chunk-WTWWJWKC.mjs.map +0 -1
- package/dist/esm/chunk-WXLSHECY.mjs.map +0 -1
- package/dist/esm/chunk-XOOYRVFK.mjs.map +0 -1
- package/dist/esm/chunk-XVPWTWPY.mjs.map +0 -1
- package/dist/esm/chunk-Y5HLXDYG.mjs.map +0 -1
- package/dist/esm/chunk-YITOC4Z6.mjs.map +0 -1
- package/dist/esm/chunk-YQHOQJRQ.mjs +0 -2
- package/dist/esm/chunk-YT3IP57B.mjs.map +0 -1
- package/dist/esm/chunk-ZMBXHMVQ.mjs.map +0 -1
- /package/dist/esm/{chunk-FD6FGKYY.mjs.map → account/AccountUtils.mjs.map} +0 -0
- /package/dist/esm/{chunk-GAEAYY44.mjs.map → account/utils.mjs.map} +0 -0
- /package/dist/esm/{chunk-I5OYNCZS.mjs.map → chunk-GP4TLDVZ.mjs.map} +0 -0
- /package/dist/esm/{chunk-2D7OMWVL.mjs.map → chunk-KFCLSJC3.mjs.map} +0 -0
- /package/dist/esm/{chunk-F45G3GP3.mjs.map → chunk-QHEKBHNU.mjs.map} +0 -0
|
@@ -9,13 +9,15 @@ import '../../types/indexer.mjs';
|
|
|
9
9
|
import '../../types/generated/operations.mjs';
|
|
10
10
|
import '../../types/generated/types.mjs';
|
|
11
11
|
import '../../utils/apiEndpoints.mjs';
|
|
12
|
+
import '@aptos-labs/script-composer-pack';
|
|
12
13
|
import '../../core/hex.mjs';
|
|
13
14
|
import '../../core/common.mjs';
|
|
14
|
-
import '../../publicKey-
|
|
15
|
+
import '../../publicKey-BMtGNNLg.mjs';
|
|
15
16
|
import '../../core/accountAddress.mjs';
|
|
16
17
|
import '../instances/transactionArgument.mjs';
|
|
17
18
|
import '../../core/crypto/signature.mjs';
|
|
18
19
|
import '../../core/crypto/privateKey.mjs';
|
|
20
|
+
import '../../core/crypto/secp256k1.mjs';
|
|
19
21
|
|
|
20
22
|
/**
|
|
21
23
|
* Represents an account authenticator that can handle multiple authentication variants.
|
|
@@ -23,6 +25,8 @@ import '../../core/crypto/privateKey.mjs';
|
|
|
23
25
|
* and deserialization of various authenticator types.
|
|
24
26
|
*
|
|
25
27
|
* @extends Serializable
|
|
28
|
+
* @group Implementation
|
|
29
|
+
* @category Transactions
|
|
26
30
|
*/
|
|
27
31
|
declare abstract class AccountAuthenticator extends Serializable {
|
|
28
32
|
abstract serialize(serializer: Serializer): void;
|
|
@@ -31,30 +35,40 @@ declare abstract class AccountAuthenticator extends Serializable {
|
|
|
31
35
|
* This function helps in reconstructing the AccountAuthenticator object based on the variant index.
|
|
32
36
|
*
|
|
33
37
|
* @param deserializer - The deserializer instance used to read the serialized data.
|
|
38
|
+
* @group Implementation
|
|
39
|
+
* @category Transactions
|
|
34
40
|
*/
|
|
35
41
|
static deserialize(deserializer: Deserializer): AccountAuthenticator;
|
|
36
42
|
/**
|
|
37
43
|
* Determines if the current instance is an Ed25519 account authenticator.
|
|
38
44
|
*
|
|
39
45
|
* @returns {boolean} True if the instance is of type AccountAuthenticatorEd25519, otherwise false.
|
|
46
|
+
* @group Implementation
|
|
47
|
+
* @category Transactions
|
|
40
48
|
*/
|
|
41
49
|
isEd25519(): this is AccountAuthenticatorEd25519;
|
|
42
50
|
/**
|
|
43
51
|
* Determines if the current instance is of type AccountAuthenticatorMultiEd25519.
|
|
44
52
|
*
|
|
45
53
|
* @returns {boolean} True if the instance is a multi-signature Ed25519 account authenticator, otherwise false.
|
|
54
|
+
* @group Implementation
|
|
55
|
+
* @category Transactions
|
|
46
56
|
*/
|
|
47
57
|
isMultiEd25519(): this is AccountAuthenticatorMultiEd25519;
|
|
48
58
|
/**
|
|
49
59
|
* Determines if the current instance is of the type AccountAuthenticatorSingleKey.
|
|
50
60
|
*
|
|
51
61
|
* @returns {boolean} True if the instance is an AccountAuthenticatorSingleKey, otherwise false.
|
|
62
|
+
* @group Implementation
|
|
63
|
+
* @category Transactions
|
|
52
64
|
*/
|
|
53
65
|
isSingleKey(): this is AccountAuthenticatorSingleKey;
|
|
54
66
|
/**
|
|
55
67
|
* Determine if the current instance is of type AccountAuthenticatorMultiKey.
|
|
56
68
|
*
|
|
57
69
|
* @returns {boolean} Returns true if the instance is an AccountAuthenticatorMultiKey, otherwise false.
|
|
70
|
+
* @group Implementation
|
|
71
|
+
* @category Transactions
|
|
58
72
|
*/
|
|
59
73
|
isMultiKey(): this is AccountAuthenticatorMultiKey;
|
|
60
74
|
}
|
|
@@ -64,6 +78,8 @@ declare abstract class AccountAuthenticator extends Serializable {
|
|
|
64
78
|
*
|
|
65
79
|
* @param public_key - The Ed25519 public key associated with the account.
|
|
66
80
|
* @param signature - The Ed25519 signature for the account.
|
|
81
|
+
* @group Implementation
|
|
82
|
+
* @category Transactions
|
|
67
83
|
*/
|
|
68
84
|
declare class AccountAuthenticatorEd25519 extends AccountAuthenticator {
|
|
69
85
|
readonly public_key: Ed25519PublicKey;
|
|
@@ -73,6 +89,8 @@ declare class AccountAuthenticatorEd25519 extends AccountAuthenticator {
|
|
|
73
89
|
*
|
|
74
90
|
* @param public_key The public key used for verification.
|
|
75
91
|
* @param signature The signatures corresponding to the public keys.
|
|
92
|
+
* @group Implementation
|
|
93
|
+
* @category Transactions
|
|
76
94
|
*/
|
|
77
95
|
constructor(public_key: Ed25519PublicKey, signature: Ed25519Signature);
|
|
78
96
|
/**
|
|
@@ -80,6 +98,8 @@ declare class AccountAuthenticatorEd25519 extends AccountAuthenticator {
|
|
|
80
98
|
* This function captures the multi-key variant, public keys, and signatures for serialization.
|
|
81
99
|
*
|
|
82
100
|
* @param serializer - The serializer instance used to perform the serialization.
|
|
101
|
+
* @group Implementation
|
|
102
|
+
* @category Transactions
|
|
83
103
|
*/
|
|
84
104
|
serialize(serializer: Serializer): void;
|
|
85
105
|
/**
|
|
@@ -87,6 +107,8 @@ declare class AccountAuthenticatorEd25519 extends AccountAuthenticator {
|
|
|
87
107
|
* This function helps in reconstructing the authenticator object using the deserialized public keys and signatures.
|
|
88
108
|
*
|
|
89
109
|
* @param deserializer - The deserializer used to extract the necessary data for loading the authenticator.
|
|
110
|
+
* @group Implementation
|
|
111
|
+
* @category Transactions
|
|
90
112
|
*/
|
|
91
113
|
static load(deserializer: Deserializer): AccountAuthenticatorEd25519;
|
|
92
114
|
}
|
|
@@ -95,6 +117,8 @@ declare class AccountAuthenticatorEd25519 extends AccountAuthenticator {
|
|
|
95
117
|
*
|
|
96
118
|
* @param public_key - The MultiEd25519 public key of the account.
|
|
97
119
|
* @param signature - The MultiEd25519 signature of the account.
|
|
120
|
+
* @group Implementation
|
|
121
|
+
* @category Transactions
|
|
98
122
|
*/
|
|
99
123
|
declare class AccountAuthenticatorMultiEd25519 extends AccountAuthenticator {
|
|
100
124
|
readonly public_key: MultiEd25519PublicKey;
|
|
@@ -109,6 +133,8 @@ declare class AccountAuthenticatorMultiEd25519 extends AccountAuthenticator {
|
|
|
109
133
|
*
|
|
110
134
|
* @param public_key - The public key used for authentication.
|
|
111
135
|
* @param signature - The signature associated with the public key.
|
|
136
|
+
* @group Implementation
|
|
137
|
+
* @category Transactions
|
|
112
138
|
*/
|
|
113
139
|
declare class AccountAuthenticatorSingleKey extends AccountAuthenticator {
|
|
114
140
|
readonly public_key: AnyPublicKey;
|
|
@@ -122,6 +148,8 @@ declare class AccountAuthenticatorSingleKey extends AccountAuthenticator {
|
|
|
122
148
|
*
|
|
123
149
|
* @param public_keys - The public keys used for authentication.
|
|
124
150
|
* @param signatures - The signatures corresponding to the public keys.
|
|
151
|
+
* @group Implementation
|
|
152
|
+
* @category Transactions
|
|
125
153
|
*/
|
|
126
154
|
declare class AccountAuthenticatorMultiKey extends AccountAuthenticator {
|
|
127
155
|
readonly public_keys: MultiKey;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b,c,d,e,f}from"../../chunk-
|
|
1
|
+
import{a,b,c,d,e,f}from"../../chunk-NDUIXMIA.mjs";import"../../chunk-HEZ2ZYZA.mjs";import"../../chunk-ODEDSSQL.mjs";import"../../chunk-3XH3NNSR.mjs";import"../../chunk-4ZJJINCW.mjs";import"../../chunk-G5ZWH5T3.mjs";import"../../chunk-NW2WUKWV.mjs";import"../../chunk-KG23XFU2.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-XJJVJOX5.mjs";import"../../chunk-T6NQDM7D.mjs";import"../../chunk-XGF7UNEW.mjs";import"../../chunk-EMURYYVO.mjs";import"../../chunk-WCMW2L3P.mjs";import"../../chunk-DPW6ELCQ.mjs";import"../../chunk-C3Q23D22.mjs";import"../../chunk-ROT6S6BM.mjs";import"../../chunk-FN4C3CKC.mjs";import"../../chunk-Q4C4U6I4.mjs";import"../../chunk-YOZBVVKL.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SZRZ3HIL.mjs";import"../../chunk-FKJ3GCBI.mjs";import"../../chunk-CNCRJ56P.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-4YLUM62M.mjs";import"../../chunk-QHEKBHNU.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-TOBQ5UE6.mjs";import"../../chunk-MT2RJ7H3.mjs";import"../../chunk-N4VVDQA5.mjs";import"../../chunk-ORMOQWWH.mjs";import"../../chunk-3OLFJ65O.mjs";import"../../chunk-U2PRGW4O.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-XTOIL6MB.mjs";import"../../chunk-EBMEXURY.mjs";import"../../chunk-STY74NUA.mjs";import"../../chunk-IF4UU2MT.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-DAFSKSZ5.mjs";import"../../chunk-4RXKALLC.mjs";import"../../chunk-RJ7F4JDV.mjs";import"../../chunk-AIABPCUF.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as AccountAuthenticator,b as AccountAuthenticatorEd25519,c as AccountAuthenticatorMultiEd25519,e as AccountAuthenticatorMultiKey,f as AccountAuthenticatorNoAccountAuthenticator,d as AccountAuthenticatorSingleKey};
|
|
2
2
|
//# sourceMappingURL=account.mjs.map
|
|
@@ -6,11 +6,12 @@ import '../../types/indexer.mjs';
|
|
|
6
6
|
import '../../types/generated/operations.mjs';
|
|
7
7
|
import '../../types/generated/types.mjs';
|
|
8
8
|
import '../../utils/apiEndpoints.mjs';
|
|
9
|
+
import '@aptos-labs/script-composer-pack';
|
|
9
10
|
import '../../bcs/serializer.mjs';
|
|
10
11
|
import '../../core/hex.mjs';
|
|
11
12
|
import '../../core/common.mjs';
|
|
12
13
|
import '../../core/crypto/ed25519.mjs';
|
|
13
|
-
import '../../publicKey-
|
|
14
|
+
import '../../publicKey-BMtGNNLg.mjs';
|
|
14
15
|
import '../../core/accountAddress.mjs';
|
|
15
16
|
import '../instances/transactionArgument.mjs';
|
|
16
17
|
import '../../core/crypto/signature.mjs';
|
|
@@ -18,3 +19,4 @@ import '../../core/crypto/privateKey.mjs';
|
|
|
18
19
|
import '../../core/crypto/multiEd25519.mjs';
|
|
19
20
|
import '../../core/crypto/multiKey.mjs';
|
|
20
21
|
import '../../core/crypto/singleKey.mjs';
|
|
22
|
+
import '../../core/crypto/secp256k1.mjs';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import"../../chunk-BSCOVLWS.mjs";import{a as g,b as h,c as i,d as j,e as k,f as l}from"../../chunk-
|
|
1
|
+
import"../../chunk-BSCOVLWS.mjs";import{a as g,b as h,c as i,d as j,e as k,f as l}from"../../chunk-6XHBRRS6.mjs";import{a,b,c,d,e,f}from"../../chunk-NDUIXMIA.mjs";import"../../chunk-E7FWVXGX.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-BI3BTSUB.mjs";import"../../chunk-HEZ2ZYZA.mjs";import"../../chunk-ODEDSSQL.mjs";import"../../chunk-3XH3NNSR.mjs";import"../../chunk-4ZJJINCW.mjs";import"../../chunk-G5ZWH5T3.mjs";import"../../chunk-NW2WUKWV.mjs";import"../../chunk-KG23XFU2.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-XJJVJOX5.mjs";import"../../chunk-T6NQDM7D.mjs";import"../../chunk-XGF7UNEW.mjs";import"../../chunk-EMURYYVO.mjs";import"../../chunk-WCMW2L3P.mjs";import"../../chunk-DPW6ELCQ.mjs";import"../../chunk-C3Q23D22.mjs";import"../../chunk-ROT6S6BM.mjs";import"../../chunk-FN4C3CKC.mjs";import"../../chunk-Q4C4U6I4.mjs";import"../../chunk-YOZBVVKL.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SZRZ3HIL.mjs";import"../../chunk-FKJ3GCBI.mjs";import"../../chunk-CNCRJ56P.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-4YLUM62M.mjs";import"../../chunk-QHEKBHNU.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-TOBQ5UE6.mjs";import"../../chunk-MT2RJ7H3.mjs";import"../../chunk-N4VVDQA5.mjs";import"../../chunk-ORMOQWWH.mjs";import"../../chunk-3OLFJ65O.mjs";import"../../chunk-U2PRGW4O.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-XTOIL6MB.mjs";import"../../chunk-EBMEXURY.mjs";import"../../chunk-STY74NUA.mjs";import"../../chunk-IF4UU2MT.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-DAFSKSZ5.mjs";import"../../chunk-4RXKALLC.mjs";import"../../chunk-RJ7F4JDV.mjs";import"../../chunk-AIABPCUF.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as AccountAuthenticator,b as AccountAuthenticatorEd25519,c as AccountAuthenticatorMultiEd25519,e as AccountAuthenticatorMultiKey,f as AccountAuthenticatorNoAccountAuthenticator,d as AccountAuthenticatorSingleKey,g as TransactionAuthenticator,h as TransactionAuthenticatorEd25519,k as TransactionAuthenticatorFeePayer,j as TransactionAuthenticatorMultiAgent,i as TransactionAuthenticatorMultiEd25519,l as TransactionAuthenticatorSingleSender};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -5,24 +5,28 @@ import { AccountAddress } from '../../core/accountAddress.mjs';
|
|
|
5
5
|
import { Ed25519PublicKey, Ed25519Signature } from '../../core/crypto/ed25519.mjs';
|
|
6
6
|
import { MultiEd25519PublicKey, MultiEd25519Signature } from '../../core/crypto/multiEd25519.mjs';
|
|
7
7
|
import '../../core/crypto/multiKey.mjs';
|
|
8
|
-
import '../../publicKey-
|
|
8
|
+
import '../../publicKey-BMtGNNLg.mjs';
|
|
9
9
|
import '../../types/types.mjs';
|
|
10
10
|
import '../../types/indexer.mjs';
|
|
11
11
|
import '../../types/generated/operations.mjs';
|
|
12
12
|
import '../../types/generated/types.mjs';
|
|
13
13
|
import '../../utils/apiEndpoints.mjs';
|
|
14
|
+
import '@aptos-labs/script-composer-pack';
|
|
14
15
|
import '../../core/hex.mjs';
|
|
15
16
|
import '../../core/common.mjs';
|
|
16
17
|
import '../../core/crypto/signature.mjs';
|
|
17
18
|
import '../../core/crypto/singleKey.mjs';
|
|
18
|
-
import '
|
|
19
|
+
import '../../core/crypto/secp256k1.mjs';
|
|
19
20
|
import '../../core/crypto/privateKey.mjs';
|
|
21
|
+
import '../instances/transactionArgument.mjs';
|
|
20
22
|
|
|
21
23
|
/**
|
|
22
24
|
* Represents an abstract base class for transaction authenticators.
|
|
23
25
|
* This class provides methods for serializing and deserializing different types of transaction authenticators.
|
|
24
26
|
*
|
|
25
27
|
* @extends Serializable
|
|
28
|
+
* @group Implementation
|
|
29
|
+
* @category Transactions
|
|
26
30
|
*/
|
|
27
31
|
declare abstract class TransactionAuthenticator extends Serializable {
|
|
28
32
|
abstract serialize(serializer: Serializer): void;
|
|
@@ -31,6 +35,8 @@ declare abstract class TransactionAuthenticator extends Serializable {
|
|
|
31
35
|
* This function helps in reconstructing the TransactionAuthenticator based on the variant index found in the serialized data.
|
|
32
36
|
*
|
|
33
37
|
* @param deserializer - The deserializer instance used to read the serialized data.
|
|
38
|
+
* @group Implementation
|
|
39
|
+
* @category Transactions
|
|
34
40
|
*/
|
|
35
41
|
static deserialize(deserializer: Deserializer): TransactionAuthenticator;
|
|
36
42
|
isEd25519(): this is TransactionAuthenticatorEd25519;
|
|
@@ -47,6 +53,8 @@ declare abstract class TransactionAuthenticator extends Serializable {
|
|
|
47
53
|
* @param signature - The Ed25519 signature of a raw transaction.
|
|
48
54
|
* @see {@link https://aptos.dev/integration/creating-a-signed-transaction | Creating a Signed Transaction}
|
|
49
55
|
* for details about generating a signature.
|
|
56
|
+
* @group Implementation
|
|
57
|
+
* @category Transactions
|
|
50
58
|
*/
|
|
51
59
|
declare class TransactionAuthenticatorEd25519 extends TransactionAuthenticator {
|
|
52
60
|
readonly public_key: Ed25519PublicKey;
|
|
@@ -56,12 +64,16 @@ declare class TransactionAuthenticatorEd25519 extends TransactionAuthenticator {
|
|
|
56
64
|
*
|
|
57
65
|
* @param public_key - The Ed25519PublicKey that will be used for authentication.
|
|
58
66
|
* @param signature - The Ed25519Signature that will be used for authentication.
|
|
67
|
+
* @group Implementation
|
|
68
|
+
* @category Transactions
|
|
59
69
|
*/
|
|
60
70
|
constructor(public_key: Ed25519PublicKey, signature: Ed25519Signature);
|
|
61
71
|
/**
|
|
62
72
|
* Serializes the transaction authenticator by encoding the sender information.
|
|
63
73
|
*
|
|
64
74
|
* @param serializer - The serializer instance used to perform the serialization.
|
|
75
|
+
* @group Implementation
|
|
76
|
+
* @category Transactions
|
|
65
77
|
*/
|
|
66
78
|
serialize(serializer: Serializer): void;
|
|
67
79
|
/**
|
|
@@ -69,6 +81,8 @@ declare class TransactionAuthenticatorEd25519 extends TransactionAuthenticator {
|
|
|
69
81
|
* This function helps in deserializing the sender information to create a transaction authenticator.
|
|
70
82
|
*
|
|
71
83
|
* @param deserializer - The deserializer used to extract the sender data.
|
|
84
|
+
* @group Implementation
|
|
85
|
+
* @category Transactions
|
|
72
86
|
*/
|
|
73
87
|
static load(deserializer: Deserializer): TransactionAuthenticatorEd25519;
|
|
74
88
|
}
|
|
@@ -78,6 +92,8 @@ declare class TransactionAuthenticatorEd25519 extends TransactionAuthenticator {
|
|
|
78
92
|
*
|
|
79
93
|
* @param public_key - The public key of the client involved in the transaction.
|
|
80
94
|
* @param signature - The multi-signature of the raw transaction.
|
|
95
|
+
* @group Implementation
|
|
96
|
+
* @category Transactions
|
|
81
97
|
*/
|
|
82
98
|
declare class TransactionAuthenticatorMultiEd25519 extends TransactionAuthenticator {
|
|
83
99
|
readonly public_key: MultiEd25519PublicKey;
|
|
@@ -94,6 +110,8 @@ declare class TransactionAuthenticatorMultiEd25519 extends TransactionAuthentica
|
|
|
94
110
|
* @param sender - The authenticator for the sender account.
|
|
95
111
|
* @param secondary_signer_addresses - An array of addresses for the secondary signers.
|
|
96
112
|
* @param secondary_signers - An array of authenticators for the secondary signer accounts.
|
|
113
|
+
* @group Implementation
|
|
114
|
+
* @category Transactions
|
|
97
115
|
*/
|
|
98
116
|
declare class TransactionAuthenticatorMultiAgent extends TransactionAuthenticator {
|
|
99
117
|
readonly sender: AccountAuthenticator;
|
|
@@ -112,6 +130,8 @@ declare class TransactionAuthenticatorMultiAgent extends TransactionAuthenticato
|
|
|
112
130
|
* @param secondary_signer_addresses - An array of addresses for secondary signers.
|
|
113
131
|
* @param secondary_signers - An array of authenticators for secondary signers' accounts.
|
|
114
132
|
* @param fee_payer - An object containing the fee payer's account address and authenticator.
|
|
133
|
+
* @group Implementation
|
|
134
|
+
* @category Transactions
|
|
115
135
|
*/
|
|
116
136
|
declare class TransactionAuthenticatorFeePayer extends TransactionAuthenticator {
|
|
117
137
|
readonly sender: AccountAuthenticator;
|
|
@@ -133,6 +153,8 @@ declare class TransactionAuthenticatorFeePayer extends TransactionAuthenticator
|
|
|
133
153
|
* This class is responsible for managing the authentication of a transaction initiated by a single sender.
|
|
134
154
|
*
|
|
135
155
|
* @param sender - An instance of AccountAuthenticator that represents the account of the sender.
|
|
156
|
+
* @group Implementation
|
|
157
|
+
* @category Transactions
|
|
136
158
|
*/
|
|
137
159
|
declare class TransactionAuthenticatorSingleSender extends TransactionAuthenticator {
|
|
138
160
|
readonly sender: AccountAuthenticator;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b,c,d,e,f}from"../../chunk-
|
|
1
|
+
import{a,b,c,d,e,f}from"../../chunk-6XHBRRS6.mjs";import"../../chunk-NDUIXMIA.mjs";import"../../chunk-E7FWVXGX.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-BI3BTSUB.mjs";import"../../chunk-HEZ2ZYZA.mjs";import"../../chunk-ODEDSSQL.mjs";import"../../chunk-3XH3NNSR.mjs";import"../../chunk-4ZJJINCW.mjs";import"../../chunk-G5ZWH5T3.mjs";import"../../chunk-NW2WUKWV.mjs";import"../../chunk-KG23XFU2.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-XJJVJOX5.mjs";import"../../chunk-T6NQDM7D.mjs";import"../../chunk-XGF7UNEW.mjs";import"../../chunk-EMURYYVO.mjs";import"../../chunk-WCMW2L3P.mjs";import"../../chunk-DPW6ELCQ.mjs";import"../../chunk-C3Q23D22.mjs";import"../../chunk-ROT6S6BM.mjs";import"../../chunk-FN4C3CKC.mjs";import"../../chunk-Q4C4U6I4.mjs";import"../../chunk-YOZBVVKL.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SZRZ3HIL.mjs";import"../../chunk-FKJ3GCBI.mjs";import"../../chunk-CNCRJ56P.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-4YLUM62M.mjs";import"../../chunk-QHEKBHNU.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-TOBQ5UE6.mjs";import"../../chunk-MT2RJ7H3.mjs";import"../../chunk-N4VVDQA5.mjs";import"../../chunk-ORMOQWWH.mjs";import"../../chunk-3OLFJ65O.mjs";import"../../chunk-U2PRGW4O.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-XTOIL6MB.mjs";import"../../chunk-EBMEXURY.mjs";import"../../chunk-STY74NUA.mjs";import"../../chunk-IF4UU2MT.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-DAFSKSZ5.mjs";import"../../chunk-4RXKALLC.mjs";import"../../chunk-RJ7F4JDV.mjs";import"../../chunk-AIABPCUF.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as TransactionAuthenticator,b as TransactionAuthenticatorEd25519,e as TransactionAuthenticatorFeePayer,d as TransactionAuthenticatorMultiAgent,c as TransactionAuthenticatorMultiEd25519,f as TransactionAuthenticatorSingleSender};
|
|
2
2
|
//# sourceMappingURL=transaction.mjs.map
|
|
@@ -12,28 +12,31 @@ export { SimpleTransaction } from './instances/simpleTransaction.mjs';
|
|
|
12
12
|
export { MultiAgentTransaction } from './instances/multiAgentTransaction.mjs';
|
|
13
13
|
export { convertNumber, findFirstNonSignerArg, getFunctionParts, isBcsAddress, isBcsBool, isBcsFixedBytes, isBcsString, isBcsU128, isBcsU16, isBcsU256, isBcsU32, isBcsU64, isBcsU8, isBool, isEmptyOption, isEncodedEntryFunctionArgument, isLargeNumber, isNumber, isScriptDataInput, isString, throwTypeMismatch } from './transactionBuilder/helpers.mjs';
|
|
14
14
|
export { buildTransaction, generateRawTransaction, generateSignedTransaction, generateSignedTransactionForSimulation, generateTransactionPayload, generateTransactionPayloadWithABI, generateUserTransactionHash, generateViewFunctionPayload, generateViewFunctionPayloadWithABI, getAuthenticatorForSimulation, hashValues } from './transactionBuilder/transactionBuilder.mjs';
|
|
15
|
-
export { checkOrConvertArgument, convertArgument, fetchEntryFunctionAbi, fetchFunctionAbi, fetchViewFunctionAbi, standardizeTypeTags } from './transactionBuilder/remoteAbi.mjs';
|
|
15
|
+
export { checkOrConvertArgument, convertArgument, convertCallArgument, fetchEntryFunctionAbi, fetchFunctionAbi, fetchMoveFunctionAbi, fetchViewFunctionAbi, standardizeTypeTags } from './transactionBuilder/remoteAbi.mjs';
|
|
16
16
|
export { deriveTransactionType, generateSigningMessage, generateSigningMessageForSerializable, generateSigningMessageForTransaction } from './transactionBuilder/signingMessage.mjs';
|
|
17
17
|
export { StructTag, TypeTag, TypeTagAddress, TypeTagBool, TypeTagGeneric, TypeTagReference, TypeTagSigner, TypeTagStruct, TypeTagU128, TypeTagU16, TypeTagU256, TypeTagU32, TypeTagU64, TypeTagU8, TypeTagVector, aptosCoinStructTag, objectStructTag, optionStructTag, stringStructTag } from './typeTag/index.mjs';
|
|
18
18
|
export { TypeTagParserError, TypeTagParserErrorType, parseTypeTag } from './typeTag/parser.mjs';
|
|
19
|
-
export { AnyRawTransaction, AnyRawTransactionInstance, AnyTransactionPayloadInstance, EntryFunctionABI, EntryFunctionArgumentTypes, FunctionABI, InputEntryFunctionData, InputEntryFunctionDataWithABI, InputEntryFunctionDataWithRemoteABI, InputGenerateMultiAgentRawTransactionArgs, InputGenerateMultiAgentRawTransactionData, InputGenerateRawTransactionArgs, InputGenerateSingleSignerRawTransactionArgs, InputGenerateSingleSignerRawTransactionData, InputGenerateTransactionData, InputGenerateTransactionOptions, InputGenerateTransactionPayloadData, InputGenerateTransactionPayloadDataWithABI, InputGenerateTransactionPayloadDataWithRemoteABI, InputMultiSigData, InputMultiSigDataWithABI, InputMultiSigDataWithRemoteABI, InputScriptData, InputSimulateTransactionData, InputSimulateTransactionOptions, InputSubmitTransactionData, InputViewFunctionData, InputViewFunctionDataWithABI, InputViewFunctionDataWithRemoteABI, InputViewFunctionJsonData, ScriptFunctionArgumentTypes, SimpleEntryFunctionArgumentTypes, TypeArgument, ViewFunctionABI, ViewFunctionJsonPayload } from './types.mjs';
|
|
19
|
+
export { AnyRawTransaction, AnyRawTransactionInstance, AnyTransactionPayloadInstance, EntryFunctionABI, EntryFunctionArgumentTypes, FunctionABI, InputBatchedFunctionData, InputEntryFunctionData, InputEntryFunctionDataWithABI, InputEntryFunctionDataWithRemoteABI, InputGenerateMultiAgentRawTransactionArgs, InputGenerateMultiAgentRawTransactionData, InputGenerateRawTransactionArgs, InputGenerateSingleSignerRawTransactionArgs, InputGenerateSingleSignerRawTransactionData, InputGenerateTransactionData, InputGenerateTransactionOptions, InputGenerateTransactionPayloadData, InputGenerateTransactionPayloadDataWithABI, InputGenerateTransactionPayloadDataWithRemoteABI, InputMultiSigData, InputMultiSigDataWithABI, InputMultiSigDataWithRemoteABI, InputScriptData, InputSimulateTransactionData, InputSimulateTransactionOptions, InputSubmitTransactionData, InputViewFunctionData, InputViewFunctionDataWithABI, InputViewFunctionDataWithRemoteABI, InputViewFunctionJsonData, ScriptFunctionArgumentTypes, SimpleEntryFunctionArgumentTypes, TypeArgument, ViewFunctionABI, ViewFunctionJsonPayload } from './types.mjs';
|
|
20
|
+
export { AptosScriptComposer } from './scriptComposer/index.mjs';
|
|
20
21
|
import '../bcs/deserializer.mjs';
|
|
21
22
|
import '../types/types.mjs';
|
|
22
23
|
import '../types/indexer.mjs';
|
|
23
24
|
import '../types/generated/operations.mjs';
|
|
24
25
|
import '../types/generated/types.mjs';
|
|
25
26
|
import '../utils/apiEndpoints.mjs';
|
|
27
|
+
import '@aptos-labs/script-composer-pack';
|
|
26
28
|
import '../bcs/serializer.mjs';
|
|
27
29
|
import '../core/hex.mjs';
|
|
28
30
|
import '../core/common.mjs';
|
|
29
31
|
import '../core/crypto/ed25519.mjs';
|
|
30
|
-
import '../publicKey-
|
|
32
|
+
import '../publicKey-BMtGNNLg.mjs';
|
|
31
33
|
import '../core/accountAddress.mjs';
|
|
32
34
|
import '../core/crypto/signature.mjs';
|
|
33
35
|
import '../core/crypto/privateKey.mjs';
|
|
34
36
|
import '../core/crypto/multiEd25519.mjs';
|
|
35
37
|
import '../core/crypto/multiKey.mjs';
|
|
36
38
|
import '../core/crypto/singleKey.mjs';
|
|
39
|
+
import '../core/crypto/secp256k1.mjs';
|
|
37
40
|
import '../bcs/serializable/movePrimitives.mjs';
|
|
38
41
|
import '../bcs/serializable/moveStructs.mjs';
|
|
39
42
|
import '../bcs/serializable/fixedBytes.mjs';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import"../chunk-
|
|
1
|
+
import"../chunk-UIRAXHDH.mjs";import{a as Sa}from"../chunk-CWRANLXZ.mjs";import"../chunk-JXCZTOYC.mjs";import{a as Ha,b as Ia,c as Ja,d as Ka,e as La,f as Ma,g as Na,h as Oa,i as Pa,j as Qa,k as Ra}from"../chunk-IJ2QKE4W.mjs";import{a as za,b as Aa,c as Ba,d as Ca,e as Da,f as Ea,g as Fa,h as Ga}from"../chunk-XHPWHA6B.mjs";import{a as wa,b as xa,c as ya}from"../chunk-AZWVCBK2.mjs";import{a as ba,b as ca,c as da,d as ea,e as fa,f as ga,g as ha,h as ia,i as ja,j as ka,k as la,l as ma,m as na,n as oa,o as pa,p as qa,q as ra,r as sa,s as ta,t as ua,u as va}from"../chunk-UYONA6PP.mjs";import"../chunk-BSCOVLWS.mjs";import"../chunk-V3MBJJTL.mjs";import"../chunk-P54RNN4V.mjs";import"../chunk-UQ7D5CSM.mjs";import"../chunk-YPGI5HAA.mjs";import"../chunk-A3NEASNH.mjs";import"../chunk-VHNX2NUR.mjs";import"../chunk-GP4TLDVZ.mjs";import"../chunk-7HLNV3QL.mjs";import"../chunk-VZELORLW.mjs";import"../chunk-AD3A7DTH.mjs";import"../chunk-R7QOPBWA.mjs";import"../chunk-JJM6ELMS.mjs";import"../chunk-BFIXIXHO.mjs";import"../chunk-SQR3AIY7.mjs";import"../chunk-KFGXOZ77.mjs";import"../chunk-FC2IYWI7.mjs";import{a as Z,b as _,c as $,d as aa}from"../chunk-K2CSACQY.mjs";import"../chunk-4NMDYPUD.mjs";import{a as P}from"../chunk-XIFIACCB.mjs";import{a as W}from"../chunk-6IPM5P4L.mjs";import{a as X}from"../chunk-I7JGKVOC.mjs";import"../chunk-UYVPNUH3.mjs";import{a as Q,b as R,c as S,d as T,e as U,f as V}from"../chunk-6XHBRRS6.mjs";import{a,b,c,d,e,f}from"../chunk-NDUIXMIA.mjs";import{a as Y}from"../chunk-EBS4BKER.mjs";import{a as L,b as M,c as N,d as O}from"../chunk-PHJRCZQ3.mjs";import{a as C,b as D,c as E,d as F,e as G,f as H,g as I,h as J,i as K}from"../chunk-67ZANQ3R.mjs";import{a as j,b as k,c as l,d as m,e as n,f as o,g as p,h as q,i as r,j as s,k as t,l as u,m as v,n as w,o as x,p as y,q as z,r as A,s as B}from"../chunk-G4O6FXCF.mjs";import{a as g}from"../chunk-XKUIMGKU.mjs";import{a as i}from"../chunk-N4DM5FYH.mjs";import{a as h}from"../chunk-N6YTF76Q.mjs";import"../chunk-E7FWVXGX.mjs";import"../chunk-NECL5FCQ.mjs";import"../chunk-4QMXOWHP.mjs";import"../chunk-BI3BTSUB.mjs";import"../chunk-67BUAZ6O.mjs";import"../chunk-HEZ2ZYZA.mjs";import"../chunk-ODEDSSQL.mjs";import"../chunk-3XH3NNSR.mjs";import"../chunk-4ZJJINCW.mjs";import"../chunk-G5ZWH5T3.mjs";import"../chunk-NW2WUKWV.mjs";import"../chunk-KG23XFU2.mjs";import"../chunk-GOXRBEIJ.mjs";import"../chunk-XJJVJOX5.mjs";import"../chunk-T6NQDM7D.mjs";import"../chunk-XGF7UNEW.mjs";import"../chunk-EMURYYVO.mjs";import"../chunk-WCMW2L3P.mjs";import"../chunk-DPW6ELCQ.mjs";import"../chunk-C3Q23D22.mjs";import"../chunk-ROT6S6BM.mjs";import"../chunk-FN4C3CKC.mjs";import"../chunk-Q4C4U6I4.mjs";import"../chunk-YOZBVVKL.mjs";import"../chunk-7ECCT6PK.mjs";import"../chunk-SZRZ3HIL.mjs";import"../chunk-FKJ3GCBI.mjs";import"../chunk-CNCRJ56P.mjs";import"../chunk-HGLO5LDS.mjs";import"../chunk-4YLUM62M.mjs";import"../chunk-QHEKBHNU.mjs";import"../chunk-FZY4PMEE.mjs";import"../chunk-TOBQ5UE6.mjs";import"../chunk-MT2RJ7H3.mjs";import"../chunk-N4VVDQA5.mjs";import"../chunk-ORMOQWWH.mjs";import"../chunk-3OLFJ65O.mjs";import"../chunk-U2PRGW4O.mjs";import"../chunk-4WPQQPUF.mjs";import"../chunk-XTOIL6MB.mjs";import"../chunk-EBMEXURY.mjs";import"../chunk-STY74NUA.mjs";import"../chunk-IF4UU2MT.mjs";import"../chunk-56CNRT2K.mjs";import"../chunk-DAFSKSZ5.mjs";import"../chunk-4RXKALLC.mjs";import"../chunk-RJ7F4JDV.mjs";import"../chunk-AIABPCUF.mjs";import"../chunk-KDMSOCZY.mjs";export{a as AccountAuthenticator,b as AccountAuthenticatorEd25519,c as AccountAuthenticatorMultiEd25519,e as AccountAuthenticatorMultiKey,f as AccountAuthenticatorNoAccountAuthenticator,d as AccountAuthenticatorSingleKey,Sa as AptosScriptComposer,g as ChainId,H as EntryFunction,O as FeePayerRawTransaction,h as Identifier,i as ModuleId,N as MultiAgentRawTransaction,Y as MultiAgentTransaction,J as MultiSig,K as MultiSigTransactionPayload,L as RawTransaction,M as RawTransactionWithData,P as RotationProofChallenge,I as Script,W as SignedTransaction,X as SimpleTransaction,x as StructTag,Q as TransactionAuthenticator,R as TransactionAuthenticatorEd25519,U as TransactionAuthenticatorFeePayer,T as TransactionAuthenticatorMultiAgent,S as TransactionAuthenticatorMultiEd25519,V as TransactionAuthenticatorSingleSender,D as TransactionPayload,F as TransactionPayloadEntryFunction,G as TransactionPayloadMultiSig,E as TransactionPayloadScript,j as TypeTag,r as TypeTagAddress,k as TypeTagBool,u as TypeTagGeneric,xa as TypeTagParserError,wa as TypeTagParserErrorType,t as TypeTagReference,s as TypeTagSigner,w as TypeTagStruct,p as TypeTagU128,m as TypeTagU16,q as TypeTagU256,n as TypeTagU32,o as TypeTagU64,l as TypeTagU8,v as TypeTagVector,y as aptosCoinStructTag,Ma as buildTransaction,Ga as checkOrConvertArgument,Fa as convertArgument,Ea as convertCallArgument,ea as convertNumber,Z as deriveTransactionType,C as deserializeFromScriptArgument,Ca as fetchEntryFunctionAbi,Aa as fetchFunctionAbi,Ba as fetchMoveFunctionAbi,Da as fetchViewFunctionAbi,ua as findFirstNonSignerArg,La as generateRawTransaction,Pa as generateSignedTransaction,Na as generateSignedTransactionForSimulation,_ as generateSigningMessage,$ as generateSigningMessageForSerializable,aa as generateSigningMessageForTransaction,Ha as generateTransactionPayload,Ia as generateTransactionPayloadWithABI,Ra as generateUserTransactionHash,Ja as generateViewFunctionPayload,Ka as generateViewFunctionPayloadWithABI,Oa as getAuthenticatorForSimulation,va as getFunctionParts,Qa as hashValues,ja as isBcsAddress,ia as isBcsBool,la as isBcsFixedBytes,ka as isBcsString,qa as isBcsU128,na as isBcsU16,ra as isBcsU256,oa as isBcsU32,pa as isBcsU64,ma as isBcsU8,ba as isBool,ga as isEmptyOption,ha as isEncodedEntryFunctionArgument,fa as isLargeNumber,da as isNumber,sa as isScriptDataInput,ca as isString,B as objectStructTag,A as optionStructTag,ya as parseTypeTag,za as standardizeTypeTags,z as stringStructTag,ta as throwTypeMismatch};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -7,11 +7,14 @@ import '../../types/indexer.mjs';
|
|
|
7
7
|
import '../../types/generated/operations.mjs';
|
|
8
8
|
import '../../types/generated/types.mjs';
|
|
9
9
|
import '../../utils/apiEndpoints.mjs';
|
|
10
|
+
import '@aptos-labs/script-composer-pack';
|
|
10
11
|
|
|
11
12
|
/**
|
|
12
13
|
* Represents a ChainId that can be serialized and deserialized.
|
|
13
14
|
*
|
|
14
15
|
* @extends Serializable
|
|
16
|
+
* @group Implementation
|
|
17
|
+
* @category Transactions
|
|
15
18
|
*/
|
|
16
19
|
declare class ChainId extends Serializable {
|
|
17
20
|
readonly chainId: number;
|
|
@@ -19,6 +22,8 @@ declare class ChainId extends Serializable {
|
|
|
19
22
|
* Initializes a new instance of the class with the specified chain ID.
|
|
20
23
|
*
|
|
21
24
|
* @param chainId - The ID of the blockchain network to be used.
|
|
25
|
+
* @group Implementation
|
|
26
|
+
* @category Transactions
|
|
22
27
|
*/
|
|
23
28
|
constructor(chainId: number);
|
|
24
29
|
/**
|
|
@@ -26,6 +31,8 @@ declare class ChainId extends Serializable {
|
|
|
26
31
|
* This function helps in converting the object into a format suitable for transmission or storage.
|
|
27
32
|
*
|
|
28
33
|
* @param serializer - The serializer instance used to perform the serialization.
|
|
34
|
+
* @group Implementation
|
|
35
|
+
* @category Transactions
|
|
29
36
|
*/
|
|
30
37
|
serialize(serializer: Serializer): void;
|
|
31
38
|
/**
|
|
@@ -33,6 +40,8 @@ declare class ChainId extends Serializable {
|
|
|
33
40
|
* This function allows you to reconstruct a ChainId object from serialized data.
|
|
34
41
|
*
|
|
35
42
|
* @param deserializer - The deserializer instance used to read the serialized data.
|
|
43
|
+
* @group Implementation
|
|
44
|
+
* @category Transactions
|
|
36
45
|
*/
|
|
37
46
|
static deserialize(deserializer: Deserializer): ChainId;
|
|
38
47
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../../chunk-
|
|
1
|
+
import{a}from"../../chunk-XKUIMGKU.mjs";import"../../chunk-EBMEXURY.mjs";import"../../chunk-STY74NUA.mjs";import"../../chunk-IF4UU2MT.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as ChainId};
|
|
2
2
|
//# sourceMappingURL=chainId.mjs.map
|
|
@@ -5,6 +5,7 @@ import '../../types/indexer.mjs';
|
|
|
5
5
|
import '../../types/generated/operations.mjs';
|
|
6
6
|
import '../../types/generated/types.mjs';
|
|
7
7
|
import '../../utils/apiEndpoints.mjs';
|
|
8
|
+
import '@aptos-labs/script-composer-pack';
|
|
8
9
|
import '../../core/hex.mjs';
|
|
9
10
|
import '../../core/common.mjs';
|
|
10
11
|
|
|
@@ -14,6 +15,8 @@ import '../../core/common.mjs';
|
|
|
14
15
|
* the "function name" in "EntryFunction".
|
|
15
16
|
*
|
|
16
17
|
* @extends Serializable
|
|
18
|
+
* @group Implementation
|
|
19
|
+
* @category Transactions
|
|
17
20
|
*/
|
|
18
21
|
declare class Identifier extends Serializable {
|
|
19
22
|
identifier: string;
|
|
@@ -21,12 +24,16 @@ declare class Identifier extends Serializable {
|
|
|
21
24
|
* Creates an instance of the class with a specified identifier.
|
|
22
25
|
*
|
|
23
26
|
* @param identifier - The unique identifier for the instance.
|
|
27
|
+
* @group Implementation
|
|
28
|
+
* @category Transactions
|
|
24
29
|
*/
|
|
25
30
|
constructor(identifier: string);
|
|
26
31
|
/**
|
|
27
32
|
* Serializes the identifier of the current instance using the provided serializer.
|
|
28
33
|
*
|
|
29
34
|
* @param serializer - The serializer instance used to perform the serialization.
|
|
35
|
+
* @group Implementation
|
|
36
|
+
* @category Transactions
|
|
30
37
|
*/
|
|
31
38
|
serialize(serializer: Serializer): void;
|
|
32
39
|
/**
|
|
@@ -34,6 +41,8 @@ declare class Identifier extends Serializable {
|
|
|
34
41
|
* This function is useful for reconstructing an Identifier object from a serialized format.
|
|
35
42
|
*
|
|
36
43
|
* @param deserializer - The deserializer instance used to read the serialized data.
|
|
44
|
+
* @group Implementation
|
|
45
|
+
* @category Transactions
|
|
37
46
|
*/
|
|
38
47
|
static deserialize(deserializer: Deserializer): Identifier;
|
|
39
48
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../../chunk-
|
|
1
|
+
import{a}from"../../chunk-N6YTF76Q.mjs";import"../../chunk-EBMEXURY.mjs";import"../../chunk-STY74NUA.mjs";import"../../chunk-IF4UU2MT.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as Identifier};
|
|
2
2
|
//# sourceMappingURL=identifier.mjs.map
|
|
@@ -16,9 +16,10 @@ import '../../types/indexer.mjs';
|
|
|
16
16
|
import '../../types/generated/operations.mjs';
|
|
17
17
|
import '../../types/generated/types.mjs';
|
|
18
18
|
import '../../utils/apiEndpoints.mjs';
|
|
19
|
+
import '@aptos-labs/script-composer-pack';
|
|
19
20
|
import '../../bcs/deserializer.mjs';
|
|
20
21
|
import '../../core/accountAddress.mjs';
|
|
21
|
-
import '../../publicKey-
|
|
22
|
+
import '../../publicKey-BMtGNNLg.mjs';
|
|
22
23
|
import '../../core/crypto/signature.mjs';
|
|
23
24
|
import '../../bcs/serializable/movePrimitives.mjs';
|
|
24
25
|
import '../../bcs/serializable/moveStructs.mjs';
|
|
@@ -29,4 +30,5 @@ import '../../core/crypto/privateKey.mjs';
|
|
|
29
30
|
import '../../core/crypto/multiEd25519.mjs';
|
|
30
31
|
import '../../core/crypto/multiKey.mjs';
|
|
31
32
|
import '../../core/crypto/singleKey.mjs';
|
|
33
|
+
import '../../core/crypto/secp256k1.mjs';
|
|
32
34
|
import '../typeTag/index.mjs';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import"../../chunk-4NMDYPUD.mjs";import{a as q}from"../../chunk-
|
|
1
|
+
import"../../chunk-4NMDYPUD.mjs";import{a as q}from"../../chunk-XIFIACCB.mjs";import{a as r}from"../../chunk-6IPM5P4L.mjs";import{a as s}from"../../chunk-I7JGKVOC.mjs";import"../../chunk-UYVPNUH3.mjs";import"../../chunk-6XHBRRS6.mjs";import"../../chunk-NDUIXMIA.mjs";import{a as t}from"../../chunk-EBS4BKER.mjs";import{a as m,b as n,c as o,d as p}from"../../chunk-PHJRCZQ3.mjs";import{a as d,b as e,c as f,d as g,e as h,f as i,g as j,h as k,i as l}from"../../chunk-67ZANQ3R.mjs";import"../../chunk-G4O6FXCF.mjs";import{a}from"../../chunk-XKUIMGKU.mjs";import{a as c}from"../../chunk-N4DM5FYH.mjs";import{a as b}from"../../chunk-N6YTF76Q.mjs";import"../../chunk-E7FWVXGX.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-BI3BTSUB.mjs";import"../../chunk-HEZ2ZYZA.mjs";import"../../chunk-ODEDSSQL.mjs";import"../../chunk-3XH3NNSR.mjs";import"../../chunk-4ZJJINCW.mjs";import"../../chunk-G5ZWH5T3.mjs";import"../../chunk-NW2WUKWV.mjs";import"../../chunk-KG23XFU2.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-XJJVJOX5.mjs";import"../../chunk-T6NQDM7D.mjs";import"../../chunk-XGF7UNEW.mjs";import"../../chunk-EMURYYVO.mjs";import"../../chunk-WCMW2L3P.mjs";import"../../chunk-DPW6ELCQ.mjs";import"../../chunk-C3Q23D22.mjs";import"../../chunk-ROT6S6BM.mjs";import"../../chunk-FN4C3CKC.mjs";import"../../chunk-Q4C4U6I4.mjs";import"../../chunk-YOZBVVKL.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SZRZ3HIL.mjs";import"../../chunk-FKJ3GCBI.mjs";import"../../chunk-CNCRJ56P.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-4YLUM62M.mjs";import"../../chunk-QHEKBHNU.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-TOBQ5UE6.mjs";import"../../chunk-MT2RJ7H3.mjs";import"../../chunk-N4VVDQA5.mjs";import"../../chunk-ORMOQWWH.mjs";import"../../chunk-3OLFJ65O.mjs";import"../../chunk-U2PRGW4O.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-XTOIL6MB.mjs";import"../../chunk-EBMEXURY.mjs";import"../../chunk-STY74NUA.mjs";import"../../chunk-IF4UU2MT.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-DAFSKSZ5.mjs";import"../../chunk-4RXKALLC.mjs";import"../../chunk-RJ7F4JDV.mjs";import"../../chunk-AIABPCUF.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as ChainId,i as EntryFunction,p as FeePayerRawTransaction,b as Identifier,c as ModuleId,o as MultiAgentRawTransaction,t as MultiAgentTransaction,k as MultiSig,l as MultiSigTransactionPayload,m as RawTransaction,n as RawTransactionWithData,q as RotationProofChallenge,j as Script,r as SignedTransaction,s as SimpleTransaction,e as TransactionPayload,g as TransactionPayloadEntryFunction,h as TransactionPayloadMultiSig,f as TransactionPayloadScript,d as deserializeFromScriptArgument};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -9,11 +9,14 @@ import '../../types/indexer.mjs';
|
|
|
9
9
|
import '../../types/generated/operations.mjs';
|
|
10
10
|
import '../../types/generated/types.mjs';
|
|
11
11
|
import '../../utils/apiEndpoints.mjs';
|
|
12
|
+
import '@aptos-labs/script-composer-pack';
|
|
12
13
|
import './transactionArgument.mjs';
|
|
13
14
|
|
|
14
15
|
/**
|
|
15
16
|
* Represents a ModuleId that can be serialized and deserialized.
|
|
16
17
|
* A ModuleId consists of a module address (e.g., "0x1") and a module name (e.g., "coin").
|
|
18
|
+
* @group Implementation
|
|
19
|
+
* @category Transactions
|
|
17
20
|
*/
|
|
18
21
|
declare class ModuleId extends Serializable {
|
|
19
22
|
readonly address: AccountAddress;
|
|
@@ -23,6 +26,8 @@ declare class ModuleId extends Serializable {
|
|
|
23
26
|
*
|
|
24
27
|
* @param address - The account address, e.g., "0x1".
|
|
25
28
|
* @param name - The module name under the specified address, e.g., "coin".
|
|
29
|
+
* @group Implementation
|
|
30
|
+
* @category Transactions
|
|
26
31
|
*/
|
|
27
32
|
constructor(address: AccountAddress, name: Identifier);
|
|
28
33
|
/**
|
|
@@ -30,6 +35,8 @@ declare class ModuleId extends Serializable {
|
|
|
30
35
|
* @param moduleId - A string literal representing the module identifier.
|
|
31
36
|
* @throws Error if the provided moduleId is not in the correct format.
|
|
32
37
|
* @returns ModuleId - The corresponding ModuleId object.
|
|
38
|
+
* @group Implementation
|
|
39
|
+
* @category Transactions
|
|
33
40
|
*/
|
|
34
41
|
static fromStr(moduleId: MoveModuleId): ModuleId;
|
|
35
42
|
/**
|
|
@@ -37,6 +44,8 @@ declare class ModuleId extends Serializable {
|
|
|
37
44
|
* This function is essential for converting the object's data into a format suitable for transmission or storage.
|
|
38
45
|
*
|
|
39
46
|
* @param serializer - The serializer instance used to perform the serialization.
|
|
47
|
+
* @group Implementation
|
|
48
|
+
* @category Transactions
|
|
40
49
|
*/
|
|
41
50
|
serialize(serializer: Serializer): void;
|
|
42
51
|
/**
|
|
@@ -44,6 +53,8 @@ declare class ModuleId extends Serializable {
|
|
|
44
53
|
* This function retrieves the account address and identifier to construct a ModuleId instance.
|
|
45
54
|
*
|
|
46
55
|
* @param deserializer - The deserializer instance used to read the data.
|
|
56
|
+
* @group Implementation
|
|
57
|
+
* @category Transactions
|
|
47
58
|
*/
|
|
48
59
|
static deserialize(deserializer: Deserializer): ModuleId;
|
|
49
60
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../../chunk-
|
|
1
|
+
import{a}from"../../chunk-N4DM5FYH.mjs";import"../../chunk-N6YTF76Q.mjs";import"../../chunk-E7FWVXGX.mjs";import"../../chunk-NECL5FCQ.mjs";import"../../chunk-4QMXOWHP.mjs";import"../../chunk-BI3BTSUB.mjs";import"../../chunk-HEZ2ZYZA.mjs";import"../../chunk-ODEDSSQL.mjs";import"../../chunk-3XH3NNSR.mjs";import"../../chunk-4ZJJINCW.mjs";import"../../chunk-G5ZWH5T3.mjs";import"../../chunk-NW2WUKWV.mjs";import"../../chunk-KG23XFU2.mjs";import"../../chunk-GOXRBEIJ.mjs";import"../../chunk-XJJVJOX5.mjs";import"../../chunk-T6NQDM7D.mjs";import"../../chunk-XGF7UNEW.mjs";import"../../chunk-EMURYYVO.mjs";import"../../chunk-WCMW2L3P.mjs";import"../../chunk-DPW6ELCQ.mjs";import"../../chunk-C3Q23D22.mjs";import"../../chunk-ROT6S6BM.mjs";import"../../chunk-FN4C3CKC.mjs";import"../../chunk-Q4C4U6I4.mjs";import"../../chunk-YOZBVVKL.mjs";import"../../chunk-7ECCT6PK.mjs";import"../../chunk-SZRZ3HIL.mjs";import"../../chunk-FKJ3GCBI.mjs";import"../../chunk-CNCRJ56P.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-4YLUM62M.mjs";import"../../chunk-QHEKBHNU.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-TOBQ5UE6.mjs";import"../../chunk-MT2RJ7H3.mjs";import"../../chunk-N4VVDQA5.mjs";import"../../chunk-ORMOQWWH.mjs";import"../../chunk-3OLFJ65O.mjs";import"../../chunk-U2PRGW4O.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-XTOIL6MB.mjs";import"../../chunk-EBMEXURY.mjs";import"../../chunk-STY74NUA.mjs";import"../../chunk-IF4UU2MT.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-DAFSKSZ5.mjs";import"../../chunk-4RXKALLC.mjs";import"../../chunk-RJ7F4JDV.mjs";import"../../chunk-AIABPCUF.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as ModuleId};
|
|
2
2
|
//# sourceMappingURL=moduleId.mjs.map
|