@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
|
@@ -8,9 +8,12 @@ import '../types/indexer.mjs';
|
|
|
8
8
|
import '../types/generated/operations.mjs';
|
|
9
9
|
import '../types/generated/types.mjs';
|
|
10
10
|
import '../utils/apiEndpoints.mjs';
|
|
11
|
+
import '@aptos-labs/script-composer-pack';
|
|
11
12
|
|
|
12
13
|
/**
|
|
13
14
|
* Provides reasons for an address was invalid.
|
|
15
|
+
* @group Implementation
|
|
16
|
+
* @category Serialization
|
|
14
17
|
*/
|
|
15
18
|
declare enum AddressInvalidReason {
|
|
16
19
|
INCORRECT_NUMBER_OF_BYTES = "incorrect_number_of_bytes",
|
|
@@ -24,6 +27,8 @@ declare enum AddressInvalidReason {
|
|
|
24
27
|
}
|
|
25
28
|
/**
|
|
26
29
|
* The input for an account address, which can be either a hexadecimal string or a standard account address.
|
|
30
|
+
* @group Implementation
|
|
31
|
+
* @category Serialization
|
|
27
32
|
*/
|
|
28
33
|
type AccountAddressInput = HexInput | AccountAddress;
|
|
29
34
|
/**
|
|
@@ -41,18 +46,26 @@ type AccountAddressInput = HexInput | AccountAddress;
|
|
|
41
46
|
*
|
|
42
47
|
* The comments in this class make frequent reference to the LONG and SHORT formats,
|
|
43
48
|
* as well as "special" addresses. To learn what these refer to see AIP-40.
|
|
49
|
+
* @group Implementation
|
|
50
|
+
* @category Serialization
|
|
44
51
|
*/
|
|
45
52
|
declare class AccountAddress extends Serializable implements TransactionArgument {
|
|
46
53
|
/**
|
|
47
54
|
* This is the internal representation of an account address.
|
|
55
|
+
* @group Implementation
|
|
56
|
+
* @category Serialization
|
|
48
57
|
*/
|
|
49
58
|
readonly data: Uint8Array;
|
|
50
59
|
/**
|
|
51
60
|
* The number of bytes that make up an account address.
|
|
61
|
+
* @group Implementation
|
|
62
|
+
* @category Serialization
|
|
52
63
|
*/
|
|
53
64
|
static readonly LENGTH: number;
|
|
54
65
|
/**
|
|
55
66
|
* The length of an address string in LONG form without a leading 0x.
|
|
67
|
+
* @group Implementation
|
|
68
|
+
* @category Serialization
|
|
56
69
|
*/
|
|
57
70
|
static readonly LONG_STRING_LENGTH: number;
|
|
58
71
|
static ZERO: AccountAddress;
|
|
@@ -68,6 +81,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
68
81
|
*
|
|
69
82
|
* @param input A Uint8Array representing an account address.
|
|
70
83
|
* @throws ParsingError if the input length is not equal to 32 bytes.
|
|
84
|
+
* @group Implementation
|
|
85
|
+
* @category Serialization
|
|
71
86
|
*/
|
|
72
87
|
constructor(input: Uint8Array);
|
|
73
88
|
/**
|
|
@@ -79,6 +94,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
79
94
|
* https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.
|
|
80
95
|
*
|
|
81
96
|
* @returns true if the address is special, false otherwise.
|
|
97
|
+
* @group Implementation
|
|
98
|
+
* @category Serialization
|
|
82
99
|
*/
|
|
83
100
|
isSpecial(): boolean;
|
|
84
101
|
/**
|
|
@@ -88,6 +105,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
88
105
|
* and other addresses in LONG form (0x + 64 characters).
|
|
89
106
|
*
|
|
90
107
|
* @returns AccountAddress as a string conforming to AIP-40.
|
|
108
|
+
* @group Implementation
|
|
109
|
+
* @category Serialization
|
|
91
110
|
*/
|
|
92
111
|
toString(): `0x${string}`;
|
|
93
112
|
/**
|
|
@@ -96,6 +115,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
96
115
|
* NOTE: Prefer to use `toString` where possible.
|
|
97
116
|
*
|
|
98
117
|
* @returns AccountAddress as a string without the leading 0x.
|
|
118
|
+
* @group Implementation
|
|
119
|
+
* @category Serialization
|
|
99
120
|
*/
|
|
100
121
|
toStringWithoutPrefix(): string;
|
|
101
122
|
/**
|
|
@@ -104,6 +125,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
104
125
|
* NOTE: Prefer to use `toString` where possible, as it formats special addresses using the SHORT form (no leading 0s).
|
|
105
126
|
*
|
|
106
127
|
* @returns AccountAddress as a string in LONG form.
|
|
128
|
+
* @group Implementation
|
|
129
|
+
* @category Serialization
|
|
107
130
|
*/
|
|
108
131
|
toStringLong(): `0x${string}`;
|
|
109
132
|
/**
|
|
@@ -113,6 +136,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
113
136
|
* NOTE: Prefer to use `toString` where possible, as it formats special addresses using the SHORT form (no leading 0s).
|
|
114
137
|
*
|
|
115
138
|
* @returns {string} The account address in LONG form.
|
|
139
|
+
* @group Implementation
|
|
140
|
+
* @category Serialization
|
|
116
141
|
*/
|
|
117
142
|
toStringLongWithoutPrefix(): string;
|
|
118
143
|
/**
|
|
@@ -120,6 +145,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
120
145
|
* The inner data is already a Uint8Array, so no conversion takes place.
|
|
121
146
|
*
|
|
122
147
|
* @returns Hex data as Uint8Array
|
|
148
|
+
* @group Implementation
|
|
149
|
+
* @category Serialization
|
|
123
150
|
*/
|
|
124
151
|
toUint8Array(): Uint8Array;
|
|
125
152
|
/**
|
|
@@ -132,6 +159,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
132
159
|
* address.serialize(serializer);
|
|
133
160
|
* const bytes = serializer.toUint8Array();
|
|
134
161
|
* // `bytes` is now the BCS-serialized address.
|
|
162
|
+
* @group Implementation
|
|
163
|
+
* @category Serialization
|
|
135
164
|
*/
|
|
136
165
|
serialize(serializer: Serializer): void;
|
|
137
166
|
/**
|
|
@@ -139,6 +168,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
139
168
|
* This allows for the proper encoding of data when interacting with entry functions in the blockchain.
|
|
140
169
|
*
|
|
141
170
|
* @param serializer - The serializer instance used to convert the data into bytes.
|
|
171
|
+
* @group Implementation
|
|
172
|
+
* @category Serialization
|
|
142
173
|
*/
|
|
143
174
|
serializeForEntryFunction(serializer: Serializer): void;
|
|
144
175
|
/**
|
|
@@ -146,6 +177,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
146
177
|
* This process involves serializing the variant index and the instance data, making it suitable for transmission.
|
|
147
178
|
*
|
|
148
179
|
* @param serializer - The serializer instance used to perform the serialization.
|
|
180
|
+
* @group Implementation
|
|
181
|
+
* @category Serialization
|
|
149
182
|
*/
|
|
150
183
|
serializeForScriptFunction(serializer: Serializer): void;
|
|
151
184
|
/**
|
|
@@ -158,6 +191,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
158
191
|
* const deserializer = new Deserializer(bytes);
|
|
159
192
|
* const address = AccountAddress.deserialize(deserializer);
|
|
160
193
|
* // `address` is now an instance of AccountAddress.
|
|
194
|
+
* @group Implementation
|
|
195
|
+
* @category Serialization
|
|
161
196
|
*/
|
|
162
197
|
static deserialize(deserializer: Deserializer): AccountAddress;
|
|
163
198
|
/**
|
|
@@ -192,6 +227,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
192
227
|
* https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.
|
|
193
228
|
*
|
|
194
229
|
* @returns An instance of AccountAddress.
|
|
230
|
+
* @group Implementation
|
|
231
|
+
* @category Serialization
|
|
195
232
|
*/
|
|
196
233
|
static fromStringStrict(input: string): AccountAddress;
|
|
197
234
|
/**
|
|
@@ -221,6 +258,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
221
258
|
* @returns An instance of AccountAddress.
|
|
222
259
|
*
|
|
223
260
|
* @throws ParsingError if the hex string is too short, too long, or contains invalid characters.
|
|
261
|
+
* @group Implementation
|
|
262
|
+
* @category Serialization
|
|
224
263
|
*/
|
|
225
264
|
static fromString(input: string, { maxMissingChars }?: {
|
|
226
265
|
maxMissingChars?: number;
|
|
@@ -233,6 +272,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
233
272
|
* @param input - The input to convert into an AccountAddress. This can be a string representation of an address, a Uint8Array,
|
|
234
273
|
* or an existing AccountAddress.
|
|
235
274
|
* @param args.maxMissingChars The number of characters that can be missing in a padded address before it is invalid.
|
|
275
|
+
* @group Implementation
|
|
276
|
+
* @category Serialization
|
|
236
277
|
*/
|
|
237
278
|
static from(input: AccountAddressInput, { maxMissingChars }?: {
|
|
238
279
|
maxMissingChars?: number;
|
|
@@ -241,6 +282,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
241
282
|
* Create an AccountAddress from various input types, including strings, Uint8Array, and AccountAddress instances.
|
|
242
283
|
*
|
|
243
284
|
* @param input - The input to convert into an AccountAddress, which can be a string, a Uint8Array, or an AccountAddress.
|
|
285
|
+
* @group Implementation
|
|
286
|
+
* @category Serialization
|
|
244
287
|
*/
|
|
245
288
|
static fromStrict(input: AccountAddressInput): AccountAddress;
|
|
246
289
|
/**
|
|
@@ -252,6 +295,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
252
295
|
*
|
|
253
296
|
* @returns An object indicating whether the address is valid. If valid, valid = true; if not, valid = false with additional details.
|
|
254
297
|
* If the address is invalid, invalidReason will explain why it is invalid, and invalidReasonMessage will provide the error message.
|
|
298
|
+
* @group Implementation
|
|
299
|
+
* @category Serialization
|
|
255
300
|
*/
|
|
256
301
|
static isValid(args: {
|
|
257
302
|
input: AccountAddressInput;
|
|
@@ -262,6 +307,8 @@ declare class AccountAddress extends Serializable implements TransactionArgument
|
|
|
262
307
|
*
|
|
263
308
|
* @param other - The AccountAddress to compare to.
|
|
264
309
|
* @returns true if the AccountAddresses are equal, false if not.
|
|
310
|
+
* @group Implementation
|
|
311
|
+
* @category Serialization
|
|
265
312
|
*/
|
|
266
313
|
equals(other: AccountAddress): boolean;
|
|
267
314
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b}from"../chunk-
|
|
1
|
+
import{a,b}from"../chunk-Q4C4U6I4.mjs";import"../chunk-3OLFJ65O.mjs";import"../chunk-U2PRGW4O.mjs";import"../chunk-4WPQQPUF.mjs";import"../chunk-EBMEXURY.mjs";import"../chunk-STY74NUA.mjs";import"../chunk-IF4UU2MT.mjs";import"../chunk-56CNRT2K.mjs";import"../chunk-KDMSOCZY.mjs";export{b as AccountAddress,a as AddressInvalidReason};
|
|
2
2
|
//# sourceMappingURL=accountAddress.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './accountAddress.mjs';
|
|
2
2
|
import '../bcs/deserializer.mjs';
|
|
3
3
|
import '../bcs/serializer.mjs';
|
|
4
|
-
export { A as AuthenticationKey } from '../publicKey-
|
|
4
|
+
export { A as AuthenticationKey } from '../publicKey-BMtGNNLg.mjs';
|
|
5
5
|
import '../types/types.mjs';
|
|
6
6
|
import './hex.mjs';
|
|
7
7
|
import './common.mjs';
|
|
@@ -10,4 +10,5 @@ import '../types/indexer.mjs';
|
|
|
10
10
|
import '../types/generated/operations.mjs';
|
|
11
11
|
import '../types/generated/types.mjs';
|
|
12
12
|
import '../utils/apiEndpoints.mjs';
|
|
13
|
+
import '@aptos-labs/script-composer-pack';
|
|
13
14
|
import './crypto/signature.mjs';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../chunk-
|
|
1
|
+
import{a}from"../chunk-FN4C3CKC.mjs";import"../chunk-Q4C4U6I4.mjs";import"../chunk-3OLFJ65O.mjs";import"../chunk-U2PRGW4O.mjs";import"../chunk-4WPQQPUF.mjs";import"../chunk-EBMEXURY.mjs";import"../chunk-STY74NUA.mjs";import"../chunk-IF4UU2MT.mjs";import"../chunk-56CNRT2K.mjs";import"../chunk-KDMSOCZY.mjs";export{a as AuthenticationKey};
|
|
2
2
|
//# sourceMappingURL=authenticationKey.mjs.map
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This error is used to explain why parsing failed.
|
|
3
|
+
* @group Implementation
|
|
4
|
+
* @category Serialization
|
|
3
5
|
*/
|
|
4
6
|
declare class ParsingError<T> extends Error {
|
|
5
7
|
/**
|
|
6
8
|
* This provides a programmatic way to access why parsing failed. Downstream devs
|
|
7
9
|
* might want to use this to build their own error messages if the default error
|
|
8
10
|
* messages are not suitable for their use case. This should be an enum.
|
|
11
|
+
* @group Implementation
|
|
12
|
+
* @category Serialization
|
|
9
13
|
*/
|
|
10
14
|
invalidReason: T;
|
|
11
15
|
/**
|
|
@@ -13,24 +17,34 @@ declare class ParsingError<T> extends Error {
|
|
|
13
17
|
*
|
|
14
18
|
* @param message The error message that describes the issue.
|
|
15
19
|
* @param invalidReason The reason why the input is considered invalid.
|
|
20
|
+
* @group Implementation
|
|
21
|
+
* @category Serialization
|
|
16
22
|
*/
|
|
17
23
|
constructor(message: string, invalidReason: T);
|
|
18
24
|
}
|
|
19
25
|
/**
|
|
20
26
|
* Whereas ParsingError is thrown when parsing fails, e.g. in a fromString function,
|
|
21
27
|
* this type is returned from "defensive" functions like isValid.
|
|
28
|
+
* @group Implementation
|
|
29
|
+
* @category Serialization
|
|
22
30
|
*/
|
|
23
31
|
type ParsingResult<T> = {
|
|
24
32
|
/**
|
|
25
33
|
* True if valid, false otherwise.
|
|
34
|
+
* @group Implementation
|
|
35
|
+
* @category Serialization
|
|
26
36
|
*/
|
|
27
37
|
valid: boolean;
|
|
28
38
|
/**
|
|
29
39
|
* If valid is false, this will be a code explaining why parsing failed.
|
|
40
|
+
* @group Implementation
|
|
41
|
+
* @category Serialization
|
|
30
42
|
*/
|
|
31
43
|
invalidReason?: T;
|
|
32
44
|
/**
|
|
33
45
|
* If valid is false, this will be a string explaining why parsing failed.
|
|
46
|
+
* @group Implementation
|
|
47
|
+
* @category Serialization
|
|
34
48
|
*/
|
|
35
49
|
invalidReasonMessage?: string;
|
|
36
50
|
};
|
package/dist/esm/core/common.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../chunk-
|
|
1
|
+
import{a}from"../chunk-IF4UU2MT.mjs";import"../chunk-KDMSOCZY.mjs";export{a as ParsingError};
|
|
2
2
|
//# sourceMappingURL=common.mjs.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Deserializer } from '../../bcs/deserializer.mjs';
|
|
2
2
|
import { Serializer, Serializable } from '../../bcs/serializer.mjs';
|
|
3
|
-
import { a as AccountPublicKey, V as VerifySignatureArgs, A as AuthenticationKey, P as PublicKey } from '../../publicKey-
|
|
3
|
+
import { a as AccountPublicKey, V as VerifySignatureArgs, A as AuthenticationKey, P as PublicKey } from '../../publicKey-BMtGNNLg.mjs';
|
|
4
4
|
import { HexInput } from '../../types/types.mjs';
|
|
5
5
|
import { PrivateKey } from './privateKey.mjs';
|
|
6
6
|
import { Signature } from './signature.mjs';
|
|
@@ -8,6 +8,7 @@ import '../../types/indexer.mjs';
|
|
|
8
8
|
import '../../types/generated/operations.mjs';
|
|
9
9
|
import '../../types/generated/types.mjs';
|
|
10
10
|
import '../../utils/apiEndpoints.mjs';
|
|
11
|
+
import '@aptos-labs/script-composer-pack';
|
|
11
12
|
import '../hex.mjs';
|
|
12
13
|
import '../common.mjs';
|
|
13
14
|
import '../accountAddress.mjs';
|
|
@@ -22,6 +23,8 @@ import '../../transactions/instances/transactionArgument.mjs';
|
|
|
22
23
|
*
|
|
23
24
|
* Comes from Aptos Core
|
|
24
25
|
* https://github.com/aptos-labs/aptos-core/blob/main/crates/aptos-crypto/src/ed25519/ed25519_sigs.rs#L47-L85
|
|
26
|
+
* @group Implementation
|
|
27
|
+
* @category Serialization
|
|
25
28
|
*/
|
|
26
29
|
declare function isCanonicalEd25519Signature(signature: Signature): boolean;
|
|
27
30
|
/**
|
|
@@ -32,15 +35,21 @@ declare function isCanonicalEd25519Signature(signature: Signature): boolean;
|
|
|
32
35
|
*
|
|
33
36
|
* Ed25519 scheme is represented in the SDK as `Legacy authentication key` and also
|
|
34
37
|
* as `AnyPublicKey` that represents any `Unified authentication key`.
|
|
38
|
+
* @group Implementation
|
|
39
|
+
* @category Serialization
|
|
35
40
|
*/
|
|
36
41
|
declare class Ed25519PublicKey extends AccountPublicKey {
|
|
37
42
|
/**
|
|
38
43
|
* Length of an Ed25519 public key
|
|
44
|
+
* @group Implementation
|
|
45
|
+
* @category Serialization
|
|
39
46
|
*/
|
|
40
47
|
static readonly LENGTH: number;
|
|
41
48
|
/**
|
|
42
49
|
* Bytes of the public key
|
|
43
50
|
* @private
|
|
51
|
+
* @group Implementation
|
|
52
|
+
* @category Serialization
|
|
44
53
|
*/
|
|
45
54
|
private readonly key;
|
|
46
55
|
/**
|
|
@@ -49,6 +58,8 @@ declare class Ed25519PublicKey extends AccountPublicKey {
|
|
|
49
58
|
*
|
|
50
59
|
* @param hexInput - The hex input representing the Ed25519 signature.
|
|
51
60
|
* @throws Error if the signature length is not equal to Ed25519Signature.LENGTH.
|
|
61
|
+
* @group Implementation
|
|
62
|
+
* @category Serialization
|
|
52
63
|
*/
|
|
53
64
|
constructor(hexInput: HexInput);
|
|
54
65
|
/**
|
|
@@ -57,6 +68,8 @@ declare class Ed25519PublicKey extends AccountPublicKey {
|
|
|
57
68
|
* @param args - The arguments for verification.
|
|
58
69
|
* @param args.message - A signed message as a Hex string or Uint8Array.
|
|
59
70
|
* @param args.signature - The signature of the message.
|
|
71
|
+
* @group Implementation
|
|
72
|
+
* @category Serialization
|
|
60
73
|
*/
|
|
61
74
|
verifySignature(args: VerifySignatureArgs): boolean;
|
|
62
75
|
/**
|
|
@@ -64,12 +77,16 @@ declare class Ed25519PublicKey extends AccountPublicKey {
|
|
|
64
77
|
* This function is essential for creating a secure authentication key that can be used for further cryptographic operations.
|
|
65
78
|
*
|
|
66
79
|
* @returns {AuthenticationKey} The generated authentication key.
|
|
80
|
+
* @group Implementation
|
|
81
|
+
* @category Serialization
|
|
67
82
|
*/
|
|
68
83
|
authKey(): AuthenticationKey;
|
|
69
84
|
/**
|
|
70
85
|
* Convert the internal data representation to a Uint8Array.
|
|
71
86
|
*
|
|
72
87
|
* @returns Uint8Array representation of the data.
|
|
88
|
+
* @group Implementation
|
|
89
|
+
* @category Serialization
|
|
73
90
|
*/
|
|
74
91
|
toUint8Array(): Uint8Array;
|
|
75
92
|
/**
|
|
@@ -77,6 +94,8 @@ declare class Ed25519PublicKey extends AccountPublicKey {
|
|
|
77
94
|
* This allows for the conversion of data into a format suitable for transmission or storage.
|
|
78
95
|
*
|
|
79
96
|
* @param serializer - The serializer instance used to perform the serialization.
|
|
97
|
+
* @group Implementation
|
|
98
|
+
* @category Serialization
|
|
80
99
|
*/
|
|
81
100
|
serialize(serializer: Serializer): void;
|
|
82
101
|
/**
|
|
@@ -84,6 +103,8 @@ declare class Ed25519PublicKey extends AccountPublicKey {
|
|
|
84
103
|
* This function is used to convert serialized byte data into a usable Ed25519Signature instance.
|
|
85
104
|
*
|
|
86
105
|
* @param deserializer - The deserializer instance used to read the byte data.
|
|
106
|
+
* @group Implementation
|
|
107
|
+
* @category Serialization
|
|
87
108
|
*/
|
|
88
109
|
static deserialize(deserializer: Deserializer): Ed25519PublicKey;
|
|
89
110
|
/**
|
|
@@ -92,6 +113,8 @@ declare class Ed25519PublicKey extends AccountPublicKey {
|
|
|
92
113
|
* @param publicKey - The public key to check.
|
|
93
114
|
* @returns True if the public key is an instance of Ed25519PublicKey, otherwise false.
|
|
94
115
|
* @deprecated use `instanceof Ed25519PublicKey` instead.
|
|
116
|
+
* @group Implementation
|
|
117
|
+
* @category Serialization
|
|
95
118
|
*/
|
|
96
119
|
static isPublicKey(publicKey: AccountPublicKey): publicKey is Ed25519PublicKey;
|
|
97
120
|
/**
|
|
@@ -101,27 +124,35 @@ declare class Ed25519PublicKey extends AccountPublicKey {
|
|
|
101
124
|
*
|
|
102
125
|
* @param publicKey - The public key to validate.
|
|
103
126
|
* @returns A boolean indicating whether the public key is a valid Ed25519 public key.
|
|
127
|
+
* @group Implementation
|
|
128
|
+
* @category Serialization
|
|
104
129
|
*/
|
|
105
130
|
static isInstance(publicKey: PublicKey): publicKey is Ed25519PublicKey;
|
|
106
131
|
}
|
|
107
132
|
/**
|
|
108
133
|
* Represents the private key of an Ed25519 key pair.
|
|
134
|
+
* @group Implementation
|
|
135
|
+
* @category Serialization
|
|
109
136
|
*/
|
|
110
137
|
declare class Ed25519PrivateKey extends Serializable implements PrivateKey {
|
|
111
138
|
/**
|
|
112
139
|
* Length of an Ed25519 private key
|
|
113
|
-
* @
|
|
140
|
+
* @group Implementation
|
|
141
|
+
* @category Serialization
|
|
114
142
|
*/
|
|
115
143
|
static readonly LENGTH: number;
|
|
116
144
|
/**
|
|
117
145
|
* The Ed25519 key seed to use for BIP-32 compatibility
|
|
118
146
|
* See more {@link https://github.com/satoshilabs/slips/blob/master/slip-0010.md}
|
|
119
|
-
* @
|
|
147
|
+
* @group Implementation
|
|
148
|
+
* @category Serialization
|
|
120
149
|
*/
|
|
121
150
|
static readonly SLIP_0010_SEED = "ed25519 seed";
|
|
122
151
|
/**
|
|
123
152
|
* The Ed25519 signing key
|
|
124
153
|
* @private
|
|
154
|
+
* @group Implementation
|
|
155
|
+
* @category Serialization
|
|
125
156
|
*/
|
|
126
157
|
private readonly signingKey;
|
|
127
158
|
/**
|
|
@@ -131,12 +162,16 @@ declare class Ed25519PrivateKey extends Serializable implements PrivateKey {
|
|
|
131
162
|
*
|
|
132
163
|
* @param hexInput HexInput (string or Uint8Array)
|
|
133
164
|
* @param strict If true, private key must AIP-80 compliant.
|
|
165
|
+
* @group Implementation
|
|
166
|
+
* @category Serialization
|
|
134
167
|
*/
|
|
135
168
|
constructor(hexInput: HexInput, strict?: boolean);
|
|
136
169
|
/**
|
|
137
170
|
* Generate a new random private key.
|
|
138
171
|
*
|
|
139
172
|
* @returns Ed25519PrivateKey A newly generated Ed25519 private key.
|
|
173
|
+
* @group Implementation
|
|
174
|
+
* @category Serialization
|
|
140
175
|
*/
|
|
141
176
|
static generate(): Ed25519PrivateKey;
|
|
142
177
|
/**
|
|
@@ -148,6 +183,8 @@ declare class Ed25519PrivateKey extends Serializable implements PrivateKey {
|
|
|
148
183
|
* @param path - The BIP44 path used for key derivation.
|
|
149
184
|
* @param mnemonics - The mnemonic seed phrase from which the key will be derived.
|
|
150
185
|
* @throws Error if the provided path is not a valid hardened path.
|
|
186
|
+
* @group Implementation
|
|
187
|
+
* @category Serialization
|
|
151
188
|
*/
|
|
152
189
|
static fromDerivationPath(path: string, mnemonics: string): Ed25519PrivateKey;
|
|
153
190
|
/**
|
|
@@ -159,12 +196,16 @@ declare class Ed25519PrivateKey extends Serializable implements PrivateKey {
|
|
|
159
196
|
* @param seed - The seed phrase created by the mnemonics, represented as a Uint8Array.
|
|
160
197
|
* @param offset - The offset used for key derivation, defaults to HARDENED_OFFSET.
|
|
161
198
|
* @returns An instance of Ed25519PrivateKey derived from the specified path and seed.
|
|
199
|
+
* @group Implementation
|
|
200
|
+
* @category Serialization
|
|
162
201
|
*/
|
|
163
202
|
private static fromDerivationPathInner;
|
|
164
203
|
/**
|
|
165
204
|
* Derive the Ed25519PublicKey for this private key.
|
|
166
205
|
*
|
|
167
206
|
* @returns Ed25519PublicKey - The derived public key corresponding to the private key.
|
|
207
|
+
* @group Implementation
|
|
208
|
+
* @category Serialization
|
|
168
209
|
*/
|
|
169
210
|
publicKey(): Ed25519PublicKey;
|
|
170
211
|
/**
|
|
@@ -173,18 +214,24 @@ declare class Ed25519PrivateKey extends Serializable implements PrivateKey {
|
|
|
173
214
|
*
|
|
174
215
|
* @param message - A message as a string or Uint8Array in HexInput format.
|
|
175
216
|
* @returns A digital signature for the provided message.
|
|
217
|
+
* @group Implementation
|
|
218
|
+
* @category Serialization
|
|
176
219
|
*/
|
|
177
220
|
sign(message: HexInput): Ed25519Signature;
|
|
178
221
|
/**
|
|
179
222
|
* Get the private key in bytes (Uint8Array).
|
|
180
223
|
*
|
|
181
224
|
* @returns Uint8Array representation of the private key
|
|
225
|
+
* @group Implementation
|
|
226
|
+
* @category Serialization
|
|
182
227
|
*/
|
|
183
228
|
toUint8Array(): Uint8Array;
|
|
184
229
|
/**
|
|
185
230
|
* Get the private key as a hex string with the 0x prefix.
|
|
186
231
|
*
|
|
187
232
|
* @returns string representation of the private key.
|
|
233
|
+
* @group Implementation
|
|
234
|
+
* @category Serialization
|
|
188
235
|
*/
|
|
189
236
|
toString(): string;
|
|
190
237
|
/**
|
|
@@ -210,22 +257,28 @@ declare class Ed25519PrivateKey extends Serializable implements PrivateKey {
|
|
|
210
257
|
* @returns A boolean indicating whether the private key is an Ed25519PrivateKey.
|
|
211
258
|
*
|
|
212
259
|
* @deprecated Use `instanceof Ed25519PrivateKey` instead.
|
|
260
|
+
* @group Implementation
|
|
261
|
+
* @category Serialization
|
|
213
262
|
*/
|
|
214
263
|
static isPrivateKey(privateKey: PrivateKey): privateKey is Ed25519PrivateKey;
|
|
215
264
|
}
|
|
216
265
|
/**
|
|
217
266
|
* Represents a signature of a message signed using an Ed25519 private key.
|
|
267
|
+
* @group Implementation
|
|
268
|
+
* @category Serialization
|
|
218
269
|
*/
|
|
219
270
|
declare class Ed25519Signature extends Signature {
|
|
220
271
|
/**
|
|
221
272
|
* Length of an Ed25519 signature, which is 64 bytes.
|
|
222
|
-
*
|
|
223
|
-
* @
|
|
273
|
+
* @group Implementation
|
|
274
|
+
* @category Serialization
|
|
224
275
|
*/
|
|
225
276
|
static readonly LENGTH = 64;
|
|
226
277
|
/**
|
|
227
278
|
* The signature bytes
|
|
228
279
|
* @private
|
|
280
|
+
* @group Implementation
|
|
281
|
+
* @category Serialization
|
|
229
282
|
*/
|
|
230
283
|
private readonly data;
|
|
231
284
|
constructor(hexInput: HexInput);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b,c,d}from"../../chunk-
|
|
1
|
+
import{a,b,c,d}from"../../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-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-KDMSOCZY.mjs";export{c as Ed25519PrivateKey,b as Ed25519PublicKey,d as Ed25519Signature,a as isCanonicalEd25519Signature};
|
|
2
2
|
//# sourceMappingURL=ed25519.mjs.map
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Deserializer } from '../../bcs/deserializer.mjs';
|
|
2
2
|
import { Serializer } from '../../bcs/serializer.mjs';
|
|
3
3
|
import { EphemeralPublicKeyVariant, HexInput } from '../../types/types.mjs';
|
|
4
|
-
import { P as PublicKey } from '../../publicKey-
|
|
4
|
+
import { P as PublicKey } from '../../publicKey-BMtGNNLg.mjs';
|
|
5
5
|
import { Signature } from './signature.mjs';
|
|
6
6
|
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
|
import '../hex.mjs';
|
|
11
12
|
import '../common.mjs';
|
|
12
13
|
import '../accountAddress.mjs';
|
|
@@ -16,14 +17,20 @@ import '../../transactions/instances/transactionArgument.mjs';
|
|
|
16
17
|
* Represents ephemeral public keys for Aptos Keyless accounts.
|
|
17
18
|
*
|
|
18
19
|
* These keys are used only temporarily within Keyless accounts and are not utilized as public keys for account identification.
|
|
20
|
+
* @group Implementation
|
|
21
|
+
* @category Serialization
|
|
19
22
|
*/
|
|
20
23
|
declare class EphemeralPublicKey extends PublicKey {
|
|
21
24
|
/**
|
|
22
25
|
* The public key itself
|
|
26
|
+
* @group Implementation
|
|
27
|
+
* @category Serialization
|
|
23
28
|
*/
|
|
24
29
|
readonly publicKey: PublicKey;
|
|
25
30
|
/**
|
|
26
31
|
* An enum indicating the scheme of the ephemeral public key
|
|
32
|
+
* @group Implementation
|
|
33
|
+
* @category Serialization
|
|
27
34
|
*/
|
|
28
35
|
readonly variant: EphemeralPublicKeyVariant;
|
|
29
36
|
/**
|
|
@@ -32,6 +39,8 @@ declare class EphemeralPublicKey extends PublicKey {
|
|
|
32
39
|
*
|
|
33
40
|
* @param publicKey - The public key to be used for the ephemeral public key.
|
|
34
41
|
* @throws Error if the signature type is unsupported.
|
|
42
|
+
* @group Implementation
|
|
43
|
+
* @category Serialization
|
|
35
44
|
*/
|
|
36
45
|
constructor(publicKey: PublicKey);
|
|
37
46
|
/**
|
|
@@ -41,6 +50,8 @@ declare class EphemeralPublicKey extends PublicKey {
|
|
|
41
50
|
* @param args.message - The message that was signed.
|
|
42
51
|
* @param args.signature - The signature that was signed by the private key of the ephemeral public key.
|
|
43
52
|
* @returns true if the signature is valid, otherwise false.
|
|
53
|
+
* @group Implementation
|
|
54
|
+
* @category Serialization
|
|
44
55
|
*/
|
|
45
56
|
verifySignature(args: {
|
|
46
57
|
message: HexInput;
|
|
@@ -52,6 +63,8 @@ declare class EphemeralPublicKey extends PublicKey {
|
|
|
52
63
|
*
|
|
53
64
|
* @param serializer - The serializer instance used to serialize the signature.
|
|
54
65
|
* @throws Error if the signature type is unknown.
|
|
66
|
+
* @group Implementation
|
|
67
|
+
* @category Serialization
|
|
55
68
|
*/
|
|
56
69
|
serialize(serializer: Serializer): void;
|
|
57
70
|
/**
|
|
@@ -59,6 +72,8 @@ declare class EphemeralPublicKey extends PublicKey {
|
|
|
59
72
|
* This function allows you to retrieve an EphemeralSignature based on the deserialized data.
|
|
60
73
|
*
|
|
61
74
|
* @param deserializer - The deserializer instance used to read the serialized data.
|
|
75
|
+
* @group Implementation
|
|
76
|
+
* @category Serialization
|
|
62
77
|
*/
|
|
63
78
|
static deserialize(deserializer: Deserializer): EphemeralPublicKey;
|
|
64
79
|
/**
|
|
@@ -66,6 +81,8 @@ declare class EphemeralPublicKey extends PublicKey {
|
|
|
66
81
|
*
|
|
67
82
|
* @param publicKey - The public key to check.
|
|
68
83
|
* @returns A boolean indicating whether the public key is an ephemeral type.
|
|
84
|
+
* @group Implementation
|
|
85
|
+
* @category Serialization
|
|
69
86
|
*/
|
|
70
87
|
static isPublicKey(publicKey: PublicKey): publicKey is EphemeralPublicKey;
|
|
71
88
|
}
|
|
@@ -73,10 +90,14 @@ declare class EphemeralPublicKey extends PublicKey {
|
|
|
73
90
|
* Represents ephemeral signatures used in Aptos Keyless accounts.
|
|
74
91
|
*
|
|
75
92
|
* These signatures are utilized within the KeylessSignature framework.
|
|
93
|
+
* @group Implementation
|
|
94
|
+
* @category Serialization
|
|
76
95
|
*/
|
|
77
96
|
declare class EphemeralSignature extends Signature {
|
|
78
97
|
/**
|
|
79
98
|
* The signature signed by the private key of an EphemeralKeyPair
|
|
99
|
+
* @group Implementation
|
|
100
|
+
* @category Serialization
|
|
80
101
|
*/
|
|
81
102
|
readonly signature: Signature;
|
|
82
103
|
constructor(signature: Signature);
|
|
@@ -86,6 +107,8 @@ declare class EphemeralSignature extends Signature {
|
|
|
86
107
|
* further processing.
|
|
87
108
|
*
|
|
88
109
|
* @param hexInput - The hexadecimal input representing the ephemeral signature.
|
|
110
|
+
* @group Implementation
|
|
111
|
+
* @category Serialization
|
|
89
112
|
*/
|
|
90
113
|
static fromHex(hexInput: HexInput): EphemeralSignature;
|
|
91
114
|
serialize(serializer: Serializer): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b}from"../../chunk-
|
|
1
|
+
import{a,b}from"../../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-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-KDMSOCZY.mjs";export{a as EphemeralPublicKey,b as EphemeralSignature};
|
|
2
2
|
//# sourceMappingURL=ephemeral.mjs.map
|