@aptos-labs/ts-sdk 1.29.0-zeta.0 → 1.29.0-zeta.2
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 +2 -2
- package/dist/common/{accountAddress-DUCC2ffJ.d.ts → accountAddress-DnSqjhSl.d.ts} +700 -245
- package/dist/common/{chunk-HBPH2AD3.js → chunk-7IYTZDXV.js} +1 -1
- package/dist/common/chunk-7IYTZDXV.js.map +1 -0
- package/dist/common/cli/index.d.ts +123 -126
- package/dist/common/cli/index.js +1 -1
- package/dist/common/cli/index.js.map +1 -1
- package/dist/common/index.d.ts +5921 -1627
- package/dist/common/index.js +8 -8
- package/dist/common/index.js.map +1 -1
- package/dist/esm/Ed25519Account-DpH9qAcg.d.mts +470 -0
- package/dist/esm/account/AbstractKeylessAccount.d.mts +6 -5
- package/dist/esm/account/AbstractKeylessAccount.mjs +1 -1
- package/dist/esm/account/Account.d.mts +2 -2
- package/dist/esm/account/Account.mjs +1 -1
- package/dist/esm/account/Ed25519Account.d.mts +2 -2
- package/dist/esm/account/Ed25519Account.mjs +1 -1
- package/dist/esm/account/EphemeralKeyPair.d.mts +49 -14
- package/dist/esm/account/EphemeralKeyPair.mjs +1 -1
- package/dist/esm/account/FederatedKeylessAccount.d.mts +3 -3
- package/dist/esm/account/FederatedKeylessAccount.mjs +1 -1
- package/dist/esm/account/KeylessAccount.d.mts +42 -4
- package/dist/esm/account/KeylessAccount.mjs +1 -1
- package/dist/esm/account/MultiKeyAccount.d.mts +54 -34
- package/dist/esm/account/MultiKeyAccount.mjs +1 -1
- package/dist/esm/account/SingleKeyAccount.d.mts +2 -2
- package/dist/esm/account/SingleKeyAccount.mjs +1 -1
- package/dist/esm/account/index.d.mts +2 -2
- package/dist/esm/account/index.mjs +1 -1
- package/dist/esm/api/account.d.mts +445 -160
- package/dist/esm/api/account.mjs +1 -1
- package/dist/esm/api/ans.d.mts +369 -122
- package/dist/esm/api/ans.mjs +1 -1
- package/dist/esm/api/aptos.d.mts +40 -7
- package/dist/esm/api/aptos.mjs +1 -1
- package/dist/esm/api/aptosConfig.d.mts +102 -14
- package/dist/esm/api/aptosConfig.mjs +1 -1
- package/dist/esm/api/coin.d.mts +50 -13
- package/dist/esm/api/coin.mjs +1 -1
- package/dist/esm/api/digitalAsset.d.mts +708 -298
- package/dist/esm/api/digitalAsset.mjs +1 -1
- package/dist/esm/api/event.d.mts +128 -25
- package/dist/esm/api/event.mjs +1 -1
- package/dist/esm/api/faucet.d.mts +44 -7
- package/dist/esm/api/faucet.mjs +1 -1
- package/dist/esm/api/fungibleAsset.d.mts +151 -48
- package/dist/esm/api/fungibleAsset.mjs +1 -1
- package/dist/esm/api/general.d.mts +169 -53
- package/dist/esm/api/general.mjs +1 -1
- package/dist/esm/api/index.d.mts +2 -2
- package/dist/esm/api/index.mjs +1 -1
- package/dist/esm/api/keyless.d.mts +81 -10
- package/dist/esm/api/keyless.mjs +1 -1
- package/dist/esm/api/object.d.mts +49 -5
- package/dist/esm/api/object.mjs +1 -1
- package/dist/esm/api/staking.d.mts +84 -15
- package/dist/esm/api/staking.mjs +1 -1
- package/dist/esm/api/table.d.mts +117 -37
- package/dist/esm/api/table.mjs +1 -1
- package/dist/esm/api/transaction.d.mts +440 -109
- package/dist/esm/api/transaction.mjs +1 -1
- package/dist/esm/api/transactionSubmission/build.d.mts +99 -13
- package/dist/esm/api/transactionSubmission/build.mjs +1 -1
- package/dist/esm/api/transactionSubmission/helpers.d.mts +79 -0
- package/dist/esm/api/transactionSubmission/helpers.mjs +1 -1
- package/dist/esm/api/transactionSubmission/management.d.mts +111 -12
- package/dist/esm/api/transactionSubmission/management.mjs +1 -1
- package/dist/esm/api/transactionSubmission/sign.d.mts +97 -3
- 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 +140 -15
- package/dist/esm/api/transactionSubmission/simulate.mjs +1 -1
- package/dist/esm/api/transactionSubmission/submit.d.mts +104 -13
- package/dist/esm/api/transactionSubmission/submit.mjs +1 -1
- package/dist/esm/api/utils.d.mts +26 -3
- package/dist/esm/api/utils.mjs +1 -1
- package/dist/esm/bcs/consts.mjs +1 -1
- package/dist/esm/bcs/deserializer.d.mts +82 -32
- package/dist/esm/bcs/deserializer.mjs +1 -1
- package/dist/esm/bcs/index.mjs +1 -1
- package/dist/esm/bcs/serializable/entryFunctionBytes.d.mts +25 -6
- package/dist/esm/bcs/serializable/entryFunctionBytes.mjs +1 -1
- package/dist/esm/bcs/serializable/fixedBytes.d.mts +51 -21
- package/dist/esm/bcs/serializable/fixedBytes.mjs +1 -1
- package/dist/esm/bcs/serializable/movePrimitives.d.mts +79 -0
- package/dist/esm/bcs/serializable/movePrimitives.mjs +1 -1
- package/dist/esm/bcs/serializable/moveStructs.d.mts +119 -32
- package/dist/esm/bcs/serializable/moveStructs.mjs +1 -1
- package/dist/esm/bcs/serializer.d.mts +111 -76
- package/dist/esm/bcs/serializer.mjs +1 -1
- package/dist/esm/{chunk-U6Z4FNB7.mjs → chunk-2CJC43CV.mjs} +1 -1
- package/dist/esm/chunk-2CJC43CV.mjs.map +1 -0
- package/dist/esm/{chunk-EDHO4MI7.mjs → chunk-3CE7U4WL.mjs} +2 -2
- package/dist/esm/chunk-3CE7U4WL.mjs.map +1 -0
- package/dist/esm/{chunk-7PDF3O5A.mjs → chunk-3DFQJD62.mjs} +2 -2
- package/dist/esm/chunk-3DFQJD62.mjs.map +1 -0
- package/dist/esm/{chunk-GNJL4HRI.mjs → chunk-3FVMMVQV.mjs} +2 -2
- package/dist/esm/chunk-3FVMMVQV.mjs.map +1 -0
- package/dist/esm/{chunk-SSYYCQGU.mjs → chunk-43MUZWVN.mjs} +2 -2
- package/dist/esm/chunk-43MUZWVN.mjs.map +1 -0
- package/dist/esm/chunk-44HKW3VX.mjs +2 -0
- package/dist/esm/chunk-44HKW3VX.mjs.map +1 -0
- package/dist/esm/chunk-4CDDWSKZ.mjs +2 -0
- package/dist/esm/chunk-4CDDWSKZ.mjs.map +1 -0
- package/dist/esm/{chunk-2AGCC7DU.mjs → chunk-4F3VHS2S.mjs} +2 -2
- package/dist/esm/chunk-4F3VHS2S.mjs.map +1 -0
- package/dist/esm/{chunk-HCUQEDI6.mjs → chunk-4J3DDFO2.mjs} +2 -2
- package/dist/esm/chunk-4J3DDFO2.mjs.map +1 -0
- package/dist/esm/{chunk-43AF5CUP.mjs → chunk-4KPBLPU7.mjs} +2 -2
- package/dist/esm/chunk-4KPBLPU7.mjs.map +1 -0
- package/dist/esm/chunk-4OV7QU2U.mjs +2 -0
- package/dist/esm/chunk-4OV7QU2U.mjs.map +1 -0
- package/dist/esm/{chunk-QB4XTGDH.mjs → chunk-4QPLGT4N.mjs} +2 -2
- package/dist/esm/chunk-4QPLGT4N.mjs.map +1 -0
- package/dist/esm/{chunk-B3XOTMTY.mjs → chunk-4TWB5MNW.mjs} +2 -2
- package/dist/esm/chunk-4TWB5MNW.mjs.map +1 -0
- package/dist/esm/chunk-555I4YHP.mjs +2 -0
- package/dist/esm/{chunk-UAEODDZS.mjs.map → chunk-555I4YHP.mjs.map} +1 -1
- package/dist/esm/{chunk-HUYDR6MY.mjs → chunk-5QOSTSIW.mjs} +2 -2
- package/dist/esm/chunk-5QOSTSIW.mjs.map +1 -0
- package/dist/esm/chunk-6FLHGOKP.mjs +2 -0
- package/dist/esm/chunk-6FLHGOKP.mjs.map +1 -0
- package/dist/esm/{chunk-URF3VICX.mjs → chunk-6HWNCKNB.mjs} +2 -2
- package/dist/esm/chunk-6HWNCKNB.mjs.map +1 -0
- package/dist/esm/{chunk-LG7RJQ57.mjs → chunk-6Q2O5G3J.mjs} +1 -1
- package/dist/esm/chunk-6Q2O5G3J.mjs.map +1 -0
- package/dist/esm/{chunk-E6O72G24.mjs → chunk-75NUNLHW.mjs} +2 -2
- package/dist/esm/chunk-75NUNLHW.mjs.map +1 -0
- package/dist/esm/{chunk-HSIRO3LE.mjs → chunk-7E46CYWE.mjs} +2 -2
- package/dist/esm/chunk-7E46CYWE.mjs.map +1 -0
- package/dist/esm/{chunk-MHRQHVM3.mjs → chunk-7KCZAAYE.mjs} +2 -2
- package/dist/esm/chunk-7KCZAAYE.mjs.map +1 -0
- package/dist/esm/{chunk-44GYWUSH.mjs → chunk-7XS45O6M.mjs} +1 -1
- package/dist/esm/chunk-7XS45O6M.mjs.map +1 -0
- package/dist/esm/{chunk-YUNDX5I7.mjs → chunk-AGBA3Y7A.mjs} +2 -2
- package/dist/esm/chunk-AGBA3Y7A.mjs.map +1 -0
- package/dist/esm/chunk-AOPAQHIZ.mjs +2 -0
- package/dist/esm/chunk-AOPAQHIZ.mjs.map +1 -0
- package/dist/esm/chunk-AQXQWUX7.mjs +2 -0
- package/dist/esm/chunk-AQXQWUX7.mjs.map +1 -0
- package/dist/esm/chunk-BFAYEGUQ.mjs +2 -0
- package/dist/esm/chunk-BFAYEGUQ.mjs.map +1 -0
- package/dist/esm/chunk-CB3FVCPQ.mjs +2 -0
- package/dist/esm/chunk-CB3FVCPQ.mjs.map +1 -0
- package/dist/esm/{chunk-VWQQLTCH.mjs → chunk-CEP6EADF.mjs} +2 -2
- package/dist/esm/chunk-CEP6EADF.mjs.map +1 -0
- package/dist/esm/chunk-DIEICWUV.mjs +2 -0
- package/dist/esm/chunk-DIEICWUV.mjs.map +1 -0
- package/dist/esm/{chunk-SPQKH5BG.mjs → chunk-EML77GV4.mjs} +2 -2
- package/dist/esm/chunk-EML77GV4.mjs.map +1 -0
- package/dist/esm/{chunk-UIM56NFQ.mjs → chunk-EVE6S5RH.mjs} +2 -2
- package/dist/esm/chunk-EVE6S5RH.mjs.map +1 -0
- package/dist/esm/{chunk-SKBUDJFL.mjs → chunk-FR4O6HNW.mjs} +2 -2
- package/dist/esm/chunk-FR4O6HNW.mjs.map +1 -0
- package/dist/esm/{chunk-NMD45OTM.mjs → chunk-FVQ2GQNB.mjs} +2 -2
- package/dist/esm/chunk-FVQ2GQNB.mjs.map +1 -0
- package/dist/esm/{chunk-KJBS5RFY.mjs → chunk-FYT6RPSK.mjs} +2 -2
- package/dist/esm/chunk-FYT6RPSK.mjs.map +1 -0
- package/dist/esm/{chunk-VTHJWK3M.mjs → chunk-GJZ3SSXU.mjs} +2 -2
- package/dist/esm/chunk-GJZ3SSXU.mjs.map +1 -0
- package/dist/esm/{chunk-SRPI2FFA.mjs → chunk-GMKKHGXK.mjs} +1 -1
- package/dist/esm/chunk-GMKKHGXK.mjs.map +1 -0
- package/dist/esm/chunk-GPZRGLU2.mjs +2 -0
- package/dist/esm/chunk-GPZRGLU2.mjs.map +1 -0
- package/dist/esm/{chunk-TDGQGILY.mjs → chunk-GQABU3RQ.mjs} +1 -1
- package/dist/esm/chunk-GQABU3RQ.mjs.map +1 -0
- package/dist/esm/{chunk-AH44UPM4.mjs → chunk-HBIDHQ2M.mjs} +1 -1
- package/dist/esm/chunk-HBIDHQ2M.mjs.map +1 -0
- package/dist/esm/{chunk-DUDSFTMJ.mjs → chunk-HQOWHNKR.mjs} +2 -2
- package/dist/esm/chunk-HQOWHNKR.mjs.map +1 -0
- package/dist/esm/{chunk-6EMN3BOV.mjs → chunk-I2NMCLNW.mjs} +1 -1
- package/dist/esm/chunk-I2NMCLNW.mjs.map +1 -0
- package/dist/esm/chunk-IBLZ6MZU.mjs +2 -0
- package/dist/esm/chunk-IBLZ6MZU.mjs.map +1 -0
- package/dist/esm/{chunk-M2GJ6B3I.mjs → chunk-IBYXIO7Q.mjs} +2 -2
- package/dist/esm/chunk-IBYXIO7Q.mjs.map +1 -0
- package/dist/esm/{chunk-EXP5STXZ.mjs → chunk-J245N3XF.mjs} +1 -1
- package/dist/esm/chunk-J245N3XF.mjs.map +1 -0
- package/dist/esm/{chunk-XP34ZZRH.mjs → chunk-J24ZBP6F.mjs} +2 -2
- package/dist/esm/chunk-J24ZBP6F.mjs.map +1 -0
- package/dist/esm/{chunk-Y35QNVIJ.mjs → chunk-JCDHXZTA.mjs} +2 -2
- package/dist/esm/chunk-JCDHXZTA.mjs.map +1 -0
- package/dist/esm/{chunk-E2X3MVIQ.mjs → chunk-JDFS6SHT.mjs} +2 -2
- package/dist/esm/chunk-JDFS6SHT.mjs.map +1 -0
- package/dist/esm/{chunk-H6YNXJNF.mjs → chunk-JGNMNCQB.mjs} +2 -2
- package/dist/esm/chunk-JGNMNCQB.mjs.map +1 -0
- package/dist/esm/{chunk-O7PQILE3.mjs → chunk-JP2VLTME.mjs} +2 -2
- package/dist/esm/chunk-JP2VLTME.mjs.map +1 -0
- package/dist/esm/{chunk-FVA2OPG4.mjs → chunk-KDMSOCZY.mjs} +1 -1
- package/dist/esm/{chunk-BCUSI3N6.mjs → chunk-KFNDDPOW.mjs} +2 -2
- package/dist/esm/chunk-KFNDDPOW.mjs.map +1 -0
- package/dist/esm/{chunk-RONLES3F.mjs → chunk-KIP6IQMK.mjs} +2 -2
- package/dist/esm/chunk-KIP6IQMK.mjs.map +1 -0
- package/dist/esm/chunk-KIW54KWR.mjs +2 -0
- package/dist/esm/{chunk-MQTQWVKC.mjs → chunk-KJBQFBVO.mjs} +2 -2
- package/dist/esm/chunk-KJBQFBVO.mjs.map +1 -0
- package/dist/esm/{chunk-OHRL766V.mjs → chunk-KM6UXNC7.mjs} +2 -2
- package/dist/esm/chunk-KM6UXNC7.mjs.map +1 -0
- package/dist/esm/{chunk-EG7QHK4U.mjs → chunk-KP5ASFWM.mjs} +2 -2
- package/dist/esm/chunk-KP5ASFWM.mjs.map +1 -0
- package/dist/esm/{chunk-NWOMSL6K.mjs → chunk-KRVLR3L4.mjs} +2 -2
- package/dist/esm/chunk-KRVLR3L4.mjs.map +1 -0
- package/dist/esm/{chunk-NJK4DINY.mjs → chunk-KUSCKTCM.mjs} +2 -2
- package/dist/esm/chunk-KUSCKTCM.mjs.map +1 -0
- package/dist/esm/{chunk-ULQ4A44I.mjs → chunk-KUWMUW73.mjs} +2 -2
- package/dist/esm/chunk-KUWMUW73.mjs.map +1 -0
- package/dist/esm/{chunk-UAL27G6B.mjs → chunk-LEKBJ2EG.mjs} +1 -1
- package/dist/esm/chunk-LEKBJ2EG.mjs.map +1 -0
- package/dist/esm/chunk-LVLCMN7X.mjs +2 -0
- package/dist/esm/chunk-LVLCMN7X.mjs.map +1 -0
- package/dist/esm/{chunk-R7FVBWBJ.mjs → chunk-M3GSPPUA.mjs} +2 -2
- package/dist/esm/chunk-M3GSPPUA.mjs.map +1 -0
- package/dist/esm/{chunk-KEYAPEAX.mjs → chunk-N47FTRYO.mjs} +1 -1
- package/dist/esm/chunk-N47FTRYO.mjs.map +1 -0
- package/dist/esm/{chunk-YDZBU2DJ.mjs → chunk-NODYW7DM.mjs} +2 -2
- package/dist/esm/chunk-NODYW7DM.mjs.map +1 -0
- package/dist/esm/chunk-NOFMA27U.mjs +2 -0
- package/dist/esm/chunk-NOFMA27U.mjs.map +1 -0
- package/dist/esm/{chunk-UIWXJU6Z.mjs → chunk-OCVJWO3Z.mjs} +2 -2
- package/dist/esm/chunk-OCVJWO3Z.mjs.map +1 -0
- package/dist/esm/chunk-ONBFUPEC.mjs +2 -0
- package/dist/esm/chunk-ONBFUPEC.mjs.map +1 -0
- package/dist/esm/chunk-OTY3NO7Q.mjs +2 -0
- package/dist/esm/chunk-OTY3NO7Q.mjs.map +1 -0
- package/dist/esm/{chunk-P5V7OZNN.mjs → chunk-OZN3OOJV.mjs} +2 -2
- package/dist/esm/chunk-OZN3OOJV.mjs.map +1 -0
- package/dist/esm/{chunk-XG57ULWZ.mjs → chunk-OZRUYSI3.mjs} +2 -2
- package/dist/esm/chunk-OZRUYSI3.mjs.map +1 -0
- package/dist/esm/{chunk-WRRQ7L5K.mjs → chunk-PCLU4KLY.mjs} +2 -2
- package/dist/esm/chunk-PCLU4KLY.mjs.map +1 -0
- package/dist/esm/{chunk-LR65XHSF.mjs → chunk-PHP47DI4.mjs} +2 -2
- package/dist/esm/chunk-PHP47DI4.mjs.map +1 -0
- package/dist/esm/chunk-PRZ7AIGA.mjs +2 -0
- package/dist/esm/chunk-PRZ7AIGA.mjs.map +1 -0
- package/dist/esm/chunk-QQIVWB6G.mjs +2 -0
- package/dist/esm/chunk-QQIVWB6G.mjs.map +1 -0
- package/dist/esm/{chunk-ZBDEBFLY.mjs → chunk-RJKLM6YJ.mjs} +2 -2
- package/dist/esm/chunk-RJKLM6YJ.mjs.map +1 -0
- package/dist/esm/{chunk-FL2G3JFQ.mjs → chunk-RQPOJQIS.mjs} +2 -2
- package/dist/esm/chunk-RQPOJQIS.mjs.map +1 -0
- package/dist/esm/chunk-S4BBYLCO.mjs +2 -0
- package/dist/esm/chunk-S4BBYLCO.mjs.map +1 -0
- package/dist/esm/{chunk-F3C6KUOA.mjs → chunk-SARKEXHD.mjs} +2 -2
- package/dist/esm/chunk-SARKEXHD.mjs.map +1 -0
- package/dist/esm/chunk-SV6XYAEJ.mjs +2 -0
- package/dist/esm/chunk-SV6XYAEJ.mjs.map +1 -0
- package/dist/esm/chunk-SYFG3I44.mjs +2 -0
- package/dist/esm/chunk-SYFG3I44.mjs.map +1 -0
- package/dist/esm/{chunk-KQYOM3J6.mjs → chunk-U2BCB2ZR.mjs} +2 -2
- package/dist/esm/chunk-U2BCB2ZR.mjs.map +1 -0
- package/dist/esm/{chunk-POSSCOHV.mjs → chunk-UDWGG7VY.mjs} +2 -2
- package/dist/esm/chunk-UDWGG7VY.mjs.map +1 -0
- package/dist/esm/{chunk-G4JQEJQT.mjs → chunk-UEMSB6ON.mjs} +2 -2
- package/dist/esm/chunk-UEMSB6ON.mjs.map +1 -0
- package/dist/esm/{chunk-V2YXCX3Q.mjs → chunk-UIOKQOUS.mjs} +2 -2
- package/dist/esm/{chunk-YZ2IE7W2.mjs → chunk-ULIFNOYF.mjs} +2 -2
- package/dist/esm/chunk-ULIFNOYF.mjs.map +1 -0
- package/dist/esm/{chunk-HXSCC3UV.mjs → chunk-UQHGL4F3.mjs} +2 -2
- package/dist/esm/chunk-UQHGL4F3.mjs.map +1 -0
- package/dist/esm/{chunk-TEM2STPT.mjs → chunk-VCSS3V44.mjs} +2 -2
- package/dist/esm/chunk-VCSS3V44.mjs.map +1 -0
- package/dist/esm/{chunk-3RBIEWVC.mjs → chunk-VDCQU3UG.mjs} +2 -2
- package/dist/esm/chunk-VDCQU3UG.mjs.map +1 -0
- package/dist/esm/{chunk-SCHHDWWN.mjs → chunk-VLTTWTZJ.mjs} +2 -2
- package/dist/esm/chunk-VLTTWTZJ.mjs.map +1 -0
- package/dist/esm/chunk-VOB4QKW3.mjs +2 -0
- package/dist/esm/chunk-VOB4QKW3.mjs.map +1 -0
- package/dist/esm/{chunk-OGX4PXYG.mjs → chunk-VQJIGBIR.mjs} +2 -2
- package/dist/esm/chunk-VQJIGBIR.mjs.map +1 -0
- package/dist/esm/{chunk-7NYFGX5Q.mjs → chunk-WCA7L75D.mjs} +2 -2
- package/dist/esm/chunk-WCA7L75D.mjs.map +1 -0
- package/dist/esm/{chunk-SCHZ67F3.mjs → chunk-WNCWH4Z2.mjs} +2 -2
- package/dist/esm/chunk-WNCWH4Z2.mjs.map +1 -0
- package/dist/esm/{chunk-SS4IPKAI.mjs → chunk-WUNJA7HN.mjs} +2 -2
- package/dist/esm/chunk-WUNJA7HN.mjs.map +1 -0
- package/dist/esm/{chunk-WLZYSLHP.mjs → chunk-XCM2PVNZ.mjs} +2 -2
- package/dist/esm/chunk-XCM2PVNZ.mjs.map +1 -0
- package/dist/esm/chunk-XOCRDV2V.mjs +2 -0
- package/dist/esm/chunk-XOCRDV2V.mjs.map +1 -0
- package/dist/esm/{chunk-VSMEQLV6.mjs → chunk-XU2II3PY.mjs} +2 -2
- package/dist/esm/chunk-XU2II3PY.mjs.map +1 -0
- package/dist/esm/{chunk-LZMZCQXB.mjs → chunk-YTHUVHCC.mjs} +2 -2
- package/dist/esm/chunk-YTHUVHCC.mjs.map +1 -0
- package/dist/esm/{chunk-A3AGTDS6.mjs → chunk-ZCUT3APC.mjs} +2 -2
- package/dist/esm/chunk-ZCUT3APC.mjs.map +1 -0
- package/dist/esm/{chunk-WVITQ3K7.mjs → chunk-ZD4EQZKJ.mjs} +2 -2
- package/dist/esm/chunk-ZD4EQZKJ.mjs.map +1 -0
- package/dist/esm/{chunk-BOYYQAB4.mjs → chunk-ZINOJTLU.mjs} +2 -2
- package/dist/esm/chunk-ZINOJTLU.mjs.map +1 -0
- package/dist/esm/{chunk-MJ7K6MUZ.mjs → chunk-ZJDPELCV.mjs} +2 -2
- package/dist/esm/chunk-ZJDPELCV.mjs.map +1 -0
- package/dist/esm/{chunk-XFT2EE4O.mjs → chunk-ZWJVQTDY.mjs} +2 -2
- package/dist/esm/chunk-ZWJVQTDY.mjs.map +1 -0
- package/dist/esm/cli/index.mjs +1 -1
- package/dist/esm/cli/localNode.d.mts +26 -10
- package/dist/esm/cli/localNode.mjs +1 -1
- package/dist/esm/cli/move.d.mts +104 -123
- package/dist/esm/cli/move.mjs +1 -1
- package/dist/esm/client/core.d.mts +21 -6
- package/dist/esm/client/core.mjs +1 -1
- package/dist/esm/client/get.d.mts +34 -6
- package/dist/esm/client/get.mjs +1 -1
- package/dist/esm/client/index.mjs +1 -1
- package/dist/esm/client/post.d.mts +63 -6
- package/dist/esm/client/post.mjs +1 -1
- package/dist/esm/client/types.d.mts +21 -8
- package/dist/esm/client/types.mjs +1 -1
- package/dist/esm/core/account/index.mjs +1 -1
- package/dist/esm/core/account/utils/address.d.mts +1 -1
- package/dist/esm/core/account/utils/address.mjs +1 -1
- package/dist/esm/core/account/utils/index.mjs +1 -1
- package/dist/esm/core/accountAddress.d.mts +63 -48
- package/dist/esm/core/accountAddress.mjs +1 -1
- package/dist/esm/core/authenticationKey.d.mts +1 -1
- package/dist/esm/core/authenticationKey.mjs +1 -1
- package/dist/esm/core/common.d.mts +6 -0
- package/dist/esm/core/common.mjs +1 -1
- package/dist/esm/core/crypto/ed25519.d.mts +77 -26
- package/dist/esm/core/crypto/ed25519.mjs +1 -1
- package/dist/esm/core/crypto/ephemeral.d.mts +36 -14
- package/dist/esm/core/crypto/ephemeral.mjs +1 -1
- package/dist/esm/core/crypto/federatedKeyless.d.mts +2 -14
- package/dist/esm/core/crypto/federatedKeyless.mjs +1 -1
- package/dist/esm/core/crypto/hdKey.d.mts +9 -6
- package/dist/esm/core/crypto/hdKey.mjs +1 -1
- package/dist/esm/core/crypto/index.d.mts +1 -1
- package/dist/esm/core/crypto/index.mjs +1 -1
- package/dist/esm/core/crypto/keyless.d.mts +126 -45
- package/dist/esm/core/crypto/keyless.mjs +1 -1
- package/dist/esm/core/crypto/multiEd25519.d.mts +45 -6
- package/dist/esm/core/crypto/multiEd25519.mjs +1 -1
- package/dist/esm/core/crypto/multiKey.d.mts +58 -7
- package/dist/esm/core/crypto/multiKey.mjs +1 -1
- package/dist/esm/core/crypto/poseidon.d.mts +35 -5
- package/dist/esm/core/crypto/poseidon.mjs +1 -1
- package/dist/esm/core/crypto/privateKey.d.mts +10 -6
- package/dist/esm/core/crypto/proof.d.mts +2 -6
- package/dist/esm/core/crypto/proof.mjs +1 -1
- package/dist/esm/core/crypto/publicKey.d.mts +1 -1
- package/dist/esm/core/crypto/publicKey.mjs +1 -1
- package/dist/esm/core/crypto/secp256k1.d.mts +72 -27
- package/dist/esm/core/crypto/secp256k1.mjs +1 -1
- package/dist/esm/core/crypto/signature.d.mts +5 -4
- package/dist/esm/core/crypto/signature.mjs +1 -1
- package/dist/esm/core/crypto/singleKey.d.mts +63 -5
- package/dist/esm/core/crypto/singleKey.mjs +1 -1
- package/dist/esm/core/crypto/utils.mjs +1 -1
- package/dist/esm/core/hex.d.mts +27 -28
- package/dist/esm/core/hex.mjs +1 -1
- package/dist/esm/core/index.d.mts +1 -1
- package/dist/esm/core/index.mjs +1 -1
- package/dist/esm/index.d.mts +2 -2
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/internal/account.d.mts +191 -12
- package/dist/esm/internal/account.mjs +1 -1
- package/dist/esm/internal/ans.d.mts +206 -14
- package/dist/esm/internal/ans.mjs +1 -1
- package/dist/esm/internal/coin.d.mts +13 -1
- package/dist/esm/internal/coin.mjs +1 -1
- package/dist/esm/internal/digitalAsset.d.mts +330 -2
- package/dist/esm/internal/digitalAsset.mjs +1 -1
- package/dist/esm/internal/event.d.mts +39 -0
- package/dist/esm/internal/event.mjs +1 -1
- package/dist/esm/internal/faucet.d.mts +14 -0
- package/dist/esm/internal/faucet.mjs +1 -1
- package/dist/esm/internal/fungibleAsset.d.mts +48 -2
- package/dist/esm/internal/fungibleAsset.mjs +1 -1
- package/dist/esm/internal/general.d.mts +46 -0
- package/dist/esm/internal/general.mjs +1 -1
- package/dist/esm/internal/keyless.d.mts +38 -2
- package/dist/esm/internal/keyless.mjs +1 -1
- package/dist/esm/internal/object.d.mts +21 -0
- package/dist/esm/internal/object.mjs +1 -1
- package/dist/esm/internal/staking.d.mts +26 -0
- package/dist/esm/internal/staking.mjs +1 -1
- package/dist/esm/internal/table.d.mts +33 -1
- package/dist/esm/internal/table.mjs +1 -1
- package/dist/esm/internal/transaction.d.mts +107 -5
- package/dist/esm/internal/transaction.mjs +1 -1
- package/dist/esm/internal/transactionSubmission.d.mts +72 -29
- package/dist/esm/internal/transactionSubmission.mjs +1 -1
- package/dist/esm/internal/view.d.mts +1 -1
- package/dist/esm/internal/view.mjs +1 -1
- package/dist/esm/publicKey-_tPa99ea.d.mts +151 -0
- package/dist/esm/transactions/authenticator/account.d.mts +66 -17
- package/dist/esm/transactions/authenticator/account.mjs +1 -1
- package/dist/esm/transactions/authenticator/index.d.mts +1 -1
- package/dist/esm/transactions/authenticator/index.mjs +1 -1
- package/dist/esm/transactions/authenticator/transaction.d.mts +53 -20
- package/dist/esm/transactions/authenticator/transaction.mjs +1 -1
- package/dist/esm/transactions/index.d.mts +1 -1
- package/dist/esm/transactions/index.mjs +1 -1
- package/dist/esm/transactions/instances/chainId.d.mts +20 -1
- package/dist/esm/transactions/instances/chainId.mjs +1 -1
- package/dist/esm/transactions/instances/identifier.d.mts +21 -3
- package/dist/esm/transactions/instances/identifier.mjs +1 -1
- package/dist/esm/transactions/instances/index.d.mts +1 -1
- package/dist/esm/transactions/instances/index.mjs +1 -1
- package/dist/esm/transactions/instances/moduleId.d.mts +22 -8
- package/dist/esm/transactions/instances/moduleId.mjs +1 -1
- package/dist/esm/transactions/instances/multiAgentTransaction.d.mts +24 -8
- package/dist/esm/transactions/instances/multiAgentTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/rawTransaction.d.mts +31 -4
- package/dist/esm/transactions/instances/rawTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/rotationProofChallenge.d.mts +25 -3
- package/dist/esm/transactions/instances/rotationProofChallenge.mjs +1 -1
- package/dist/esm/transactions/instances/signedTransaction.d.mts +29 -7
- package/dist/esm/transactions/instances/signedTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/simpleTransaction.d.mts +23 -8
- package/dist/esm/transactions/instances/simpleTransaction.mjs +1 -1
- package/dist/esm/transactions/instances/transactionArgument.d.mts +23 -0
- package/dist/esm/transactions/instances/transactionPayload.d.mts +72 -26
- package/dist/esm/transactions/instances/transactionPayload.mjs +1 -1
- package/dist/esm/transactions/management/accountSequenceNumber.d.mts +37 -11
- package/dist/esm/transactions/management/accountSequenceNumber.mjs +1 -1
- package/dist/esm/transactions/management/asyncQueue.d.mts +22 -19
- package/dist/esm/transactions/management/asyncQueue.mjs +1 -1
- package/dist/esm/transactions/management/index.d.mts +2 -2
- package/dist/esm/transactions/management/index.mjs +1 -1
- package/dist/esm/transactions/management/transactionWorker.d.mts +67 -36
- package/dist/esm/transactions/management/transactionWorker.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/helpers.d.mts +74 -4
- package/dist/esm/transactions/transactionBuilder/helpers.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/index.d.mts +1 -1
- package/dist/esm/transactions/transactionBuilder/index.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/remoteAbi.d.mts +45 -23
- package/dist/esm/transactions/transactionBuilder/remoteAbi.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/signingMessage.d.mts +20 -15
- package/dist/esm/transactions/transactionBuilder/signingMessage.mjs +1 -1
- package/dist/esm/transactions/transactionBuilder/transactionBuilder.d.mts +101 -30
- package/dist/esm/transactions/transactionBuilder/transactionBuilder.mjs +1 -1
- package/dist/esm/transactions/typeTag/index.d.mts +244 -3
- package/dist/esm/transactions/typeTag/index.mjs +1 -1
- package/dist/esm/transactions/typeTag/parser.d.mts +31 -2
- package/dist/esm/transactions/typeTag/parser.mjs +1 -1
- package/dist/esm/transactions/types.d.mts +82 -34
- package/dist/esm/types/generated/queries.mjs +1 -1
- package/dist/esm/types/generated/types.mjs +1 -1
- package/dist/esm/types/index.d.mts +320 -59
- package/dist/esm/types/index.mjs +1 -1
- package/dist/esm/types/indexer.d.mts +65 -2
- package/dist/esm/types/keyless.d.mts +18 -0
- package/dist/esm/utils/apiEndpoints.d.mts +3 -0
- package/dist/esm/utils/apiEndpoints.mjs +1 -1
- package/dist/esm/utils/const.d.mts +2 -4
- package/dist/esm/utils/const.mjs +1 -1
- package/dist/esm/utils/helpers.d.mts +25 -10
- package/dist/esm/utils/helpers.mjs +1 -1
- package/dist/esm/utils/index.mjs +1 -1
- package/dist/esm/utils/memoize.d.mts +12 -10
- package/dist/esm/utils/memoize.mjs +1 -1
- package/dist/esm/utils/normalizeBundle.d.mts +11 -5
- 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 +3 -2
- package/src/account/AbstractKeylessAccount.ts +7 -5
- package/src/account/Account.ts +88 -54
- package/src/account/Ed25519Account.ts +56 -21
- package/src/account/EphemeralKeyPair.ts +50 -15
- package/src/account/FederatedKeylessAccount.ts +4 -3
- package/src/account/KeylessAccount.ts +46 -3
- package/src/account/MultiKeyAccount.ts +56 -35
- package/src/account/SingleKeyAccount.ts +60 -28
- package/src/api/account.ts +443 -159
- package/src/api/ans.ts +367 -120
- package/src/api/aptos.ts +38 -5
- package/src/api/aptosConfig.ts +102 -14
- package/src/api/coin.ts +49 -12
- package/src/api/digitalAsset.ts +707 -296
- package/src/api/event.ts +128 -25
- package/src/api/faucet.ts +44 -7
- package/src/api/fungibleAsset.ts +149 -46
- package/src/api/general.ts +168 -52
- package/src/api/keyless.ts +117 -21
- package/src/api/object.ts +49 -5
- package/src/api/staking.ts +84 -15
- package/src/api/table.ts +117 -37
- package/src/api/transaction.ts +438 -107
- package/src/api/transactionSubmission/build.ts +98 -12
- package/src/api/transactionSubmission/helpers.ts +79 -0
- package/src/api/transactionSubmission/management.ts +110 -10
- package/src/api/transactionSubmission/sign.ts +96 -2
- package/src/api/transactionSubmission/simulate.ts +139 -14
- package/src/api/transactionSubmission/submit.ts +103 -12
- package/src/api/utils.ts +26 -3
- package/src/bcs/deserializer.ts +82 -32
- package/src/bcs/serializable/entryFunctionBytes.ts +27 -6
- package/src/bcs/serializable/fixedBytes.ts +55 -25
- package/src/bcs/serializable/movePrimitives.ts +91 -0
- package/src/bcs/serializable/moveStructs.ts +123 -35
- package/src/bcs/serializer.ts +131 -84
- package/src/cli/localNode.ts +46 -17
- package/src/cli/move.ts +119 -136
- package/src/client/core.ts +22 -7
- package/src/client/get.ts +34 -6
- package/src/client/post.ts +63 -6
- package/src/client/types.ts +40 -13
- package/src/core/account/utils/address.ts +1 -1
- package/src/core/accountAddress.ts +63 -50
- package/src/core/authenticationKey.ts +47 -20
- package/src/core/common.ts +6 -0
- package/src/core/crypto/ed25519.ts +76 -25
- package/src/core/crypto/ephemeral.ts +37 -21
- package/src/core/crypto/federatedKeyless.ts +1 -20
- package/src/core/crypto/hdKey.ts +10 -7
- package/src/core/crypto/keyless.ts +140 -63
- package/src/core/crypto/multiEd25519.ts +44 -5
- package/src/core/crypto/multiKey.ts +66 -19
- package/src/core/crypto/poseidon.ts +72 -5
- package/src/core/crypto/privateKey.ts +9 -5
- package/src/core/crypto/proof.ts +3 -12
- package/src/core/crypto/publicKey.ts +15 -5
- package/src/core/crypto/secp256k1.ts +76 -26
- package/src/core/crypto/signature.ts +7 -4
- package/src/core/crypto/singleKey.ts +62 -5
- package/src/core/hex.ts +27 -28
- package/src/internal/account.ts +248 -12
- package/src/internal/ans.ts +219 -15
- package/src/internal/coin.ts +12 -0
- package/src/internal/digitalAsset.ts +344 -3
- package/src/internal/event.ts +51 -0
- package/src/internal/faucet.ts +14 -0
- package/src/internal/fungibleAsset.ts +46 -0
- package/src/internal/general.ts +46 -0
- package/src/internal/keyless.ts +37 -1
- package/src/internal/move/jwks/build/jwk/BuildInfo.yaml +56 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/account.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/aggregator.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/aggregator_factory.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/aggregator_v2.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/aptos_account.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/aptos_coin.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/aptos_governance.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/block.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/chain_id.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/chain_status.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/code.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/coin.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/config_buffer.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/consensus_config.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/create_signer.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/delegation_pool.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/dispatchable_fungible_asset.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/dkg.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/event.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/execution_config.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/function_info.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/fungible_asset.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/gas_schedule.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/genesis.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/governance_proposal.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/guid.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/jwk_consensus_config.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/jwks.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/keyless_account.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/managed_coin.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/multisig_account.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/object.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/object_code_deployment.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/optional_aggregator.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/primary_fungible_store.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/randomness.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/randomness_api_v0_config.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/randomness_config.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/randomness_config_seqnum.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/reconfiguration.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/reconfiguration_state.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/reconfiguration_with_dkg.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/resource_account.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/stake.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/staking_config.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/staking_contract.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/staking_proxy.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/state_storage.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/storage_gas.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/system_addresses.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/timestamp.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/transaction_context.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/transaction_fee.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/transaction_validation.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/util.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/validator_consensus_info.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/version.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/vesting.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosFramework/voting.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/any.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/aptos_hash.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/big_vector.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/bls12381.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/bls12381_algebra.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/bn254_algebra.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/capability.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/comparator.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/copyable_any.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/crypto_algebra.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/debug.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/ed25519.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/fixed_point64.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/from_bcs.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/math128.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/math64.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/math_fixed.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/math_fixed64.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/multi_ed25519.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/pool_u64.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/pool_u64_unbound.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/ristretto255.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/ristretto255_bulletproofs.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/ristretto255_elgamal.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/ristretto255_pedersen.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/secp256k1.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/simple_map.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/smart_table.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/smart_vector.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/string_utils.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/table.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/table_with_length.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/AptosStdlib/type_info.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/acl.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/bcs.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/bit_vector.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/error.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/features.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/fixed_point32.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/hash.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/option.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/signer.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/string.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_modules/dependencies/MoveStdlib/vector.mv +0 -0
- package/src/internal/move/jwks/build/jwk/bytecode_scripts/main.mv +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/account.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/aggregator.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/aggregator_factory.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/aggregator_v2.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/aptos_account.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/aptos_coin.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/aptos_governance.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/block.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/chain_id.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/chain_status.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/code.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/coin.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/config_buffer.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/consensus_config.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/create_signer.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/delegation_pool.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/dispatchable_fungible_asset.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/dkg.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/event.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/execution_config.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/function_info.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/fungible_asset.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/gas_schedule.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/genesis.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/governance_proposal.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/guid.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/jwk_consensus_config.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/jwks.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/keyless_account.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/managed_coin.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/multisig_account.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/object.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/object_code_deployment.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/optional_aggregator.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/primary_fungible_store.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/randomness.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/randomness_api_v0_config.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/randomness_config.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/randomness_config_seqnum.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/reconfiguration.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/reconfiguration_state.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/reconfiguration_with_dkg.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/resource_account.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/stake.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/staking_config.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/staking_contract.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/staking_proxy.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/state_storage.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/storage_gas.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/system_addresses.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/timestamp.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/transaction_context.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/transaction_fee.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/transaction_validation.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/util.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/validator_consensus_info.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/version.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/vesting.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosFramework/voting.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/any.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/aptos_hash.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/big_vector.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/bls12381.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/bls12381_algebra.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/bn254_algebra.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/capability.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/comparator.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/copyable_any.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/crypto_algebra.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/debug.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/ed25519.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/fixed_point64.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/from_bcs.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/math128.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/math64.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/math_fixed.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/math_fixed64.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/multi_ed25519.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/pool_u64.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/pool_u64_unbound.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/ristretto255.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/ristretto255_bulletproofs.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/ristretto255_elgamal.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/ristretto255_pedersen.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/secp256k1.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/simple_map.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/smart_table.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/smart_vector.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/string_utils.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/table.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/table_with_length.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/AptosStdlib/type_info.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/acl.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/bcs.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/bit_vector.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/error.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/features.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/fixed_point32.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/hash.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/option.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/signer.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/string.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/dependencies/MoveStdlib/vector.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/source_maps/main.mvsm +0 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/account.move +1533 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/aggregator.move +48 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/aggregator_factory.move +66 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/aggregator_v2.move +280 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/aptos_account.move +443 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/aptos_coin.move +204 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/aptos_governance.move +1387 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/block.move +394 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/chain_id.move +41 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/chain_status.move +48 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/code.move +367 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/coin.move +2214 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/config_buffer.move +101 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/consensus_config.move +77 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/create_signer.move +21 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/delegation_pool.move +5568 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/dispatchable_fungible_asset.move +228 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/dkg.move +121 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/event.move +92 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/execution_config.move +66 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/function_info.move +100 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/fungible_asset.move +1566 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/gas_schedule.move +176 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/genesis.move +550 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/governance_proposal.move +23 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/guid.move +68 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/jwk_consensus_config.move +148 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/jwks.move +817 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/keyless_account.move +312 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/managed_coin.move +205 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/multisig_account.move +2477 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/object.move +1073 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/object_code_deployment.move +147 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/optional_aggregator.move +295 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/primary_fungible_store.move +405 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/randomness.move +574 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/randomness_api_v0_config.move +57 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/randomness_config.move +153 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/randomness_config_seqnum.move +49 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/reconfiguration.move +237 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/reconfiguration_state.move +132 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/reconfiguration_with_dkg.move +69 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/resource_account.move +267 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/stake.move +3286 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/staking_config.move +686 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/staking_contract.move +1618 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/staking_proxy.move +228 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/state_storage.move +90 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/storage_gas.move +622 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/system_addresses.move +82 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/timestamp.move +88 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/transaction_context.move +262 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/transaction_fee.move +457 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/transaction_validation.move +501 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/util.move +16 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/validator_consensus_info.move +42 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/version.move +115 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/vesting.move +2183 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosFramework/voting.move +1279 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/any.move +57 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/aptos_hash.move +253 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/big_vector.move +469 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/bls12381.move +985 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/bls12381_algebra.move +802 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/bn254_algebra.move +855 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/capability.move +193 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/comparator.move +173 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/copyable_any.move +45 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/crypto_algebra.move +351 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/debug.move +278 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/ed25519.move +262 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/fixed_point64.move +447 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/from_bcs.move +91 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/math128.move +381 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/math64.move +336 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/math_fixed.move +139 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/math_fixed64.move +142 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/multi_ed25519.move +482 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/pool_u64.move +571 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/pool_u64_unbound.move +270 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/ristretto255.move +1310 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/ristretto255_bulletproofs.move +253 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/ristretto255_elgamal.move +234 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/ristretto255_pedersen.move +158 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/secp256k1.move +114 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/simple_map.move +319 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/smart_table.move +769 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/smart_vector.move +766 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/string_utils.move +148 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/table.move +152 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/table_with_length.move +141 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/AptosStdlib/type_info.move +351 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/acl.move +46 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/bcs.move +27 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/bit_vector.move +239 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/error.move +88 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/features.move +780 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/fixed_point32.move +295 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/hash.move +8 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/option.move +356 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/signer.move +21 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/string.move +93 -0
- package/src/internal/move/jwks/build/jwk/sources/dependencies/MoveStdlib/vector.move +669 -0
- package/src/internal/move/jwks/build/jwk/sources/main.move +20 -0
- package/src/internal/object.ts +21 -0
- package/src/internal/queries/getTableItemsData.graphql +1 -1
- package/src/internal/queries/getTableItemsMetadata.graphql +1 -1
- package/src/internal/staking.ts +27 -1
- package/src/internal/table.ts +32 -0
- package/src/internal/transaction.ts +120 -7
- package/src/internal/transactionSubmission.ts +86 -30
- package/src/transactions/authenticator/account.ts +65 -16
- package/src/transactions/authenticator/transaction.ts +52 -19
- package/src/transactions/instances/chainId.ts +20 -1
- package/src/transactions/instances/identifier.ts +21 -3
- package/src/transactions/instances/moduleId.ts +22 -8
- package/src/transactions/instances/multiAgentTransaction.ts +26 -10
- package/src/transactions/instances/rawTransaction.ts +31 -4
- package/src/transactions/instances/rotationProofChallenge.ts +24 -2
- package/src/transactions/instances/signedTransaction.ts +28 -6
- package/src/transactions/instances/simpleTransaction.ts +26 -11
- package/src/transactions/instances/transactionArgument.ts +26 -0
- package/src/transactions/instances/transactionPayload.ts +73 -26
- package/src/transactions/management/accountSequenceNumber.ts +38 -11
- package/src/transactions/management/asyncQueue.ts +22 -19
- package/src/transactions/management/transactionWorker.ts +66 -40
- package/src/transactions/transactionBuilder/helpers.ts +130 -3
- package/src/transactions/transactionBuilder/remoteAbi.ts +71 -30
- package/src/transactions/transactionBuilder/signingMessage.ts +19 -14
- package/src/transactions/transactionBuilder/transactionBuilder.ts +153 -40
- package/src/transactions/typeTag/index.ts +264 -3
- package/src/transactions/typeTag/parser.ts +54 -20
- package/src/transactions/types.ts +81 -33
- package/src/types/index.ts +338 -61
- package/src/types/indexer.ts +82 -2
- package/src/types/keyless.ts +21 -0
- package/src/utils/apiEndpoints.ts +6 -3
- package/src/utils/const.ts +2 -4
- package/src/utils/helpers.ts +25 -10
- package/src/utils/memoize.ts +12 -10
- package/src/utils/normalizeBundle.ts +11 -5
- package/src/version.ts +1 -1
- package/dist/common/chunk-HBPH2AD3.js.map +0 -1
- package/dist/esm/Ed25519Account-B1VMJOY2.d.mts +0 -361
- package/dist/esm/chunk-2AGCC7DU.mjs.map +0 -1
- package/dist/esm/chunk-3RBIEWVC.mjs.map +0 -1
- package/dist/esm/chunk-3VKFVU25.mjs +0 -2
- package/dist/esm/chunk-3VKFVU25.mjs.map +0 -1
- package/dist/esm/chunk-43AF5CUP.mjs.map +0 -1
- package/dist/esm/chunk-44GYWUSH.mjs.map +0 -1
- package/dist/esm/chunk-6EMN3BOV.mjs.map +0 -1
- package/dist/esm/chunk-6VJ3HRHN.mjs +0 -2
- package/dist/esm/chunk-6VJ3HRHN.mjs.map +0 -1
- package/dist/esm/chunk-76OH2Z4Q.mjs +0 -2
- package/dist/esm/chunk-76OH2Z4Q.mjs.map +0 -1
- package/dist/esm/chunk-7NYFGX5Q.mjs.map +0 -1
- package/dist/esm/chunk-7PDF3O5A.mjs.map +0 -1
- package/dist/esm/chunk-7YLVCZYN.mjs +0 -2
- package/dist/esm/chunk-7YLVCZYN.mjs.map +0 -1
- package/dist/esm/chunk-A3AGTDS6.mjs.map +0 -1
- package/dist/esm/chunk-A63SMUOU.mjs +0 -2
- package/dist/esm/chunk-A63SMUOU.mjs.map +0 -1
- package/dist/esm/chunk-AH44UPM4.mjs.map +0 -1
- package/dist/esm/chunk-B3XOTMTY.mjs.map +0 -1
- package/dist/esm/chunk-B5NYEWNM.mjs +0 -2
- package/dist/esm/chunk-B5NYEWNM.mjs.map +0 -1
- package/dist/esm/chunk-BCUSI3N6.mjs.map +0 -1
- package/dist/esm/chunk-BHX5VMNA.mjs +0 -2
- package/dist/esm/chunk-BHX5VMNA.mjs.map +0 -1
- package/dist/esm/chunk-BOYYQAB4.mjs.map +0 -1
- package/dist/esm/chunk-BSUYPXRD.mjs +0 -2
- package/dist/esm/chunk-BSUYPXRD.mjs.map +0 -1
- package/dist/esm/chunk-C26X2GLF.mjs +0 -2
- package/dist/esm/chunk-C26X2GLF.mjs.map +0 -1
- package/dist/esm/chunk-DUDSFTMJ.mjs.map +0 -1
- package/dist/esm/chunk-E2X3MVIQ.mjs.map +0 -1
- package/dist/esm/chunk-E6O72G24.mjs.map +0 -1
- package/dist/esm/chunk-EDHO4MI7.mjs.map +0 -1
- package/dist/esm/chunk-EG7QHK4U.mjs.map +0 -1
- package/dist/esm/chunk-EXP5STXZ.mjs.map +0 -1
- package/dist/esm/chunk-F3C6KUOA.mjs.map +0 -1
- package/dist/esm/chunk-FL2G3JFQ.mjs.map +0 -1
- package/dist/esm/chunk-G4JQEJQT.mjs.map +0 -1
- package/dist/esm/chunk-G5MGSV7Y.mjs +0 -2
- package/dist/esm/chunk-G5MGSV7Y.mjs.map +0 -1
- package/dist/esm/chunk-GNJL4HRI.mjs.map +0 -1
- package/dist/esm/chunk-H6YNXJNF.mjs.map +0 -1
- package/dist/esm/chunk-HAT5S2XX.mjs +0 -2
- package/dist/esm/chunk-HAT5S2XX.mjs.map +0 -1
- package/dist/esm/chunk-HCUQEDI6.mjs.map +0 -1
- package/dist/esm/chunk-HR5XRRIH.mjs +0 -2
- package/dist/esm/chunk-HR5XRRIH.mjs.map +0 -1
- package/dist/esm/chunk-HSIRO3LE.mjs.map +0 -1
- package/dist/esm/chunk-HUYDR6MY.mjs.map +0 -1
- package/dist/esm/chunk-HXSCC3UV.mjs.map +0 -1
- package/dist/esm/chunk-KEYAPEAX.mjs.map +0 -1
- package/dist/esm/chunk-KJBS5RFY.mjs.map +0 -1
- package/dist/esm/chunk-KQYOM3J6.mjs.map +0 -1
- package/dist/esm/chunk-LG7RJQ57.mjs.map +0 -1
- package/dist/esm/chunk-LR65XHSF.mjs.map +0 -1
- package/dist/esm/chunk-LWRYJL3W.mjs +0 -2
- package/dist/esm/chunk-LWRYJL3W.mjs.map +0 -1
- package/dist/esm/chunk-LZMZCQXB.mjs.map +0 -1
- package/dist/esm/chunk-M2GJ6B3I.mjs.map +0 -1
- package/dist/esm/chunk-MHRQHVM3.mjs.map +0 -1
- package/dist/esm/chunk-MJ7K6MUZ.mjs.map +0 -1
- package/dist/esm/chunk-MLDQ2TY2.mjs +0 -2
- package/dist/esm/chunk-MLDQ2TY2.mjs.map +0 -1
- package/dist/esm/chunk-MQGW234H.mjs +0 -2
- package/dist/esm/chunk-MQGW234H.mjs.map +0 -1
- package/dist/esm/chunk-MQTQWVKC.mjs.map +0 -1
- package/dist/esm/chunk-NJK4DINY.mjs.map +0 -1
- package/dist/esm/chunk-NMD45OTM.mjs.map +0 -1
- package/dist/esm/chunk-NWOMSL6K.mjs.map +0 -1
- package/dist/esm/chunk-O7PQILE3.mjs.map +0 -1
- package/dist/esm/chunk-OGX4PXYG.mjs.map +0 -1
- package/dist/esm/chunk-OHRL766V.mjs.map +0 -1
- package/dist/esm/chunk-OUZ7HH65.mjs +0 -2
- package/dist/esm/chunk-OUZ7HH65.mjs.map +0 -1
- package/dist/esm/chunk-P5V7OZNN.mjs.map +0 -1
- package/dist/esm/chunk-POSSCOHV.mjs.map +0 -1
- package/dist/esm/chunk-Q4XR6QOZ.mjs +0 -2
- package/dist/esm/chunk-QB4XTGDH.mjs.map +0 -1
- package/dist/esm/chunk-QQU4IQ27.mjs +0 -2
- package/dist/esm/chunk-QQU4IQ27.mjs.map +0 -1
- package/dist/esm/chunk-R7FVBWBJ.mjs.map +0 -1
- package/dist/esm/chunk-RONLES3F.mjs.map +0 -1
- package/dist/esm/chunk-SCHHDWWN.mjs.map +0 -1
- package/dist/esm/chunk-SCHZ67F3.mjs.map +0 -1
- package/dist/esm/chunk-SKBUDJFL.mjs.map +0 -1
- package/dist/esm/chunk-SPQKH5BG.mjs.map +0 -1
- package/dist/esm/chunk-SRPI2FFA.mjs.map +0 -1
- package/dist/esm/chunk-SS4IPKAI.mjs.map +0 -1
- package/dist/esm/chunk-SSYYCQGU.mjs.map +0 -1
- package/dist/esm/chunk-SUJLWCRN.mjs +0 -2
- package/dist/esm/chunk-SUJLWCRN.mjs.map +0 -1
- package/dist/esm/chunk-TDGQGILY.mjs.map +0 -1
- package/dist/esm/chunk-TEM2STPT.mjs.map +0 -1
- package/dist/esm/chunk-U6Z4FNB7.mjs.map +0 -1
- package/dist/esm/chunk-UAEODDZS.mjs +0 -2
- package/dist/esm/chunk-UAL27G6B.mjs.map +0 -1
- package/dist/esm/chunk-UIM56NFQ.mjs.map +0 -1
- package/dist/esm/chunk-UIWXJU6Z.mjs.map +0 -1
- package/dist/esm/chunk-ULQ4A44I.mjs.map +0 -1
- package/dist/esm/chunk-URF3VICX.mjs.map +0 -1
- package/dist/esm/chunk-VDSDMO5B.mjs +0 -2
- package/dist/esm/chunk-VDSDMO5B.mjs.map +0 -1
- package/dist/esm/chunk-VSMEQLV6.mjs.map +0 -1
- package/dist/esm/chunk-VTHJWK3M.mjs.map +0 -1
- package/dist/esm/chunk-VVHFK6WA.mjs +0 -2
- package/dist/esm/chunk-VVHFK6WA.mjs.map +0 -1
- package/dist/esm/chunk-VWQQLTCH.mjs.map +0 -1
- package/dist/esm/chunk-WLZYSLHP.mjs.map +0 -1
- package/dist/esm/chunk-WRRQ7L5K.mjs.map +0 -1
- package/dist/esm/chunk-WVITQ3K7.mjs.map +0 -1
- package/dist/esm/chunk-XFT2EE4O.mjs.map +0 -1
- package/dist/esm/chunk-XG57ULWZ.mjs.map +0 -1
- package/dist/esm/chunk-XP34ZZRH.mjs.map +0 -1
- package/dist/esm/chunk-Y35QNVIJ.mjs.map +0 -1
- package/dist/esm/chunk-YDZBU2DJ.mjs.map +0 -1
- package/dist/esm/chunk-YPHH6CAO.mjs +0 -2
- package/dist/esm/chunk-YPHH6CAO.mjs.map +0 -1
- package/dist/esm/chunk-YUNDX5I7.mjs.map +0 -1
- package/dist/esm/chunk-YZ2IE7W2.mjs.map +0 -1
- package/dist/esm/chunk-Z7G2ODBC.mjs +0 -2
- package/dist/esm/chunk-Z7G2ODBC.mjs.map +0 -1
- package/dist/esm/chunk-ZBDEBFLY.mjs.map +0 -1
- package/dist/esm/publicKey-B3XRNhHO.d.mts +0 -113
- /package/dist/esm/{chunk-FVA2OPG4.mjs.map → chunk-KDMSOCZY.mjs.map} +0 -0
- /package/dist/esm/{chunk-Q4XR6QOZ.mjs.map → chunk-KIW54KWR.mjs.map} +0 -0
- /package/dist/esm/{chunk-V2YXCX3Q.mjs.map → chunk-UIOKQOUS.mjs.map} +0 -0
|
@@ -8,14 +8,10 @@ import '../../types/generated/operations.mjs';
|
|
|
8
8
|
import '../../types/generated/types.mjs';
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
* An abstract representation of a
|
|
12
|
-
*
|
|
11
|
+
* An abstract representation of a cryptographic proof associated with specific
|
|
12
|
+
* zero-knowledge proof schemes, such as Groth16 and PLONK.
|
|
13
13
|
*/
|
|
14
14
|
declare abstract class Proof extends Serializable {
|
|
15
|
-
/**
|
|
16
|
-
* Get the proof as a hex string with a 0x prefix e.g. 0x123456...
|
|
17
|
-
*/
|
|
18
|
-
toString(): string;
|
|
19
15
|
}
|
|
20
16
|
|
|
21
17
|
export { Proof };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../../chunk-
|
|
1
|
+
import{a}from"../../chunk-ONBFUPEC.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-44HKW3VX.mjs";import"../../chunk-6FLHGOKP.mjs";import"../../chunk-OZN3OOJV.mjs";import"../../chunk-JGNMNCQB.mjs";import"../../chunk-7XS45O6M.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-QQIVWB6G.mjs";import"../../chunk-KFNDDPOW.mjs";import"../../chunk-6Q2O5G3J.mjs";import"../../chunk-N47FTRYO.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as Proof};
|
|
2
2
|
//# sourceMappingURL=proof.mjs.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../../types/index.mjs';
|
|
2
2
|
import '../../bcs/serializer.mjs';
|
|
3
|
-
export { a as AccountPublicKey, P as PublicKey, V as VerifySignatureArgs } from '../../publicKey-
|
|
3
|
+
export { a as AccountPublicKey, P as PublicKey, V as VerifySignatureArgs } from '../../publicKey-_tPa99ea.mjs';
|
|
4
4
|
import './signature.mjs';
|
|
5
5
|
import '../../utils/apiEndpoints.mjs';
|
|
6
6
|
import '../../types/indexer.mjs';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b}from"../../chunk-
|
|
1
|
+
import{a,b}from"../../chunk-4OV7QU2U.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-44HKW3VX.mjs";import"../../chunk-6FLHGOKP.mjs";import"../../chunk-OZN3OOJV.mjs";import"../../chunk-JGNMNCQB.mjs";import"../../chunk-7XS45O6M.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-QQIVWB6G.mjs";import"../../chunk-KFNDDPOW.mjs";import"../../chunk-6Q2O5G3J.mjs";import"../../chunk-N47FTRYO.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-KDMSOCZY.mjs";export{b as AccountPublicKey,a as PublicKey};
|
|
2
2
|
//# sourceMappingURL=publicKey.mjs.map
|
|
@@ -2,7 +2,7 @@ import { Deserializer } from '../../bcs/deserializer.mjs';
|
|
|
2
2
|
import { Serializer, Serializable } from '../../bcs/serializer.mjs';
|
|
3
3
|
import { HexInput } from '../../types/index.mjs';
|
|
4
4
|
import { PrivateKey } from './privateKey.mjs';
|
|
5
|
-
import { P as PublicKey, V as VerifySignatureArgs } from '../../publicKey-
|
|
5
|
+
import { P as PublicKey, V as VerifySignatureArgs } from '../../publicKey-_tPa99ea.mjs';
|
|
6
6
|
import { Signature } from './signature.mjs';
|
|
7
7
|
import '../../utils/apiEndpoints.mjs';
|
|
8
8
|
import '../../types/indexer.mjs';
|
|
@@ -14,37 +14,73 @@ import '../accountAddress.mjs';
|
|
|
14
14
|
import '../../transactions/instances/transactionArgument.mjs';
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
* Represents
|
|
17
|
+
* Represents a Secp256k1 ECDSA public key.
|
|
18
18
|
*
|
|
19
|
-
*
|
|
19
|
+
* @extends PublicKey
|
|
20
|
+
* @static
|
|
21
|
+
* @property LENGTH - The length of the Secp256k1 public key in bytes.
|
|
20
22
|
*/
|
|
21
23
|
declare class Secp256k1PublicKey extends PublicKey {
|
|
22
24
|
static readonly LENGTH: number;
|
|
23
25
|
private readonly key;
|
|
24
26
|
/**
|
|
25
|
-
* Create a new PublicKey instance from a
|
|
27
|
+
* Create a new PublicKey instance from a HexInput, which can be a string or Uint8Array.
|
|
28
|
+
* This constructor validates the length of the provided signature data.
|
|
26
29
|
*
|
|
27
|
-
* @param hexInput A HexInput (string or Uint8Array)
|
|
30
|
+
* @param hexInput - A HexInput (string or Uint8Array) representing the signature data.
|
|
31
|
+
* @throws Error if the length of the signature data is not equal to Secp256k1Signature.LENGTH.
|
|
28
32
|
*/
|
|
29
33
|
constructor(hexInput: HexInput);
|
|
30
34
|
/**
|
|
31
|
-
* Verifies a Secp256k1 signature against the public key
|
|
35
|
+
* Verifies a Secp256k1 signature against the public key.
|
|
36
|
+
*
|
|
37
|
+
* This function checks the validity of a signature for a given message, ensuring that the signature is canonical as a malleability check.
|
|
32
38
|
*
|
|
33
|
-
*
|
|
39
|
+
* @param args - The arguments for verifying the signature.
|
|
40
|
+
* @param args.message - The message that was signed.
|
|
41
|
+
* @param args.signature - The signature to verify against the public key.
|
|
34
42
|
*/
|
|
35
43
|
verifySignature(args: VerifySignatureArgs): boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Get the data as a Uint8Array representation.
|
|
46
|
+
*
|
|
47
|
+
* @returns Uint8Array representation of the data.
|
|
48
|
+
*/
|
|
36
49
|
toUint8Array(): Uint8Array;
|
|
50
|
+
/**
|
|
51
|
+
* Serializes the data into a byte array using the provided serializer.
|
|
52
|
+
* This function is essential for converting data into a format suitable for transmission or storage.
|
|
53
|
+
*
|
|
54
|
+
* @param serializer - The serializer instance used to convert the data.
|
|
55
|
+
*/
|
|
37
56
|
serialize(serializer: Serializer): void;
|
|
57
|
+
/**
|
|
58
|
+
* Deserializes a Secp256k1Signature from the provided deserializer.
|
|
59
|
+
* This function allows you to reconstruct a Secp256k1Signature object from its serialized byte representation.
|
|
60
|
+
*
|
|
61
|
+
* @param deserializer - The deserializer instance used to read the serialized data.
|
|
62
|
+
*/
|
|
63
|
+
deserialize(deserializer: Deserializer): Secp256k1Signature;
|
|
38
64
|
static deserialize(deserializer: Deserializer): Secp256k1PublicKey;
|
|
39
65
|
/**
|
|
66
|
+
* Determine if the provided public key is an instance of Secp256k1PublicKey.
|
|
67
|
+
*
|
|
40
68
|
* @deprecated use `instanceof Secp256k1PublicKey` instead
|
|
41
|
-
* @param publicKey
|
|
69
|
+
* @param publicKey - The public key to check.
|
|
42
70
|
*/
|
|
43
71
|
static isPublicKey(publicKey: PublicKey): publicKey is Secp256k1PublicKey;
|
|
72
|
+
/**
|
|
73
|
+
* Determines if the provided public key is a valid instance of a Secp256k1 public key.
|
|
74
|
+
* This function checks for the presence of a "key" property and validates the length of the key data.
|
|
75
|
+
*
|
|
76
|
+
* @param publicKey - The public key to validate.
|
|
77
|
+
* @returns A boolean indicating whether the public key is a valid Secp256k1 public key.
|
|
78
|
+
*/
|
|
44
79
|
static isInstance(publicKey: PublicKey): publicKey is Secp256k1PublicKey;
|
|
45
80
|
}
|
|
46
81
|
/**
|
|
47
|
-
*
|
|
82
|
+
* Represents a Secp256k1 ECDSA private key, providing functionality to create, sign messages,
|
|
83
|
+
* derive public keys, and serialize/deserialize the key.
|
|
48
84
|
*/
|
|
49
85
|
declare class Secp256k1PrivateKey extends Serializable implements PrivateKey {
|
|
50
86
|
/**
|
|
@@ -65,41 +101,42 @@ declare class Secp256k1PrivateKey extends Serializable implements PrivateKey {
|
|
|
65
101
|
/**
|
|
66
102
|
* Generate a new random private key.
|
|
67
103
|
*
|
|
68
|
-
* @returns Secp256k1PrivateKey
|
|
104
|
+
* @returns Secp256k1PrivateKey - A newly generated Secp256k1 private key.
|
|
69
105
|
*/
|
|
70
106
|
static generate(): Secp256k1PrivateKey;
|
|
71
107
|
/**
|
|
72
|
-
* Derives a private key from a mnemonic seed phrase.
|
|
108
|
+
* Derives a private key from a mnemonic seed phrase using a specified BIP44 path.
|
|
109
|
+
*
|
|
110
|
+
* @param path - The BIP44 path to derive the key from.
|
|
111
|
+
* @param mnemonics - The mnemonic seed phrase used for key generation.
|
|
73
112
|
*
|
|
74
|
-
* @
|
|
75
|
-
* @param mnemonics the mnemonic seed phrase
|
|
113
|
+
* @returns The generated private key.
|
|
76
114
|
*
|
|
77
|
-
* @
|
|
115
|
+
* @throws Error if the provided path is not a valid BIP44 path.
|
|
78
116
|
*/
|
|
79
117
|
static fromDerivationPath(path: string, mnemonics: string): Secp256k1PrivateKey;
|
|
80
118
|
/**
|
|
81
|
-
*
|
|
82
|
-
*
|
|
119
|
+
* Derives a private key from a specified BIP44 path using a given seed.
|
|
120
|
+
* This function is essential for generating keys that follow the hierarchical deterministic (HD) wallet structure.
|
|
83
121
|
*
|
|
84
|
-
* @param path
|
|
85
|
-
* @param seed
|
|
86
|
-
*
|
|
87
|
-
* @
|
|
122
|
+
* @param path - The BIP44 path used for key derivation.
|
|
123
|
+
* @param seed - The seed phrase created by the mnemonics, represented as a Uint8Array.
|
|
124
|
+
* @returns The generated private key as an instance of Secp256k1PrivateKey.
|
|
125
|
+
* @throws Error if the derived private key is invalid.
|
|
88
126
|
*/
|
|
89
127
|
private static fromDerivationPathInner;
|
|
90
128
|
/**
|
|
91
129
|
* Sign the given message with the private key.
|
|
130
|
+
* This function generates a cryptographic signature for the provided message, ensuring the signature is canonical and non-malleable.
|
|
92
131
|
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* @param message a message as a string or Uint8Array
|
|
96
|
-
* @returns Signature
|
|
132
|
+
* @param message - A message in HexInput format to be signed.
|
|
133
|
+
* @returns Signature - The generated signature for the provided message.
|
|
97
134
|
*/
|
|
98
135
|
sign(message: HexInput): Secp256k1Signature;
|
|
99
136
|
/**
|
|
100
137
|
* Derive the Secp256k1PublicKey from this private key.
|
|
101
138
|
*
|
|
102
|
-
* @returns Secp256k1PublicKey
|
|
139
|
+
* @returns Secp256k1PublicKey The derived public key.
|
|
103
140
|
*/
|
|
104
141
|
publicKey(): Secp256k1PublicKey;
|
|
105
142
|
/**
|
|
@@ -109,7 +146,7 @@ declare class Secp256k1PrivateKey extends Serializable implements PrivateKey {
|
|
|
109
146
|
*/
|
|
110
147
|
toUint8Array(): Uint8Array;
|
|
111
148
|
/**
|
|
112
|
-
* Get the private key as a
|
|
149
|
+
* Get the private key as a string representation.
|
|
113
150
|
*
|
|
114
151
|
* @returns string representation of the private key
|
|
115
152
|
*/
|
|
@@ -117,12 +154,20 @@ declare class Secp256k1PrivateKey extends Serializable implements PrivateKey {
|
|
|
117
154
|
serialize(serializer: Serializer): void;
|
|
118
155
|
static deserialize(deserializer: Deserializer): Secp256k1PrivateKey;
|
|
119
156
|
/**
|
|
157
|
+
* Determines if the provided private key is an instance of Secp256k1PrivateKey.
|
|
158
|
+
*
|
|
159
|
+
* @param privateKey - The private key to be checked.
|
|
160
|
+
*
|
|
120
161
|
* @deprecated use `instanceof Secp256k1PrivateKey` instead
|
|
121
162
|
*/
|
|
122
163
|
static isPrivateKey(privateKey: PrivateKey): privateKey is Secp256k1PrivateKey;
|
|
123
164
|
}
|
|
124
165
|
/**
|
|
125
|
-
*
|
|
166
|
+
* Represents a signature of a message signed using a Secp256k1 ECDSA private key.
|
|
167
|
+
*
|
|
168
|
+
* @static
|
|
169
|
+
* @readonly
|
|
170
|
+
* @length The length of Secp256k1 ECDSA signatures, which is 64 bytes.
|
|
126
171
|
*/
|
|
127
172
|
declare class Secp256k1Signature extends Signature {
|
|
128
173
|
/**
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b,c}from"../../chunk-
|
|
1
|
+
import{a,b,c}from"../../chunk-BFAYEGUQ.mjs";import"../../chunk-KIW54KWR.mjs";import"../../chunk-4OV7QU2U.mjs";import"../../chunk-IBLZ6MZU.mjs";import"../../chunk-PHP47DI4.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-44HKW3VX.mjs";import"../../chunk-6FLHGOKP.mjs";import"../../chunk-OZN3OOJV.mjs";import"../../chunk-JGNMNCQB.mjs";import"../../chunk-7XS45O6M.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-QQIVWB6G.mjs";import"../../chunk-KFNDDPOW.mjs";import"../../chunk-6Q2O5G3J.mjs";import"../../chunk-N47FTRYO.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-KDMSOCZY.mjs";export{b as Secp256k1PrivateKey,a as Secp256k1PublicKey,c as Secp256k1Signature};
|
|
2
2
|
//# sourceMappingURL=secp256k1.mjs.map
|
|
@@ -9,18 +9,19 @@ import '../../types/generated/types.mjs';
|
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* An abstract representation of a crypto signature,
|
|
12
|
-
* associated
|
|
12
|
+
* associated with a specific signature scheme, e.g., Ed25519 or Secp256k1.
|
|
13
13
|
*
|
|
14
|
-
* This
|
|
15
|
-
* and can be verified against a CryptoPublicKey.
|
|
14
|
+
* This class represents the product of signing a message directly from a
|
|
15
|
+
* PrivateKey and can be verified against a CryptoPublicKey.
|
|
16
16
|
*/
|
|
17
17
|
declare abstract class Signature extends Serializable {
|
|
18
18
|
/**
|
|
19
19
|
* Get the raw signature bytes
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
toUint8Array(): Uint8Array;
|
|
22
22
|
/**
|
|
23
23
|
* Get the signature as a hex string with a 0x prefix e.g. 0x123456...
|
|
24
|
+
* @returns The hex string representation of the signature.
|
|
24
25
|
*/
|
|
25
26
|
toString(): string;
|
|
26
27
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../../chunk-
|
|
1
|
+
import{a}from"../../chunk-IBLZ6MZU.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-44HKW3VX.mjs";import"../../chunk-6FLHGOKP.mjs";import"../../chunk-OZN3OOJV.mjs";import"../../chunk-JGNMNCQB.mjs";import"../../chunk-7XS45O6M.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-QQIVWB6G.mjs";import"../../chunk-KFNDDPOW.mjs";import"../../chunk-6Q2O5G3J.mjs";import"../../chunk-N47FTRYO.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as Signature};
|
|
2
2
|
//# sourceMappingURL=signature.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Deserializer } from '../../bcs/deserializer.mjs';
|
|
2
2
|
import { Serializer } from '../../bcs/serializer.mjs';
|
|
3
3
|
import { AnyPublicKeyVariant } from '../../types/index.mjs';
|
|
4
|
-
import { a as AccountPublicKey, P as PublicKey, V as VerifySignatureArgs, A as AuthenticationKey } from '../../publicKey-
|
|
4
|
+
import { a as AccountPublicKey, P as PublicKey, V as VerifySignatureArgs, A as AuthenticationKey } from '../../publicKey-_tPa99ea.mjs';
|
|
5
5
|
import { Signature } from './signature.mjs';
|
|
6
6
|
import '../../utils/apiEndpoints.mjs';
|
|
7
7
|
import '../../types/indexer.mjs';
|
|
@@ -29,30 +29,88 @@ declare class AnyPublicKey extends AccountPublicKey {
|
|
|
29
29
|
* Index of the underlying enum variant
|
|
30
30
|
*/
|
|
31
31
|
readonly variant: AnyPublicKeyVariant;
|
|
32
|
+
/**
|
|
33
|
+
* Creates an instance of the signature class based on the provided signature type.
|
|
34
|
+
* This allows for the handling of different signature variants such as Ed25519, Secp256k1, and Keyless.
|
|
35
|
+
*
|
|
36
|
+
* @param publicKey - The publicKey object which determines the variant to be used.
|
|
37
|
+
* @throws Error if the provided signature type is unsupported.
|
|
38
|
+
*/
|
|
32
39
|
constructor(publicKey: PublicKey);
|
|
40
|
+
/**
|
|
41
|
+
* Verifies the provided signature against the given message.
|
|
42
|
+
* This function helps ensure the integrity and authenticity of the message by confirming that the signature is valid.
|
|
43
|
+
*
|
|
44
|
+
* @param args - The arguments for signature verification.
|
|
45
|
+
* @param args.message - The message that was signed.
|
|
46
|
+
* @param args.signature - The signature to verify, which must be an instance of AnySignature.
|
|
47
|
+
* @returns A boolean indicating whether the signature is valid for the given message.
|
|
48
|
+
*/
|
|
33
49
|
verifySignature(args: VerifySignatureArgs): boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Generates an authentication key from the current instance's byte representation.
|
|
52
|
+
* This function is essential for creating a unique identifier for authentication purposes.
|
|
53
|
+
*
|
|
54
|
+
* @returns {AuthenticationKey} The generated authentication key.
|
|
55
|
+
*/
|
|
34
56
|
authKey(): AuthenticationKey;
|
|
57
|
+
/**
|
|
58
|
+
* Get the signature in bytes (Uint8Array).
|
|
59
|
+
*
|
|
60
|
+
* This function is a warning that it will soon return the underlying signature bytes directly.
|
|
61
|
+
* Use AnySignature.bcsToBytes() instead.
|
|
62
|
+
*
|
|
63
|
+
* @returns Uint8Array representation of the signature.
|
|
64
|
+
*/
|
|
35
65
|
toUint8Array(): Uint8Array;
|
|
66
|
+
/**
|
|
67
|
+
* Serializes the current object using the provided serializer.
|
|
68
|
+
* This function helps in converting the object into a format suitable for transmission or storage.
|
|
69
|
+
*
|
|
70
|
+
* @param serializer - The serializer instance used to perform the serialization.
|
|
71
|
+
*/
|
|
36
72
|
serialize(serializer: Serializer): void;
|
|
73
|
+
/**
|
|
74
|
+
* Deserializes an AnySignature from the provided deserializer.
|
|
75
|
+
* This function helps in reconstructing the AnySignature object from its serialized form, allowing for further processing or validation.
|
|
76
|
+
*
|
|
77
|
+
* @param deserializer - The deserializer instance used to read the serialized data.
|
|
78
|
+
*/
|
|
37
79
|
static deserialize(deserializer: Deserializer): AnyPublicKey;
|
|
38
80
|
/**
|
|
39
|
-
*
|
|
81
|
+
* Determines if the provided public key is an instance of AnyPublicKey.
|
|
82
|
+
*
|
|
83
|
+
* @param publicKey - The public key to check.
|
|
84
|
+
* @deprecated Use `instanceof AnyPublicKey` instead.
|
|
40
85
|
*/
|
|
41
86
|
static isPublicKey(publicKey: AccountPublicKey): publicKey is AnyPublicKey;
|
|
42
87
|
/**
|
|
88
|
+
* Determines if the current public key is an instance of Ed25519PublicKey.
|
|
89
|
+
*
|
|
43
90
|
* @deprecated use `publicKey instanceof Ed25519PublicKey` instead.
|
|
44
91
|
*/
|
|
45
92
|
isEd25519(): boolean;
|
|
46
93
|
/**
|
|
94
|
+
* Checks if the public key is an instance of Secp256k1PublicKey.
|
|
95
|
+
*
|
|
47
96
|
* @deprecated use `publicKey instanceof Secp256k1PublicKey` instead.
|
|
48
97
|
*/
|
|
49
98
|
isSecp256k1PublicKey(): boolean;
|
|
99
|
+
/**
|
|
100
|
+
* Determines if the provided publicKey is an instance of a valid PublicKey object.
|
|
101
|
+
*
|
|
102
|
+
* @param publicKey - The publicKey to be checked for validity.
|
|
103
|
+
* @param publicKey.publicKey - The actual publicKey object that needs to be validated.
|
|
104
|
+
* @returns True if the signature is a valid instance; otherwise, false.
|
|
105
|
+
*/
|
|
50
106
|
static isInstance(publicKey: PublicKey): publicKey is AnyPublicKey;
|
|
51
107
|
}
|
|
52
108
|
/**
|
|
53
|
-
*
|
|
54
|
-
* This
|
|
55
|
-
*
|
|
109
|
+
* Represents a signature that utilizes the SingleKey authentication scheme.
|
|
110
|
+
* This class is designed to encapsulate various types of signatures, which can
|
|
111
|
+
* only be generated by a `SingleKeySigner` due to the shared authentication mechanism.
|
|
112
|
+
*
|
|
113
|
+
* @extends Signature
|
|
56
114
|
*/
|
|
57
115
|
declare class AnySignature extends Signature {
|
|
58
116
|
readonly signature: Signature;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b}from"../../chunk-
|
|
1
|
+
import{a,b}from"../../chunk-6HWNCKNB.mjs";import"../../chunk-BFAYEGUQ.mjs";import"../../chunk-NOFMA27U.mjs";import"../../chunk-SV6XYAEJ.mjs";import"../../chunk-GMKKHGXK.mjs";import"../../chunk-ONBFUPEC.mjs";import"../../chunk-S4BBYLCO.mjs";import"../../chunk-VQJIGBIR.mjs";import"../../chunk-KIW54KWR.mjs";import"../../chunk-4OV7QU2U.mjs";import"../../chunk-IBLZ6MZU.mjs";import"../../chunk-PHP47DI4.mjs";import"../../chunk-PRZ7AIGA.mjs";import"../../chunk-HBIDHQ2M.mjs";import"../../chunk-KM6UXNC7.mjs";import"../../chunk-N2FKVZ4D.mjs";import"../../chunk-VDCQU3UG.mjs";import"../../chunk-WUNJA7HN.mjs";import"../../chunk-75NUNLHW.mjs";import"../../chunk-HGLO5LDS.mjs";import"../../chunk-4CDDWSKZ.mjs";import"../../chunk-WNCWH4Z2.mjs";import"../../chunk-GQABU3RQ.mjs";import"../../chunk-J245N3XF.mjs";import"../../chunk-555I4YHP.mjs";import"../../chunk-LEKBJ2EG.mjs";import"../../chunk-FZY4PMEE.mjs";import"../../chunk-44HKW3VX.mjs";import"../../chunk-6FLHGOKP.mjs";import"../../chunk-OZN3OOJV.mjs";import"../../chunk-JGNMNCQB.mjs";import"../../chunk-7XS45O6M.mjs";import"../../chunk-4WPQQPUF.mjs";import"../../chunk-QQIVWB6G.mjs";import"../../chunk-KFNDDPOW.mjs";import"../../chunk-6Q2O5G3J.mjs";import"../../chunk-N47FTRYO.mjs";import"../../chunk-56CNRT2K.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as AnyPublicKey,b as AnySignature};
|
|
2
2
|
//# sourceMappingURL=singleKey.mjs.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"../../chunk-
|
|
1
|
+
import{a}from"../../chunk-KIW54KWR.mjs";import"../../chunk-KFNDDPOW.mjs";import"../../chunk-6Q2O5G3J.mjs";import"../../chunk-KDMSOCZY.mjs";export{a as convertSigningMessage};
|
|
2
2
|
//# sourceMappingURL=utils.mjs.map
|
package/dist/esm/core/hex.d.mts
CHANGED
|
@@ -6,7 +6,7 @@ import '../types/generated/operations.mjs';
|
|
|
6
6
|
import '../types/generated/types.mjs';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Provides reasons for parsing failures related to hexadecimal values.
|
|
10
10
|
*/
|
|
11
11
|
declare enum HexInvalidReason {
|
|
12
12
|
TOO_SHORT = "too_short",
|
|
@@ -14,28 +14,26 @@ declare enum HexInvalidReason {
|
|
|
14
14
|
INVALID_HEX_CHARS = "invalid_hex_chars"
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* NOTE: Do not use this class when working with account addresses
|
|
17
|
+
* NOTE: Do not use this class when working with account addresses; use AccountAddress instead.
|
|
18
|
+
* When accepting hex data as input to a function, prefer to accept HexInput and
|
|
19
|
+
*
|
|
20
|
+
* A helper class for working with hex data. Hex data, when represented as a string,
|
|
21
|
+
* generally looks like this, for example: 0xaabbcc, 45cd32, etc.
|
|
18
22
|
*
|
|
19
|
-
* NOTE: When accepting hex data as input to a function, prefer to accept HexInput and
|
|
20
23
|
* then use the static helper methods of this class to convert it into the desired
|
|
21
24
|
* format. This enables the greatest flexibility for the developer.
|
|
22
25
|
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* You might use this class like this:
|
|
27
|
-
*
|
|
28
|
-
* ```ts
|
|
26
|
+
* Example usage:
|
|
27
|
+
* ```typescript
|
|
29
28
|
* getTransactionByHash(txnHash: HexInput): Promise<Transaction> {
|
|
30
29
|
* const txnHashString = Hex.fromHexInput(txnHash).toString();
|
|
31
30
|
* return await getTransactionByHashInner(txnHashString);
|
|
32
31
|
* }
|
|
33
32
|
* ```
|
|
34
|
-
*
|
|
35
33
|
* This call to `Hex.fromHexInput().toString()` converts the HexInput to a hex string
|
|
36
34
|
* with a leading 0x prefix, regardless of what the input format was.
|
|
37
35
|
*
|
|
38
|
-
*
|
|
36
|
+
* Other ways to chain the functions together:
|
|
39
37
|
* - `Hex.fromHexString({ hexInput: "0x1f" }).toUint8Array()`
|
|
40
38
|
* - `new Hex([1, 3]).toStringWithoutPrefix()`
|
|
41
39
|
*/
|
|
@@ -44,12 +42,11 @@ declare class Hex {
|
|
|
44
42
|
/**
|
|
45
43
|
* Create a new Hex instance from a Uint8Array.
|
|
46
44
|
*
|
|
47
|
-
* @param data Uint8Array
|
|
45
|
+
* @param data - The Uint8Array containing the data to initialize the Hex instance.
|
|
48
46
|
*/
|
|
49
47
|
constructor(data: Uint8Array);
|
|
50
48
|
/**
|
|
51
|
-
* Get the inner hex data. The inner data is already a Uint8Array so no conversion
|
|
52
|
-
* is taking place here, it just returns the inner data.
|
|
49
|
+
* Get the inner hex data as a Uint8Array. The inner data is already a Uint8Array, so no conversion takes place.
|
|
53
50
|
*
|
|
54
51
|
* @returns Hex data as Uint8Array
|
|
55
52
|
*/
|
|
@@ -67,34 +64,36 @@ declare class Hex {
|
|
|
67
64
|
*/
|
|
68
65
|
toString(): string;
|
|
69
66
|
/**
|
|
70
|
-
*
|
|
67
|
+
* Converts a hex string into a Hex instance, allowing for both prefixed and non-prefixed formats.
|
|
68
|
+
*
|
|
69
|
+
* @param str - A hex string, with or without the 0x prefix.
|
|
71
70
|
*
|
|
72
|
-
* @
|
|
71
|
+
* @throws ParsingError - If the hex string is too short, has an odd number of characters, or contains invalid hex characters.
|
|
73
72
|
*
|
|
74
|
-
* @returns Hex
|
|
73
|
+
* @returns Hex - The resulting Hex instance created from the provided string.
|
|
75
74
|
*/
|
|
76
75
|
static fromHexString(str: string): Hex;
|
|
77
76
|
/**
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
* @param hexInput A HexInput (string or Uint8Array)
|
|
77
|
+
* Converts an instance of HexInput, which can be a string or a Uint8Array, into a Hex instance.
|
|
78
|
+
* This function is useful for transforming hexadecimal representations into a structured Hex object for further manipulation.
|
|
81
79
|
*
|
|
82
|
-
* @
|
|
80
|
+
* @param hexInput - A HexInput which can be a string or Uint8Array.
|
|
81
|
+
* @returns A Hex instance created from the provided hexInput.
|
|
83
82
|
*/
|
|
84
83
|
static fromHexInput(hexInput: HexInput): Hex;
|
|
85
84
|
/**
|
|
86
|
-
* Check if the string is valid
|
|
85
|
+
* Check if the provided string is a valid hexadecimal representation.
|
|
87
86
|
*
|
|
88
|
-
* @param str A hex string representing byte data.
|
|
87
|
+
* @param str - A hex string representing byte data.
|
|
89
88
|
*
|
|
90
|
-
* @returns
|
|
91
|
-
* valid
|
|
92
|
-
*
|
|
89
|
+
* @returns An object containing:
|
|
90
|
+
* - valid: A boolean indicating whether the string is valid.
|
|
91
|
+
* - invalidReason: The reason for invalidity if the string is not valid.
|
|
92
|
+
* - invalidReasonMessage: A message explaining why the string is invalid.
|
|
93
93
|
*/
|
|
94
94
|
static isValid(str: string): ParsingResult<HexInvalidReason>;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
97
|
-
* their underlying byte data is identical.
|
|
96
|
+
* Determine if two Hex instances are equal by comparing their underlying byte data.
|
|
98
97
|
*
|
|
99
98
|
* @param other The Hex instance to compare to.
|
|
100
99
|
* @returns true if the Hex instances are equal, false if not.
|
package/dist/esm/core/hex.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a,b}from"../chunk-
|
|
1
|
+
import{a,b}from"../chunk-KFNDDPOW.mjs";import"../chunk-6Q2O5G3J.mjs";import"../chunk-KDMSOCZY.mjs";export{b as Hex,a as HexInvalidReason};
|
|
2
2
|
//# sourceMappingURL=hex.mjs.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { createObjectAddress, createResourceAddress, createTokenAddress } from './account/utils/address.mjs';
|
|
2
2
|
export { AccountAddress, AccountAddressInput, AddressInvalidReason } from './accountAddress.mjs';
|
|
3
|
-
export { a as AccountPublicKey, A as AuthenticationKey, P as PublicKey, V as VerifySignatureArgs } from '../publicKey-
|
|
3
|
+
export { a as AccountPublicKey, A as AuthenticationKey, P as PublicKey, V as VerifySignatureArgs } from '../publicKey-_tPa99ea.mjs';
|
|
4
4
|
export { ParsingError, ParsingResult } from './common.mjs';
|
|
5
5
|
export { Ed25519PrivateKey, Ed25519PublicKey, Ed25519Signature, isCanonicalEd25519Signature } from './crypto/ed25519.mjs';
|
|
6
6
|
export { APTOS_BIP44_REGEX, APTOS_HARDENED_REGEX, CKDPriv, DerivedKeys, HARDENED_OFFSET, KeyType, deriveKey, isValidBIP44Path, isValidHardenedPath, mnemonicToSeed, splitPath } from './crypto/hdKey.mjs';
|
package/dist/esm/core/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import"../chunk-E7FWVXGX.mjs";import"../chunk-NECL5FCQ.mjs";import"../chunk-4QMXOWHP.mjs";import{a as ca,b as da,c as ea}from"../chunk-
|
|
1
|
+
import"../chunk-E7FWVXGX.mjs";import"../chunk-NECL5FCQ.mjs";import"../chunk-4QMXOWHP.mjs";import{a as ca,b as da,c as ea}from"../chunk-PCLU4KLY.mjs";import"../chunk-HEZ2ZYZA.mjs";import{a as x,b as y}from"../chunk-OZRUYSI3.mjs";import{a as aa,b as ba}from"../chunk-LVLCMN7X.mjs";import{a as _,b as $}from"../chunk-6HWNCKNB.mjs";import"../chunk-KUX6GQ2E.mjs";import{a as z,b as A,c as B}from"../chunk-BFAYEGUQ.mjs";import{a as Z}from"../chunk-NOFMA27U.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}from"../chunk-SV6XYAEJ.mjs";import{a as E,b as F,c as G,d as H,e as I}from"../chunk-GMKKHGXK.mjs";import"../chunk-ONBFUPEC.mjs";import{a as C,b as D}from"../chunk-S4BBYLCO.mjs";import{a as t,b as u,c as v,d as w}from"../chunk-VQJIGBIR.mjs";import"../chunk-KIW54KWR.mjs";import{a as q,b as r}from"../chunk-4OV7QU2U.mjs";import{a as s}from"../chunk-IBLZ6MZU.mjs";import{a as g,b as h,c as i,d as j,e as k,f as l,g as m,h as n,i as o,j as p}from"../chunk-PHP47DI4.mjs";import{a as f}from"../chunk-PRZ7AIGA.mjs";import"../chunk-HBIDHQ2M.mjs";import{a as d,b as e}from"../chunk-KM6UXNC7.mjs";import"../chunk-N2FKVZ4D.mjs";import"../chunk-VDCQU3UG.mjs";import"../chunk-WUNJA7HN.mjs";import"../chunk-75NUNLHW.mjs";import"../chunk-HGLO5LDS.mjs";import"../chunk-4CDDWSKZ.mjs";import"../chunk-WNCWH4Z2.mjs";import"../chunk-GQABU3RQ.mjs";import"../chunk-J245N3XF.mjs";import"../chunk-555I4YHP.mjs";import"../chunk-LEKBJ2EG.mjs";import"../chunk-FZY4PMEE.mjs";import"../chunk-44HKW3VX.mjs";import"../chunk-6FLHGOKP.mjs";import"../chunk-OZN3OOJV.mjs";import"../chunk-JGNMNCQB.mjs";import"../chunk-7XS45O6M.mjs";import"../chunk-4WPQQPUF.mjs";import"../chunk-QQIVWB6G.mjs";import{a as b,b as c}from"../chunk-KFNDDPOW.mjs";import{a}from"../chunk-6Q2O5G3J.mjs";import"../chunk-N47FTRYO.mjs";import"../chunk-56CNRT2K.mjs";import"../chunk-KDMSOCZY.mjs";export{h as APTOS_BIP44_REGEX,g as APTOS_HARDENED_REGEX,e as AccountAddress,r as AccountPublicKey,d as AddressInvalidReason,_ as AnyPublicKey,$ as AnySignature,f as AuthenticationKey,n as CKDPriv,J as EPK_HORIZON_SECS,v as Ed25519PrivateKey,u as Ed25519PublicKey,w as Ed25519Signature,T as EphemeralCertificate,C as EphemeralPublicKey,D as EphemeralSignature,Z as FederatedKeylessPublicKey,U as Groth16Zkp,j as HARDENED_OFFSET,c as Hex,b as HexInvalidReason,i as KeyType,X as KeylessConfiguration,R as KeylessPublicKey,S as KeylessSignature,K as MAX_AUD_VAL_BYTES,Q as MAX_COMMITED_EPK_BYTES,O as MAX_EXTRA_FIELD_BYTES,N as MAX_ISS_VAL_BYTES,P as MAX_JWT_HEADER_B64_BYTES,L as MAX_UID_KEY_BYTES,M as MAX_UID_VAL_BYTES,x as MultiEd25519PublicKey,y as MultiEd25519Signature,aa as MultiKey,ba as MultiKeySignature,a as ParsingError,q as PublicKey,A as Secp256k1PrivateKey,z as Secp256k1PublicKey,B as Secp256k1Signature,s as Signature,W as ZeroKnowledgeSig,V as ZkProof,H as bigIntToBytesLE,G as bytesToBigIntLE,ca as createObjectAddress,da as createResourceAddress,ea as createTokenAddress,m as deriveKey,Y as getKeylessConfig,E as hashStrToField,t as isCanonicalEd25519Signature,k as isValidBIP44Path,l as isValidHardenedPath,p as mnemonicToSeed,F as padAndPackBytesWithLen,I as poseidonHash,o as splitPath};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as Account, e as CreateAccountFromPrivateKeyArgs, C as CreateEd25519AccountFromPrivateKeyArgs, c as CreateEd25519SingleKeyAccountFromPrivateKeyArgs, d as CreateSingleKeyAccountFromPrivateKeyArgs, b as Ed25519Account, E as Ed25519SignerConstructorArgs, a as Ed25519SignerFromDerivationPathArgs, h as GenerateAccountArgs, G as GenerateEd25519AccountArgs, f as GenerateEd25519SingleKeyAccountArgs, g as GenerateSingleKeyAccountArgs, P as PrivateKeyFromDerivationPathArgs, l as SingleKeyAccount, S as SingleKeySignerConstructorArgs, j as SingleKeySignerFromDerivationPathArgs, i as SingleKeySignerGenerateArgs, V as VerifyEd25519SignatureArgs, k as VerifySingleKeySignatureArgs } from './Ed25519Account-
|
|
1
|
+
export { A as Account, e as CreateAccountFromPrivateKeyArgs, C as CreateEd25519AccountFromPrivateKeyArgs, c as CreateEd25519SingleKeyAccountFromPrivateKeyArgs, d as CreateSingleKeyAccountFromPrivateKeyArgs, b as Ed25519Account, E as Ed25519SignerConstructorArgs, a as Ed25519SignerFromDerivationPathArgs, h as GenerateAccountArgs, G as GenerateEd25519AccountArgs, f as GenerateEd25519SingleKeyAccountArgs, g as GenerateSingleKeyAccountArgs, P as PrivateKeyFromDerivationPathArgs, l as SingleKeyAccount, S as SingleKeySignerConstructorArgs, j as SingleKeySignerFromDerivationPathArgs, i as SingleKeySignerGenerateArgs, V as VerifyEd25519SignatureArgs, k as VerifySingleKeySignatureArgs } from './Ed25519Account-DpH9qAcg.mjs';
|
|
2
2
|
export { EphemeralKeyPair } from './account/EphemeralKeyPair.mjs';
|
|
3
3
|
export { KeylessAccount } from './account/KeylessAccount.mjs';
|
|
4
4
|
export { AbstractKeylessAccount, ProofFetchCallback, ProofFetchEvents, ProofFetchFailure, ProofFetchStatus, ProofFetchSuccess, TransactionAndProof } from './account/AbstractKeylessAccount.mjs';
|
|
@@ -18,7 +18,7 @@ export { PostAptosRequestOptions, PostRequestOptions, post, postAptosFaucet, pos
|
|
|
18
18
|
export { AptosApiError, AptosResponse } from './client/types.mjs';
|
|
19
19
|
export { createObjectAddress, createResourceAddress, createTokenAddress } from './core/account/utils/address.mjs';
|
|
20
20
|
export { AccountAddress, AccountAddressInput, AddressInvalidReason } from './core/accountAddress.mjs';
|
|
21
|
-
export { a as AccountPublicKey, A as AuthenticationKey, P as PublicKey, V as VerifySignatureArgs } from './publicKey-
|
|
21
|
+
export { a as AccountPublicKey, A as AuthenticationKey, P as PublicKey, V as VerifySignatureArgs } from './publicKey-_tPa99ea.mjs';
|
|
22
22
|
export { ParsingError, ParsingResult } from './core/common.mjs';
|
|
23
23
|
export { Ed25519PrivateKey, Ed25519PublicKey, Ed25519Signature, isCanonicalEd25519Signature } from './core/crypto/ed25519.mjs';
|
|
24
24
|
export { APTOS_BIP44_REGEX, APTOS_HARDENED_REGEX, CKDPriv, DerivedKeys, HARDENED_OFFSET, KeyType, deriveKey, isValidBIP44Path, isValidHardenedPath, mnemonicToSeed, splitPath } from './core/crypto/hdKey.mjs';
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import"./chunk-RMMOF53Q.mjs";import{a as Sf}from"./chunk-7NYFGX5Q.mjs";import"./chunk-NJK4DINY.mjs";import"./chunk-E2X3MVIQ.mjs";import"./chunk-SSYYCQGU.mjs";import"./chunk-2AGCC7DU.mjs";import"./chunk-Y35QNVIJ.mjs";import"./chunk-VWQQLTCH.mjs";import"./chunk-XFT2EE4O.mjs";import"./chunk-TEM2STPT.mjs";import"./chunk-HUYDR6MY.mjs";import"./chunk-43AF5CUP.mjs";import"./chunk-KJBS5RFY.mjs";import"./chunk-SKBUDJFL.mjs";import"./chunk-IHYTP2EW.mjs";import{a as Pf,b as Qf,c as Rf}from"./chunk-ULQ4A44I.mjs";import{a as Of}from"./chunk-VVHFK6WA.mjs";import"./chunk-U6Z4FNB7.mjs";import"./chunk-DUDSFTMJ.mjs";import"./chunk-6EMN3BOV.mjs";import"./chunk-RONLES3F.mjs";import"./chunk-UIM56NFQ.mjs";import{a as Nf}from"./chunk-NMD45OTM.mjs";import"./chunk-MQTQWVKC.mjs";import"./chunk-ZBDEBFLY.mjs";import"./chunk-YZ2IE7W2.mjs";import"./chunk-F3C6KUOA.mjs";import"./chunk-UIWXJU6Z.mjs";import"./chunk-M2GJ6B3I.mjs";import"./chunk-LZMZCQXB.mjs";import"./chunk-GNJL4HRI.mjs";import"./chunk-VSMEQLV6.mjs";import"./chunk-A3AGTDS6.mjs";import"./chunk-B3XOTMTY.mjs";import"./chunk-SPQKH5BG.mjs";import"./chunk-V2YXCX3Q.mjs";import"./chunk-I5OYNCZS.mjs";import"./chunk-JXCZTOYC.mjs";import{a as Cf,b as Df,c as Ef,d as Ff,e as Gf,f as Hf,g as If,h as Jf,i as Kf,j as Lf,k as Mf}from"./chunk-OUZ7HH65.mjs";import{a as vf,b as wf,c as yf,d as zf,e as Af,f as Bf}from"./chunk-O7PQILE3.mjs";import{a as qf,b as sf,c as uf}from"./chunk-NWOMSL6K.mjs";import{a as Ze,b as _e,c as $e,d as of,e as rf,f as ef,g as ff,h as mf,i as pf,j as tf,k as xf,l as af,m as bf,n as cf,o as df,p as gf,q as hf,r as jf,s as kf,t as lf,u as nf}from"./chunk-EDHO4MI7.mjs";import"./chunk-BSCOVLWS.mjs";import"./chunk-V3MBJJTL.mjs";import"./chunk-3VKFVU25.mjs";import"./chunk-MHRQHVM3.mjs";import"./chunk-MJ7K6MUZ.mjs";import"./chunk-R7FVBWBJ.mjs";import"./chunk-QB4XTGDH.mjs";import"./chunk-VHNX2NUR.mjs";import"./chunk-GAEAYY44.mjs";import{a as Ye}from"./chunk-HCUQEDI6.mjs";import{a as Se}from"./chunk-HXSCC3UV.mjs";import{a as Re}from"./chunk-SCHHDWWN.mjs";import{a as Qe}from"./chunk-HSIRO3LE.mjs";import{a as Xe}from"./chunk-7YLVCZYN.mjs";import{a as We}from"./chunk-BHX5VMNA.mjs";import{a as Ue,b as Ve}from"./chunk-HR5XRRIH.mjs";import{a as Me,b as Ne,c as Oe,d as Pe}from"./chunk-XP34ZZRH.mjs";import"./chunk-4NMDYPUD.mjs";import{a as Ce}from"./chunk-WLZYSLHP.mjs";import{a as Je}from"./chunk-KQYOM3J6.mjs";import{a as Ke}from"./chunk-POSSCOHV.mjs";import"./chunk-UYVPNUH3.mjs";import{a as De,b as Ee,c as Fe,d as Ge,e as He,f as Ie}from"./chunk-VTHJWK3M.mjs";import{a as Nr,b as Or,c as Pr,d as Qr,e as Rr}from"./chunk-WVITQ3K7.mjs";import{a as Le}from"./chunk-FL2G3JFQ.mjs";import{a as ye,b as ze,c as Ae,d as Be}from"./chunk-EG7QHK4U.mjs";import{a as je,b as ke,c as le,d as ne,e as qe,f as se,g as ue,h as ve,i as we}from"./chunk-G4JQEJQT.mjs";import{a as Yr,b as Zr,c as _r,d as $r,e as oe,f as re,g as ee,h as fe,i as me,j as pe,k as te,l as xe,m as ae,n as be,o as ce,p as de,q as ge,r as he,s as ie}from"./chunk-SUJLWCRN.mjs";import{a as Sr}from"./chunk-BOYYQAB4.mjs";import{a as Xr}from"./chunk-YDZBU2DJ.mjs";import{a as Tr}from"./chunk-YUNDX5I7.mjs";import"./chunk-E7FWVXGX.mjs";import"./chunk-NECL5FCQ.mjs";import"./chunk-4QMXOWHP.mjs";import{a as Ur,b as Vr,c as Wr}from"./chunk-WRRQ7L5K.mjs";import{a as Te}from"./chunk-7PDF3O5A.mjs";import"./chunk-HEZ2ZYZA.mjs";import{a as uo,b as vo}from"./chunk-XG57ULWZ.mjs";import{a as Lr,b as Mr}from"./chunk-C26X2GLF.mjs";import{a as Jr,b as Kr}from"./chunk-URF3VICX.mjs";import"./chunk-KUX6GQ2E.mjs";import{a as wo,b as yo,c as zo}from"./chunk-LWRYJL3W.mjs";import{a as Ir}from"./chunk-Z7G2ODBC.mjs";import{a as nr,b as qr,c as sr,d as ur,e as vr,f as wr,g as yr,h as zr,i as Ar,j as Br,k as Cr,l as Dr,m as Er,n as Fr,o as Gr,p as Hr}from"./chunk-6VJ3HRHN.mjs";import{a as Co,b as Do,c as Eo,d as Fo,e as Go}from"./chunk-SRPI2FFA.mjs";import"./chunk-MQGW234H.mjs";import{a as Ao,b as Bo}from"./chunk-VDSDMO5B.mjs";import{a as lo,b as no,c as qo,d as so}from"./chunk-OGX4PXYG.mjs";import"./chunk-Q4XR6QOZ.mjs";import{a as io,b as jo}from"./chunk-76OH2Z4Q.mjs";import{a as ko}from"./chunk-MLDQ2TY2.mjs";import{a as fo,b as mo,c as po,d as to,e as xo,f as ao,g as bo,h as co,i as go,j as ho}from"./chunk-LR65XHSF.mjs";import{a as eo}from"./chunk-G5MGSV7Y.mjs";import{a as oo,b as ro}from"./chunk-OHRL766V.mjs";import"./chunk-AH44UPM4.mjs";import"./chunk-N2FKVZ4D.mjs";import{a as ar,b as br,c as cr,d as dr}from"./chunk-3RBIEWVC.mjs";import{a as gr,b as hr,c as ir,d as jr,e as kr,f as lr}from"./chunk-SS4IPKAI.mjs";import{a as tr,b as xr}from"./chunk-E6O72G24.mjs";import"./chunk-HGLO5LDS.mjs";import{a as Zo}from"./chunk-BSUYPXRD.mjs";import{a as _o,b as $o,c as or,d as rr,e as er,f as fr,g as mr,h as pr}from"./chunk-UAL27G6B.mjs";import{a as Qo}from"./chunk-TDGQGILY.mjs";import{a as Ro,b as So,c as To,d as Uo,e as Vo,f as Wo,g as Xo,h as Yo}from"./chunk-SCHZ67F3.mjs";import{a as Ho,b as Io,c as Jo,d as Ko,e as Lo,f as Mo,g as No,h as Oo,i as Po}from"./chunk-EXP5STXZ.mjs";import"./chunk-FZY4PMEE.mjs";import{a as Y,b as Z,c as _,d as $}from"./chunk-QQU4IQ27.mjs";import{a as R,b as S,c as T,d as U,e as V,f as W,g as X}from"./chunk-YPHH6CAO.mjs";import{a as c}from"./chunk-P5V7OZNN.mjs";import{a as b}from"./chunk-H6YNXJNF.mjs";import{A as L,B as M,C as N,D as O,E as P,F as Q,a as d,b as g,c as h,d as i,e as j,f as k,g as l,h as n,i as q,j as s,k as u,l as v,m as w,n as y,o as z,p as A,q as B,r as C,s as D,t as E,u as F,v as G,w as H,x as I,y as J,z as K}from"./chunk-44GYWUSH.mjs";import"./chunk-4WPQQPUF.mjs";import{a as o}from"./chunk-KEYAPEAX.mjs";import{a as m,b as p,c as t,d as x,e as a}from"./chunk-A63SMUOU.mjs";import{a as e,b as f}from"./chunk-BCUSI3N6.mjs";import{a as r}from"./chunk-LG7RJQ57.mjs";import"./chunk-56CNRT2K.mjs";import"./chunk-UAEODDZS.mjs";import"./chunk-FVA2OPG4.mjs";export{mo as APTOS_BIP44_REGEX,Lo as APTOS_COIN,Mo as APTOS_FA,fo as APTOS_HARDENED_REGEX,Ue as AbstractKeylessAccount,Se as Account,ro as AccountAddress,Nr as AccountAuthenticator,Or as AccountAuthenticatorEd25519,Pr as AccountAuthenticatorMultiEd25519,Rr as AccountAuthenticatorMultiKey,Qr as AccountAuthenticatorSingleKey,l as AccountAuthenticatorVariant,jo as AccountPublicKey,Of as AccountSequenceNumber,oo as AddressInvalidReason,Jr as AnyPublicKey,n as AnyPublicKeyVariant,Kr as AnySignature,q as AnySignatureVariant,Sf as Aptos,Qo as AptosApiError,Ho as AptosApiType,Nf as AptosConfig,eo as AuthenticationKey,R as Bool,co as CKDPriv,Sr as ChainId,Io as DEFAULT_MAX_GAS_AMOUNT,Jo as DEFAULT_TXN_EXP_SEC_FROM_NOW,Ko as DEFAULT_TXN_TIMEOUT_SEC,Q as DeriveScheme,o as Deserializer,nr as EPK_HORIZON_SECS,Qe as Ed25519Account,qo as Ed25519PrivateKey,no as Ed25519PublicKey,so as Ed25519Signature,se as EntryFunction,c as EntryFunctionBytes,Cr as EphemeralCertificate,v as EphemeralCertificateVariant,Te as EphemeralKeyPair,Ao as EphemeralPublicKey,s as EphemeralPublicKeyVariant,Bo as EphemeralSignature,u as EphemeralSignatureVariant,Xe as FederatedKeylessAccount,Ir as FederatedKeylessPublicKey,Be as FeePayerRawTransaction,b as FixedBytes,Dr as Groth16Zkp,to as HARDENED_OFFSET,f as Hex,e as HexInvalidReason,Tr as Identifier,po as KeyType,We as KeylessAccount,Gr as KeylessConfiguration,Ar as KeylessPublicKey,Br as KeylessSignature,qr as MAX_AUD_VAL_BYTES,zr as MAX_COMMITED_EPK_BYTES,wr as MAX_EXTRA_FIELD_BYTES,vr as MAX_ISS_VAL_BYTES,yr as MAX_JWT_HEADER_B64_BYTES,sr as MAX_UID_KEY_BYTES,ur as MAX_UID_VAL_BYTES,d as MimeType,Xr as ModuleId,M as MoveAbility,L as MoveFunctionVisibility,$ as MoveOption,_ as MoveString,Y as MoveVector,Ae as MultiAgentRawTransaction,Le as MultiAgentTransaction,uo as MultiEd25519PublicKey,vo as MultiEd25519Signature,Lr as MultiKey,Ye as MultiKeyAccount,Mr as MultiKeySignature,ve as MultiSig,we as MultiSigTransactionPayload,Wo as Network,Xo as NetworkToChainId,To as NetworkToFaucetAPI,Ro as NetworkToIndexerAPI,Yo as NetworkToNetworkName,So as NetworkToNodeAPI,Uo as NetworkToPepperAPI,Vo as NetworkToProverAPI,r as ParsingError,Po as ProcessorType,io as PublicKey,No as RAW_TRANSACTION_SALT,Oo as RAW_TRANSACTION_WITH_DATA_SALT,ye as RawTransaction,ze as RawTransactionWithData,N as RoleType,Ce as RotationProofChallenge,ue as Script,h as ScriptTransactionArgumentVariants,yo as Secp256k1PrivateKey,wo as Secp256k1PublicKey,zo as Secp256k1Signature,m as Serializable,Z as Serialized,p as Serializer,ko as Signature,Je as SignedTransaction,O as SigningScheme,P as SigningSchemeInput,Ke as SimpleTransaction,Re as SingleKeyAccount,ce as StructTag,Ve as TransactionAndProof,De as TransactionAuthenticator,Ee as TransactionAuthenticatorEd25519,He as TransactionAuthenticatorFeePayer,Ge as TransactionAuthenticatorMultiAgent,Fe as TransactionAuthenticatorMultiEd25519,Ie as TransactionAuthenticatorSingleSender,k as TransactionAuthenticatorVariant,ke as TransactionPayload,ne as TransactionPayloadEntryFunction,qe as TransactionPayloadMultiSig,le as TransactionPayloadScript,i as TransactionPayloadVariants,y as TransactionResponseType,j as TransactionVariants,Rf as TransactionWorker,Qf as TransactionWorkerEventsEnum,Yr as TypeTag,me as TypeTagAddress,Zr as TypeTagBool,xe as TypeTagGeneric,sf as TypeTagParserError,qf as TypeTagParserErrorType,te as TypeTagReference,pe as TypeTagSigner,be as TypeTagStruct,ee as TypeTagU128,$r as TypeTagU16,fe as TypeTagU256,oe as TypeTagU32,re as TypeTagU64,_r as TypeTagU8,g as TypeTagVariants,ae as TypeTagVector,W as U128,T as U16,X as U256,U as U32,V as U64,S as U8,Fr as ZeroKnowledgeSig,Er as ZkProof,w as ZkpVariant,de as aptosCoinStructTag,xr as aptosRequest,rr as base64UrlDecode,Fo as bigIntToBytesLE,Hf as buildTransaction,Eo as bytesToBigIntLE,Bf as checkOrConvertArgument,er as convertAmountFromHumanReadableToOnChain,fr as convertAmountFromOnChainToHumanReadable,Af as convertArgument,of as convertNumber,Ur as createObjectAddress,Vr as createResourceAddress,Wr as createTokenAddress,bo as deriveKey,Me as deriveTransactionType,je as deserializeFromScriptArgument,t as ensureBoolean,yf as fetchEntryFunctionAbi,wf as fetchFunctionAbi,zf as fetchViewFunctionAbi,lf as findFirstNonSignerArg,or as floorToWholeHour,Gf as generateRawTransaction,Kf as generateSignedTransaction,If as generateSignedTransactionForSimulation,Ne as generateSigningMessage,Oe as generateSigningMessageForSerializable,Pe as generateSigningMessageForTransaction,Cf as generateTransactionPayload,Df as generateTransactionPayloadWithABI,Mf as generateUserTransactionHash,Ef as generateViewFunctionPayload,Ff as generateViewFunctionPayloadWithABI,ar as get,br as getAptosFullNode,cr as getAptosPepperService,Jf as getAuthenticatorForSimulation,nf as getFunctionParts,Hr as getKeylessConfig,Co as hashStrToField,Lf as hashValues,pf as isBcsAddress,mf as isBcsBool,xf as isBcsFixedBytes,tf as isBcsString,gf as isBcsU128,bf as isBcsU16,hf as isBcsU256,cf as isBcsU32,df as isBcsU64,af as isBcsU8,F as isBlockEpilogueTransactionResponse,C as isBlockMetadataTransactionResponse,Ze as isBool,lo as isCanonicalEd25519Signature,G as isEd25519Signature,ef as isEmptyOption,ff as isEncodedEntryFunctionArgument,pr as isEncodedStruct,J as isFeePayerSignature,B as isGenesisTransactionResponse,rf as isLargeNumber,I as isMultiAgentSignature,K as isMultiEd25519Signature,$e as isNumber,z as isPendingTransactionResponse,jf as isScriptDataInput,H as isSecp256k1Signature,D as isStateCheckpointTransactionResponse,_e as isString,A as isUserTransactionResponse,xo as isValidBIP44Path,ao as isValidHardenedPath,E as isValidatorTransactionResponse,ho as mnemonicToSeed,Zo as normalizeBundle,$o as nowInSeconds,ie as objectStructTag,he as optionStructTag,x as outOfRangeErrorMessage,Do as padAndPackBytesWithLen,dr as paginateWithCursor,mr as parseEncodedStruct,uf as parseTypeTag,Go as poseidonHash,gr as post,jr as postAptosFaucet,hr as postAptosFullNode,ir as postAptosIndexer,kr as postAptosPepperService,lr as postAptosProvingService,Pf as promiseFulfilledStatus,tr as request,_o as sleep,go as splitPath,vf as standardizeTypeTags,ge as stringStructTag,kf as throwTypeMismatch,a as validateNumberInRange};
|
|
1
|
+
import"./chunk-RMMOF53Q.mjs";import{a as Sf}from"./chunk-WCA7L75D.mjs";import"./chunk-JDFS6SHT.mjs";import"./chunk-43MUZWVN.mjs";import"./chunk-4F3VHS2S.mjs";import"./chunk-JCDHXZTA.mjs";import"./chunk-CEP6EADF.mjs";import"./chunk-ZWJVQTDY.mjs";import"./chunk-VCSS3V44.mjs";import"./chunk-5QOSTSIW.mjs";import"./chunk-HQOWHNKR.mjs";import"./chunk-4KPBLPU7.mjs";import"./chunk-FYT6RPSK.mjs";import"./chunk-I2NMCLNW.mjs";import"./chunk-FR4O6HNW.mjs";import"./chunk-IHYTP2EW.mjs";import{a as Pf,b as Qf,c as Rf}from"./chunk-KUWMUW73.mjs";import{a as Of}from"./chunk-AQXQWUX7.mjs";import"./chunk-2CJC43CV.mjs";import{a as Nf}from"./chunk-FVQ2GQNB.mjs";import"./chunk-KJBQFBVO.mjs";import"./chunk-RJKLM6YJ.mjs";import"./chunk-ULIFNOYF.mjs";import"./chunk-SARKEXHD.mjs";import"./chunk-OCVJWO3Z.mjs";import"./chunk-IBYXIO7Q.mjs";import"./chunk-YTHUVHCC.mjs";import"./chunk-3FVMMVQV.mjs";import"./chunk-XU2II3PY.mjs";import"./chunk-ZCUT3APC.mjs";import"./chunk-KUSCKTCM.mjs";import"./chunk-EML77GV4.mjs";import"./chunk-ZJDPELCV.mjs";import"./chunk-KIP6IQMK.mjs";import"./chunk-EVE6S5RH.mjs";import"./chunk-4TWB5MNW.mjs";import"./chunk-UIOKQOUS.mjs";import"./chunk-I5OYNCZS.mjs";import"./chunk-JXCZTOYC.mjs";import{a as Cf,b as Df,c as Ef,d as Ff,e as Gf,f as Hf,g as If,h as Jf,i as Kf,j as Lf,k as Mf}from"./chunk-DIEICWUV.mjs";import{a as vf,b as wf,c as yf,d as zf,e as Af,f as Bf}from"./chunk-JP2VLTME.mjs";import{a as Ze,b as _e,c as $e,d as of,e as rf,f as ef,g as ff,h as mf,i as pf,j as tf,k as xf,l as af,m as bf,n as cf,o as df,p as gf,q as hf,r as jf,s as kf,t as lf,u as nf}from"./chunk-3CE7U4WL.mjs";import{a as qf,b as sf,c as uf}from"./chunk-KRVLR3L4.mjs";import"./chunk-BSCOVLWS.mjs";import"./chunk-V3MBJJTL.mjs";import"./chunk-CB3FVCPQ.mjs";import"./chunk-GAEAYY44.mjs";import{a as Xe}from"./chunk-SYFG3I44.mjs";import{a as We}from"./chunk-VOB4QKW3.mjs";import{a as Te}from"./chunk-3DFQJD62.mjs";import{a as Ye}from"./chunk-4J3DDFO2.mjs";import{a as Ue,b as Ve}from"./chunk-AOPAQHIZ.mjs";import{a as Se}from"./chunk-UQHGL4F3.mjs";import{a as Qe}from"./chunk-7E46CYWE.mjs";import{a as Re}from"./chunk-VLTTWTZJ.mjs";import{a as Me,b as Ne,c as Oe,d as Pe}from"./chunk-J24ZBP6F.mjs";import"./chunk-4NMDYPUD.mjs";import{a as Le}from"./chunk-RQPOJQIS.mjs";import{a as Ce}from"./chunk-XCM2PVNZ.mjs";import{a as Je}from"./chunk-U2BCB2ZR.mjs";import{a as Ke}from"./chunk-UDWGG7VY.mjs";import{a as ye,b as ze,c as Ae,d as Be}from"./chunk-KP5ASFWM.mjs";import"./chunk-UYVPNUH3.mjs";import{a as je,b as ke,c as le,d as ne,e as qe,f as se,g as ue,h as ve,i as we}from"./chunk-UEMSB6ON.mjs";import{a as Yr,b as Zr,c as _r,d as $r,e as oe,f as re,g as ee,h as fe,i as me,j as pe,k as te,l as xe,m as ae,n as be,o as ce,p as de,q as ge,r as he,s as ie}from"./chunk-OTY3NO7Q.mjs";import{a as Xr}from"./chunk-NODYW7DM.mjs";import{a as De,b as Ee,c as Fe,d as Ge,e as He,f as Ie}from"./chunk-GJZ3SSXU.mjs";import{a as Nr,b as Or,c as Pr,d as Qr,e as Rr}from"./chunk-ZD4EQZKJ.mjs";import{a as Sr}from"./chunk-ZINOJTLU.mjs";import{a as Tr}from"./chunk-AGBA3Y7A.mjs";import"./chunk-7KCZAAYE.mjs";import"./chunk-E7FWVXGX.mjs";import"./chunk-NECL5FCQ.mjs";import"./chunk-4QMXOWHP.mjs";import{a as Ur,b as Vr,c as Wr}from"./chunk-PCLU4KLY.mjs";import"./chunk-HEZ2ZYZA.mjs";import{a as uo,b as vo}from"./chunk-OZRUYSI3.mjs";import{a as Lr,b as Mr}from"./chunk-LVLCMN7X.mjs";import{a as Jr,b as Kr}from"./chunk-6HWNCKNB.mjs";import"./chunk-KUX6GQ2E.mjs";import{a as wo,b as yo,c as zo}from"./chunk-BFAYEGUQ.mjs";import{a as Ir}from"./chunk-NOFMA27U.mjs";import{a as nr,b as qr,c as sr,d as ur,e as vr,f as wr,g as yr,h as zr,i as Ar,j as Br,k as Cr,l as Dr,m as Er,n as Fr,o as Gr,p as Hr}from"./chunk-SV6XYAEJ.mjs";import{a as Co,b as Do,c as Eo,d as Fo,e as Go}from"./chunk-GMKKHGXK.mjs";import"./chunk-ONBFUPEC.mjs";import{a as Ao,b as Bo}from"./chunk-S4BBYLCO.mjs";import{a as lo,b as no,c as qo,d as so}from"./chunk-VQJIGBIR.mjs";import"./chunk-KIW54KWR.mjs";import{a as io,b as jo}from"./chunk-4OV7QU2U.mjs";import{a as ko}from"./chunk-IBLZ6MZU.mjs";import{a as fo,b as mo,c as po,d as to,e as xo,f as ao,g as bo,h as co,i as go,j as ho}from"./chunk-PHP47DI4.mjs";import{a as eo}from"./chunk-PRZ7AIGA.mjs";import"./chunk-M3GSPPUA.mjs";import"./chunk-4QPLGT4N.mjs";import"./chunk-VHNX2NUR.mjs";import"./chunk-HBIDHQ2M.mjs";import{a as oo,b as ro}from"./chunk-KM6UXNC7.mjs";import"./chunk-N2FKVZ4D.mjs";import{a as ar,b as br,c as cr,d as dr}from"./chunk-VDCQU3UG.mjs";import{a as gr,b as hr,c as ir,d as jr,e as kr,f as lr}from"./chunk-WUNJA7HN.mjs";import{a as tr,b as xr}from"./chunk-75NUNLHW.mjs";import"./chunk-HGLO5LDS.mjs";import{a as Zo}from"./chunk-4CDDWSKZ.mjs";import{a as Ro,b as So,c as To,d as Uo,e as Vo,f as Wo,g as Xo,h as Yo}from"./chunk-WNCWH4Z2.mjs";import{a as Qo}from"./chunk-GQABU3RQ.mjs";import{a as Ho,b as Io,c as Jo,d as Ko,e as Lo,f as Mo,g as No,h as Oo,i as Po}from"./chunk-J245N3XF.mjs";import"./chunk-555I4YHP.mjs";import{a as _o,b as $o,c as or,d as rr,e as er,f as fr,g as mr,h as pr}from"./chunk-LEKBJ2EG.mjs";import"./chunk-FZY4PMEE.mjs";import{a as Y,b as Z,c as _,d as $}from"./chunk-44HKW3VX.mjs";import{a as R,b as S,c as T,d as U,e as V,f as W,g as X}from"./chunk-6FLHGOKP.mjs";import{a as c}from"./chunk-OZN3OOJV.mjs";import{a as b}from"./chunk-JGNMNCQB.mjs";import{A as L,B as M,C as N,D as O,E as P,F as Q,a as d,b as g,c as h,d as i,e as j,f as k,g as l,h as n,i as q,j as s,k as u,l as v,m as w,n as y,o as z,p as A,q as B,r as C,s as D,t as E,u as F,v as G,w as H,x as I,y as J,z as K}from"./chunk-7XS45O6M.mjs";import"./chunk-4WPQQPUF.mjs";import{a as m,b as p,c as t,d as x,e as a}from"./chunk-QQIVWB6G.mjs";import{a as e,b as f}from"./chunk-KFNDDPOW.mjs";import{a as r}from"./chunk-6Q2O5G3J.mjs";import{a as o}from"./chunk-N47FTRYO.mjs";import"./chunk-56CNRT2K.mjs";import"./chunk-KDMSOCZY.mjs";export{mo as APTOS_BIP44_REGEX,Lo as APTOS_COIN,Mo as APTOS_FA,fo as APTOS_HARDENED_REGEX,Ue as AbstractKeylessAccount,Se as Account,ro as AccountAddress,Nr as AccountAuthenticator,Or as AccountAuthenticatorEd25519,Pr as AccountAuthenticatorMultiEd25519,Rr as AccountAuthenticatorMultiKey,Qr as AccountAuthenticatorSingleKey,l as AccountAuthenticatorVariant,jo as AccountPublicKey,Of as AccountSequenceNumber,oo as AddressInvalidReason,Jr as AnyPublicKey,n as AnyPublicKeyVariant,Kr as AnySignature,q as AnySignatureVariant,Sf as Aptos,Qo as AptosApiError,Ho as AptosApiType,Nf as AptosConfig,eo as AuthenticationKey,R as Bool,co as CKDPriv,Sr as ChainId,Io as DEFAULT_MAX_GAS_AMOUNT,Jo as DEFAULT_TXN_EXP_SEC_FROM_NOW,Ko as DEFAULT_TXN_TIMEOUT_SEC,Q as DeriveScheme,o as Deserializer,nr as EPK_HORIZON_SECS,Qe as Ed25519Account,qo as Ed25519PrivateKey,no as Ed25519PublicKey,so as Ed25519Signature,se as EntryFunction,c as EntryFunctionBytes,Cr as EphemeralCertificate,v as EphemeralCertificateVariant,Te as EphemeralKeyPair,Ao as EphemeralPublicKey,s as EphemeralPublicKeyVariant,Bo as EphemeralSignature,u as EphemeralSignatureVariant,Xe as FederatedKeylessAccount,Ir as FederatedKeylessPublicKey,Be as FeePayerRawTransaction,b as FixedBytes,Dr as Groth16Zkp,to as HARDENED_OFFSET,f as Hex,e as HexInvalidReason,Tr as Identifier,po as KeyType,We as KeylessAccount,Gr as KeylessConfiguration,Ar as KeylessPublicKey,Br as KeylessSignature,qr as MAX_AUD_VAL_BYTES,zr as MAX_COMMITED_EPK_BYTES,wr as MAX_EXTRA_FIELD_BYTES,vr as MAX_ISS_VAL_BYTES,yr as MAX_JWT_HEADER_B64_BYTES,sr as MAX_UID_KEY_BYTES,ur as MAX_UID_VAL_BYTES,d as MimeType,Xr as ModuleId,M as MoveAbility,L as MoveFunctionVisibility,$ as MoveOption,_ as MoveString,Y as MoveVector,Ae as MultiAgentRawTransaction,Le as MultiAgentTransaction,uo as MultiEd25519PublicKey,vo as MultiEd25519Signature,Lr as MultiKey,Ye as MultiKeyAccount,Mr as MultiKeySignature,ve as MultiSig,we as MultiSigTransactionPayload,Wo as Network,Xo as NetworkToChainId,To as NetworkToFaucetAPI,Ro as NetworkToIndexerAPI,Yo as NetworkToNetworkName,So as NetworkToNodeAPI,Uo as NetworkToPepperAPI,Vo as NetworkToProverAPI,r as ParsingError,Po as ProcessorType,io as PublicKey,No as RAW_TRANSACTION_SALT,Oo as RAW_TRANSACTION_WITH_DATA_SALT,ye as RawTransaction,ze as RawTransactionWithData,N as RoleType,Ce as RotationProofChallenge,ue as Script,h as ScriptTransactionArgumentVariants,yo as Secp256k1PrivateKey,wo as Secp256k1PublicKey,zo as Secp256k1Signature,m as Serializable,Z as Serialized,p as Serializer,ko as Signature,Je as SignedTransaction,O as SigningScheme,P as SigningSchemeInput,Ke as SimpleTransaction,Re as SingleKeyAccount,ce as StructTag,Ve as TransactionAndProof,De as TransactionAuthenticator,Ee as TransactionAuthenticatorEd25519,He as TransactionAuthenticatorFeePayer,Ge as TransactionAuthenticatorMultiAgent,Fe as TransactionAuthenticatorMultiEd25519,Ie as TransactionAuthenticatorSingleSender,k as TransactionAuthenticatorVariant,ke as TransactionPayload,ne as TransactionPayloadEntryFunction,qe as TransactionPayloadMultiSig,le as TransactionPayloadScript,i as TransactionPayloadVariants,y as TransactionResponseType,j as TransactionVariants,Rf as TransactionWorker,Qf as TransactionWorkerEventsEnum,Yr as TypeTag,me as TypeTagAddress,Zr as TypeTagBool,xe as TypeTagGeneric,sf as TypeTagParserError,qf as TypeTagParserErrorType,te as TypeTagReference,pe as TypeTagSigner,be as TypeTagStruct,ee as TypeTagU128,$r as TypeTagU16,fe as TypeTagU256,oe as TypeTagU32,re as TypeTagU64,_r as TypeTagU8,g as TypeTagVariants,ae as TypeTagVector,W as U128,T as U16,X as U256,U as U32,V as U64,S as U8,Fr as ZeroKnowledgeSig,Er as ZkProof,w as ZkpVariant,de as aptosCoinStructTag,xr as aptosRequest,rr as base64UrlDecode,Fo as bigIntToBytesLE,Hf as buildTransaction,Eo as bytesToBigIntLE,Bf as checkOrConvertArgument,er as convertAmountFromHumanReadableToOnChain,fr as convertAmountFromOnChainToHumanReadable,Af as convertArgument,of as convertNumber,Ur as createObjectAddress,Vr as createResourceAddress,Wr as createTokenAddress,bo as deriveKey,Me as deriveTransactionType,je as deserializeFromScriptArgument,t as ensureBoolean,yf as fetchEntryFunctionAbi,wf as fetchFunctionAbi,zf as fetchViewFunctionAbi,lf as findFirstNonSignerArg,or as floorToWholeHour,Gf as generateRawTransaction,Kf as generateSignedTransaction,If as generateSignedTransactionForSimulation,Ne as generateSigningMessage,Oe as generateSigningMessageForSerializable,Pe as generateSigningMessageForTransaction,Cf as generateTransactionPayload,Df as generateTransactionPayloadWithABI,Mf as generateUserTransactionHash,Ef as generateViewFunctionPayload,Ff as generateViewFunctionPayloadWithABI,ar as get,br as getAptosFullNode,cr as getAptosPepperService,Jf as getAuthenticatorForSimulation,nf as getFunctionParts,Hr as getKeylessConfig,Co as hashStrToField,Lf as hashValues,pf as isBcsAddress,mf as isBcsBool,xf as isBcsFixedBytes,tf as isBcsString,gf as isBcsU128,bf as isBcsU16,hf as isBcsU256,cf as isBcsU32,df as isBcsU64,af as isBcsU8,F as isBlockEpilogueTransactionResponse,C as isBlockMetadataTransactionResponse,Ze as isBool,lo as isCanonicalEd25519Signature,G as isEd25519Signature,ef as isEmptyOption,ff as isEncodedEntryFunctionArgument,pr as isEncodedStruct,J as isFeePayerSignature,B as isGenesisTransactionResponse,rf as isLargeNumber,I as isMultiAgentSignature,K as isMultiEd25519Signature,$e as isNumber,z as isPendingTransactionResponse,jf as isScriptDataInput,H as isSecp256k1Signature,D as isStateCheckpointTransactionResponse,_e as isString,A as isUserTransactionResponse,xo as isValidBIP44Path,ao as isValidHardenedPath,E as isValidatorTransactionResponse,ho as mnemonicToSeed,Zo as normalizeBundle,$o as nowInSeconds,ie as objectStructTag,he as optionStructTag,x as outOfRangeErrorMessage,Do as padAndPackBytesWithLen,dr as paginateWithCursor,mr as parseEncodedStruct,uf as parseTypeTag,Go as poseidonHash,gr as post,jr as postAptosFaucet,hr as postAptosFullNode,ir as postAptosIndexer,kr as postAptosPepperService,lr as postAptosProvingService,Pf as promiseFulfilledStatus,tr as request,_o as sleep,go as splitPath,vf as standardizeTypeTags,ge as stringStructTag,kf as throwTypeMismatch,a as validateNumberInRange};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|