@aptos-labs/ts-sdk 1.33.2 → 1.35.0-zeta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -9
- package/dist/common/{accountAddress-Cf1amU98.d.ts → accountAddress-D3UA_cOZ.d.ts} +86 -12
- package/dist/common/chunk-CSUBLTFA.js +1297 -0
- package/dist/common/chunk-CSUBLTFA.js.map +1 -0
- package/dist/common/cli/index.d.ts +1 -1
- package/dist/common/cli/index.js +486 -1
- package/dist/common/cli/index.js.map +1 -1
- package/dist/common/index.d.ts +3184 -2531
- package/dist/common/index.js +18279 -420
- package/dist/common/index.js.map +1 -1
- package/dist/esm/account/AbstractKeylessAccount.d.mts +1 -0
- package/dist/esm/account/AbstractKeylessAccount.mjs +75 -1
- package/dist/esm/account/AbstractedAccount.d.mts +91 -0
- package/dist/esm/account/AbstractedAccount.mjs +75 -0
- package/dist/esm/account/Account.d.mts +2 -1
- package/dist/esm/account/Account.mjs +72 -1
- package/dist/esm/account/AccountUtils.d.mts +17 -16
- package/dist/esm/account/AccountUtils.mjs +78 -1
- package/dist/esm/account/Ed25519Account.d.mts +3 -2
- package/dist/esm/account/Ed25519Account.mjs +70 -1
- package/dist/esm/account/EphemeralKeyPair.d.mts +1 -0
- package/dist/esm/account/EphemeralKeyPair.mjs +50 -1
- package/dist/esm/account/FederatedKeylessAccount.d.mts +1 -0
- package/dist/esm/account/FederatedKeylessAccount.mjs +72 -1
- package/dist/esm/account/KeylessAccount.d.mts +1 -0
- package/dist/esm/account/KeylessAccount.mjs +72 -1
- package/dist/esm/account/MultiEd25519Account.d.mts +108 -0
- package/dist/esm/account/MultiEd25519Account.mjs +71 -0
- package/dist/esm/account/MultiKeyAccount.d.mts +2 -2
- package/dist/esm/account/MultiKeyAccount.mjs +74 -1
- package/dist/esm/account/SingleKeyAccount.d.mts +1 -0
- package/dist/esm/account/SingleKeyAccount.mjs +72 -1
- package/dist/esm/account/index.d.mts +4 -0
- package/dist/esm/account/index.mjs +119 -1
- package/dist/esm/account/utils.d.mts +1 -0
- package/dist/esm/account/utils.mjs +54 -1
- package/dist/esm/api/account/abstraction.d.mts +209 -0
- package/dist/esm/api/account/abstraction.mjs +102 -0
- package/dist/esm/api/account.d.mts +21 -2
- package/dist/esm/api/account.mjs +103 -1
- package/dist/esm/api/ans.d.mts +1 -0
- package/dist/esm/api/ans.mjs +101 -1
- package/dist/esm/api/aptos.d.mts +7 -1
- package/dist/esm/api/aptos.mjs +136 -1
- package/dist/esm/api/aptosConfig.d.mts +1 -0
- package/dist/esm/api/aptosConfig.mjs +9 -1
- package/dist/esm/api/coin.d.mts +1 -0
- package/dist/esm/api/coin.mjs +99 -1
- package/dist/esm/api/digitalAsset.d.mts +1 -0
- package/dist/esm/api/digitalAsset.mjs +101 -1
- package/dist/esm/api/event.d.mts +1 -0
- package/dist/esm/api/event.mjs +59 -1
- package/dist/esm/api/experimental.d.mts +83 -0
- package/dist/esm/api/experimental.mjs +100 -0
- package/dist/esm/api/faucet.d.mts +1 -0
- package/dist/esm/api/faucet.mjs +58 -1
- package/dist/esm/api/fungibleAsset.d.mts +1 -0
- package/dist/esm/api/fungibleAsset.mjs +101 -1
- package/dist/esm/api/general.d.mts +1 -0
- package/dist/esm/api/general.mjs +99 -1
- package/dist/esm/api/index.d.mts +5 -0
- package/dist/esm/api/index.mjs +140 -1
- package/dist/esm/api/keyless.d.mts +1 -0
- package/dist/esm/api/keyless.mjs +100 -1
- package/dist/esm/api/object.d.mts +1 -0
- package/dist/esm/api/object.mjs +59 -1
- package/dist/esm/api/staking.d.mts +1 -0
- package/dist/esm/api/staking.mjs +59 -1
- package/dist/esm/api/table.d.mts +1 -0
- package/dist/esm/api/table.mjs +38 -1
- package/dist/esm/api/transaction.d.mts +17 -6
- package/dist/esm/api/transaction.mjs +108 -1
- package/dist/esm/api/transactionSubmission/build.d.mts +66 -0
- package/dist/esm/api/transactionSubmission/build.mjs +99 -1
- package/dist/esm/api/transactionSubmission/helpers.mjs +9 -1
- package/dist/esm/api/transactionSubmission/management.d.mts +1 -0
- package/dist/esm/api/transactionSubmission/management.mjs +103 -1
- package/dist/esm/api/transactionSubmission/sign.d.mts +1 -0
- package/dist/esm/api/transactionSubmission/sign.mjs +218 -1
- package/dist/esm/api/transactionSubmission/sign.mjs.map +1 -1
- package/dist/esm/api/transactionSubmission/simulate.d.mts +1 -0
- package/dist/esm/api/transactionSubmission/simulate.mjs +100 -1
- package/dist/esm/api/transactionSubmission/submit.d.mts +1 -0
- package/dist/esm/api/transactionSubmission/submit.mjs +100 -1
- package/dist/esm/api/utils.d.mts +1 -0
- package/dist/esm/api/utils.mjs +36 -1
- package/dist/esm/bcs/consts.d.mts +1 -0
- package/dist/esm/bcs/consts.mjs +17 -1
- package/dist/esm/bcs/deserializer.d.mts +1 -0
- package/dist/esm/bcs/deserializer.mjs +10 -1
- package/dist/esm/bcs/index.d.mts +1 -0
- package/dist/esm/bcs/index.mjs +60 -1
- package/dist/esm/bcs/serializable/entryFunctionBytes.d.mts +1 -0
- package/dist/esm/bcs/serializable/entryFunctionBytes.mjs +12 -1
- package/dist/esm/bcs/serializable/fixedBytes.d.mts +1 -0
- package/dist/esm/bcs/serializable/fixedBytes.mjs +11 -1
- package/dist/esm/bcs/serializable/movePrimitives.d.mts +1 -0
- package/dist/esm/bcs/serializable/movePrimitives.mjs +26 -1
- package/dist/esm/bcs/serializable/moveStructs.d.mts +1 -0
- package/dist/esm/bcs/serializable/moveStructs.mjs +22 -1
- package/dist/esm/bcs/serializer.d.mts +1 -0
- package/dist/esm/bcs/serializer.mjs +18 -1
- package/dist/esm/chunk-2ZOIVB2U.mjs +63 -0
- package/dist/esm/{chunk-5EYTHMRZ.mjs.map → chunk-2ZOIVB2U.mjs.map} +1 -1
- package/dist/esm/chunk-32UQAST6.mjs +296 -0
- package/dist/esm/{chunk-QHEKBHNU.mjs.map → chunk-32UQAST6.mjs.map} +1 -1
- package/dist/esm/chunk-3IWV2Q3K.mjs +12 -0
- package/dist/esm/{chunk-XJJVJOX5.mjs.map → chunk-3IWV2Q3K.mjs.map} +1 -1
- package/dist/esm/chunk-3QMLVT4L.mjs +177 -0
- package/dist/esm/{chunk-E5HGSOG2.mjs.map → chunk-3QMLVT4L.mjs.map} +1 -1
- package/dist/esm/chunk-3SCNBHUA.mjs +177 -0
- package/dist/esm/{chunk-DOQV5BSA.mjs.map → chunk-3SCNBHUA.mjs.map} +1 -1
- package/dist/esm/chunk-3TUV6YMI.mjs +305 -0
- package/dist/esm/chunk-3TUV6YMI.mjs.map +1 -0
- package/dist/esm/chunk-46VPRC7E.mjs +407 -0
- package/dist/esm/{chunk-QQEK7WVP.mjs.map → chunk-46VPRC7E.mjs.map} +1 -1
- package/dist/esm/chunk-4BXAKN6A.mjs +84 -0
- package/dist/esm/chunk-4BXAKN6A.mjs.map +1 -0
- package/dist/esm/chunk-4WNIKKIV.mjs +45 -0
- package/dist/esm/{chunk-NYETBDSR.mjs.map → chunk-4WNIKKIV.mjs.map} +1 -1
- package/dist/esm/chunk-5E2IDRDF.mjs +61 -0
- package/dist/esm/{chunk-5EBUWO2M.mjs.map → chunk-5E2IDRDF.mjs.map} +1 -1
- package/dist/esm/chunk-5QHMFYVL.mjs +42 -0
- package/dist/esm/chunk-5QHMFYVL.mjs.map +1 -0
- package/dist/esm/chunk-6ASWESA2.mjs +77 -0
- package/dist/esm/{chunk-TOBQ5UE6.mjs.map → chunk-6ASWESA2.mjs.map} +1 -1
- package/dist/esm/chunk-6I37A76G.mjs +29 -0
- package/dist/esm/{chunk-BI3BTSUB.mjs.map → chunk-6I37A76G.mjs.map} +1 -1
- package/dist/esm/chunk-6PMKDSGB.mjs +167 -0
- package/dist/esm/{chunk-5VMAJTTV.mjs.map → chunk-6PMKDSGB.mjs.map} +1 -1
- package/dist/esm/chunk-6SNGKTWE.mjs +91 -0
- package/dist/esm/{chunk-BGSEBFFC.mjs.map → chunk-6SNGKTWE.mjs.map} +1 -1
- package/dist/esm/chunk-A3TQLIEM.mjs +19 -0
- package/dist/esm/{chunk-S7RZGC56.mjs.map → chunk-A3TQLIEM.mjs.map} +1 -1
- package/dist/esm/chunk-AGKEC2IM.mjs +250 -0
- package/dist/esm/chunk-AGKEC2IM.mjs.map +1 -0
- package/dist/esm/chunk-AKXCFBYF.mjs +49 -0
- package/dist/esm/chunk-AKXCFBYF.mjs.map +1 -0
- package/dist/esm/chunk-APM7OSLS.mjs +122 -0
- package/dist/esm/{chunk-GOXRBEIJ.mjs.map → chunk-APM7OSLS.mjs.map} +1 -1
- package/dist/esm/chunk-BDM6FBUO.mjs +198 -0
- package/dist/esm/chunk-BDM6FBUO.mjs.map +1 -0
- package/dist/esm/chunk-BEYIOC2H.mjs +34 -0
- package/dist/esm/{chunk-YOZBVVKL.mjs.map → chunk-BEYIOC2H.mjs.map} +1 -1
- package/dist/esm/chunk-BMM72IIP.mjs +250 -0
- package/dist/esm/{chunk-AZWVCBK2.mjs.map → chunk-BMM72IIP.mjs.map} +1 -1
- package/dist/esm/chunk-BQ5JTYXK.mjs +1014 -0
- package/dist/esm/{chunk-WQRGDSPD.mjs.map → chunk-BQ5JTYXK.mjs.map} +1 -1
- package/dist/esm/chunk-C7T6GW5P.mjs +376 -0
- package/dist/esm/{chunk-EBMEXURY.mjs.map → chunk-C7T6GW5P.mjs.map} +1 -1
- package/dist/esm/chunk-CXLXUSCG.mjs +417 -0
- package/dist/esm/{chunk-Q4C4U6I4.mjs.map → chunk-CXLXUSCG.mjs.map} +1 -1
- package/dist/esm/chunk-D4MW64RH.mjs +188 -0
- package/dist/esm/{chunk-DYATTONT.mjs.map → chunk-D4MW64RH.mjs.map} +1 -1
- package/dist/esm/chunk-DDZGHA66.mjs +495 -0
- package/dist/esm/{chunk-G4O6FXCF.mjs.map → chunk-DDZGHA66.mjs.map} +1 -1
- package/dist/esm/chunk-DMFRIING.mjs +286 -0
- package/dist/esm/chunk-DMFRIING.mjs.map +1 -0
- package/dist/esm/chunk-DUOU3SNQ.mjs +51 -0
- package/dist/esm/chunk-DUOU3SNQ.mjs.map +1 -0
- package/dist/esm/chunk-EBEO4SA4.mjs +367 -0
- package/dist/esm/{chunk-ONTWK5FU.mjs.map → chunk-EBEO4SA4.mjs.map} +1 -1
- package/dist/esm/chunk-ECTX2FGD.mjs +355 -0
- package/dist/esm/{chunk-NBNZ53ZV.mjs.map → chunk-ECTX2FGD.mjs.map} +1 -1
- package/dist/esm/chunk-EFJAJFI3.mjs +53 -0
- package/dist/esm/{chunk-X6UNY6YM.mjs.map → chunk-EFJAJFI3.mjs.map} +1 -1
- package/dist/esm/chunk-EMKV5DFX.mjs +66 -0
- package/dist/esm/{chunk-6YHDZLRN.mjs.map → chunk-EMKV5DFX.mjs.map} +1 -1
- package/dist/esm/chunk-EPTUAWRA.mjs +895 -0
- package/dist/esm/chunk-EPTUAWRA.mjs.map +1 -0
- package/dist/esm/chunk-ESZLRZTK.mjs +276 -0
- package/dist/esm/{chunk-2FBJWTJD.mjs.map → chunk-ESZLRZTK.mjs.map} +1 -1
- package/dist/esm/chunk-F7W7KS5C.mjs +52 -0
- package/dist/esm/{chunk-C3Q23D22.mjs.map → chunk-F7W7KS5C.mjs.map} +1 -1
- package/dist/esm/chunk-FMNMYKYH.mjs +71 -0
- package/dist/esm/{chunk-N4DM5FYH.mjs.map → chunk-FMNMYKYH.mjs.map} +1 -1
- package/dist/esm/chunk-G34CJDST.mjs +139 -0
- package/dist/esm/chunk-G34CJDST.mjs.map +1 -0
- package/dist/esm/chunk-G4NBRMZ2.mjs +7 -0
- package/dist/esm/chunk-G4NBRMZ2.mjs.map +1 -0
- package/dist/esm/chunk-GFPEB22G.mjs +1 -0
- package/dist/esm/chunk-GFPEB22G.mjs.map +1 -0
- package/dist/esm/chunk-GUA5YTIK.mjs +362 -0
- package/dist/esm/{chunk-35DKMW7Q.mjs.map → chunk-GUA5YTIK.mjs.map} +1 -1
- package/dist/esm/chunk-HLTYSM7H.mjs +89 -0
- package/dist/esm/{chunk-VV4HCOJQ.mjs.map → chunk-HLTYSM7H.mjs.map} +1 -1
- package/dist/esm/chunk-HMHFKEHQ.mjs +70 -0
- package/dist/esm/chunk-HMHFKEHQ.mjs.map +1 -0
- package/dist/esm/chunk-HQ6A6TYS.mjs +475 -0
- package/dist/esm/chunk-HQ6A6TYS.mjs.map +1 -0
- package/dist/esm/chunk-HQTQEHHZ.mjs +195 -0
- package/dist/esm/chunk-HQTQEHHZ.mjs.map +1 -0
- package/dist/esm/chunk-I25AX6PQ.mjs +7 -0
- package/dist/esm/{chunk-77AEKF7K.mjs.map → chunk-I25AX6PQ.mjs.map} +1 -1
- package/dist/esm/chunk-I4OHHVRF.mjs +125 -0
- package/dist/esm/{chunk-M77M6NSB.mjs.map → chunk-I4OHHVRF.mjs.map} +1 -1
- package/dist/esm/chunk-I6QE3PKO.mjs +100 -0
- package/dist/esm/chunk-I6QE3PKO.mjs.map +1 -0
- package/dist/esm/chunk-IPUAVRGL.mjs +248 -0
- package/dist/esm/{chunk-VUIHJIMX.mjs.map → chunk-IPUAVRGL.mjs.map} +1 -1
- package/dist/esm/chunk-J7WQ42OC.mjs +195 -0
- package/dist/esm/{chunk-4EUS4E6S.mjs.map → chunk-J7WQ42OC.mjs.map} +1 -1
- package/dist/esm/chunk-JOVCSFQC.mjs +58 -0
- package/dist/esm/{chunk-4ZYPDCSP.mjs.map → chunk-JOVCSFQC.mjs.map} +1 -1
- package/dist/esm/chunk-K3CXNID3.mjs +74 -0
- package/dist/esm/{chunk-ZPV7HPA4.mjs.map → chunk-K3CXNID3.mjs.map} +1 -1
- package/dist/esm/chunk-KAKSJSCR.mjs +58 -0
- package/dist/esm/{chunk-FIEMUPXF.mjs.map → chunk-KAKSJSCR.mjs.map} +1 -1
- package/dist/esm/chunk-KCV4HRSJ.mjs +420 -0
- package/dist/esm/{chunk-NWLJ6RW7.mjs.map → chunk-KCV4HRSJ.mjs.map} +1 -1
- package/dist/esm/chunk-KEKNIJHE.mjs +90 -0
- package/dist/esm/{chunk-XTJOA5QN.mjs.map → chunk-KEKNIJHE.mjs.map} +1 -1
- package/dist/esm/chunk-KEZG4OGH.mjs +725 -0
- package/dist/esm/chunk-KEZG4OGH.mjs.map +1 -0
- package/dist/esm/chunk-KLUO6XPE.mjs +33 -0
- package/dist/esm/{chunk-WCMW2L3P.mjs.map → chunk-KLUO6XPE.mjs.map} +1 -1
- package/dist/esm/chunk-KLZCGNPI.mjs +322 -0
- package/dist/esm/{chunk-AXYARCYT.mjs.map → chunk-KLZCGNPI.mjs.map} +1 -1
- package/dist/esm/chunk-KPAICS4T.mjs +160 -0
- package/dist/esm/{chunk-7IY3DTEF.mjs.map → chunk-KPAICS4T.mjs.map} +1 -1
- package/dist/esm/chunk-KSK3XIGF.mjs +502 -0
- package/dist/esm/{chunk-IDTLNF4M.mjs.map → chunk-KSK3XIGF.mjs.map} +1 -1
- package/dist/esm/chunk-LFMXR5C2.mjs +208 -0
- package/dist/esm/{chunk-E7JDVKFY.mjs.map → chunk-LFMXR5C2.mjs.map} +1 -1
- package/dist/esm/chunk-LHQJNJUB.mjs +829 -0
- package/dist/esm/chunk-LHQJNJUB.mjs.map +1 -0
- package/dist/esm/chunk-LJRNGZMY.mjs +10 -0
- package/dist/esm/chunk-LJRNGZMY.mjs.map +1 -0
- package/dist/esm/chunk-LL4RQKIB.mjs +120 -0
- package/dist/esm/chunk-LL4RQKIB.mjs.map +1 -0
- package/dist/esm/chunk-LSIXUJ5T.mjs +288 -0
- package/dist/esm/{chunk-XZ4JRYCE.mjs.map → chunk-LSIXUJ5T.mjs.map} +1 -1
- package/dist/esm/chunk-MFFBZ43D.mjs +45 -0
- package/dist/esm/{chunk-N6YTF76Q.mjs.map → chunk-MFFBZ43D.mjs.map} +1 -1
- package/dist/esm/chunk-MG6UFOJW.mjs +207 -0
- package/dist/esm/chunk-MG6UFOJW.mjs.map +1 -0
- package/dist/esm/chunk-MHZVL3EA.mjs +192 -0
- package/dist/esm/chunk-MHZVL3EA.mjs.map +1 -0
- package/dist/esm/chunk-MIVDDJAH.mjs +50 -0
- package/dist/esm/chunk-MIVDDJAH.mjs.map +1 -0
- package/dist/esm/chunk-MUSTBCQX.mjs +71 -0
- package/dist/esm/{chunk-MCLYDS3O.mjs.map → chunk-MUSTBCQX.mjs.map} +1 -1
- package/dist/esm/chunk-MWXBQ6HR.mjs +15 -0
- package/dist/esm/{chunk-4YLUM62M.mjs.map → chunk-MWXBQ6HR.mjs.map} +1 -1
- package/dist/esm/chunk-MYEYZ7PF.mjs +46 -0
- package/dist/esm/{chunk-XKUIMGKU.mjs.map → chunk-MYEYZ7PF.mjs.map} +1 -1
- package/dist/esm/chunk-NMYFY7WN.mjs +219 -0
- package/dist/esm/chunk-NMYFY7WN.mjs.map +1 -0
- package/dist/esm/chunk-NUT2VOX2.mjs +317 -0
- package/dist/esm/{chunk-XTOIL6MB.mjs.map → chunk-NUT2VOX2.mjs.map} +1 -1
- package/dist/esm/chunk-ODG7T6OV.mjs +43 -0
- package/dist/esm/{chunk-2UXW3EB7.mjs.map → chunk-ODG7T6OV.mjs.map} +1 -1
- package/dist/esm/chunk-OFUNBTK4.mjs +169 -0
- package/dist/esm/chunk-OFUNBTK4.mjs.map +1 -0
- package/dist/esm/chunk-OQ6XT2GF.mjs +147 -0
- package/dist/esm/{chunk-5YWH3XPN.mjs.map → chunk-OQ6XT2GF.mjs.map} +1 -1
- package/dist/esm/chunk-P64LPFEC.mjs +128 -0
- package/dist/esm/{chunk-2N5KYALM.mjs.map → chunk-P64LPFEC.mjs.map} +1 -1
- package/dist/esm/chunk-PGFEUN7K.mjs +129 -0
- package/dist/esm/{chunk-CWKNJZB6.mjs.map → chunk-PGFEUN7K.mjs.map} +1 -1
- package/dist/esm/chunk-PKUXOBIV.mjs +138 -0
- package/dist/esm/{chunk-FN4C3CKC.mjs.map → chunk-PKUXOBIV.mjs.map} +1 -1
- package/dist/esm/chunk-PT2QHUB6.mjs +96 -0
- package/dist/esm/{chunk-A5L76YP7.mjs.map → chunk-PT2QHUB6.mjs.map} +1 -1
- package/dist/esm/chunk-QJ6CGH7N.mjs +71 -0
- package/dist/esm/{chunk-OHZURQPY.mjs.map → chunk-QJ6CGH7N.mjs.map} +1 -1
- package/dist/esm/chunk-QN5BQMWP.mjs +21 -0
- package/dist/esm/{chunk-JJM6ELMS.mjs.map → chunk-QN5BQMWP.mjs.map} +1 -1
- package/dist/esm/chunk-QPT4BSAB.mjs +20 -0
- package/dist/esm/{chunk-IF4UU2MT.mjs.map → chunk-QPT4BSAB.mjs.map} +1 -1
- package/dist/esm/chunk-QSYWLSSN.mjs +216 -0
- package/dist/esm/{chunk-ORMOQWWH.mjs.map → chunk-QSYWLSSN.mjs.map} +1 -1
- package/dist/esm/chunk-QW7RQDZ5.mjs +224 -0
- package/dist/esm/chunk-QW7RQDZ5.mjs.map +1 -0
- package/dist/esm/chunk-R4JTQQBX.mjs +37 -0
- package/dist/esm/{chunk-EMURYYVO.mjs.map → chunk-R4JTQQBX.mjs.map} +1 -1
- package/dist/esm/chunk-RQS33JAS.mjs +77 -0
- package/dist/esm/chunk-RQS33JAS.mjs.map +1 -0
- package/dist/esm/chunk-S56SMMAK.mjs +86 -0
- package/dist/esm/{chunk-OROPNHRY.mjs.map → chunk-S56SMMAK.mjs.map} +1 -1
- package/dist/esm/chunk-SAWN7RJP.mjs +15 -0
- package/dist/esm/chunk-SAWN7RJP.mjs.map +1 -0
- package/dist/esm/chunk-SBB4YEPT.mjs +17 -0
- package/dist/esm/{chunk-56CNRT2K.mjs.map → chunk-SBB4YEPT.mjs.map} +1 -1
- package/dist/esm/chunk-SDIZSFCQ.mjs +281 -0
- package/dist/esm/{chunk-3RCAJICY.mjs.map → chunk-SDIZSFCQ.mjs.map} +1 -1
- package/dist/esm/chunk-SFLQPB72.mjs +63 -0
- package/dist/esm/{chunk-4RXKALLC.mjs.map → chunk-SFLQPB72.mjs.map} +1 -1
- package/dist/esm/chunk-SGKF62FT.mjs +70 -0
- package/dist/esm/chunk-SGKF62FT.mjs.map +1 -0
- package/dist/esm/chunk-SN6KXHPA.mjs +162 -0
- package/dist/esm/{chunk-V6VPMNWJ.mjs.map → chunk-SN6KXHPA.mjs.map} +1 -1
- package/dist/esm/chunk-T573PCIR.mjs +700 -0
- package/dist/esm/{chunk-IEUEMBFD.mjs.map → chunk-T573PCIR.mjs.map} +1 -1
- package/dist/esm/chunk-TFW6N66T.mjs +415 -0
- package/dist/esm/{chunk-FZD5RWSZ.mjs.map → chunk-TFW6N66T.mjs.map} +1 -1
- package/dist/esm/chunk-THWEBWUC.mjs +20 -0
- package/dist/esm/{chunk-DPW6ELCQ.mjs.map → chunk-THWEBWUC.mjs.map} +1 -1
- package/dist/esm/chunk-TQDWZXFD.mjs +239 -0
- package/dist/esm/{chunk-OR6GFWLG.mjs.map → chunk-TQDWZXFD.mjs.map} +1 -1
- package/dist/esm/chunk-UIRAXHDH.mjs +1 -0
- package/dist/esm/chunk-UIRAXHDH.mjs.map +1 -0
- package/dist/esm/chunk-UKZP2GAB.mjs +415 -0
- package/dist/esm/chunk-UKZP2GAB.mjs.map +1 -0
- package/dist/esm/chunk-UOHCJOXI.mjs +150 -0
- package/dist/esm/{chunk-43GCGE6C.mjs.map → chunk-UOHCJOXI.mjs.map} +1 -1
- package/dist/esm/chunk-UXAUOSSB.mjs +219 -0
- package/dist/esm/chunk-UXAUOSSB.mjs.map +1 -0
- package/dist/esm/chunk-VGI2LPO3.mjs +604 -0
- package/dist/esm/chunk-VGI2LPO3.mjs.map +1 -0
- package/dist/esm/chunk-WEOK7WVL.mjs +66 -0
- package/dist/esm/{chunk-UC23V7PU.mjs.map → chunk-WEOK7WVL.mjs.map} +1 -1
- package/dist/esm/chunk-WPV52HGD.mjs +40 -0
- package/dist/esm/chunk-WPV52HGD.mjs.map +1 -0
- package/dist/esm/chunk-XGB3QLVI.mjs +86 -0
- package/dist/esm/{chunk-6CXMDJQR.mjs.map → chunk-XGB3QLVI.mjs.map} +1 -1
- package/dist/esm/chunk-XGUYC57L.mjs +97 -0
- package/dist/esm/{chunk-2TJ6OTVD.mjs.map → chunk-XGUYC57L.mjs.map} +1 -1
- package/dist/esm/chunk-XIBOO3WF.mjs +168 -0
- package/dist/esm/{chunk-YCQUYDZI.mjs.map → chunk-XIBOO3WF.mjs.map} +1 -1
- package/dist/esm/chunk-XQFUKBY7.mjs +136 -0
- package/dist/esm/chunk-XQFUKBY7.mjs.map +1 -0
- package/dist/esm/chunk-XXLSA7W7.mjs +79 -0
- package/dist/esm/{chunk-ZGVNZE7J.mjs.map → chunk-XXLSA7W7.mjs.map} +1 -1
- package/dist/esm/chunk-Y3ENAKRC.mjs +73 -0
- package/dist/esm/{chunk-MT2RJ7H3.mjs.map → chunk-Y3ENAKRC.mjs.map} +1 -1
- package/dist/esm/chunk-Y4FHNC5I.mjs +513 -0
- package/dist/esm/{chunk-XY43TPRH.mjs.map → chunk-Y4FHNC5I.mjs.map} +1 -1
- package/dist/esm/chunk-Y7KAC4I4.mjs +130 -0
- package/dist/esm/{chunk-ZAIVZDOL.mjs.map → chunk-Y7KAC4I4.mjs.map} +1 -1
- package/dist/esm/chunk-YIHVPGHN.mjs +689 -0
- package/dist/esm/{chunk-KOORZTHC.mjs.map → chunk-YIHVPGHN.mjs.map} +1 -1
- package/dist/esm/chunk-YU65LNIC.mjs +72 -0
- package/dist/esm/{chunk-ROT6S6BM.mjs.map → chunk-YU65LNIC.mjs.map} +1 -1
- package/dist/esm/chunk-ZNGTK5IZ.mjs +121 -0
- package/dist/esm/chunk-ZNGTK5IZ.mjs.map +1 -0
- package/dist/esm/chunk-ZWCTF3NQ.mjs +25 -0
- package/dist/esm/{chunk-W4BSN6SK.mjs.map → chunk-ZWCTF3NQ.mjs.map} +1 -1
- package/dist/esm/chunk-ZWD4BJVD.mjs +379 -0
- package/dist/esm/chunk-ZWD4BJVD.mjs.map +1 -0
- package/dist/esm/cli/index.d.mts +1 -0
- package/dist/esm/cli/index.mjs +20 -1
- package/dist/esm/cli/localNode.mjs +16 -1
- package/dist/esm/cli/move.d.mts +1 -0
- package/dist/esm/cli/move.mjs +7 -1
- package/dist/esm/client/core.d.mts +37 -1
- package/dist/esm/client/core.mjs +34 -1
- package/dist/esm/client/get.d.mts +36 -1
- package/dist/esm/client/get.mjs +41 -1
- package/dist/esm/client/index.d.mts +4 -3
- package/dist/esm/client/index.mjs +69 -1
- package/dist/esm/client/post.d.mts +35 -1
- package/dist/esm/client/post.mjs +43 -1
- package/dist/esm/core/account/index.d.mts +1 -0
- package/dist/esm/core/account/index.mjs +21 -1
- package/dist/esm/core/account/utils/address.d.mts +1 -0
- package/dist/esm/core/account/utils/address.mjs +19 -1
- package/dist/esm/core/account/utils/index.d.mts +1 -0
- package/dist/esm/core/account/utils/index.mjs +20 -1
- package/dist/esm/core/accountAddress.d.mts +1 -0
- package/dist/esm/core/accountAddress.mjs +16 -1
- package/dist/esm/core/authenticationKey.d.mts +1 -0
- package/dist/esm/core/authenticationKey.mjs +15 -1
- package/dist/esm/core/common.mjs +7 -1
- package/dist/esm/core/crypto/abstraction.d.mts +30 -0
- package/dist/esm/core/crypto/abstraction.mjs +27 -0
- package/dist/esm/core/crypto/abstraction.mjs.map +1 -0
- package/dist/esm/core/crypto/ed25519.d.mts +1 -0
- package/dist/esm/core/crypto/ed25519.mjs +33 -1
- package/dist/esm/core/crypto/ephemeral.d.mts +1 -0
- package/dist/esm/core/crypto/ephemeral.mjs +30 -1
- package/dist/esm/core/crypto/federatedKeyless.d.mts +1 -0
- package/dist/esm/core/crypto/federatedKeyless.mjs +44 -1
- package/dist/esm/core/crypto/hdKey.mjs +25 -1
- package/dist/esm/core/crypto/index.d.mts +2 -1
- package/dist/esm/core/crypto/index.mjs +173 -1
- package/dist/esm/core/crypto/keyless.d.mts +1 -0
- package/dist/esm/core/crypto/keyless.mjs +83 -1
- package/dist/esm/core/crypto/multiEd25519.d.mts +18 -2
- package/dist/esm/core/crypto/multiEd25519.mjs +50 -1
- package/dist/esm/core/crypto/multiKey.d.mts +34 -15
- package/dist/esm/core/crypto/multiKey.mjs +51 -1
- package/dist/esm/core/crypto/poseidon.mjs +15 -1
- package/dist/esm/core/crypto/privateKey.d.mts +1 -0
- package/dist/esm/core/crypto/privateKey.mjs +12 -1
- package/dist/esm/core/crypto/proof.d.mts +1 -0
- package/dist/esm/core/crypto/proof.mjs +20 -1
- package/dist/esm/core/crypto/publicKey.d.mts +1 -0
- package/dist/esm/core/crypto/publicKey.mjs +22 -1
- package/dist/esm/core/crypto/secp256k1.d.mts +1 -0
- package/dist/esm/core/crypto/secp256k1.mjs +29 -1
- package/dist/esm/core/crypto/signature.d.mts +1 -0
- package/dist/esm/core/crypto/signature.mjs +20 -1
- package/dist/esm/core/crypto/singleKey.d.mts +1 -0
- package/dist/esm/core/crypto/singleKey.mjs +48 -1
- package/dist/esm/core/crypto/utils.d.mts +1 -0
- package/dist/esm/core/crypto/utils.mjs +9 -1
- package/dist/esm/core/hex.d.mts +1 -0
- package/dist/esm/core/hex.mjs +12 -1
- package/dist/esm/core/index.d.mts +2 -1
- package/dist/esm/core/index.mjs +202 -1
- package/dist/esm/errors/index.d.mts +1 -0
- package/dist/esm/errors/index.mjs +25 -1
- package/dist/esm/index.d.mts +18 -11
- package/dist/esm/index.mjs +791 -1
- package/dist/esm/internal/abstraction.d.mts +55 -0
- package/dist/esm/internal/abstraction.mjs +104 -0
- package/dist/esm/internal/abstraction.mjs.map +1 -0
- package/dist/esm/internal/account.d.mts +23 -5
- package/dist/esm/internal/account.mjs +128 -1
- package/dist/esm/internal/ans.d.mts +1 -0
- package/dist/esm/internal/ans.mjs +138 -1
- package/dist/esm/internal/coin.d.mts +1 -0
- package/dist/esm/internal/coin.mjs +98 -1
- package/dist/esm/internal/digitalAsset.d.mts +1 -0
- package/dist/esm/internal/digitalAsset.mjs +145 -1
- package/dist/esm/internal/event.d.mts +1 -0
- package/dist/esm/internal/event.mjs +62 -1
- package/dist/esm/internal/experimental.d.mts +52 -0
- package/dist/esm/internal/experimental.mjs +99 -0
- package/dist/esm/internal/experimental.mjs.map +1 -0
- package/dist/esm/internal/faucet.d.mts +1 -0
- package/dist/esm/internal/faucet.mjs +57 -1
- package/dist/esm/internal/fungibleAsset.d.mts +1 -0
- package/dist/esm/internal/fungibleAsset.mjs +105 -1
- package/dist/esm/internal/general.d.mts +1 -0
- package/dist/esm/internal/general.mjs +43 -1
- package/dist/esm/internal/keyless.d.mts +13 -1
- package/dist/esm/internal/keyless.mjs +105 -1
- package/dist/esm/internal/object.d.mts +1 -0
- package/dist/esm/internal/object.mjs +58 -1
- package/dist/esm/internal/staking.d.mts +1 -0
- package/dist/esm/internal/staking.mjs +60 -1
- package/dist/esm/internal/table.d.mts +1 -0
- package/dist/esm/internal/table.mjs +38 -1
- package/dist/esm/internal/transaction.d.mts +1 -0
- package/dist/esm/internal/transaction.mjs +57 -1
- package/dist/esm/internal/transactionSubmission.d.mts +21 -9
- package/dist/esm/internal/transactionSubmission.mjs +124 -1
- package/dist/esm/internal/view.d.mts +1 -0
- package/dist/esm/internal/view.mjs +100 -1
- package/dist/esm/transactions/authenticator/account.d.mts +12 -3
- package/dist/esm/transactions/authenticator/account.mjs +67 -1
- package/dist/esm/transactions/authenticator/index.d.mts +2 -1
- package/dist/esm/transactions/authenticator/index.mjs +82 -1
- package/dist/esm/transactions/authenticator/transaction.d.mts +3 -2
- package/dist/esm/transactions/authenticator/transaction.mjs +66 -1
- package/dist/esm/transactions/index.d.mts +6 -4
- package/dist/esm/transactions/index.mjs +310 -1
- package/dist/esm/transactions/instances/chainId.d.mts +1 -0
- package/dist/esm/transactions/instances/chainId.mjs +11 -1
- package/dist/esm/transactions/instances/identifier.d.mts +1 -0
- package/dist/esm/transactions/instances/identifier.mjs +11 -1
- package/dist/esm/transactions/instances/index.d.mts +1 -0
- package/dist/esm/transactions/instances/index.mjs +114 -1
- package/dist/esm/transactions/instances/moduleId.d.mts +1 -0
- package/dist/esm/transactions/instances/moduleId.mjs +55 -1
- package/dist/esm/transactions/instances/multiAgentTransaction.d.mts +1 -0
- package/dist/esm/transactions/instances/multiAgentTransaction.mjs +60 -1
- package/dist/esm/transactions/instances/rawTransaction.d.mts +1 -0
- package/dist/esm/transactions/instances/rawTransaction.mjs +65 -1
- package/dist/esm/transactions/instances/rotationProofChallenge.d.mts +1 -0
- package/dist/esm/transactions/instances/rotationProofChallenge.mjs +21 -1
- package/dist/esm/transactions/instances/signedTransaction.d.mts +5 -4
- package/dist/esm/transactions/instances/signedTransaction.mjs +63 -1
- package/dist/esm/transactions/instances/simpleTransaction.d.mts +1 -0
- package/dist/esm/transactions/instances/simpleTransaction.mjs +60 -1
- package/dist/esm/transactions/instances/transactionArgument.d.mts +1 -0
- package/dist/esm/transactions/instances/transactionArgument.mjs +1 -1
- package/dist/esm/transactions/instances/transactionPayload.d.mts +1 -0
- package/dist/esm/transactions/instances/transactionPayload.mjs +73 -1
- package/dist/esm/transactions/management/accountSequenceNumber.d.mts +1 -0
- package/dist/esm/transactions/management/accountSequenceNumber.mjs +89 -1
- package/dist/esm/transactions/management/asyncQueue.mjs +9 -1
- package/dist/esm/transactions/management/index.d.mts +1 -0
- package/dist/esm/transactions/management/index.mjs +109 -1
- package/dist/esm/transactions/management/transactionWorker.d.mts +1 -0
- package/dist/esm/transactions/management/transactionWorker.mjs +105 -1
- package/dist/esm/transactions/scriptComposer/index.d.mts +53 -0
- package/dist/esm/transactions/scriptComposer/index.mjs +95 -0
- package/dist/esm/transactions/scriptComposer/index.mjs.map +1 -0
- package/dist/esm/transactions/transactionBuilder/helpers.d.mts +3 -17
- package/dist/esm/transactions/transactionBuilder/helpers.mjs +92 -1
- package/dist/esm/transactions/transactionBuilder/index.d.mts +3 -2
- package/dist/esm/transactions/transactionBuilder/index.mjs +180 -1
- package/dist/esm/transactions/transactionBuilder/remoteAbi.d.mts +23 -2
- package/dist/esm/transactions/transactionBuilder/remoteAbi.mjs +105 -1
- package/dist/esm/transactions/transactionBuilder/signingMessage.d.mts +1 -0
- package/dist/esm/transactions/transactionBuilder/signingMessage.mjs +75 -1
- package/dist/esm/transactions/transactionBuilder/transactionBuilder.d.mts +1 -0
- package/dist/esm/transactions/transactionBuilder/transactionBuilder.mjs +112 -1
- package/dist/esm/transactions/typeTag/index.d.mts +1 -0
- package/dist/esm/transactions/typeTag/index.mjs +91 -1
- package/dist/esm/transactions/typeTag/parser.d.mts +1 -0
- package/dist/esm/transactions/typeTag/parser.mjs +60 -1
- package/dist/esm/transactions/types.d.mts +10 -1
- package/dist/esm/transactions/types.mjs +1 -1
- package/dist/esm/types/abstraction.d.mts +8 -0
- package/dist/esm/types/abstraction.mjs +8 -0
- package/dist/esm/types/abstraction.mjs.map +1 -0
- package/dist/esm/types/generated/operations.d.mts +63 -10
- package/dist/esm/types/generated/queries.d.mts +10 -2
- package/dist/esm/types/generated/queries.mjs +69 -1
- package/dist/esm/types/generated/types.d.mts +821 -1051
- package/dist/esm/types/generated/types.mjs +774 -1
- package/dist/esm/types/generated/types.mjs.map +1 -1
- package/dist/esm/types/index.d.mts +3 -2
- package/dist/esm/types/index.mjs +78 -1
- package/dist/esm/types/indexer.d.mts +14 -2
- package/dist/esm/types/indexer.mjs +1 -1
- package/dist/esm/types/types.d.mts +46 -4
- package/dist/esm/types/types.mjs +73 -1
- package/dist/esm/utils/apiEndpoints.mjs +21 -1
- package/dist/esm/utils/const.d.mts +1 -1
- package/dist/esm/utils/const.mjs +25 -1
- package/dist/esm/utils/helpers.d.mts +38 -2
- package/dist/esm/utils/helpers.mjs +37 -1
- package/dist/esm/utils/index.d.mts +2 -1
- package/dist/esm/utils/index.mjs +88 -1
- package/dist/esm/utils/memoize.mjs +9 -1
- package/dist/esm/utils/normalizeBundle.d.mts +1 -0
- package/dist/esm/utils/normalizeBundle.mjs +20 -1
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +7 -1
- package/package.json +21 -19
- package/src/account/AbstractedAccount.ts +111 -0
- package/src/account/MultiEd25519Account.ts +154 -0
- package/src/account/MultiKeyAccount.ts +1 -2
- package/src/account/index.ts +2 -0
- package/src/api/account/abstraction.ts +239 -0
- package/src/api/account.ts +63 -4
- package/src/api/aptos.ts +9 -0
- package/src/api/aptosConfig.ts +2 -2
- package/src/api/experimental.ts +64 -0
- package/src/api/transaction.ts +22 -2
- package/src/api/transactionSubmission/build.ts +85 -2
- package/src/client/core.ts +120 -0
- package/src/client/get.ts +73 -1
- package/src/client/post.ts +71 -1
- package/src/core/crypto/abstraction.ts +47 -0
- package/src/core/crypto/multiEd25519.ts +19 -3
- package/src/core/crypto/multiKey.ts +76 -52
- package/src/core/hex.ts +3 -1
- package/src/internal/abstraction.ts +79 -0
- package/src/internal/account.ts +378 -2
- package/src/internal/experimental.ts +55 -0
- package/src/internal/keyless.ts +17 -9
- 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/queries/getAccountAddressForAuthKey.graphql +8 -0
- package/src/internal/queries/getAuthKeysForPublicKey.graphql +9 -0
- package/src/internal/queries/getMultiKeyForAuthKey.graphql +9 -0
- package/src/internal/queries/getSignatures.graphql +13 -0
- package/src/internal/transactionSubmission.ts +125 -4
- package/src/internal/view.ts +4 -4
- package/src/transactions/authenticator/account.ts +52 -1
- package/src/transactions/index.ts +1 -0
- package/src/transactions/scriptComposer/index.ts +87 -0
- package/src/transactions/transactionBuilder/helpers.ts +1 -22
- package/src/transactions/transactionBuilder/remoteAbi.ts +62 -1
- package/src/transactions/transactionBuilder/transactionBuilder.ts +9 -1
- package/src/transactions/types.ts +11 -0
- package/src/types/abstraction.ts +6 -0
- package/src/types/codegen.yaml +1 -1
- package/src/types/generated/operations.ts +69 -8
- package/src/types/generated/queries.ts +111 -0
- package/src/types/generated/types.ts +925 -1133
- package/src/types/index.ts +1 -0
- package/src/types/indexer.ts +16 -0
- package/src/types/types.ts +46 -3
- package/src/utils/const.ts +1 -1
- package/src/utils/helpers.ts +50 -1
- package/src/version.ts +1 -1
- package/dist/common/chunk-IHUCZKG2.js +0 -2
- package/dist/common/chunk-IHUCZKG2.js.map +0 -1
- package/dist/esm/chunk-2FBJWTJD.mjs +0 -2
- package/dist/esm/chunk-2N5KYALM.mjs +0 -2
- package/dist/esm/chunk-2TJ6OTVD.mjs +0 -2
- package/dist/esm/chunk-2UXW3EB7.mjs +0 -2
- package/dist/esm/chunk-2WCATZVL.mjs +0 -2
- package/dist/esm/chunk-2WCATZVL.mjs.map +0 -1
- package/dist/esm/chunk-35DKMW7Q.mjs +0 -2
- package/dist/esm/chunk-3RCAJICY.mjs +0 -2
- package/dist/esm/chunk-43GCGE6C.mjs +0 -2
- package/dist/esm/chunk-4EUS4E6S.mjs +0 -2
- package/dist/esm/chunk-4RXKALLC.mjs +0 -2
- package/dist/esm/chunk-4YLUM62M.mjs +0 -2
- package/dist/esm/chunk-4ZYPDCSP.mjs +0 -2
- package/dist/esm/chunk-56CNRT2K.mjs +0 -2
- package/dist/esm/chunk-5EBUWO2M.mjs +0 -2
- package/dist/esm/chunk-5EYTHMRZ.mjs +0 -2
- package/dist/esm/chunk-5PXDPMF2.mjs +0 -4
- package/dist/esm/chunk-5PXDPMF2.mjs.map +0 -1
- package/dist/esm/chunk-5VMAJTTV.mjs +0 -2
- package/dist/esm/chunk-5YWH3XPN.mjs +0 -2
- package/dist/esm/chunk-67ZVDKJF.mjs +0 -2
- package/dist/esm/chunk-67ZVDKJF.mjs.map +0 -1
- package/dist/esm/chunk-6CXMDJQR.mjs +0 -2
- package/dist/esm/chunk-6IEZPA4H.mjs +0 -2
- package/dist/esm/chunk-6IEZPA4H.mjs.map +0 -1
- package/dist/esm/chunk-6YHDZLRN.mjs +0 -2
- package/dist/esm/chunk-6YWYAVFS.mjs +0 -2
- package/dist/esm/chunk-6YWYAVFS.mjs.map +0 -1
- package/dist/esm/chunk-77AEKF7K.mjs +0 -2
- package/dist/esm/chunk-7IY3DTEF.mjs +0 -2
- package/dist/esm/chunk-A5L76YP7.mjs +0 -2
- package/dist/esm/chunk-AFEHO5PP.mjs +0 -2
- package/dist/esm/chunk-AFEHO5PP.mjs.map +0 -1
- package/dist/esm/chunk-AXYARCYT.mjs +0 -2
- package/dist/esm/chunk-AZWVCBK2.mjs +0 -2
- package/dist/esm/chunk-BGSEBFFC.mjs +0 -2
- package/dist/esm/chunk-BI3BTSUB.mjs +0 -2
- package/dist/esm/chunk-C3Q23D22.mjs +0 -2
- package/dist/esm/chunk-CWKNJZB6.mjs +0 -2
- package/dist/esm/chunk-DAFSKSZ5.mjs +0 -2
- package/dist/esm/chunk-DAFSKSZ5.mjs.map +0 -1
- package/dist/esm/chunk-DOQV5BSA.mjs +0 -2
- package/dist/esm/chunk-DPW6ELCQ.mjs +0 -2
- package/dist/esm/chunk-DYATTONT.mjs +0 -2
- package/dist/esm/chunk-E5HGSOG2.mjs +0 -2
- package/dist/esm/chunk-E7JDVKFY.mjs +0 -2
- package/dist/esm/chunk-EBMEXURY.mjs +0 -2
- package/dist/esm/chunk-EMURYYVO.mjs +0 -2
- package/dist/esm/chunk-F2ZTBAJJ.mjs +0 -2
- package/dist/esm/chunk-F2ZTBAJJ.mjs.map +0 -1
- package/dist/esm/chunk-FD6FGKYY.mjs +0 -1
- package/dist/esm/chunk-FIEMUPXF.mjs +0 -2
- package/dist/esm/chunk-FN4C3CKC.mjs +0 -2
- package/dist/esm/chunk-FZD5RWSZ.mjs +0 -2
- package/dist/esm/chunk-G4O6FXCF.mjs +0 -2
- package/dist/esm/chunk-GOXRBEIJ.mjs +0 -2
- package/dist/esm/chunk-GP4TLDVZ.mjs +0 -1
- package/dist/esm/chunk-HBH2NQKU.mjs +0 -2
- package/dist/esm/chunk-HBH2NQKU.mjs.map +0 -1
- package/dist/esm/chunk-I5OYNCZS.mjs +0 -1
- package/dist/esm/chunk-IDTLNF4M.mjs +0 -2
- package/dist/esm/chunk-IEUEMBFD.mjs +0 -2
- package/dist/esm/chunk-IF4UU2MT.mjs +0 -2
- package/dist/esm/chunk-JBEUUULP.mjs +0 -2
- package/dist/esm/chunk-JBEUUULP.mjs.map +0 -1
- package/dist/esm/chunk-JJM6ELMS.mjs +0 -2
- package/dist/esm/chunk-KDMSOCZY.mjs +0 -2
- package/dist/esm/chunk-KOORZTHC.mjs +0 -2
- package/dist/esm/chunk-KVM2SGSF.mjs +0 -2
- package/dist/esm/chunk-KVM2SGSF.mjs.map +0 -1
- package/dist/esm/chunk-M77M6NSB.mjs +0 -2
- package/dist/esm/chunk-MCLYDS3O.mjs +0 -2
- package/dist/esm/chunk-MLSAZJZK.mjs +0 -2
- package/dist/esm/chunk-MLSAZJZK.mjs.map +0 -1
- package/dist/esm/chunk-MT2RJ7H3.mjs +0 -2
- package/dist/esm/chunk-MWBRD43V.mjs +0 -2
- package/dist/esm/chunk-MWBRD43V.mjs.map +0 -1
- package/dist/esm/chunk-N4DM5FYH.mjs +0 -2
- package/dist/esm/chunk-N6YTF76Q.mjs +0 -2
- package/dist/esm/chunk-NBNZ53ZV.mjs +0 -2
- package/dist/esm/chunk-NWLJ6RW7.mjs +0 -2
- package/dist/esm/chunk-NYETBDSR.mjs +0 -2
- package/dist/esm/chunk-OEQ2U7GK.mjs +0 -2
- package/dist/esm/chunk-OEQ2U7GK.mjs.map +0 -1
- package/dist/esm/chunk-OHZURQPY.mjs +0 -2
- package/dist/esm/chunk-ONTWK5FU.mjs +0 -2
- package/dist/esm/chunk-OR6GFWLG.mjs +0 -2
- package/dist/esm/chunk-ORMOQWWH.mjs +0 -2
- package/dist/esm/chunk-OROPNHRY.mjs +0 -2
- package/dist/esm/chunk-OSBRPVVI.mjs +0 -2
- package/dist/esm/chunk-OSBRPVVI.mjs.map +0 -1
- package/dist/esm/chunk-P7A5RILV.mjs +0 -2
- package/dist/esm/chunk-P7A5RILV.mjs.map +0 -1
- package/dist/esm/chunk-Q4C4U6I4.mjs +0 -4
- package/dist/esm/chunk-QHC5DKVZ.mjs +0 -2
- package/dist/esm/chunk-QHC5DKVZ.mjs.map +0 -1
- package/dist/esm/chunk-QHEKBHNU.mjs +0 -7
- package/dist/esm/chunk-QQEK7WVP.mjs +0 -2
- package/dist/esm/chunk-RJ7F4JDV.mjs +0 -2
- package/dist/esm/chunk-RJ7F4JDV.mjs.map +0 -1
- package/dist/esm/chunk-ROT6S6BM.mjs +0 -2
- package/dist/esm/chunk-S4LZMY2L.mjs +0 -2
- package/dist/esm/chunk-S4LZMY2L.mjs.map +0 -1
- package/dist/esm/chunk-S7RZGC56.mjs +0 -2
- package/dist/esm/chunk-STY74NUA.mjs +0 -2
- package/dist/esm/chunk-STY74NUA.mjs.map +0 -1
- package/dist/esm/chunk-TOBQ5UE6.mjs +0 -2
- package/dist/esm/chunk-U2PRGW4O.mjs +0 -2
- package/dist/esm/chunk-U2PRGW4O.mjs.map +0 -1
- package/dist/esm/chunk-UC23V7PU.mjs +0 -2
- package/dist/esm/chunk-V6VPMNWJ.mjs +0 -2
- package/dist/esm/chunk-VHNX2NUR.mjs +0 -473
- package/dist/esm/chunk-VHNX2NUR.mjs.map +0 -1
- package/dist/esm/chunk-VUIHJIMX.mjs +0 -2
- package/dist/esm/chunk-VV4HCOJQ.mjs +0 -2
- package/dist/esm/chunk-VVXBVJXD.mjs +0 -2
- package/dist/esm/chunk-VVXBVJXD.mjs.map +0 -1
- package/dist/esm/chunk-W4BSN6SK.mjs +0 -2
- package/dist/esm/chunk-WCMW2L3P.mjs +0 -2
- package/dist/esm/chunk-WQRGDSPD.mjs +0 -2
- package/dist/esm/chunk-WUWPN7XV.mjs +0 -2
- package/dist/esm/chunk-WUWPN7XV.mjs.map +0 -1
- package/dist/esm/chunk-X6UNY6YM.mjs +0 -2
- package/dist/esm/chunk-XJJVJOX5.mjs +0 -2
- package/dist/esm/chunk-XKUIMGKU.mjs +0 -2
- package/dist/esm/chunk-XTJOA5QN.mjs +0 -2
- package/dist/esm/chunk-XTOIL6MB.mjs +0 -2
- package/dist/esm/chunk-XY43TPRH.mjs +0 -2
- package/dist/esm/chunk-XYB6KYKW.mjs +0 -2
- package/dist/esm/chunk-XYB6KYKW.mjs.map +0 -1
- package/dist/esm/chunk-XZ4JRYCE.mjs +0 -2
- package/dist/esm/chunk-YCQUYDZI.mjs +0 -2
- package/dist/esm/chunk-YOZBVVKL.mjs +0 -2
- package/dist/esm/chunk-ZAIVZDOL.mjs +0 -2
- package/dist/esm/chunk-ZGVNZE7J.mjs +0 -2
- package/dist/esm/chunk-ZPV7HPA4.mjs +0 -2
- /package/dist/esm/{chunk-FD6FGKYY.mjs.map → account/AbstractedAccount.mjs.map} +0 -0
- /package/dist/esm/{chunk-GP4TLDVZ.mjs.map → account/MultiEd25519Account.mjs.map} +0 -0
- /package/dist/esm/{chunk-I5OYNCZS.mjs.map → api/account/abstraction.mjs.map} +0 -0
- /package/dist/esm/{chunk-KDMSOCZY.mjs.map → api/experimental.mjs.map} +0 -0
|
@@ -57,10 +57,6 @@ type Scalars = {
|
|
|
57
57
|
input: any;
|
|
58
58
|
output: any;
|
|
59
59
|
};
|
|
60
|
-
timestamptz: {
|
|
61
|
-
input: any;
|
|
62
|
-
output: any;
|
|
63
|
-
};
|
|
64
60
|
};
|
|
65
61
|
/** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */
|
|
66
62
|
type BooleanComparisonExp = {
|
|
@@ -733,6 +729,260 @@ type AddressVersionFromMoveResourcesVarSampFields = {
|
|
|
733
729
|
type AddressVersionFromMoveResourcesVarianceFields = {
|
|
734
730
|
transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
735
731
|
};
|
|
732
|
+
/** columns and relationships of "auth_key_account_addresses" */
|
|
733
|
+
type AuthKeyAccountAddresses = {
|
|
734
|
+
address: Scalars["String"]["output"];
|
|
735
|
+
auth_key: Scalars["String"]["output"];
|
|
736
|
+
last_transaction_version: Scalars["bigint"]["output"];
|
|
737
|
+
verified: Scalars["Boolean"]["output"];
|
|
738
|
+
};
|
|
739
|
+
/** aggregated selection of "auth_key_account_addresses" */
|
|
740
|
+
type AuthKeyAccountAddressesAggregate = {
|
|
741
|
+
aggregate?: Maybe<AuthKeyAccountAddressesAggregateFields>;
|
|
742
|
+
nodes: Array<AuthKeyAccountAddresses>;
|
|
743
|
+
};
|
|
744
|
+
/** aggregate fields of "auth_key_account_addresses" */
|
|
745
|
+
type AuthKeyAccountAddressesAggregateFields = {
|
|
746
|
+
avg?: Maybe<AuthKeyAccountAddressesAvgFields>;
|
|
747
|
+
count: Scalars["Int"]["output"];
|
|
748
|
+
max?: Maybe<AuthKeyAccountAddressesMaxFields>;
|
|
749
|
+
min?: Maybe<AuthKeyAccountAddressesMinFields>;
|
|
750
|
+
stddev?: Maybe<AuthKeyAccountAddressesStddevFields>;
|
|
751
|
+
stddev_pop?: Maybe<AuthKeyAccountAddressesStddevPopFields>;
|
|
752
|
+
stddev_samp?: Maybe<AuthKeyAccountAddressesStddevSampFields>;
|
|
753
|
+
sum?: Maybe<AuthKeyAccountAddressesSumFields>;
|
|
754
|
+
var_pop?: Maybe<AuthKeyAccountAddressesVarPopFields>;
|
|
755
|
+
var_samp?: Maybe<AuthKeyAccountAddressesVarSampFields>;
|
|
756
|
+
variance?: Maybe<AuthKeyAccountAddressesVarianceFields>;
|
|
757
|
+
};
|
|
758
|
+
/** aggregate fields of "auth_key_account_addresses" */
|
|
759
|
+
type AuthKeyAccountAddressesAggregateFieldsCountArgs = {
|
|
760
|
+
columns?: InputMaybe<Array<AuthKeyAccountAddressesSelectColumn>>;
|
|
761
|
+
distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
762
|
+
};
|
|
763
|
+
/** aggregate avg on columns */
|
|
764
|
+
type AuthKeyAccountAddressesAvgFields = {
|
|
765
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
766
|
+
};
|
|
767
|
+
/** Boolean expression to filter rows from the table "auth_key_account_addresses". All fields are combined with a logical 'AND'. */
|
|
768
|
+
type AuthKeyAccountAddressesBoolExp = {
|
|
769
|
+
_and?: InputMaybe<Array<AuthKeyAccountAddressesBoolExp>>;
|
|
770
|
+
_not?: InputMaybe<AuthKeyAccountAddressesBoolExp>;
|
|
771
|
+
_or?: InputMaybe<Array<AuthKeyAccountAddressesBoolExp>>;
|
|
772
|
+
address?: InputMaybe<StringComparisonExp>;
|
|
773
|
+
auth_key?: InputMaybe<StringComparisonExp>;
|
|
774
|
+
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
775
|
+
verified?: InputMaybe<BooleanComparisonExp>;
|
|
776
|
+
};
|
|
777
|
+
/** aggregate max on columns */
|
|
778
|
+
type AuthKeyAccountAddressesMaxFields = {
|
|
779
|
+
address?: Maybe<Scalars["String"]["output"]>;
|
|
780
|
+
auth_key?: Maybe<Scalars["String"]["output"]>;
|
|
781
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
782
|
+
};
|
|
783
|
+
/** aggregate min on columns */
|
|
784
|
+
type AuthKeyAccountAddressesMinFields = {
|
|
785
|
+
address?: Maybe<Scalars["String"]["output"]>;
|
|
786
|
+
auth_key?: Maybe<Scalars["String"]["output"]>;
|
|
787
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
788
|
+
};
|
|
789
|
+
/** Ordering options when selecting data from "auth_key_account_addresses". */
|
|
790
|
+
type AuthKeyAccountAddressesOrderBy = {
|
|
791
|
+
address?: InputMaybe<OrderBy>;
|
|
792
|
+
auth_key?: InputMaybe<OrderBy>;
|
|
793
|
+
last_transaction_version?: InputMaybe<OrderBy>;
|
|
794
|
+
verified?: InputMaybe<OrderBy>;
|
|
795
|
+
};
|
|
796
|
+
/** select columns of table "auth_key_account_addresses" */
|
|
797
|
+
declare enum AuthKeyAccountAddressesSelectColumn {
|
|
798
|
+
/** column name */
|
|
799
|
+
Address = "address",
|
|
800
|
+
/** column name */
|
|
801
|
+
AuthKey = "auth_key",
|
|
802
|
+
/** column name */
|
|
803
|
+
LastTransactionVersion = "last_transaction_version",
|
|
804
|
+
/** column name */
|
|
805
|
+
Verified = "verified"
|
|
806
|
+
}
|
|
807
|
+
/** aggregate stddev on columns */
|
|
808
|
+
type AuthKeyAccountAddressesStddevFields = {
|
|
809
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
810
|
+
};
|
|
811
|
+
/** aggregate stddev_pop on columns */
|
|
812
|
+
type AuthKeyAccountAddressesStddevPopFields = {
|
|
813
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
814
|
+
};
|
|
815
|
+
/** aggregate stddev_samp on columns */
|
|
816
|
+
type AuthKeyAccountAddressesStddevSampFields = {
|
|
817
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
818
|
+
};
|
|
819
|
+
/** Streaming cursor of the table "auth_key_account_addresses" */
|
|
820
|
+
type AuthKeyAccountAddressesStreamCursorInput = {
|
|
821
|
+
/** Stream column input with initial value */
|
|
822
|
+
initial_value: AuthKeyAccountAddressesStreamCursorValueInput;
|
|
823
|
+
/** cursor ordering */
|
|
824
|
+
ordering?: InputMaybe<CursorOrdering>;
|
|
825
|
+
};
|
|
826
|
+
/** Initial value of the column from where the streaming should start */
|
|
827
|
+
type AuthKeyAccountAddressesStreamCursorValueInput = {
|
|
828
|
+
address?: InputMaybe<Scalars["String"]["input"]>;
|
|
829
|
+
auth_key?: InputMaybe<Scalars["String"]["input"]>;
|
|
830
|
+
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
831
|
+
verified?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
832
|
+
};
|
|
833
|
+
/** aggregate sum on columns */
|
|
834
|
+
type AuthKeyAccountAddressesSumFields = {
|
|
835
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
836
|
+
};
|
|
837
|
+
/** aggregate var_pop on columns */
|
|
838
|
+
type AuthKeyAccountAddressesVarPopFields = {
|
|
839
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
840
|
+
};
|
|
841
|
+
/** aggregate var_samp on columns */
|
|
842
|
+
type AuthKeyAccountAddressesVarSampFields = {
|
|
843
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
844
|
+
};
|
|
845
|
+
/** aggregate variance on columns */
|
|
846
|
+
type AuthKeyAccountAddressesVarianceFields = {
|
|
847
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
848
|
+
};
|
|
849
|
+
/** columns and relationships of "auth_key_multikey_layout" */
|
|
850
|
+
type AuthKeyMultikeyLayout = {
|
|
851
|
+
auth_key: Scalars["String"]["output"];
|
|
852
|
+
last_transaction_version: Scalars["bigint"]["output"];
|
|
853
|
+
multikey_layout_with_prefixes: Scalars["jsonb"]["output"];
|
|
854
|
+
multikey_type: Scalars["String"]["output"];
|
|
855
|
+
signatures_required: Scalars["bigint"]["output"];
|
|
856
|
+
};
|
|
857
|
+
/** columns and relationships of "auth_key_multikey_layout" */
|
|
858
|
+
type AuthKeyMultikeyLayoutMultikeyLayoutWithPrefixesArgs = {
|
|
859
|
+
path?: InputMaybe<Scalars["String"]["input"]>;
|
|
860
|
+
};
|
|
861
|
+
/** aggregated selection of "auth_key_multikey_layout" */
|
|
862
|
+
type AuthKeyMultikeyLayoutAggregate = {
|
|
863
|
+
aggregate?: Maybe<AuthKeyMultikeyLayoutAggregateFields>;
|
|
864
|
+
nodes: Array<AuthKeyMultikeyLayout>;
|
|
865
|
+
};
|
|
866
|
+
/** aggregate fields of "auth_key_multikey_layout" */
|
|
867
|
+
type AuthKeyMultikeyLayoutAggregateFields = {
|
|
868
|
+
avg?: Maybe<AuthKeyMultikeyLayoutAvgFields>;
|
|
869
|
+
count: Scalars["Int"]["output"];
|
|
870
|
+
max?: Maybe<AuthKeyMultikeyLayoutMaxFields>;
|
|
871
|
+
min?: Maybe<AuthKeyMultikeyLayoutMinFields>;
|
|
872
|
+
stddev?: Maybe<AuthKeyMultikeyLayoutStddevFields>;
|
|
873
|
+
stddev_pop?: Maybe<AuthKeyMultikeyLayoutStddevPopFields>;
|
|
874
|
+
stddev_samp?: Maybe<AuthKeyMultikeyLayoutStddevSampFields>;
|
|
875
|
+
sum?: Maybe<AuthKeyMultikeyLayoutSumFields>;
|
|
876
|
+
var_pop?: Maybe<AuthKeyMultikeyLayoutVarPopFields>;
|
|
877
|
+
var_samp?: Maybe<AuthKeyMultikeyLayoutVarSampFields>;
|
|
878
|
+
variance?: Maybe<AuthKeyMultikeyLayoutVarianceFields>;
|
|
879
|
+
};
|
|
880
|
+
/** aggregate fields of "auth_key_multikey_layout" */
|
|
881
|
+
type AuthKeyMultikeyLayoutAggregateFieldsCountArgs = {
|
|
882
|
+
columns?: InputMaybe<Array<AuthKeyMultikeyLayoutSelectColumn>>;
|
|
883
|
+
distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
884
|
+
};
|
|
885
|
+
/** aggregate avg on columns */
|
|
886
|
+
type AuthKeyMultikeyLayoutAvgFields = {
|
|
887
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
888
|
+
signatures_required?: Maybe<Scalars["Float"]["output"]>;
|
|
889
|
+
};
|
|
890
|
+
/** Boolean expression to filter rows from the table "auth_key_multikey_layout". All fields are combined with a logical 'AND'. */
|
|
891
|
+
type AuthKeyMultikeyLayoutBoolExp = {
|
|
892
|
+
_and?: InputMaybe<Array<AuthKeyMultikeyLayoutBoolExp>>;
|
|
893
|
+
_not?: InputMaybe<AuthKeyMultikeyLayoutBoolExp>;
|
|
894
|
+
_or?: InputMaybe<Array<AuthKeyMultikeyLayoutBoolExp>>;
|
|
895
|
+
auth_key?: InputMaybe<StringComparisonExp>;
|
|
896
|
+
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
897
|
+
multikey_layout_with_prefixes?: InputMaybe<JsonbComparisonExp>;
|
|
898
|
+
multikey_type?: InputMaybe<StringComparisonExp>;
|
|
899
|
+
signatures_required?: InputMaybe<BigintComparisonExp>;
|
|
900
|
+
};
|
|
901
|
+
/** aggregate max on columns */
|
|
902
|
+
type AuthKeyMultikeyLayoutMaxFields = {
|
|
903
|
+
auth_key?: Maybe<Scalars["String"]["output"]>;
|
|
904
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
905
|
+
multikey_type?: Maybe<Scalars["String"]["output"]>;
|
|
906
|
+
signatures_required?: Maybe<Scalars["bigint"]["output"]>;
|
|
907
|
+
};
|
|
908
|
+
/** aggregate min on columns */
|
|
909
|
+
type AuthKeyMultikeyLayoutMinFields = {
|
|
910
|
+
auth_key?: Maybe<Scalars["String"]["output"]>;
|
|
911
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
912
|
+
multikey_type?: Maybe<Scalars["String"]["output"]>;
|
|
913
|
+
signatures_required?: Maybe<Scalars["bigint"]["output"]>;
|
|
914
|
+
};
|
|
915
|
+
/** Ordering options when selecting data from "auth_key_multikey_layout". */
|
|
916
|
+
type AuthKeyMultikeyLayoutOrderBy = {
|
|
917
|
+
auth_key?: InputMaybe<OrderBy>;
|
|
918
|
+
last_transaction_version?: InputMaybe<OrderBy>;
|
|
919
|
+
multikey_layout_with_prefixes?: InputMaybe<OrderBy>;
|
|
920
|
+
multikey_type?: InputMaybe<OrderBy>;
|
|
921
|
+
signatures_required?: InputMaybe<OrderBy>;
|
|
922
|
+
};
|
|
923
|
+
/** select columns of table "auth_key_multikey_layout" */
|
|
924
|
+
declare enum AuthKeyMultikeyLayoutSelectColumn {
|
|
925
|
+
/** column name */
|
|
926
|
+
AuthKey = "auth_key",
|
|
927
|
+
/** column name */
|
|
928
|
+
LastTransactionVersion = "last_transaction_version",
|
|
929
|
+
/** column name */
|
|
930
|
+
MultikeyLayoutWithPrefixes = "multikey_layout_with_prefixes",
|
|
931
|
+
/** column name */
|
|
932
|
+
MultikeyType = "multikey_type",
|
|
933
|
+
/** column name */
|
|
934
|
+
SignaturesRequired = "signatures_required"
|
|
935
|
+
}
|
|
936
|
+
/** aggregate stddev on columns */
|
|
937
|
+
type AuthKeyMultikeyLayoutStddevFields = {
|
|
938
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
939
|
+
signatures_required?: Maybe<Scalars["Float"]["output"]>;
|
|
940
|
+
};
|
|
941
|
+
/** aggregate stddev_pop on columns */
|
|
942
|
+
type AuthKeyMultikeyLayoutStddevPopFields = {
|
|
943
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
944
|
+
signatures_required?: Maybe<Scalars["Float"]["output"]>;
|
|
945
|
+
};
|
|
946
|
+
/** aggregate stddev_samp on columns */
|
|
947
|
+
type AuthKeyMultikeyLayoutStddevSampFields = {
|
|
948
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
949
|
+
signatures_required?: Maybe<Scalars["Float"]["output"]>;
|
|
950
|
+
};
|
|
951
|
+
/** Streaming cursor of the table "auth_key_multikey_layout" */
|
|
952
|
+
type AuthKeyMultikeyLayoutStreamCursorInput = {
|
|
953
|
+
/** Stream column input with initial value */
|
|
954
|
+
initial_value: AuthKeyMultikeyLayoutStreamCursorValueInput;
|
|
955
|
+
/** cursor ordering */
|
|
956
|
+
ordering?: InputMaybe<CursorOrdering>;
|
|
957
|
+
};
|
|
958
|
+
/** Initial value of the column from where the streaming should start */
|
|
959
|
+
type AuthKeyMultikeyLayoutStreamCursorValueInput = {
|
|
960
|
+
auth_key?: InputMaybe<Scalars["String"]["input"]>;
|
|
961
|
+
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
962
|
+
multikey_layout_with_prefixes?: InputMaybe<Scalars["jsonb"]["input"]>;
|
|
963
|
+
multikey_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
964
|
+
signatures_required?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
965
|
+
};
|
|
966
|
+
/** aggregate sum on columns */
|
|
967
|
+
type AuthKeyMultikeyLayoutSumFields = {
|
|
968
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
969
|
+
signatures_required?: Maybe<Scalars["bigint"]["output"]>;
|
|
970
|
+
};
|
|
971
|
+
/** aggregate var_pop on columns */
|
|
972
|
+
type AuthKeyMultikeyLayoutVarPopFields = {
|
|
973
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
974
|
+
signatures_required?: Maybe<Scalars["Float"]["output"]>;
|
|
975
|
+
};
|
|
976
|
+
/** aggregate var_samp on columns */
|
|
977
|
+
type AuthKeyMultikeyLayoutVarSampFields = {
|
|
978
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
979
|
+
signatures_required?: Maybe<Scalars["Float"]["output"]>;
|
|
980
|
+
};
|
|
981
|
+
/** aggregate variance on columns */
|
|
982
|
+
type AuthKeyMultikeyLayoutVarianceFields = {
|
|
983
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
984
|
+
signatures_required?: Maybe<Scalars["Float"]["output"]>;
|
|
985
|
+
};
|
|
736
986
|
/** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */
|
|
737
987
|
type BigintComparisonExp = {
|
|
738
988
|
_eq?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
@@ -2727,26 +2977,34 @@ type CurrentDelegatorBalancesStreamCursorValueInput = {
|
|
|
2727
2977
|
shares?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
2728
2978
|
table_handle?: InputMaybe<Scalars["String"]["input"]>;
|
|
2729
2979
|
};
|
|
2730
|
-
/** columns and relationships of "
|
|
2980
|
+
/** columns and relationships of "current_fungible_asset_balances" */
|
|
2731
2981
|
type CurrentFungibleAssetBalances = {
|
|
2732
|
-
amount
|
|
2733
|
-
|
|
2982
|
+
amount: Scalars["numeric"]["output"];
|
|
2983
|
+
amount_v1?: Maybe<Scalars["numeric"]["output"]>;
|
|
2984
|
+
amount_v2?: Maybe<Scalars["numeric"]["output"]>;
|
|
2985
|
+
asset_type: Scalars["String"]["output"];
|
|
2986
|
+
asset_type_v1?: Maybe<Scalars["String"]["output"]>;
|
|
2987
|
+
asset_type_v2?: Maybe<Scalars["String"]["output"]>;
|
|
2734
2988
|
is_frozen: Scalars["Boolean"]["output"];
|
|
2735
|
-
is_primary
|
|
2989
|
+
is_primary: Scalars["Boolean"]["output"];
|
|
2736
2990
|
last_transaction_timestamp?: Maybe<Scalars["timestamp"]["output"]>;
|
|
2991
|
+
last_transaction_timestamp_v1?: Maybe<Scalars["timestamp"]["output"]>;
|
|
2992
|
+
last_transaction_timestamp_v2?: Maybe<Scalars["timestamp"]["output"]>;
|
|
2737
2993
|
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
2994
|
+
last_transaction_version_v1?: Maybe<Scalars["bigint"]["output"]>;
|
|
2995
|
+
last_transaction_version_v2?: Maybe<Scalars["bigint"]["output"]>;
|
|
2738
2996
|
/** An object relationship */
|
|
2739
2997
|
metadata?: Maybe<FungibleAssetMetadata>;
|
|
2740
2998
|
owner_address: Scalars["String"]["output"];
|
|
2741
2999
|
storage_id: Scalars["String"]["output"];
|
|
2742
|
-
token_standard
|
|
3000
|
+
token_standard: Scalars["String"]["output"];
|
|
2743
3001
|
};
|
|
2744
|
-
/** aggregated selection of "
|
|
3002
|
+
/** aggregated selection of "current_fungible_asset_balances" */
|
|
2745
3003
|
type CurrentFungibleAssetBalancesAggregate = {
|
|
2746
3004
|
aggregate?: Maybe<CurrentFungibleAssetBalancesAggregateFields>;
|
|
2747
3005
|
nodes: Array<CurrentFungibleAssetBalances>;
|
|
2748
3006
|
};
|
|
2749
|
-
/** aggregate fields of "
|
|
3007
|
+
/** aggregate fields of "current_fungible_asset_balances" */
|
|
2750
3008
|
type CurrentFungibleAssetBalancesAggregateFields = {
|
|
2751
3009
|
avg?: Maybe<CurrentFungibleAssetBalancesAvgFields>;
|
|
2752
3010
|
count: Scalars["Int"]["output"];
|
|
@@ -2760,7 +3018,7 @@ type CurrentFungibleAssetBalancesAggregateFields = {
|
|
|
2760
3018
|
var_samp?: Maybe<CurrentFungibleAssetBalancesVarSampFields>;
|
|
2761
3019
|
variance?: Maybe<CurrentFungibleAssetBalancesVarianceFields>;
|
|
2762
3020
|
};
|
|
2763
|
-
/** aggregate fields of "
|
|
3021
|
+
/** aggregate fields of "current_fungible_asset_balances" */
|
|
2764
3022
|
type CurrentFungibleAssetBalancesAggregateFieldsCountArgs = {
|
|
2765
3023
|
columns?: InputMaybe<Array<CurrentFungibleAssetBalancesSelectColumn>>;
|
|
2766
3024
|
distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
@@ -2768,19 +3026,31 @@ type CurrentFungibleAssetBalancesAggregateFieldsCountArgs = {
|
|
|
2768
3026
|
/** aggregate avg on columns */
|
|
2769
3027
|
type CurrentFungibleAssetBalancesAvgFields = {
|
|
2770
3028
|
amount?: Maybe<Scalars["Float"]["output"]>;
|
|
3029
|
+
amount_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3030
|
+
amount_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2771
3031
|
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
3032
|
+
last_transaction_version_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3033
|
+
last_transaction_version_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2772
3034
|
};
|
|
2773
|
-
/** Boolean expression to filter rows from the table "
|
|
3035
|
+
/** Boolean expression to filter rows from the table "current_fungible_asset_balances". All fields are combined with a logical 'AND'. */
|
|
2774
3036
|
type CurrentFungibleAssetBalancesBoolExp = {
|
|
2775
3037
|
_and?: InputMaybe<Array<CurrentFungibleAssetBalancesBoolExp>>;
|
|
2776
3038
|
_not?: InputMaybe<CurrentFungibleAssetBalancesBoolExp>;
|
|
2777
3039
|
_or?: InputMaybe<Array<CurrentFungibleAssetBalancesBoolExp>>;
|
|
2778
3040
|
amount?: InputMaybe<NumericComparisonExp>;
|
|
3041
|
+
amount_v1?: InputMaybe<NumericComparisonExp>;
|
|
3042
|
+
amount_v2?: InputMaybe<NumericComparisonExp>;
|
|
2779
3043
|
asset_type?: InputMaybe<StringComparisonExp>;
|
|
3044
|
+
asset_type_v1?: InputMaybe<StringComparisonExp>;
|
|
3045
|
+
asset_type_v2?: InputMaybe<StringComparisonExp>;
|
|
2780
3046
|
is_frozen?: InputMaybe<BooleanComparisonExp>;
|
|
2781
3047
|
is_primary?: InputMaybe<BooleanComparisonExp>;
|
|
2782
3048
|
last_transaction_timestamp?: InputMaybe<TimestampComparisonExp>;
|
|
3049
|
+
last_transaction_timestamp_v1?: InputMaybe<TimestampComparisonExp>;
|
|
3050
|
+
last_transaction_timestamp_v2?: InputMaybe<TimestampComparisonExp>;
|
|
2783
3051
|
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
3052
|
+
last_transaction_version_v1?: InputMaybe<BigintComparisonExp>;
|
|
3053
|
+
last_transaction_version_v2?: InputMaybe<BigintComparisonExp>;
|
|
2784
3054
|
metadata?: InputMaybe<FungibleAssetMetadataBoolExp>;
|
|
2785
3055
|
owner_address?: InputMaybe<StringComparisonExp>;
|
|
2786
3056
|
storage_id?: InputMaybe<StringComparisonExp>;
|
|
@@ -2789,9 +3059,17 @@ type CurrentFungibleAssetBalancesBoolExp = {
|
|
|
2789
3059
|
/** aggregate max on columns */
|
|
2790
3060
|
type CurrentFungibleAssetBalancesMaxFields = {
|
|
2791
3061
|
amount?: Maybe<Scalars["numeric"]["output"]>;
|
|
3062
|
+
amount_v1?: Maybe<Scalars["numeric"]["output"]>;
|
|
3063
|
+
amount_v2?: Maybe<Scalars["numeric"]["output"]>;
|
|
2792
3064
|
asset_type?: Maybe<Scalars["String"]["output"]>;
|
|
3065
|
+
asset_type_v1?: Maybe<Scalars["String"]["output"]>;
|
|
3066
|
+
asset_type_v2?: Maybe<Scalars["String"]["output"]>;
|
|
2793
3067
|
last_transaction_timestamp?: Maybe<Scalars["timestamp"]["output"]>;
|
|
3068
|
+
last_transaction_timestamp_v1?: Maybe<Scalars["timestamp"]["output"]>;
|
|
3069
|
+
last_transaction_timestamp_v2?: Maybe<Scalars["timestamp"]["output"]>;
|
|
2794
3070
|
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
3071
|
+
last_transaction_version_v1?: Maybe<Scalars["bigint"]["output"]>;
|
|
3072
|
+
last_transaction_version_v2?: Maybe<Scalars["bigint"]["output"]>;
|
|
2795
3073
|
owner_address?: Maybe<Scalars["String"]["output"]>;
|
|
2796
3074
|
storage_id?: Maybe<Scalars["String"]["output"]>;
|
|
2797
3075
|
token_standard?: Maybe<Scalars["String"]["output"]>;
|
|
@@ -2799,41 +3077,73 @@ type CurrentFungibleAssetBalancesMaxFields = {
|
|
|
2799
3077
|
/** aggregate min on columns */
|
|
2800
3078
|
type CurrentFungibleAssetBalancesMinFields = {
|
|
2801
3079
|
amount?: Maybe<Scalars["numeric"]["output"]>;
|
|
3080
|
+
amount_v1?: Maybe<Scalars["numeric"]["output"]>;
|
|
3081
|
+
amount_v2?: Maybe<Scalars["numeric"]["output"]>;
|
|
2802
3082
|
asset_type?: Maybe<Scalars["String"]["output"]>;
|
|
3083
|
+
asset_type_v1?: Maybe<Scalars["String"]["output"]>;
|
|
3084
|
+
asset_type_v2?: Maybe<Scalars["String"]["output"]>;
|
|
2803
3085
|
last_transaction_timestamp?: Maybe<Scalars["timestamp"]["output"]>;
|
|
3086
|
+
last_transaction_timestamp_v1?: Maybe<Scalars["timestamp"]["output"]>;
|
|
3087
|
+
last_transaction_timestamp_v2?: Maybe<Scalars["timestamp"]["output"]>;
|
|
2804
3088
|
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
3089
|
+
last_transaction_version_v1?: Maybe<Scalars["bigint"]["output"]>;
|
|
3090
|
+
last_transaction_version_v2?: Maybe<Scalars["bigint"]["output"]>;
|
|
2805
3091
|
owner_address?: Maybe<Scalars["String"]["output"]>;
|
|
2806
3092
|
storage_id?: Maybe<Scalars["String"]["output"]>;
|
|
2807
3093
|
token_standard?: Maybe<Scalars["String"]["output"]>;
|
|
2808
3094
|
};
|
|
2809
|
-
/** Ordering options when selecting data from "
|
|
3095
|
+
/** Ordering options when selecting data from "current_fungible_asset_balances". */
|
|
2810
3096
|
type CurrentFungibleAssetBalancesOrderBy = {
|
|
2811
3097
|
amount?: InputMaybe<OrderBy>;
|
|
3098
|
+
amount_v1?: InputMaybe<OrderBy>;
|
|
3099
|
+
amount_v2?: InputMaybe<OrderBy>;
|
|
2812
3100
|
asset_type?: InputMaybe<OrderBy>;
|
|
3101
|
+
asset_type_v1?: InputMaybe<OrderBy>;
|
|
3102
|
+
asset_type_v2?: InputMaybe<OrderBy>;
|
|
2813
3103
|
is_frozen?: InputMaybe<OrderBy>;
|
|
2814
3104
|
is_primary?: InputMaybe<OrderBy>;
|
|
2815
3105
|
last_transaction_timestamp?: InputMaybe<OrderBy>;
|
|
3106
|
+
last_transaction_timestamp_v1?: InputMaybe<OrderBy>;
|
|
3107
|
+
last_transaction_timestamp_v2?: InputMaybe<OrderBy>;
|
|
2816
3108
|
last_transaction_version?: InputMaybe<OrderBy>;
|
|
3109
|
+
last_transaction_version_v1?: InputMaybe<OrderBy>;
|
|
3110
|
+
last_transaction_version_v2?: InputMaybe<OrderBy>;
|
|
2817
3111
|
metadata?: InputMaybe<FungibleAssetMetadataOrderBy>;
|
|
2818
3112
|
owner_address?: InputMaybe<OrderBy>;
|
|
2819
3113
|
storage_id?: InputMaybe<OrderBy>;
|
|
2820
3114
|
token_standard?: InputMaybe<OrderBy>;
|
|
2821
3115
|
};
|
|
2822
|
-
/** select columns of table "
|
|
3116
|
+
/** select columns of table "current_fungible_asset_balances" */
|
|
2823
3117
|
declare enum CurrentFungibleAssetBalancesSelectColumn {
|
|
2824
3118
|
/** column name */
|
|
2825
3119
|
Amount = "amount",
|
|
2826
3120
|
/** column name */
|
|
3121
|
+
AmountV1 = "amount_v1",
|
|
3122
|
+
/** column name */
|
|
3123
|
+
AmountV2 = "amount_v2",
|
|
3124
|
+
/** column name */
|
|
2827
3125
|
AssetType = "asset_type",
|
|
2828
3126
|
/** column name */
|
|
3127
|
+
AssetTypeV1 = "asset_type_v1",
|
|
3128
|
+
/** column name */
|
|
3129
|
+
AssetTypeV2 = "asset_type_v2",
|
|
3130
|
+
/** column name */
|
|
2829
3131
|
IsFrozen = "is_frozen",
|
|
2830
3132
|
/** column name */
|
|
2831
3133
|
IsPrimary = "is_primary",
|
|
2832
3134
|
/** column name */
|
|
2833
3135
|
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
2834
3136
|
/** column name */
|
|
3137
|
+
LastTransactionTimestampV1 = "last_transaction_timestamp_v1",
|
|
3138
|
+
/** column name */
|
|
3139
|
+
LastTransactionTimestampV2 = "last_transaction_timestamp_v2",
|
|
3140
|
+
/** column name */
|
|
2835
3141
|
LastTransactionVersion = "last_transaction_version",
|
|
2836
3142
|
/** column name */
|
|
3143
|
+
LastTransactionVersionV1 = "last_transaction_version_v1",
|
|
3144
|
+
/** column name */
|
|
3145
|
+
LastTransactionVersionV2 = "last_transaction_version_v2",
|
|
3146
|
+
/** column name */
|
|
2837
3147
|
OwnerAddress = "owner_address",
|
|
2838
3148
|
/** column name */
|
|
2839
3149
|
StorageId = "storage_id",
|
|
@@ -2843,17 +3153,29 @@ declare enum CurrentFungibleAssetBalancesSelectColumn {
|
|
|
2843
3153
|
/** aggregate stddev on columns */
|
|
2844
3154
|
type CurrentFungibleAssetBalancesStddevFields = {
|
|
2845
3155
|
amount?: Maybe<Scalars["Float"]["output"]>;
|
|
3156
|
+
amount_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3157
|
+
amount_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2846
3158
|
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
3159
|
+
last_transaction_version_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3160
|
+
last_transaction_version_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2847
3161
|
};
|
|
2848
3162
|
/** aggregate stddev_pop on columns */
|
|
2849
3163
|
type CurrentFungibleAssetBalancesStddevPopFields = {
|
|
2850
3164
|
amount?: Maybe<Scalars["Float"]["output"]>;
|
|
3165
|
+
amount_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3166
|
+
amount_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2851
3167
|
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
3168
|
+
last_transaction_version_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3169
|
+
last_transaction_version_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2852
3170
|
};
|
|
2853
3171
|
/** aggregate stddev_samp on columns */
|
|
2854
3172
|
type CurrentFungibleAssetBalancesStddevSampFields = {
|
|
2855
3173
|
amount?: Maybe<Scalars["Float"]["output"]>;
|
|
3174
|
+
amount_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3175
|
+
amount_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2856
3176
|
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
3177
|
+
last_transaction_version_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3178
|
+
last_transaction_version_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2857
3179
|
};
|
|
2858
3180
|
/** Streaming cursor of the table "current_fungible_asset_balances" */
|
|
2859
3181
|
type CurrentFungibleAssetBalancesStreamCursorInput = {
|
|
@@ -2865,11 +3187,19 @@ type CurrentFungibleAssetBalancesStreamCursorInput = {
|
|
|
2865
3187
|
/** Initial value of the column from where the streaming should start */
|
|
2866
3188
|
type CurrentFungibleAssetBalancesStreamCursorValueInput = {
|
|
2867
3189
|
amount?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
3190
|
+
amount_v1?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
3191
|
+
amount_v2?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
2868
3192
|
asset_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
3193
|
+
asset_type_v1?: InputMaybe<Scalars["String"]["input"]>;
|
|
3194
|
+
asset_type_v2?: InputMaybe<Scalars["String"]["input"]>;
|
|
2869
3195
|
is_frozen?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
2870
3196
|
is_primary?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
2871
3197
|
last_transaction_timestamp?: InputMaybe<Scalars["timestamp"]["input"]>;
|
|
3198
|
+
last_transaction_timestamp_v1?: InputMaybe<Scalars["timestamp"]["input"]>;
|
|
3199
|
+
last_transaction_timestamp_v2?: InputMaybe<Scalars["timestamp"]["input"]>;
|
|
2872
3200
|
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
3201
|
+
last_transaction_version_v1?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
3202
|
+
last_transaction_version_v2?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
2873
3203
|
owner_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
2874
3204
|
storage_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
2875
3205
|
token_standard?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -2877,22 +3207,38 @@ type CurrentFungibleAssetBalancesStreamCursorValueInput = {
|
|
|
2877
3207
|
/** aggregate sum on columns */
|
|
2878
3208
|
type CurrentFungibleAssetBalancesSumFields = {
|
|
2879
3209
|
amount?: Maybe<Scalars["numeric"]["output"]>;
|
|
3210
|
+
amount_v1?: Maybe<Scalars["numeric"]["output"]>;
|
|
3211
|
+
amount_v2?: Maybe<Scalars["numeric"]["output"]>;
|
|
2880
3212
|
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
3213
|
+
last_transaction_version_v1?: Maybe<Scalars["bigint"]["output"]>;
|
|
3214
|
+
last_transaction_version_v2?: Maybe<Scalars["bigint"]["output"]>;
|
|
2881
3215
|
};
|
|
2882
3216
|
/** aggregate var_pop on columns */
|
|
2883
3217
|
type CurrentFungibleAssetBalancesVarPopFields = {
|
|
2884
3218
|
amount?: Maybe<Scalars["Float"]["output"]>;
|
|
3219
|
+
amount_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3220
|
+
amount_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2885
3221
|
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
3222
|
+
last_transaction_version_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3223
|
+
last_transaction_version_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2886
3224
|
};
|
|
2887
3225
|
/** aggregate var_samp on columns */
|
|
2888
3226
|
type CurrentFungibleAssetBalancesVarSampFields = {
|
|
2889
3227
|
amount?: Maybe<Scalars["Float"]["output"]>;
|
|
3228
|
+
amount_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3229
|
+
amount_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2890
3230
|
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
3231
|
+
last_transaction_version_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3232
|
+
last_transaction_version_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2891
3233
|
};
|
|
2892
3234
|
/** aggregate variance on columns */
|
|
2893
3235
|
type CurrentFungibleAssetBalancesVarianceFields = {
|
|
2894
3236
|
amount?: Maybe<Scalars["Float"]["output"]>;
|
|
3237
|
+
amount_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3238
|
+
amount_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2895
3239
|
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
3240
|
+
last_transaction_version_v1?: Maybe<Scalars["Float"]["output"]>;
|
|
3241
|
+
last_transaction_version_v2?: Maybe<Scalars["Float"]["output"]>;
|
|
2896
3242
|
};
|
|
2897
3243
|
/** columns and relationships of "current_objects" */
|
|
2898
3244
|
type CurrentObjects = {
|
|
@@ -3276,6 +3622,8 @@ type CurrentTokenDatasV2 = {
|
|
|
3276
3622
|
collection_id: Scalars["String"]["output"];
|
|
3277
3623
|
/** An object relationship */
|
|
3278
3624
|
current_collection?: Maybe<CurrentCollectionsV2>;
|
|
3625
|
+
/** An object relationship */
|
|
3626
|
+
current_royalty_v1?: Maybe<CurrentTokenRoyaltyV1>;
|
|
3279
3627
|
/** An array relationship */
|
|
3280
3628
|
current_token_ownerships: Array<CurrentTokenOwnershipsV2>;
|
|
3281
3629
|
/** An aggregate relationship */
|
|
@@ -3324,6 +3672,7 @@ type CurrentTokenDatasV2BoolExp = {
|
|
|
3324
3672
|
cdn_asset_uris?: InputMaybe<NftMetadataCrawlerParsedAssetUrisBoolExp>;
|
|
3325
3673
|
collection_id?: InputMaybe<StringComparisonExp>;
|
|
3326
3674
|
current_collection?: InputMaybe<CurrentCollectionsV2BoolExp>;
|
|
3675
|
+
current_royalty_v1?: InputMaybe<CurrentTokenRoyaltyV1BoolExp>;
|
|
3327
3676
|
current_token_ownerships?: InputMaybe<CurrentTokenOwnershipsV2BoolExp>;
|
|
3328
3677
|
current_token_ownerships_aggregate?: InputMaybe<CurrentTokenOwnershipsV2AggregateBoolExp>;
|
|
3329
3678
|
decimals?: InputMaybe<BigintComparisonExp>;
|
|
@@ -3347,6 +3696,7 @@ type CurrentTokenDatasV2OrderBy = {
|
|
|
3347
3696
|
cdn_asset_uris?: InputMaybe<NftMetadataCrawlerParsedAssetUrisOrderBy>;
|
|
3348
3697
|
collection_id?: InputMaybe<OrderBy>;
|
|
3349
3698
|
current_collection?: InputMaybe<CurrentCollectionsV2OrderBy>;
|
|
3699
|
+
current_royalty_v1?: InputMaybe<CurrentTokenRoyaltyV1OrderBy>;
|
|
3350
3700
|
current_token_ownerships_aggregate?: InputMaybe<CurrentTokenOwnershipsV2AggregateOrderBy>;
|
|
3351
3701
|
decimals?: InputMaybe<OrderBy>;
|
|
3352
3702
|
description?: InputMaybe<OrderBy>;
|
|
@@ -4219,6 +4569,67 @@ type CurrentTokenPendingClaimsStreamCursorValueInput = {
|
|
|
4219
4569
|
token_data_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
4220
4570
|
token_data_id_hash?: InputMaybe<Scalars["String"]["input"]>;
|
|
4221
4571
|
};
|
|
4572
|
+
/** columns and relationships of "current_token_royalty_v1" */
|
|
4573
|
+
type CurrentTokenRoyaltyV1 = {
|
|
4574
|
+
last_transaction_timestamp: Scalars["timestamp"]["output"];
|
|
4575
|
+
last_transaction_version: Scalars["bigint"]["output"];
|
|
4576
|
+
payee_address: Scalars["String"]["output"];
|
|
4577
|
+
royalty_points_denominator: Scalars["numeric"]["output"];
|
|
4578
|
+
royalty_points_numerator: Scalars["numeric"]["output"];
|
|
4579
|
+
token_data_id: Scalars["String"]["output"];
|
|
4580
|
+
};
|
|
4581
|
+
/** Boolean expression to filter rows from the table "current_token_royalty_v1". All fields are combined with a logical 'AND'. */
|
|
4582
|
+
type CurrentTokenRoyaltyV1BoolExp = {
|
|
4583
|
+
_and?: InputMaybe<Array<CurrentTokenRoyaltyV1BoolExp>>;
|
|
4584
|
+
_not?: InputMaybe<CurrentTokenRoyaltyV1BoolExp>;
|
|
4585
|
+
_or?: InputMaybe<Array<CurrentTokenRoyaltyV1BoolExp>>;
|
|
4586
|
+
last_transaction_timestamp?: InputMaybe<TimestampComparisonExp>;
|
|
4587
|
+
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
4588
|
+
payee_address?: InputMaybe<StringComparisonExp>;
|
|
4589
|
+
royalty_points_denominator?: InputMaybe<NumericComparisonExp>;
|
|
4590
|
+
royalty_points_numerator?: InputMaybe<NumericComparisonExp>;
|
|
4591
|
+
token_data_id?: InputMaybe<StringComparisonExp>;
|
|
4592
|
+
};
|
|
4593
|
+
/** Ordering options when selecting data from "current_token_royalty_v1". */
|
|
4594
|
+
type CurrentTokenRoyaltyV1OrderBy = {
|
|
4595
|
+
last_transaction_timestamp?: InputMaybe<OrderBy>;
|
|
4596
|
+
last_transaction_version?: InputMaybe<OrderBy>;
|
|
4597
|
+
payee_address?: InputMaybe<OrderBy>;
|
|
4598
|
+
royalty_points_denominator?: InputMaybe<OrderBy>;
|
|
4599
|
+
royalty_points_numerator?: InputMaybe<OrderBy>;
|
|
4600
|
+
token_data_id?: InputMaybe<OrderBy>;
|
|
4601
|
+
};
|
|
4602
|
+
/** select columns of table "current_token_royalty_v1" */
|
|
4603
|
+
declare enum CurrentTokenRoyaltyV1SelectColumn {
|
|
4604
|
+
/** column name */
|
|
4605
|
+
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
4606
|
+
/** column name */
|
|
4607
|
+
LastTransactionVersion = "last_transaction_version",
|
|
4608
|
+
/** column name */
|
|
4609
|
+
PayeeAddress = "payee_address",
|
|
4610
|
+
/** column name */
|
|
4611
|
+
RoyaltyPointsDenominator = "royalty_points_denominator",
|
|
4612
|
+
/** column name */
|
|
4613
|
+
RoyaltyPointsNumerator = "royalty_points_numerator",
|
|
4614
|
+
/** column name */
|
|
4615
|
+
TokenDataId = "token_data_id"
|
|
4616
|
+
}
|
|
4617
|
+
/** Streaming cursor of the table "current_token_royalty_v1" */
|
|
4618
|
+
type CurrentTokenRoyaltyV1StreamCursorInput = {
|
|
4619
|
+
/** Stream column input with initial value */
|
|
4620
|
+
initial_value: CurrentTokenRoyaltyV1StreamCursorValueInput;
|
|
4621
|
+
/** cursor ordering */
|
|
4622
|
+
ordering?: InputMaybe<CursorOrdering>;
|
|
4623
|
+
};
|
|
4624
|
+
/** Initial value of the column from where the streaming should start */
|
|
4625
|
+
type CurrentTokenRoyaltyV1StreamCursorValueInput = {
|
|
4626
|
+
last_transaction_timestamp?: InputMaybe<Scalars["timestamp"]["input"]>;
|
|
4627
|
+
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
4628
|
+
payee_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
4629
|
+
royalty_points_denominator?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
4630
|
+
royalty_points_numerator?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
4631
|
+
token_data_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
4632
|
+
};
|
|
4222
4633
|
/** ordering argument of a cursor */
|
|
4223
4634
|
declare enum CursorOrdering {
|
|
4224
4635
|
/** ascending ordering of the cursor */
|
|
@@ -5293,830 +5704,63 @@ type MoveResourcesVarSampFields = {
|
|
|
5293
5704
|
type MoveResourcesVarianceFields = {
|
|
5294
5705
|
transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5295
5706
|
};
|
|
5296
|
-
/** columns and relationships of "
|
|
5297
|
-
type
|
|
5298
|
-
|
|
5299
|
-
|
|
5300
|
-
|
|
5301
|
-
|
|
5302
|
-
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
expiration_time: Scalars["numeric"]["output"];
|
|
5308
|
-
fee_schedule_id: Scalars["String"]["output"];
|
|
5309
|
-
is_deleted: Scalars["Boolean"]["output"];
|
|
5310
|
-
last_transaction_timestamp: Scalars["timestamptz"]["output"];
|
|
5311
|
-
last_transaction_version: Scalars["bigint"]["output"];
|
|
5312
|
-
listing_id: Scalars["String"]["output"];
|
|
5313
|
-
marketplace: Scalars["String"]["output"];
|
|
5314
|
-
seller: Scalars["String"]["output"];
|
|
5315
|
-
starting_bid_price: Scalars["numeric"]["output"];
|
|
5316
|
-
token_amount: Scalars["numeric"]["output"];
|
|
5317
|
-
token_data_id: Scalars["String"]["output"];
|
|
5318
|
-
token_standard: Scalars["String"]["output"];
|
|
5707
|
+
/** columns and relationships of "nft_metadata_crawler.parsed_asset_uris" */
|
|
5708
|
+
type NftMetadataCrawlerParsedAssetUris = {
|
|
5709
|
+
animation_optimizer_retry_count: Scalars["Int"]["output"];
|
|
5710
|
+
asset_uri: Scalars["String"]["output"];
|
|
5711
|
+
cdn_animation_uri?: Maybe<Scalars["String"]["output"]>;
|
|
5712
|
+
cdn_image_uri?: Maybe<Scalars["String"]["output"]>;
|
|
5713
|
+
cdn_json_uri?: Maybe<Scalars["String"]["output"]>;
|
|
5714
|
+
image_optimizer_retry_count: Scalars["Int"]["output"];
|
|
5715
|
+
json_parser_retry_count: Scalars["Int"]["output"];
|
|
5716
|
+
raw_animation_uri?: Maybe<Scalars["String"]["output"]>;
|
|
5717
|
+
raw_image_uri?: Maybe<Scalars["String"]["output"]>;
|
|
5319
5718
|
};
|
|
5320
|
-
/** Boolean expression to filter rows from the table "
|
|
5321
|
-
type
|
|
5322
|
-
_and?: InputMaybe<Array<
|
|
5323
|
-
_not?: InputMaybe<
|
|
5324
|
-
_or?: InputMaybe<Array<
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
fee_schedule_id?: InputMaybe<StringComparisonExp>;
|
|
5335
|
-
is_deleted?: InputMaybe<BooleanComparisonExp>;
|
|
5336
|
-
last_transaction_timestamp?: InputMaybe<TimestamptzComparisonExp>;
|
|
5337
|
-
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
5338
|
-
listing_id?: InputMaybe<StringComparisonExp>;
|
|
5339
|
-
marketplace?: InputMaybe<StringComparisonExp>;
|
|
5340
|
-
seller?: InputMaybe<StringComparisonExp>;
|
|
5341
|
-
starting_bid_price?: InputMaybe<NumericComparisonExp>;
|
|
5342
|
-
token_amount?: InputMaybe<NumericComparisonExp>;
|
|
5343
|
-
token_data_id?: InputMaybe<StringComparisonExp>;
|
|
5344
|
-
token_standard?: InputMaybe<StringComparisonExp>;
|
|
5719
|
+
/** Boolean expression to filter rows from the table "nft_metadata_crawler.parsed_asset_uris". All fields are combined with a logical 'AND'. */
|
|
5720
|
+
type NftMetadataCrawlerParsedAssetUrisBoolExp = {
|
|
5721
|
+
_and?: InputMaybe<Array<NftMetadataCrawlerParsedAssetUrisBoolExp>>;
|
|
5722
|
+
_not?: InputMaybe<NftMetadataCrawlerParsedAssetUrisBoolExp>;
|
|
5723
|
+
_or?: InputMaybe<Array<NftMetadataCrawlerParsedAssetUrisBoolExp>>;
|
|
5724
|
+
animation_optimizer_retry_count?: InputMaybe<IntComparisonExp>;
|
|
5725
|
+
asset_uri?: InputMaybe<StringComparisonExp>;
|
|
5726
|
+
cdn_animation_uri?: InputMaybe<StringComparisonExp>;
|
|
5727
|
+
cdn_image_uri?: InputMaybe<StringComparisonExp>;
|
|
5728
|
+
cdn_json_uri?: InputMaybe<StringComparisonExp>;
|
|
5729
|
+
image_optimizer_retry_count?: InputMaybe<IntComparisonExp>;
|
|
5730
|
+
json_parser_retry_count?: InputMaybe<IntComparisonExp>;
|
|
5731
|
+
raw_animation_uri?: InputMaybe<StringComparisonExp>;
|
|
5732
|
+
raw_image_uri?: InputMaybe<StringComparisonExp>;
|
|
5345
5733
|
};
|
|
5346
|
-
/** Ordering options when selecting data from "
|
|
5347
|
-
type
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
fee_schedule_id?: InputMaybe<OrderBy>;
|
|
5358
|
-
is_deleted?: InputMaybe<OrderBy>;
|
|
5359
|
-
last_transaction_timestamp?: InputMaybe<OrderBy>;
|
|
5360
|
-
last_transaction_version?: InputMaybe<OrderBy>;
|
|
5361
|
-
listing_id?: InputMaybe<OrderBy>;
|
|
5362
|
-
marketplace?: InputMaybe<OrderBy>;
|
|
5363
|
-
seller?: InputMaybe<OrderBy>;
|
|
5364
|
-
starting_bid_price?: InputMaybe<OrderBy>;
|
|
5365
|
-
token_amount?: InputMaybe<OrderBy>;
|
|
5366
|
-
token_data_id?: InputMaybe<OrderBy>;
|
|
5367
|
-
token_standard?: InputMaybe<OrderBy>;
|
|
5734
|
+
/** Ordering options when selecting data from "nft_metadata_crawler.parsed_asset_uris". */
|
|
5735
|
+
type NftMetadataCrawlerParsedAssetUrisOrderBy = {
|
|
5736
|
+
animation_optimizer_retry_count?: InputMaybe<OrderBy>;
|
|
5737
|
+
asset_uri?: InputMaybe<OrderBy>;
|
|
5738
|
+
cdn_animation_uri?: InputMaybe<OrderBy>;
|
|
5739
|
+
cdn_image_uri?: InputMaybe<OrderBy>;
|
|
5740
|
+
cdn_json_uri?: InputMaybe<OrderBy>;
|
|
5741
|
+
image_optimizer_retry_count?: InputMaybe<OrderBy>;
|
|
5742
|
+
json_parser_retry_count?: InputMaybe<OrderBy>;
|
|
5743
|
+
raw_animation_uri?: InputMaybe<OrderBy>;
|
|
5744
|
+
raw_image_uri?: InputMaybe<OrderBy>;
|
|
5368
5745
|
};
|
|
5369
|
-
/** select columns of table "
|
|
5370
|
-
declare enum
|
|
5371
|
-
/** column name */
|
|
5372
|
-
BuyItNowPrice = "buy_it_now_price",
|
|
5373
|
-
/** column name */
|
|
5374
|
-
CoinType = "coin_type",
|
|
5746
|
+
/** select columns of table "nft_metadata_crawler.parsed_asset_uris" */
|
|
5747
|
+
declare enum NftMetadataCrawlerParsedAssetUrisSelectColumn {
|
|
5375
5748
|
/** column name */
|
|
5376
|
-
|
|
5749
|
+
AnimationOptimizerRetryCount = "animation_optimizer_retry_count",
|
|
5377
5750
|
/** column name */
|
|
5378
|
-
|
|
5751
|
+
AssetUri = "asset_uri",
|
|
5379
5752
|
/** column name */
|
|
5380
|
-
|
|
5753
|
+
CdnAnimationUri = "cdn_animation_uri",
|
|
5381
5754
|
/** column name */
|
|
5382
|
-
|
|
5755
|
+
CdnImageUri = "cdn_image_uri",
|
|
5383
5756
|
/** column name */
|
|
5384
|
-
|
|
5757
|
+
CdnJsonUri = "cdn_json_uri",
|
|
5385
5758
|
/** column name */
|
|
5386
|
-
|
|
5759
|
+
ImageOptimizerRetryCount = "image_optimizer_retry_count",
|
|
5387
5760
|
/** column name */
|
|
5388
|
-
|
|
5761
|
+
JsonParserRetryCount = "json_parser_retry_count",
|
|
5389
5762
|
/** column name */
|
|
5390
|
-
|
|
5391
|
-
/** column name */
|
|
5392
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
5393
|
-
/** column name */
|
|
5394
|
-
LastTransactionVersion = "last_transaction_version",
|
|
5395
|
-
/** column name */
|
|
5396
|
-
ListingId = "listing_id",
|
|
5397
|
-
/** column name */
|
|
5398
|
-
Marketplace = "marketplace",
|
|
5399
|
-
/** column name */
|
|
5400
|
-
Seller = "seller",
|
|
5401
|
-
/** column name */
|
|
5402
|
-
StartingBidPrice = "starting_bid_price",
|
|
5403
|
-
/** column name */
|
|
5404
|
-
TokenAmount = "token_amount",
|
|
5405
|
-
/** column name */
|
|
5406
|
-
TokenDataId = "token_data_id",
|
|
5407
|
-
/** column name */
|
|
5408
|
-
TokenStandard = "token_standard"
|
|
5409
|
-
}
|
|
5410
|
-
/** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_auctions" */
|
|
5411
|
-
type NftMarketplaceV2CurrentNftMarketplaceAuctionsStreamCursorInput = {
|
|
5412
|
-
/** Stream column input with initial value */
|
|
5413
|
-
initial_value: NftMarketplaceV2CurrentNftMarketplaceAuctionsStreamCursorValueInput;
|
|
5414
|
-
/** cursor ordering */
|
|
5415
|
-
ordering?: InputMaybe<CursorOrdering>;
|
|
5416
|
-
};
|
|
5417
|
-
/** Initial value of the column from where the streaming should start */
|
|
5418
|
-
type NftMarketplaceV2CurrentNftMarketplaceAuctionsStreamCursorValueInput = {
|
|
5419
|
-
buy_it_now_price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5420
|
-
coin_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
5421
|
-
collection_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5422
|
-
contract_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
5423
|
-
current_bid_price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5424
|
-
current_bidder?: InputMaybe<Scalars["String"]["input"]>;
|
|
5425
|
-
entry_function_id_str?: InputMaybe<Scalars["String"]["input"]>;
|
|
5426
|
-
expiration_time?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5427
|
-
fee_schedule_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5428
|
-
is_deleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5429
|
-
last_transaction_timestamp?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
5430
|
-
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
5431
|
-
listing_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5432
|
-
marketplace?: InputMaybe<Scalars["String"]["input"]>;
|
|
5433
|
-
seller?: InputMaybe<Scalars["String"]["input"]>;
|
|
5434
|
-
starting_bid_price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5435
|
-
token_amount?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5436
|
-
token_data_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5437
|
-
token_standard?: InputMaybe<Scalars["String"]["input"]>;
|
|
5438
|
-
};
|
|
5439
|
-
/** columns and relationships of "nft_marketplace_v2.current_nft_marketplace_collection_offers" */
|
|
5440
|
-
type NftMarketplaceV2CurrentNftMarketplaceCollectionOffers = {
|
|
5441
|
-
buyer: Scalars["String"]["output"];
|
|
5442
|
-
coin_type?: Maybe<Scalars["String"]["output"]>;
|
|
5443
|
-
collection_id: Scalars["String"]["output"];
|
|
5444
|
-
collection_offer_id: Scalars["String"]["output"];
|
|
5445
|
-
contract_address: Scalars["String"]["output"];
|
|
5446
|
-
/** An object relationship */
|
|
5447
|
-
current_collection_v2?: Maybe<CurrentCollectionsV2>;
|
|
5448
|
-
entry_function_id_str: Scalars["String"]["output"];
|
|
5449
|
-
expiration_time: Scalars["numeric"]["output"];
|
|
5450
|
-
fee_schedule_id: Scalars["String"]["output"];
|
|
5451
|
-
is_deleted: Scalars["Boolean"]["output"];
|
|
5452
|
-
item_price: Scalars["numeric"]["output"];
|
|
5453
|
-
last_transaction_timestamp: Scalars["timestamptz"]["output"];
|
|
5454
|
-
last_transaction_version: Scalars["bigint"]["output"];
|
|
5455
|
-
marketplace: Scalars["String"]["output"];
|
|
5456
|
-
remaining_token_amount: Scalars["numeric"]["output"];
|
|
5457
|
-
token_standard: Scalars["String"]["output"];
|
|
5458
|
-
};
|
|
5459
|
-
/** Boolean expression to filter rows from the table "nft_marketplace_v2.current_nft_marketplace_collection_offers". All fields are combined with a logical 'AND'. */
|
|
5460
|
-
type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp = {
|
|
5461
|
-
_and?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp>>;
|
|
5462
|
-
_not?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp>;
|
|
5463
|
-
_or?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp>>;
|
|
5464
|
-
buyer?: InputMaybe<StringComparisonExp>;
|
|
5465
|
-
coin_type?: InputMaybe<StringComparisonExp>;
|
|
5466
|
-
collection_id?: InputMaybe<StringComparisonExp>;
|
|
5467
|
-
collection_offer_id?: InputMaybe<StringComparisonExp>;
|
|
5468
|
-
contract_address?: InputMaybe<StringComparisonExp>;
|
|
5469
|
-
current_collection_v2?: InputMaybe<CurrentCollectionsV2BoolExp>;
|
|
5470
|
-
entry_function_id_str?: InputMaybe<StringComparisonExp>;
|
|
5471
|
-
expiration_time?: InputMaybe<NumericComparisonExp>;
|
|
5472
|
-
fee_schedule_id?: InputMaybe<StringComparisonExp>;
|
|
5473
|
-
is_deleted?: InputMaybe<BooleanComparisonExp>;
|
|
5474
|
-
item_price?: InputMaybe<NumericComparisonExp>;
|
|
5475
|
-
last_transaction_timestamp?: InputMaybe<TimestamptzComparisonExp>;
|
|
5476
|
-
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
5477
|
-
marketplace?: InputMaybe<StringComparisonExp>;
|
|
5478
|
-
remaining_token_amount?: InputMaybe<NumericComparisonExp>;
|
|
5479
|
-
token_standard?: InputMaybe<StringComparisonExp>;
|
|
5480
|
-
};
|
|
5481
|
-
/** Ordering options when selecting data from "nft_marketplace_v2.current_nft_marketplace_collection_offers". */
|
|
5482
|
-
type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersOrderBy = {
|
|
5483
|
-
buyer?: InputMaybe<OrderBy>;
|
|
5484
|
-
coin_type?: InputMaybe<OrderBy>;
|
|
5485
|
-
collection_id?: InputMaybe<OrderBy>;
|
|
5486
|
-
collection_offer_id?: InputMaybe<OrderBy>;
|
|
5487
|
-
contract_address?: InputMaybe<OrderBy>;
|
|
5488
|
-
current_collection_v2?: InputMaybe<CurrentCollectionsV2OrderBy>;
|
|
5489
|
-
entry_function_id_str?: InputMaybe<OrderBy>;
|
|
5490
|
-
expiration_time?: InputMaybe<OrderBy>;
|
|
5491
|
-
fee_schedule_id?: InputMaybe<OrderBy>;
|
|
5492
|
-
is_deleted?: InputMaybe<OrderBy>;
|
|
5493
|
-
item_price?: InputMaybe<OrderBy>;
|
|
5494
|
-
last_transaction_timestamp?: InputMaybe<OrderBy>;
|
|
5495
|
-
last_transaction_version?: InputMaybe<OrderBy>;
|
|
5496
|
-
marketplace?: InputMaybe<OrderBy>;
|
|
5497
|
-
remaining_token_amount?: InputMaybe<OrderBy>;
|
|
5498
|
-
token_standard?: InputMaybe<OrderBy>;
|
|
5499
|
-
};
|
|
5500
|
-
/** select columns of table "nft_marketplace_v2.current_nft_marketplace_collection_offers" */
|
|
5501
|
-
declare enum NftMarketplaceV2CurrentNftMarketplaceCollectionOffersSelectColumn {
|
|
5502
|
-
/** column name */
|
|
5503
|
-
Buyer = "buyer",
|
|
5504
|
-
/** column name */
|
|
5505
|
-
CoinType = "coin_type",
|
|
5506
|
-
/** column name */
|
|
5507
|
-
CollectionId = "collection_id",
|
|
5508
|
-
/** column name */
|
|
5509
|
-
CollectionOfferId = "collection_offer_id",
|
|
5510
|
-
/** column name */
|
|
5511
|
-
ContractAddress = "contract_address",
|
|
5512
|
-
/** column name */
|
|
5513
|
-
EntryFunctionIdStr = "entry_function_id_str",
|
|
5514
|
-
/** column name */
|
|
5515
|
-
ExpirationTime = "expiration_time",
|
|
5516
|
-
/** column name */
|
|
5517
|
-
FeeScheduleId = "fee_schedule_id",
|
|
5518
|
-
/** column name */
|
|
5519
|
-
IsDeleted = "is_deleted",
|
|
5520
|
-
/** column name */
|
|
5521
|
-
ItemPrice = "item_price",
|
|
5522
|
-
/** column name */
|
|
5523
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
5524
|
-
/** column name */
|
|
5525
|
-
LastTransactionVersion = "last_transaction_version",
|
|
5526
|
-
/** column name */
|
|
5527
|
-
Marketplace = "marketplace",
|
|
5528
|
-
/** column name */
|
|
5529
|
-
RemainingTokenAmount = "remaining_token_amount",
|
|
5530
|
-
/** column name */
|
|
5531
|
-
TokenStandard = "token_standard"
|
|
5532
|
-
}
|
|
5533
|
-
/** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_collection_offers" */
|
|
5534
|
-
type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamCursorInput = {
|
|
5535
|
-
/** Stream column input with initial value */
|
|
5536
|
-
initial_value: NftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamCursorValueInput;
|
|
5537
|
-
/** cursor ordering */
|
|
5538
|
-
ordering?: InputMaybe<CursorOrdering>;
|
|
5539
|
-
};
|
|
5540
|
-
/** Initial value of the column from where the streaming should start */
|
|
5541
|
-
type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamCursorValueInput = {
|
|
5542
|
-
buyer?: InputMaybe<Scalars["String"]["input"]>;
|
|
5543
|
-
coin_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
5544
|
-
collection_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5545
|
-
collection_offer_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5546
|
-
contract_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
5547
|
-
entry_function_id_str?: InputMaybe<Scalars["String"]["input"]>;
|
|
5548
|
-
expiration_time?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5549
|
-
fee_schedule_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5550
|
-
is_deleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5551
|
-
item_price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5552
|
-
last_transaction_timestamp?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
5553
|
-
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
5554
|
-
marketplace?: InputMaybe<Scalars["String"]["input"]>;
|
|
5555
|
-
remaining_token_amount?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5556
|
-
token_standard?: InputMaybe<Scalars["String"]["input"]>;
|
|
5557
|
-
};
|
|
5558
|
-
/** columns and relationships of "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
5559
|
-
type NftMarketplaceV2CurrentNftMarketplaceListings = {
|
|
5560
|
-
coin_type?: Maybe<Scalars["String"]["output"]>;
|
|
5561
|
-
collection_id: Scalars["String"]["output"];
|
|
5562
|
-
contract_address: Scalars["String"]["output"];
|
|
5563
|
-
/** An object relationship */
|
|
5564
|
-
current_token_data?: Maybe<CurrentTokenDatasV2>;
|
|
5565
|
-
entry_function_id_str: Scalars["String"]["output"];
|
|
5566
|
-
fee_schedule_id: Scalars["String"]["output"];
|
|
5567
|
-
is_deleted: Scalars["Boolean"]["output"];
|
|
5568
|
-
last_transaction_timestamp: Scalars["timestamptz"]["output"];
|
|
5569
|
-
last_transaction_version: Scalars["bigint"]["output"];
|
|
5570
|
-
listing_id: Scalars["String"]["output"];
|
|
5571
|
-
marketplace: Scalars["String"]["output"];
|
|
5572
|
-
price: Scalars["numeric"]["output"];
|
|
5573
|
-
seller: Scalars["String"]["output"];
|
|
5574
|
-
token_amount: Scalars["numeric"]["output"];
|
|
5575
|
-
token_data_id: Scalars["String"]["output"];
|
|
5576
|
-
token_standard: Scalars["String"]["output"];
|
|
5577
|
-
};
|
|
5578
|
-
/** aggregated selection of "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
5579
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsAggregate = {
|
|
5580
|
-
aggregate?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsAggregateFields>;
|
|
5581
|
-
nodes: Array<NftMarketplaceV2CurrentNftMarketplaceListings>;
|
|
5582
|
-
};
|
|
5583
|
-
/** aggregate fields of "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
5584
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsAggregateFields = {
|
|
5585
|
-
avg?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsAvgFields>;
|
|
5586
|
-
count: Scalars["Int"]["output"];
|
|
5587
|
-
max?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsMaxFields>;
|
|
5588
|
-
min?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsMinFields>;
|
|
5589
|
-
stddev?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsStddevFields>;
|
|
5590
|
-
stddev_pop?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsStddevPopFields>;
|
|
5591
|
-
stddev_samp?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsStddevSampFields>;
|
|
5592
|
-
sum?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsSumFields>;
|
|
5593
|
-
var_pop?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsVarPopFields>;
|
|
5594
|
-
var_samp?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsVarSampFields>;
|
|
5595
|
-
variance?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListingsVarianceFields>;
|
|
5596
|
-
};
|
|
5597
|
-
/** aggregate fields of "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
5598
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsAggregateFieldsCountArgs = {
|
|
5599
|
-
columns?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsSelectColumn>>;
|
|
5600
|
-
distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5601
|
-
};
|
|
5602
|
-
/** aggregate avg on columns */
|
|
5603
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsAvgFields = {
|
|
5604
|
-
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5605
|
-
price?: Maybe<Scalars["Float"]["output"]>;
|
|
5606
|
-
token_amount?: Maybe<Scalars["Float"]["output"]>;
|
|
5607
|
-
};
|
|
5608
|
-
/** Boolean expression to filter rows from the table "nft_marketplace_v2.current_nft_marketplace_listings". All fields are combined with a logical 'AND'. */
|
|
5609
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp = {
|
|
5610
|
-
_and?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>>;
|
|
5611
|
-
_not?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>;
|
|
5612
|
-
_or?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>>;
|
|
5613
|
-
coin_type?: InputMaybe<StringComparisonExp>;
|
|
5614
|
-
collection_id?: InputMaybe<StringComparisonExp>;
|
|
5615
|
-
contract_address?: InputMaybe<StringComparisonExp>;
|
|
5616
|
-
current_token_data?: InputMaybe<CurrentTokenDatasV2BoolExp>;
|
|
5617
|
-
entry_function_id_str?: InputMaybe<StringComparisonExp>;
|
|
5618
|
-
fee_schedule_id?: InputMaybe<StringComparisonExp>;
|
|
5619
|
-
is_deleted?: InputMaybe<BooleanComparisonExp>;
|
|
5620
|
-
last_transaction_timestamp?: InputMaybe<TimestamptzComparisonExp>;
|
|
5621
|
-
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
5622
|
-
listing_id?: InputMaybe<StringComparisonExp>;
|
|
5623
|
-
marketplace?: InputMaybe<StringComparisonExp>;
|
|
5624
|
-
price?: InputMaybe<NumericComparisonExp>;
|
|
5625
|
-
seller?: InputMaybe<StringComparisonExp>;
|
|
5626
|
-
token_amount?: InputMaybe<NumericComparisonExp>;
|
|
5627
|
-
token_data_id?: InputMaybe<StringComparisonExp>;
|
|
5628
|
-
token_standard?: InputMaybe<StringComparisonExp>;
|
|
5629
|
-
};
|
|
5630
|
-
/** aggregate max on columns */
|
|
5631
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsMaxFields = {
|
|
5632
|
-
coin_type?: Maybe<Scalars["String"]["output"]>;
|
|
5633
|
-
collection_id?: Maybe<Scalars["String"]["output"]>;
|
|
5634
|
-
contract_address?: Maybe<Scalars["String"]["output"]>;
|
|
5635
|
-
entry_function_id_str?: Maybe<Scalars["String"]["output"]>;
|
|
5636
|
-
fee_schedule_id?: Maybe<Scalars["String"]["output"]>;
|
|
5637
|
-
last_transaction_timestamp?: Maybe<Scalars["timestamptz"]["output"]>;
|
|
5638
|
-
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
5639
|
-
listing_id?: Maybe<Scalars["String"]["output"]>;
|
|
5640
|
-
marketplace?: Maybe<Scalars["String"]["output"]>;
|
|
5641
|
-
price?: Maybe<Scalars["numeric"]["output"]>;
|
|
5642
|
-
seller?: Maybe<Scalars["String"]["output"]>;
|
|
5643
|
-
token_amount?: Maybe<Scalars["numeric"]["output"]>;
|
|
5644
|
-
token_data_id?: Maybe<Scalars["String"]["output"]>;
|
|
5645
|
-
token_standard?: Maybe<Scalars["String"]["output"]>;
|
|
5646
|
-
};
|
|
5647
|
-
/** aggregate min on columns */
|
|
5648
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsMinFields = {
|
|
5649
|
-
coin_type?: Maybe<Scalars["String"]["output"]>;
|
|
5650
|
-
collection_id?: Maybe<Scalars["String"]["output"]>;
|
|
5651
|
-
contract_address?: Maybe<Scalars["String"]["output"]>;
|
|
5652
|
-
entry_function_id_str?: Maybe<Scalars["String"]["output"]>;
|
|
5653
|
-
fee_schedule_id?: Maybe<Scalars["String"]["output"]>;
|
|
5654
|
-
last_transaction_timestamp?: Maybe<Scalars["timestamptz"]["output"]>;
|
|
5655
|
-
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
5656
|
-
listing_id?: Maybe<Scalars["String"]["output"]>;
|
|
5657
|
-
marketplace?: Maybe<Scalars["String"]["output"]>;
|
|
5658
|
-
price?: Maybe<Scalars["numeric"]["output"]>;
|
|
5659
|
-
seller?: Maybe<Scalars["String"]["output"]>;
|
|
5660
|
-
token_amount?: Maybe<Scalars["numeric"]["output"]>;
|
|
5661
|
-
token_data_id?: Maybe<Scalars["String"]["output"]>;
|
|
5662
|
-
token_standard?: Maybe<Scalars["String"]["output"]>;
|
|
5663
|
-
};
|
|
5664
|
-
/** Ordering options when selecting data from "nft_marketplace_v2.current_nft_marketplace_listings". */
|
|
5665
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsOrderBy = {
|
|
5666
|
-
coin_type?: InputMaybe<OrderBy>;
|
|
5667
|
-
collection_id?: InputMaybe<OrderBy>;
|
|
5668
|
-
contract_address?: InputMaybe<OrderBy>;
|
|
5669
|
-
current_token_data?: InputMaybe<CurrentTokenDatasV2OrderBy>;
|
|
5670
|
-
entry_function_id_str?: InputMaybe<OrderBy>;
|
|
5671
|
-
fee_schedule_id?: InputMaybe<OrderBy>;
|
|
5672
|
-
is_deleted?: InputMaybe<OrderBy>;
|
|
5673
|
-
last_transaction_timestamp?: InputMaybe<OrderBy>;
|
|
5674
|
-
last_transaction_version?: InputMaybe<OrderBy>;
|
|
5675
|
-
listing_id?: InputMaybe<OrderBy>;
|
|
5676
|
-
marketplace?: InputMaybe<OrderBy>;
|
|
5677
|
-
price?: InputMaybe<OrderBy>;
|
|
5678
|
-
seller?: InputMaybe<OrderBy>;
|
|
5679
|
-
token_amount?: InputMaybe<OrderBy>;
|
|
5680
|
-
token_data_id?: InputMaybe<OrderBy>;
|
|
5681
|
-
token_standard?: InputMaybe<OrderBy>;
|
|
5682
|
-
};
|
|
5683
|
-
/** select columns of table "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
5684
|
-
declare enum NftMarketplaceV2CurrentNftMarketplaceListingsSelectColumn {
|
|
5685
|
-
/** column name */
|
|
5686
|
-
CoinType = "coin_type",
|
|
5687
|
-
/** column name */
|
|
5688
|
-
CollectionId = "collection_id",
|
|
5689
|
-
/** column name */
|
|
5690
|
-
ContractAddress = "contract_address",
|
|
5691
|
-
/** column name */
|
|
5692
|
-
EntryFunctionIdStr = "entry_function_id_str",
|
|
5693
|
-
/** column name */
|
|
5694
|
-
FeeScheduleId = "fee_schedule_id",
|
|
5695
|
-
/** column name */
|
|
5696
|
-
IsDeleted = "is_deleted",
|
|
5697
|
-
/** column name */
|
|
5698
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
5699
|
-
/** column name */
|
|
5700
|
-
LastTransactionVersion = "last_transaction_version",
|
|
5701
|
-
/** column name */
|
|
5702
|
-
ListingId = "listing_id",
|
|
5703
|
-
/** column name */
|
|
5704
|
-
Marketplace = "marketplace",
|
|
5705
|
-
/** column name */
|
|
5706
|
-
Price = "price",
|
|
5707
|
-
/** column name */
|
|
5708
|
-
Seller = "seller",
|
|
5709
|
-
/** column name */
|
|
5710
|
-
TokenAmount = "token_amount",
|
|
5711
|
-
/** column name */
|
|
5712
|
-
TokenDataId = "token_data_id",
|
|
5713
|
-
/** column name */
|
|
5714
|
-
TokenStandard = "token_standard"
|
|
5715
|
-
}
|
|
5716
|
-
/** aggregate stddev on columns */
|
|
5717
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsStddevFields = {
|
|
5718
|
-
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5719
|
-
price?: Maybe<Scalars["Float"]["output"]>;
|
|
5720
|
-
token_amount?: Maybe<Scalars["Float"]["output"]>;
|
|
5721
|
-
};
|
|
5722
|
-
/** aggregate stddev_pop on columns */
|
|
5723
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsStddevPopFields = {
|
|
5724
|
-
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5725
|
-
price?: Maybe<Scalars["Float"]["output"]>;
|
|
5726
|
-
token_amount?: Maybe<Scalars["Float"]["output"]>;
|
|
5727
|
-
};
|
|
5728
|
-
/** aggregate stddev_samp on columns */
|
|
5729
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsStddevSampFields = {
|
|
5730
|
-
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5731
|
-
price?: Maybe<Scalars["Float"]["output"]>;
|
|
5732
|
-
token_amount?: Maybe<Scalars["Float"]["output"]>;
|
|
5733
|
-
};
|
|
5734
|
-
/** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_listings" */
|
|
5735
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsStreamCursorInput = {
|
|
5736
|
-
/** Stream column input with initial value */
|
|
5737
|
-
initial_value: NftMarketplaceV2CurrentNftMarketplaceListingsStreamCursorValueInput;
|
|
5738
|
-
/** cursor ordering */
|
|
5739
|
-
ordering?: InputMaybe<CursorOrdering>;
|
|
5740
|
-
};
|
|
5741
|
-
/** Initial value of the column from where the streaming should start */
|
|
5742
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsStreamCursorValueInput = {
|
|
5743
|
-
coin_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
5744
|
-
collection_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5745
|
-
contract_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
5746
|
-
entry_function_id_str?: InputMaybe<Scalars["String"]["input"]>;
|
|
5747
|
-
fee_schedule_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5748
|
-
is_deleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5749
|
-
last_transaction_timestamp?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
5750
|
-
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
5751
|
-
listing_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5752
|
-
marketplace?: InputMaybe<Scalars["String"]["input"]>;
|
|
5753
|
-
price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5754
|
-
seller?: InputMaybe<Scalars["String"]["input"]>;
|
|
5755
|
-
token_amount?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5756
|
-
token_data_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5757
|
-
token_standard?: InputMaybe<Scalars["String"]["input"]>;
|
|
5758
|
-
};
|
|
5759
|
-
/** aggregate sum on columns */
|
|
5760
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsSumFields = {
|
|
5761
|
-
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
5762
|
-
price?: Maybe<Scalars["numeric"]["output"]>;
|
|
5763
|
-
token_amount?: Maybe<Scalars["numeric"]["output"]>;
|
|
5764
|
-
};
|
|
5765
|
-
/** aggregate var_pop on columns */
|
|
5766
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsVarPopFields = {
|
|
5767
|
-
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5768
|
-
price?: Maybe<Scalars["Float"]["output"]>;
|
|
5769
|
-
token_amount?: Maybe<Scalars["Float"]["output"]>;
|
|
5770
|
-
};
|
|
5771
|
-
/** aggregate var_samp on columns */
|
|
5772
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsVarSampFields = {
|
|
5773
|
-
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5774
|
-
price?: Maybe<Scalars["Float"]["output"]>;
|
|
5775
|
-
token_amount?: Maybe<Scalars["Float"]["output"]>;
|
|
5776
|
-
};
|
|
5777
|
-
/** aggregate variance on columns */
|
|
5778
|
-
type NftMarketplaceV2CurrentNftMarketplaceListingsVarianceFields = {
|
|
5779
|
-
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
5780
|
-
price?: Maybe<Scalars["Float"]["output"]>;
|
|
5781
|
-
token_amount?: Maybe<Scalars["Float"]["output"]>;
|
|
5782
|
-
};
|
|
5783
|
-
/** columns and relationships of "nft_marketplace_v2.current_nft_marketplace_token_offers" */
|
|
5784
|
-
type NftMarketplaceV2CurrentNftMarketplaceTokenOffers = {
|
|
5785
|
-
buyer: Scalars["String"]["output"];
|
|
5786
|
-
coin_type?: Maybe<Scalars["String"]["output"]>;
|
|
5787
|
-
collection_id: Scalars["String"]["output"];
|
|
5788
|
-
contract_address: Scalars["String"]["output"];
|
|
5789
|
-
/** An object relationship */
|
|
5790
|
-
current_token_data?: Maybe<CurrentTokenDatasV2>;
|
|
5791
|
-
entry_function_id_str: Scalars["String"]["output"];
|
|
5792
|
-
expiration_time: Scalars["numeric"]["output"];
|
|
5793
|
-
fee_schedule_id: Scalars["String"]["output"];
|
|
5794
|
-
is_deleted: Scalars["Boolean"]["output"];
|
|
5795
|
-
last_transaction_timestamp: Scalars["timestamptz"]["output"];
|
|
5796
|
-
last_transaction_version: Scalars["bigint"]["output"];
|
|
5797
|
-
marketplace: Scalars["String"]["output"];
|
|
5798
|
-
offer_id: Scalars["String"]["output"];
|
|
5799
|
-
price: Scalars["numeric"]["output"];
|
|
5800
|
-
token_amount: Scalars["numeric"]["output"];
|
|
5801
|
-
token_data_id: Scalars["String"]["output"];
|
|
5802
|
-
token_standard: Scalars["String"]["output"];
|
|
5803
|
-
};
|
|
5804
|
-
/** Boolean expression to filter rows from the table "nft_marketplace_v2.current_nft_marketplace_token_offers". All fields are combined with a logical 'AND'. */
|
|
5805
|
-
type NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp = {
|
|
5806
|
-
_and?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp>>;
|
|
5807
|
-
_not?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp>;
|
|
5808
|
-
_or?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp>>;
|
|
5809
|
-
buyer?: InputMaybe<StringComparisonExp>;
|
|
5810
|
-
coin_type?: InputMaybe<StringComparisonExp>;
|
|
5811
|
-
collection_id?: InputMaybe<StringComparisonExp>;
|
|
5812
|
-
contract_address?: InputMaybe<StringComparisonExp>;
|
|
5813
|
-
current_token_data?: InputMaybe<CurrentTokenDatasV2BoolExp>;
|
|
5814
|
-
entry_function_id_str?: InputMaybe<StringComparisonExp>;
|
|
5815
|
-
expiration_time?: InputMaybe<NumericComparisonExp>;
|
|
5816
|
-
fee_schedule_id?: InputMaybe<StringComparisonExp>;
|
|
5817
|
-
is_deleted?: InputMaybe<BooleanComparisonExp>;
|
|
5818
|
-
last_transaction_timestamp?: InputMaybe<TimestamptzComparisonExp>;
|
|
5819
|
-
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
5820
|
-
marketplace?: InputMaybe<StringComparisonExp>;
|
|
5821
|
-
offer_id?: InputMaybe<StringComparisonExp>;
|
|
5822
|
-
price?: InputMaybe<NumericComparisonExp>;
|
|
5823
|
-
token_amount?: InputMaybe<NumericComparisonExp>;
|
|
5824
|
-
token_data_id?: InputMaybe<StringComparisonExp>;
|
|
5825
|
-
token_standard?: InputMaybe<StringComparisonExp>;
|
|
5826
|
-
};
|
|
5827
|
-
/** Ordering options when selecting data from "nft_marketplace_v2.current_nft_marketplace_token_offers". */
|
|
5828
|
-
type NftMarketplaceV2CurrentNftMarketplaceTokenOffersOrderBy = {
|
|
5829
|
-
buyer?: InputMaybe<OrderBy>;
|
|
5830
|
-
coin_type?: InputMaybe<OrderBy>;
|
|
5831
|
-
collection_id?: InputMaybe<OrderBy>;
|
|
5832
|
-
contract_address?: InputMaybe<OrderBy>;
|
|
5833
|
-
current_token_data?: InputMaybe<CurrentTokenDatasV2OrderBy>;
|
|
5834
|
-
entry_function_id_str?: InputMaybe<OrderBy>;
|
|
5835
|
-
expiration_time?: InputMaybe<OrderBy>;
|
|
5836
|
-
fee_schedule_id?: InputMaybe<OrderBy>;
|
|
5837
|
-
is_deleted?: InputMaybe<OrderBy>;
|
|
5838
|
-
last_transaction_timestamp?: InputMaybe<OrderBy>;
|
|
5839
|
-
last_transaction_version?: InputMaybe<OrderBy>;
|
|
5840
|
-
marketplace?: InputMaybe<OrderBy>;
|
|
5841
|
-
offer_id?: InputMaybe<OrderBy>;
|
|
5842
|
-
price?: InputMaybe<OrderBy>;
|
|
5843
|
-
token_amount?: InputMaybe<OrderBy>;
|
|
5844
|
-
token_data_id?: InputMaybe<OrderBy>;
|
|
5845
|
-
token_standard?: InputMaybe<OrderBy>;
|
|
5846
|
-
};
|
|
5847
|
-
/** select columns of table "nft_marketplace_v2.current_nft_marketplace_token_offers" */
|
|
5848
|
-
declare enum NftMarketplaceV2CurrentNftMarketplaceTokenOffersSelectColumn {
|
|
5849
|
-
/** column name */
|
|
5850
|
-
Buyer = "buyer",
|
|
5851
|
-
/** column name */
|
|
5852
|
-
CoinType = "coin_type",
|
|
5853
|
-
/** column name */
|
|
5854
|
-
CollectionId = "collection_id",
|
|
5855
|
-
/** column name */
|
|
5856
|
-
ContractAddress = "contract_address",
|
|
5857
|
-
/** column name */
|
|
5858
|
-
EntryFunctionIdStr = "entry_function_id_str",
|
|
5859
|
-
/** column name */
|
|
5860
|
-
ExpirationTime = "expiration_time",
|
|
5861
|
-
/** column name */
|
|
5862
|
-
FeeScheduleId = "fee_schedule_id",
|
|
5863
|
-
/** column name */
|
|
5864
|
-
IsDeleted = "is_deleted",
|
|
5865
|
-
/** column name */
|
|
5866
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
5867
|
-
/** column name */
|
|
5868
|
-
LastTransactionVersion = "last_transaction_version",
|
|
5869
|
-
/** column name */
|
|
5870
|
-
Marketplace = "marketplace",
|
|
5871
|
-
/** column name */
|
|
5872
|
-
OfferId = "offer_id",
|
|
5873
|
-
/** column name */
|
|
5874
|
-
Price = "price",
|
|
5875
|
-
/** column name */
|
|
5876
|
-
TokenAmount = "token_amount",
|
|
5877
|
-
/** column name */
|
|
5878
|
-
TokenDataId = "token_data_id",
|
|
5879
|
-
/** column name */
|
|
5880
|
-
TokenStandard = "token_standard"
|
|
5881
|
-
}
|
|
5882
|
-
/** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_token_offers" */
|
|
5883
|
-
type NftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamCursorInput = {
|
|
5884
|
-
/** Stream column input with initial value */
|
|
5885
|
-
initial_value: NftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamCursorValueInput;
|
|
5886
|
-
/** cursor ordering */
|
|
5887
|
-
ordering?: InputMaybe<CursorOrdering>;
|
|
5888
|
-
};
|
|
5889
|
-
/** Initial value of the column from where the streaming should start */
|
|
5890
|
-
type NftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamCursorValueInput = {
|
|
5891
|
-
buyer?: InputMaybe<Scalars["String"]["input"]>;
|
|
5892
|
-
coin_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
5893
|
-
collection_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5894
|
-
contract_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
5895
|
-
entry_function_id_str?: InputMaybe<Scalars["String"]["input"]>;
|
|
5896
|
-
expiration_time?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5897
|
-
fee_schedule_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5898
|
-
is_deleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5899
|
-
last_transaction_timestamp?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
5900
|
-
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
5901
|
-
marketplace?: InputMaybe<Scalars["String"]["input"]>;
|
|
5902
|
-
offer_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5903
|
-
price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5904
|
-
token_amount?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
5905
|
-
token_data_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
5906
|
-
token_standard?: InputMaybe<Scalars["String"]["input"]>;
|
|
5907
|
-
};
|
|
5908
|
-
/** columns and relationships of "nft_marketplace_v2.nft_marketplace_activities" */
|
|
5909
|
-
type NftMarketplaceV2NftMarketplaceActivities = {
|
|
5910
|
-
buyer?: Maybe<Scalars["String"]["output"]>;
|
|
5911
|
-
coin_type?: Maybe<Scalars["String"]["output"]>;
|
|
5912
|
-
collection_id: Scalars["String"]["output"];
|
|
5913
|
-
collection_name: Scalars["String"]["output"];
|
|
5914
|
-
contract_address: Scalars["String"]["output"];
|
|
5915
|
-
creator_address: Scalars["String"]["output"];
|
|
5916
|
-
/** An object relationship */
|
|
5917
|
-
current_token_data?: Maybe<CurrentTokenDatasV2>;
|
|
5918
|
-
entry_function_id_str: Scalars["String"]["output"];
|
|
5919
|
-
event_index: Scalars["bigint"]["output"];
|
|
5920
|
-
event_type: Scalars["String"]["output"];
|
|
5921
|
-
fee_schedule_id: Scalars["String"]["output"];
|
|
5922
|
-
marketplace: Scalars["String"]["output"];
|
|
5923
|
-
offer_or_listing_id: Scalars["String"]["output"];
|
|
5924
|
-
price: Scalars["numeric"]["output"];
|
|
5925
|
-
property_version?: Maybe<Scalars["String"]["output"]>;
|
|
5926
|
-
seller?: Maybe<Scalars["String"]["output"]>;
|
|
5927
|
-
token_amount: Scalars["numeric"]["output"];
|
|
5928
|
-
token_data_id?: Maybe<Scalars["String"]["output"]>;
|
|
5929
|
-
token_name?: Maybe<Scalars["String"]["output"]>;
|
|
5930
|
-
token_standard: Scalars["String"]["output"];
|
|
5931
|
-
transaction_timestamp: Scalars["timestamptz"]["output"];
|
|
5932
|
-
transaction_version: Scalars["bigint"]["output"];
|
|
5933
|
-
};
|
|
5934
|
-
/** Boolean expression to filter rows from the table "nft_marketplace_v2.nft_marketplace_activities". All fields are combined with a logical 'AND'. */
|
|
5935
|
-
type NftMarketplaceV2NftMarketplaceActivitiesBoolExp = {
|
|
5936
|
-
_and?: InputMaybe<Array<NftMarketplaceV2NftMarketplaceActivitiesBoolExp>>;
|
|
5937
|
-
_not?: InputMaybe<NftMarketplaceV2NftMarketplaceActivitiesBoolExp>;
|
|
5938
|
-
_or?: InputMaybe<Array<NftMarketplaceV2NftMarketplaceActivitiesBoolExp>>;
|
|
5939
|
-
buyer?: InputMaybe<StringComparisonExp>;
|
|
5940
|
-
coin_type?: InputMaybe<StringComparisonExp>;
|
|
5941
|
-
collection_id?: InputMaybe<StringComparisonExp>;
|
|
5942
|
-
collection_name?: InputMaybe<StringComparisonExp>;
|
|
5943
|
-
contract_address?: InputMaybe<StringComparisonExp>;
|
|
5944
|
-
creator_address?: InputMaybe<StringComparisonExp>;
|
|
5945
|
-
current_token_data?: InputMaybe<CurrentTokenDatasV2BoolExp>;
|
|
5946
|
-
entry_function_id_str?: InputMaybe<StringComparisonExp>;
|
|
5947
|
-
event_index?: InputMaybe<BigintComparisonExp>;
|
|
5948
|
-
event_type?: InputMaybe<StringComparisonExp>;
|
|
5949
|
-
fee_schedule_id?: InputMaybe<StringComparisonExp>;
|
|
5950
|
-
marketplace?: InputMaybe<StringComparisonExp>;
|
|
5951
|
-
offer_or_listing_id?: InputMaybe<StringComparisonExp>;
|
|
5952
|
-
price?: InputMaybe<NumericComparisonExp>;
|
|
5953
|
-
property_version?: InputMaybe<StringComparisonExp>;
|
|
5954
|
-
seller?: InputMaybe<StringComparisonExp>;
|
|
5955
|
-
token_amount?: InputMaybe<NumericComparisonExp>;
|
|
5956
|
-
token_data_id?: InputMaybe<StringComparisonExp>;
|
|
5957
|
-
token_name?: InputMaybe<StringComparisonExp>;
|
|
5958
|
-
token_standard?: InputMaybe<StringComparisonExp>;
|
|
5959
|
-
transaction_timestamp?: InputMaybe<TimestamptzComparisonExp>;
|
|
5960
|
-
transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
5961
|
-
};
|
|
5962
|
-
/** Ordering options when selecting data from "nft_marketplace_v2.nft_marketplace_activities". */
|
|
5963
|
-
type NftMarketplaceV2NftMarketplaceActivitiesOrderBy = {
|
|
5964
|
-
buyer?: InputMaybe<OrderBy>;
|
|
5965
|
-
coin_type?: InputMaybe<OrderBy>;
|
|
5966
|
-
collection_id?: InputMaybe<OrderBy>;
|
|
5967
|
-
collection_name?: InputMaybe<OrderBy>;
|
|
5968
|
-
contract_address?: InputMaybe<OrderBy>;
|
|
5969
|
-
creator_address?: InputMaybe<OrderBy>;
|
|
5970
|
-
current_token_data?: InputMaybe<CurrentTokenDatasV2OrderBy>;
|
|
5971
|
-
entry_function_id_str?: InputMaybe<OrderBy>;
|
|
5972
|
-
event_index?: InputMaybe<OrderBy>;
|
|
5973
|
-
event_type?: InputMaybe<OrderBy>;
|
|
5974
|
-
fee_schedule_id?: InputMaybe<OrderBy>;
|
|
5975
|
-
marketplace?: InputMaybe<OrderBy>;
|
|
5976
|
-
offer_or_listing_id?: InputMaybe<OrderBy>;
|
|
5977
|
-
price?: InputMaybe<OrderBy>;
|
|
5978
|
-
property_version?: InputMaybe<OrderBy>;
|
|
5979
|
-
seller?: InputMaybe<OrderBy>;
|
|
5980
|
-
token_amount?: InputMaybe<OrderBy>;
|
|
5981
|
-
token_data_id?: InputMaybe<OrderBy>;
|
|
5982
|
-
token_name?: InputMaybe<OrderBy>;
|
|
5983
|
-
token_standard?: InputMaybe<OrderBy>;
|
|
5984
|
-
transaction_timestamp?: InputMaybe<OrderBy>;
|
|
5985
|
-
transaction_version?: InputMaybe<OrderBy>;
|
|
5986
|
-
};
|
|
5987
|
-
/** select columns of table "nft_marketplace_v2.nft_marketplace_activities" */
|
|
5988
|
-
declare enum NftMarketplaceV2NftMarketplaceActivitiesSelectColumn {
|
|
5989
|
-
/** column name */
|
|
5990
|
-
Buyer = "buyer",
|
|
5991
|
-
/** column name */
|
|
5992
|
-
CoinType = "coin_type",
|
|
5993
|
-
/** column name */
|
|
5994
|
-
CollectionId = "collection_id",
|
|
5995
|
-
/** column name */
|
|
5996
|
-
CollectionName = "collection_name",
|
|
5997
|
-
/** column name */
|
|
5998
|
-
ContractAddress = "contract_address",
|
|
5999
|
-
/** column name */
|
|
6000
|
-
CreatorAddress = "creator_address",
|
|
6001
|
-
/** column name */
|
|
6002
|
-
EntryFunctionIdStr = "entry_function_id_str",
|
|
6003
|
-
/** column name */
|
|
6004
|
-
EventIndex = "event_index",
|
|
6005
|
-
/** column name */
|
|
6006
|
-
EventType = "event_type",
|
|
6007
|
-
/** column name */
|
|
6008
|
-
FeeScheduleId = "fee_schedule_id",
|
|
6009
|
-
/** column name */
|
|
6010
|
-
Marketplace = "marketplace",
|
|
6011
|
-
/** column name */
|
|
6012
|
-
OfferOrListingId = "offer_or_listing_id",
|
|
6013
|
-
/** column name */
|
|
6014
|
-
Price = "price",
|
|
6015
|
-
/** column name */
|
|
6016
|
-
PropertyVersion = "property_version",
|
|
6017
|
-
/** column name */
|
|
6018
|
-
Seller = "seller",
|
|
6019
|
-
/** column name */
|
|
6020
|
-
TokenAmount = "token_amount",
|
|
6021
|
-
/** column name */
|
|
6022
|
-
TokenDataId = "token_data_id",
|
|
6023
|
-
/** column name */
|
|
6024
|
-
TokenName = "token_name",
|
|
6025
|
-
/** column name */
|
|
6026
|
-
TokenStandard = "token_standard",
|
|
6027
|
-
/** column name */
|
|
6028
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
6029
|
-
/** column name */
|
|
6030
|
-
TransactionVersion = "transaction_version"
|
|
6031
|
-
}
|
|
6032
|
-
/** Streaming cursor of the table "nft_marketplace_v2_nft_marketplace_activities" */
|
|
6033
|
-
type NftMarketplaceV2NftMarketplaceActivitiesStreamCursorInput = {
|
|
6034
|
-
/** Stream column input with initial value */
|
|
6035
|
-
initial_value: NftMarketplaceV2NftMarketplaceActivitiesStreamCursorValueInput;
|
|
6036
|
-
/** cursor ordering */
|
|
6037
|
-
ordering?: InputMaybe<CursorOrdering>;
|
|
6038
|
-
};
|
|
6039
|
-
/** Initial value of the column from where the streaming should start */
|
|
6040
|
-
type NftMarketplaceV2NftMarketplaceActivitiesStreamCursorValueInput = {
|
|
6041
|
-
buyer?: InputMaybe<Scalars["String"]["input"]>;
|
|
6042
|
-
coin_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
6043
|
-
collection_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
6044
|
-
collection_name?: InputMaybe<Scalars["String"]["input"]>;
|
|
6045
|
-
contract_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
6046
|
-
creator_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
6047
|
-
entry_function_id_str?: InputMaybe<Scalars["String"]["input"]>;
|
|
6048
|
-
event_index?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
6049
|
-
event_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
6050
|
-
fee_schedule_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
6051
|
-
marketplace?: InputMaybe<Scalars["String"]["input"]>;
|
|
6052
|
-
offer_or_listing_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
6053
|
-
price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
6054
|
-
property_version?: InputMaybe<Scalars["String"]["input"]>;
|
|
6055
|
-
seller?: InputMaybe<Scalars["String"]["input"]>;
|
|
6056
|
-
token_amount?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
6057
|
-
token_data_id?: InputMaybe<Scalars["String"]["input"]>;
|
|
6058
|
-
token_name?: InputMaybe<Scalars["String"]["input"]>;
|
|
6059
|
-
token_standard?: InputMaybe<Scalars["String"]["input"]>;
|
|
6060
|
-
transaction_timestamp?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
6061
|
-
transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
6062
|
-
};
|
|
6063
|
-
/** columns and relationships of "nft_metadata_crawler.parsed_asset_uris" */
|
|
6064
|
-
type NftMetadataCrawlerParsedAssetUris = {
|
|
6065
|
-
animation_optimizer_retry_count: Scalars["Int"]["output"];
|
|
6066
|
-
asset_uri: Scalars["String"]["output"];
|
|
6067
|
-
cdn_animation_uri?: Maybe<Scalars["String"]["output"]>;
|
|
6068
|
-
cdn_image_uri?: Maybe<Scalars["String"]["output"]>;
|
|
6069
|
-
cdn_json_uri?: Maybe<Scalars["String"]["output"]>;
|
|
6070
|
-
image_optimizer_retry_count: Scalars["Int"]["output"];
|
|
6071
|
-
json_parser_retry_count: Scalars["Int"]["output"];
|
|
6072
|
-
raw_animation_uri?: Maybe<Scalars["String"]["output"]>;
|
|
6073
|
-
raw_image_uri?: Maybe<Scalars["String"]["output"]>;
|
|
6074
|
-
};
|
|
6075
|
-
/** Boolean expression to filter rows from the table "nft_metadata_crawler.parsed_asset_uris". All fields are combined with a logical 'AND'. */
|
|
6076
|
-
type NftMetadataCrawlerParsedAssetUrisBoolExp = {
|
|
6077
|
-
_and?: InputMaybe<Array<NftMetadataCrawlerParsedAssetUrisBoolExp>>;
|
|
6078
|
-
_not?: InputMaybe<NftMetadataCrawlerParsedAssetUrisBoolExp>;
|
|
6079
|
-
_or?: InputMaybe<Array<NftMetadataCrawlerParsedAssetUrisBoolExp>>;
|
|
6080
|
-
animation_optimizer_retry_count?: InputMaybe<IntComparisonExp>;
|
|
6081
|
-
asset_uri?: InputMaybe<StringComparisonExp>;
|
|
6082
|
-
cdn_animation_uri?: InputMaybe<StringComparisonExp>;
|
|
6083
|
-
cdn_image_uri?: InputMaybe<StringComparisonExp>;
|
|
6084
|
-
cdn_json_uri?: InputMaybe<StringComparisonExp>;
|
|
6085
|
-
image_optimizer_retry_count?: InputMaybe<IntComparisonExp>;
|
|
6086
|
-
json_parser_retry_count?: InputMaybe<IntComparisonExp>;
|
|
6087
|
-
raw_animation_uri?: InputMaybe<StringComparisonExp>;
|
|
6088
|
-
raw_image_uri?: InputMaybe<StringComparisonExp>;
|
|
6089
|
-
};
|
|
6090
|
-
/** Ordering options when selecting data from "nft_metadata_crawler.parsed_asset_uris". */
|
|
6091
|
-
type NftMetadataCrawlerParsedAssetUrisOrderBy = {
|
|
6092
|
-
animation_optimizer_retry_count?: InputMaybe<OrderBy>;
|
|
6093
|
-
asset_uri?: InputMaybe<OrderBy>;
|
|
6094
|
-
cdn_animation_uri?: InputMaybe<OrderBy>;
|
|
6095
|
-
cdn_image_uri?: InputMaybe<OrderBy>;
|
|
6096
|
-
cdn_json_uri?: InputMaybe<OrderBy>;
|
|
6097
|
-
image_optimizer_retry_count?: InputMaybe<OrderBy>;
|
|
6098
|
-
json_parser_retry_count?: InputMaybe<OrderBy>;
|
|
6099
|
-
raw_animation_uri?: InputMaybe<OrderBy>;
|
|
6100
|
-
raw_image_uri?: InputMaybe<OrderBy>;
|
|
6101
|
-
};
|
|
6102
|
-
/** select columns of table "nft_metadata_crawler.parsed_asset_uris" */
|
|
6103
|
-
declare enum NftMetadataCrawlerParsedAssetUrisSelectColumn {
|
|
6104
|
-
/** column name */
|
|
6105
|
-
AnimationOptimizerRetryCount = "animation_optimizer_retry_count",
|
|
6106
|
-
/** column name */
|
|
6107
|
-
AssetUri = "asset_uri",
|
|
6108
|
-
/** column name */
|
|
6109
|
-
CdnAnimationUri = "cdn_animation_uri",
|
|
6110
|
-
/** column name */
|
|
6111
|
-
CdnImageUri = "cdn_image_uri",
|
|
6112
|
-
/** column name */
|
|
6113
|
-
CdnJsonUri = "cdn_json_uri",
|
|
6114
|
-
/** column name */
|
|
6115
|
-
ImageOptimizerRetryCount = "image_optimizer_retry_count",
|
|
6116
|
-
/** column name */
|
|
6117
|
-
JsonParserRetryCount = "json_parser_retry_count",
|
|
6118
|
-
/** column name */
|
|
6119
|
-
RawAnimationUri = "raw_animation_uri",
|
|
5763
|
+
RawAnimationUri = "raw_animation_uri",
|
|
6120
5764
|
/** column name */
|
|
6121
5765
|
RawImageUri = "raw_image_uri"
|
|
6122
5766
|
}
|
|
@@ -6409,6 +6053,131 @@ type ProposalVotesVarianceFields = {
|
|
|
6409
6053
|
proposal_id?: Maybe<Scalars["Float"]["output"]>;
|
|
6410
6054
|
transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6411
6055
|
};
|
|
6056
|
+
/** columns and relationships of "public_key_auth_keys" */
|
|
6057
|
+
type PublicKeyAuthKeys = {
|
|
6058
|
+
auth_key: Scalars["String"]["output"];
|
|
6059
|
+
last_transaction_version: Scalars["bigint"]["output"];
|
|
6060
|
+
public_key: Scalars["String"]["output"];
|
|
6061
|
+
public_key_type: Scalars["String"]["output"];
|
|
6062
|
+
verified: Scalars["Boolean"]["output"];
|
|
6063
|
+
};
|
|
6064
|
+
/** aggregated selection of "public_key_auth_keys" */
|
|
6065
|
+
type PublicKeyAuthKeysAggregate = {
|
|
6066
|
+
aggregate?: Maybe<PublicKeyAuthKeysAggregateFields>;
|
|
6067
|
+
nodes: Array<PublicKeyAuthKeys>;
|
|
6068
|
+
};
|
|
6069
|
+
/** aggregate fields of "public_key_auth_keys" */
|
|
6070
|
+
type PublicKeyAuthKeysAggregateFields = {
|
|
6071
|
+
avg?: Maybe<PublicKeyAuthKeysAvgFields>;
|
|
6072
|
+
count: Scalars["Int"]["output"];
|
|
6073
|
+
max?: Maybe<PublicKeyAuthKeysMaxFields>;
|
|
6074
|
+
min?: Maybe<PublicKeyAuthKeysMinFields>;
|
|
6075
|
+
stddev?: Maybe<PublicKeyAuthKeysStddevFields>;
|
|
6076
|
+
stddev_pop?: Maybe<PublicKeyAuthKeysStddevPopFields>;
|
|
6077
|
+
stddev_samp?: Maybe<PublicKeyAuthKeysStddevSampFields>;
|
|
6078
|
+
sum?: Maybe<PublicKeyAuthKeysSumFields>;
|
|
6079
|
+
var_pop?: Maybe<PublicKeyAuthKeysVarPopFields>;
|
|
6080
|
+
var_samp?: Maybe<PublicKeyAuthKeysVarSampFields>;
|
|
6081
|
+
variance?: Maybe<PublicKeyAuthKeysVarianceFields>;
|
|
6082
|
+
};
|
|
6083
|
+
/** aggregate fields of "public_key_auth_keys" */
|
|
6084
|
+
type PublicKeyAuthKeysAggregateFieldsCountArgs = {
|
|
6085
|
+
columns?: InputMaybe<Array<PublicKeyAuthKeysSelectColumn>>;
|
|
6086
|
+
distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
6087
|
+
};
|
|
6088
|
+
/** aggregate avg on columns */
|
|
6089
|
+
type PublicKeyAuthKeysAvgFields = {
|
|
6090
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6091
|
+
};
|
|
6092
|
+
/** Boolean expression to filter rows from the table "public_key_auth_keys". All fields are combined with a logical 'AND'. */
|
|
6093
|
+
type PublicKeyAuthKeysBoolExp = {
|
|
6094
|
+
_and?: InputMaybe<Array<PublicKeyAuthKeysBoolExp>>;
|
|
6095
|
+
_not?: InputMaybe<PublicKeyAuthKeysBoolExp>;
|
|
6096
|
+
_or?: InputMaybe<Array<PublicKeyAuthKeysBoolExp>>;
|
|
6097
|
+
auth_key?: InputMaybe<StringComparisonExp>;
|
|
6098
|
+
last_transaction_version?: InputMaybe<BigintComparisonExp>;
|
|
6099
|
+
public_key?: InputMaybe<StringComparisonExp>;
|
|
6100
|
+
public_key_type?: InputMaybe<StringComparisonExp>;
|
|
6101
|
+
verified?: InputMaybe<BooleanComparisonExp>;
|
|
6102
|
+
};
|
|
6103
|
+
/** aggregate max on columns */
|
|
6104
|
+
type PublicKeyAuthKeysMaxFields = {
|
|
6105
|
+
auth_key?: Maybe<Scalars["String"]["output"]>;
|
|
6106
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
6107
|
+
public_key?: Maybe<Scalars["String"]["output"]>;
|
|
6108
|
+
public_key_type?: Maybe<Scalars["String"]["output"]>;
|
|
6109
|
+
};
|
|
6110
|
+
/** aggregate min on columns */
|
|
6111
|
+
type PublicKeyAuthKeysMinFields = {
|
|
6112
|
+
auth_key?: Maybe<Scalars["String"]["output"]>;
|
|
6113
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
6114
|
+
public_key?: Maybe<Scalars["String"]["output"]>;
|
|
6115
|
+
public_key_type?: Maybe<Scalars["String"]["output"]>;
|
|
6116
|
+
};
|
|
6117
|
+
/** Ordering options when selecting data from "public_key_auth_keys". */
|
|
6118
|
+
type PublicKeyAuthKeysOrderBy = {
|
|
6119
|
+
auth_key?: InputMaybe<OrderBy>;
|
|
6120
|
+
last_transaction_version?: InputMaybe<OrderBy>;
|
|
6121
|
+
public_key?: InputMaybe<OrderBy>;
|
|
6122
|
+
public_key_type?: InputMaybe<OrderBy>;
|
|
6123
|
+
verified?: InputMaybe<OrderBy>;
|
|
6124
|
+
};
|
|
6125
|
+
/** select columns of table "public_key_auth_keys" */
|
|
6126
|
+
declare enum PublicKeyAuthKeysSelectColumn {
|
|
6127
|
+
/** column name */
|
|
6128
|
+
AuthKey = "auth_key",
|
|
6129
|
+
/** column name */
|
|
6130
|
+
LastTransactionVersion = "last_transaction_version",
|
|
6131
|
+
/** column name */
|
|
6132
|
+
PublicKey = "public_key",
|
|
6133
|
+
/** column name */
|
|
6134
|
+
PublicKeyType = "public_key_type",
|
|
6135
|
+
/** column name */
|
|
6136
|
+
Verified = "verified"
|
|
6137
|
+
}
|
|
6138
|
+
/** aggregate stddev on columns */
|
|
6139
|
+
type PublicKeyAuthKeysStddevFields = {
|
|
6140
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6141
|
+
};
|
|
6142
|
+
/** aggregate stddev_pop on columns */
|
|
6143
|
+
type PublicKeyAuthKeysStddevPopFields = {
|
|
6144
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6145
|
+
};
|
|
6146
|
+
/** aggregate stddev_samp on columns */
|
|
6147
|
+
type PublicKeyAuthKeysStddevSampFields = {
|
|
6148
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6149
|
+
};
|
|
6150
|
+
/** Streaming cursor of the table "public_key_auth_keys" */
|
|
6151
|
+
type PublicKeyAuthKeysStreamCursorInput = {
|
|
6152
|
+
/** Stream column input with initial value */
|
|
6153
|
+
initial_value: PublicKeyAuthKeysStreamCursorValueInput;
|
|
6154
|
+
/** cursor ordering */
|
|
6155
|
+
ordering?: InputMaybe<CursorOrdering>;
|
|
6156
|
+
};
|
|
6157
|
+
/** Initial value of the column from where the streaming should start */
|
|
6158
|
+
type PublicKeyAuthKeysStreamCursorValueInput = {
|
|
6159
|
+
auth_key?: InputMaybe<Scalars["String"]["input"]>;
|
|
6160
|
+
last_transaction_version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
6161
|
+
public_key?: InputMaybe<Scalars["String"]["input"]>;
|
|
6162
|
+
public_key_type?: InputMaybe<Scalars["String"]["input"]>;
|
|
6163
|
+
verified?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
6164
|
+
};
|
|
6165
|
+
/** aggregate sum on columns */
|
|
6166
|
+
type PublicKeyAuthKeysSumFields = {
|
|
6167
|
+
last_transaction_version?: Maybe<Scalars["bigint"]["output"]>;
|
|
6168
|
+
};
|
|
6169
|
+
/** aggregate var_pop on columns */
|
|
6170
|
+
type PublicKeyAuthKeysVarPopFields = {
|
|
6171
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6172
|
+
};
|
|
6173
|
+
/** aggregate var_samp on columns */
|
|
6174
|
+
type PublicKeyAuthKeysVarSampFields = {
|
|
6175
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6176
|
+
};
|
|
6177
|
+
/** aggregate variance on columns */
|
|
6178
|
+
type PublicKeyAuthKeysVarianceFields = {
|
|
6179
|
+
last_transaction_version?: Maybe<Scalars["Float"]["output"]>;
|
|
6180
|
+
};
|
|
6412
6181
|
type QueryRoot = {
|
|
6413
6182
|
/** fetch data from the table: "account_transactions" */
|
|
6414
6183
|
account_transactions: Array<AccountTransactions>;
|
|
@@ -6426,6 +6195,18 @@ type QueryRoot = {
|
|
|
6426
6195
|
address_version_from_move_resources: Array<AddressVersionFromMoveResources>;
|
|
6427
6196
|
/** fetch aggregated fields from the table: "legacy_migration_v1.address_version_from_move_resources" */
|
|
6428
6197
|
address_version_from_move_resources_aggregate: AddressVersionFromMoveResourcesAggregate;
|
|
6198
|
+
/** fetch data from the table: "auth_key_account_addresses" */
|
|
6199
|
+
auth_key_account_addresses: Array<AuthKeyAccountAddresses>;
|
|
6200
|
+
/** fetch aggregated fields from the table: "auth_key_account_addresses" */
|
|
6201
|
+
auth_key_account_addresses_aggregate: AuthKeyAccountAddressesAggregate;
|
|
6202
|
+
/** fetch data from the table: "auth_key_account_addresses" using primary key columns */
|
|
6203
|
+
auth_key_account_addresses_by_pk?: Maybe<AuthKeyAccountAddresses>;
|
|
6204
|
+
/** fetch data from the table: "auth_key_multikey_layout" */
|
|
6205
|
+
auth_key_multikey_layout: Array<AuthKeyMultikeyLayout>;
|
|
6206
|
+
/** fetch aggregated fields from the table: "auth_key_multikey_layout" */
|
|
6207
|
+
auth_key_multikey_layout_aggregate: AuthKeyMultikeyLayoutAggregate;
|
|
6208
|
+
/** fetch data from the table: "auth_key_multikey_layout" using primary key columns */
|
|
6209
|
+
auth_key_multikey_layout_by_pk?: Maybe<AuthKeyMultikeyLayout>;
|
|
6429
6210
|
/** fetch data from the table: "block_metadata_transactions" */
|
|
6430
6211
|
block_metadata_transactions: Array<BlockMetadataTransactions>;
|
|
6431
6212
|
/** fetch data from the table: "block_metadata_transactions" using primary key columns */
|
|
@@ -6478,11 +6259,11 @@ type QueryRoot = {
|
|
|
6478
6259
|
current_delegator_balances: Array<CurrentDelegatorBalances>;
|
|
6479
6260
|
/** fetch data from the table: "current_delegator_balances" using primary key columns */
|
|
6480
6261
|
current_delegator_balances_by_pk?: Maybe<CurrentDelegatorBalances>;
|
|
6481
|
-
/** fetch data from the table: "
|
|
6262
|
+
/** fetch data from the table: "current_fungible_asset_balances" */
|
|
6482
6263
|
current_fungible_asset_balances: Array<CurrentFungibleAssetBalances>;
|
|
6483
|
-
/** fetch aggregated fields from the table: "
|
|
6264
|
+
/** fetch aggregated fields from the table: "current_fungible_asset_balances" */
|
|
6484
6265
|
current_fungible_asset_balances_aggregate: CurrentFungibleAssetBalancesAggregate;
|
|
6485
|
-
/** fetch data from the table: "
|
|
6266
|
+
/** fetch data from the table: "current_fungible_asset_balances" using primary key columns */
|
|
6486
6267
|
current_fungible_asset_balances_by_pk?: Maybe<CurrentFungibleAssetBalances>;
|
|
6487
6268
|
/** fetch data from the table: "current_objects" */
|
|
6488
6269
|
current_objects: Array<CurrentObjects>;
|
|
@@ -6516,6 +6297,10 @@ type QueryRoot = {
|
|
|
6516
6297
|
current_token_pending_claims: Array<CurrentTokenPendingClaims>;
|
|
6517
6298
|
/** fetch data from the table: "current_token_pending_claims" using primary key columns */
|
|
6518
6299
|
current_token_pending_claims_by_pk?: Maybe<CurrentTokenPendingClaims>;
|
|
6300
|
+
/** fetch data from the table: "current_token_royalty_v1" */
|
|
6301
|
+
current_token_royalty_v1: Array<CurrentTokenRoyaltyV1>;
|
|
6302
|
+
/** fetch data from the table: "current_token_royalty_v1" using primary key columns */
|
|
6303
|
+
current_token_royalty_v1_by_pk?: Maybe<CurrentTokenRoyaltyV1>;
|
|
6519
6304
|
/** An array relationship */
|
|
6520
6305
|
delegated_staking_activities: Array<DelegatedStakingActivities>;
|
|
6521
6306
|
/** fetch data from the table: "delegated_staking_activities" using primary key columns */
|
|
@@ -6558,28 +6343,6 @@ type QueryRoot = {
|
|
|
6558
6343
|
move_resources: Array<MoveResources>;
|
|
6559
6344
|
/** fetch aggregated fields from the table: "legacy_migration_v1.move_resources" */
|
|
6560
6345
|
move_resources_aggregate: MoveResourcesAggregate;
|
|
6561
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" */
|
|
6562
|
-
nft_marketplace_v2_current_nft_marketplace_auctions: Array<NftMarketplaceV2CurrentNftMarketplaceAuctions>;
|
|
6563
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" using primary key columns */
|
|
6564
|
-
nft_marketplace_v2_current_nft_marketplace_auctions_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceAuctions>;
|
|
6565
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" */
|
|
6566
|
-
nft_marketplace_v2_current_nft_marketplace_collection_offers: Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffers>;
|
|
6567
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" using primary key columns */
|
|
6568
|
-
nft_marketplace_v2_current_nft_marketplace_collection_offers_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceCollectionOffers>;
|
|
6569
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
6570
|
-
nft_marketplace_v2_current_nft_marketplace_listings: Array<NftMarketplaceV2CurrentNftMarketplaceListings>;
|
|
6571
|
-
/** fetch aggregated fields from the table: "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
6572
|
-
nft_marketplace_v2_current_nft_marketplace_listings_aggregate: NftMarketplaceV2CurrentNftMarketplaceListingsAggregate;
|
|
6573
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" using primary key columns */
|
|
6574
|
-
nft_marketplace_v2_current_nft_marketplace_listings_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListings>;
|
|
6575
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" */
|
|
6576
|
-
nft_marketplace_v2_current_nft_marketplace_token_offers: Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffers>;
|
|
6577
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" using primary key columns */
|
|
6578
|
-
nft_marketplace_v2_current_nft_marketplace_token_offers_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceTokenOffers>;
|
|
6579
|
-
/** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" */
|
|
6580
|
-
nft_marketplace_v2_nft_marketplace_activities: Array<NftMarketplaceV2NftMarketplaceActivities>;
|
|
6581
|
-
/** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" using primary key columns */
|
|
6582
|
-
nft_marketplace_v2_nft_marketplace_activities_by_pk?: Maybe<NftMarketplaceV2NftMarketplaceActivities>;
|
|
6583
6346
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" */
|
|
6584
6347
|
nft_metadata_crawler_parsed_asset_uris: Array<NftMetadataCrawlerParsedAssetUris>;
|
|
6585
6348
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" using primary key columns */
|
|
@@ -6596,6 +6359,12 @@ type QueryRoot = {
|
|
|
6596
6359
|
proposal_votes_aggregate: ProposalVotesAggregate;
|
|
6597
6360
|
/** fetch data from the table: "proposal_votes" using primary key columns */
|
|
6598
6361
|
proposal_votes_by_pk?: Maybe<ProposalVotes>;
|
|
6362
|
+
/** fetch data from the table: "public_key_auth_keys" */
|
|
6363
|
+
public_key_auth_keys: Array<PublicKeyAuthKeys>;
|
|
6364
|
+
/** fetch aggregated fields from the table: "public_key_auth_keys" */
|
|
6365
|
+
public_key_auth_keys_aggregate: PublicKeyAuthKeysAggregate;
|
|
6366
|
+
/** fetch data from the table: "public_key_auth_keys" using primary key columns */
|
|
6367
|
+
public_key_auth_keys_by_pk?: Maybe<PublicKeyAuthKeys>;
|
|
6599
6368
|
/** fetch data from the table: "signatures" */
|
|
6600
6369
|
signatures: Array<Signatures>;
|
|
6601
6370
|
/** fetch data from the table: "signatures" using primary key columns */
|
|
@@ -6682,6 +6451,40 @@ type QueryRootAddressVersionFromMoveResourcesAggregateArgs = {
|
|
|
6682
6451
|
order_by?: InputMaybe<Array<AddressVersionFromMoveResourcesOrderBy>>;
|
|
6683
6452
|
where?: InputMaybe<AddressVersionFromMoveResourcesBoolExp>;
|
|
6684
6453
|
};
|
|
6454
|
+
type QueryRootAuthKeyAccountAddressesArgs = {
|
|
6455
|
+
distinct_on?: InputMaybe<Array<AuthKeyAccountAddressesSelectColumn>>;
|
|
6456
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6457
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6458
|
+
order_by?: InputMaybe<Array<AuthKeyAccountAddressesOrderBy>>;
|
|
6459
|
+
where?: InputMaybe<AuthKeyAccountAddressesBoolExp>;
|
|
6460
|
+
};
|
|
6461
|
+
type QueryRootAuthKeyAccountAddressesAggregateArgs = {
|
|
6462
|
+
distinct_on?: InputMaybe<Array<AuthKeyAccountAddressesSelectColumn>>;
|
|
6463
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6464
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6465
|
+
order_by?: InputMaybe<Array<AuthKeyAccountAddressesOrderBy>>;
|
|
6466
|
+
where?: InputMaybe<AuthKeyAccountAddressesBoolExp>;
|
|
6467
|
+
};
|
|
6468
|
+
type QueryRootAuthKeyAccountAddressesByPkArgs = {
|
|
6469
|
+
address: Scalars["String"]["input"];
|
|
6470
|
+
};
|
|
6471
|
+
type QueryRootAuthKeyMultikeyLayoutArgs = {
|
|
6472
|
+
distinct_on?: InputMaybe<Array<AuthKeyMultikeyLayoutSelectColumn>>;
|
|
6473
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6474
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6475
|
+
order_by?: InputMaybe<Array<AuthKeyMultikeyLayoutOrderBy>>;
|
|
6476
|
+
where?: InputMaybe<AuthKeyMultikeyLayoutBoolExp>;
|
|
6477
|
+
};
|
|
6478
|
+
type QueryRootAuthKeyMultikeyLayoutAggregateArgs = {
|
|
6479
|
+
distinct_on?: InputMaybe<Array<AuthKeyMultikeyLayoutSelectColumn>>;
|
|
6480
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6481
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6482
|
+
order_by?: InputMaybe<Array<AuthKeyMultikeyLayoutOrderBy>>;
|
|
6483
|
+
where?: InputMaybe<AuthKeyMultikeyLayoutBoolExp>;
|
|
6484
|
+
};
|
|
6485
|
+
type QueryRootAuthKeyMultikeyLayoutByPkArgs = {
|
|
6486
|
+
auth_key: Scalars["String"]["input"];
|
|
6487
|
+
};
|
|
6685
6488
|
type QueryRootBlockMetadataTransactionsArgs = {
|
|
6686
6489
|
distinct_on?: InputMaybe<Array<BlockMetadataTransactionsSelectColumn>>;
|
|
6687
6490
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -6955,6 +6758,16 @@ type QueryRootCurrentTokenPendingClaimsByPkArgs = {
|
|
|
6955
6758
|
to_address: Scalars["String"]["input"];
|
|
6956
6759
|
token_data_id_hash: Scalars["String"]["input"];
|
|
6957
6760
|
};
|
|
6761
|
+
type QueryRootCurrentTokenRoyaltyV1Args = {
|
|
6762
|
+
distinct_on?: InputMaybe<Array<CurrentTokenRoyaltyV1SelectColumn>>;
|
|
6763
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6764
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6765
|
+
order_by?: InputMaybe<Array<CurrentTokenRoyaltyV1OrderBy>>;
|
|
6766
|
+
where?: InputMaybe<CurrentTokenRoyaltyV1BoolExp>;
|
|
6767
|
+
};
|
|
6768
|
+
type QueryRootCurrentTokenRoyaltyV1ByPkArgs = {
|
|
6769
|
+
token_data_id: Scalars["String"]["input"];
|
|
6770
|
+
};
|
|
6958
6771
|
type QueryRootDelegatedStakingActivitiesArgs = {
|
|
6959
6772
|
distinct_on?: InputMaybe<Array<DelegatedStakingActivitiesSelectColumn>>;
|
|
6960
6773
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -7074,68 +6887,6 @@ type QueryRootMoveResourcesAggregateArgs = {
|
|
|
7074
6887
|
order_by?: InputMaybe<Array<MoveResourcesOrderBy>>;
|
|
7075
6888
|
where?: InputMaybe<MoveResourcesBoolExp>;
|
|
7076
6889
|
};
|
|
7077
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceAuctionsArgs = {
|
|
7078
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceAuctionsSelectColumn>>;
|
|
7079
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7080
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7081
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceAuctionsOrderBy>>;
|
|
7082
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceAuctionsBoolExp>;
|
|
7083
|
-
};
|
|
7084
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceAuctionsByPkArgs = {
|
|
7085
|
-
listing_id: Scalars["String"]["input"];
|
|
7086
|
-
token_data_id: Scalars["String"]["input"];
|
|
7087
|
-
};
|
|
7088
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersArgs = {
|
|
7089
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersSelectColumn>>;
|
|
7090
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7091
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7092
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersOrderBy>>;
|
|
7093
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp>;
|
|
7094
|
-
};
|
|
7095
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersByPkArgs = {
|
|
7096
|
-
collection_id: Scalars["String"]["input"];
|
|
7097
|
-
collection_offer_id: Scalars["String"]["input"];
|
|
7098
|
-
};
|
|
7099
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceListingsArgs = {
|
|
7100
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsSelectColumn>>;
|
|
7101
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7102
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7103
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsOrderBy>>;
|
|
7104
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>;
|
|
7105
|
-
};
|
|
7106
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceListingsAggregateArgs = {
|
|
7107
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsSelectColumn>>;
|
|
7108
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7109
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7110
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsOrderBy>>;
|
|
7111
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>;
|
|
7112
|
-
};
|
|
7113
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceListingsByPkArgs = {
|
|
7114
|
-
listing_id: Scalars["String"]["input"];
|
|
7115
|
-
token_data_id: Scalars["String"]["input"];
|
|
7116
|
-
};
|
|
7117
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersArgs = {
|
|
7118
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffersSelectColumn>>;
|
|
7119
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7120
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7121
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffersOrderBy>>;
|
|
7122
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp>;
|
|
7123
|
-
};
|
|
7124
|
-
type QueryRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersByPkArgs = {
|
|
7125
|
-
offer_id: Scalars["String"]["input"];
|
|
7126
|
-
token_data_id: Scalars["String"]["input"];
|
|
7127
|
-
};
|
|
7128
|
-
type QueryRootNftMarketplaceV2NftMarketplaceActivitiesArgs = {
|
|
7129
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2NftMarketplaceActivitiesSelectColumn>>;
|
|
7130
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7131
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7132
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2NftMarketplaceActivitiesOrderBy>>;
|
|
7133
|
-
where?: InputMaybe<NftMarketplaceV2NftMarketplaceActivitiesBoolExp>;
|
|
7134
|
-
};
|
|
7135
|
-
type QueryRootNftMarketplaceV2NftMarketplaceActivitiesByPkArgs = {
|
|
7136
|
-
event_index: Scalars["bigint"]["input"];
|
|
7137
|
-
transaction_version: Scalars["bigint"]["input"];
|
|
7138
|
-
};
|
|
7139
6890
|
type QueryRootNftMetadataCrawlerParsedAssetUrisArgs = {
|
|
7140
6891
|
distinct_on?: InputMaybe<Array<NftMetadataCrawlerParsedAssetUrisSelectColumn>>;
|
|
7141
6892
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -7182,6 +6933,25 @@ type QueryRootProposalVotesByPkArgs = {
|
|
|
7182
6933
|
transaction_version: Scalars["bigint"]["input"];
|
|
7183
6934
|
voter_address: Scalars["String"]["input"];
|
|
7184
6935
|
};
|
|
6936
|
+
type QueryRootPublicKeyAuthKeysArgs = {
|
|
6937
|
+
distinct_on?: InputMaybe<Array<PublicKeyAuthKeysSelectColumn>>;
|
|
6938
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6939
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6940
|
+
order_by?: InputMaybe<Array<PublicKeyAuthKeysOrderBy>>;
|
|
6941
|
+
where?: InputMaybe<PublicKeyAuthKeysBoolExp>;
|
|
6942
|
+
};
|
|
6943
|
+
type QueryRootPublicKeyAuthKeysAggregateArgs = {
|
|
6944
|
+
distinct_on?: InputMaybe<Array<PublicKeyAuthKeysSelectColumn>>;
|
|
6945
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6946
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6947
|
+
order_by?: InputMaybe<Array<PublicKeyAuthKeysOrderBy>>;
|
|
6948
|
+
where?: InputMaybe<PublicKeyAuthKeysBoolExp>;
|
|
6949
|
+
};
|
|
6950
|
+
type QueryRootPublicKeyAuthKeysByPkArgs = {
|
|
6951
|
+
auth_key: Scalars["String"]["input"];
|
|
6952
|
+
public_key: Scalars["String"]["input"];
|
|
6953
|
+
public_key_type: Scalars["String"]["input"];
|
|
6954
|
+
};
|
|
7185
6955
|
type QueryRootSignaturesArgs = {
|
|
7186
6956
|
distinct_on?: InputMaybe<Array<SignaturesSelectColumn>>;
|
|
7187
6957
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -7399,6 +7169,22 @@ type SubscriptionRoot = {
|
|
|
7399
7169
|
address_version_from_move_resources_aggregate: AddressVersionFromMoveResourcesAggregate;
|
|
7400
7170
|
/** fetch data from the table in a streaming manner: "legacy_migration_v1.address_version_from_move_resources" */
|
|
7401
7171
|
address_version_from_move_resources_stream: Array<AddressVersionFromMoveResources>;
|
|
7172
|
+
/** fetch data from the table: "auth_key_account_addresses" */
|
|
7173
|
+
auth_key_account_addresses: Array<AuthKeyAccountAddresses>;
|
|
7174
|
+
/** fetch aggregated fields from the table: "auth_key_account_addresses" */
|
|
7175
|
+
auth_key_account_addresses_aggregate: AuthKeyAccountAddressesAggregate;
|
|
7176
|
+
/** fetch data from the table: "auth_key_account_addresses" using primary key columns */
|
|
7177
|
+
auth_key_account_addresses_by_pk?: Maybe<AuthKeyAccountAddresses>;
|
|
7178
|
+
/** fetch data from the table in a streaming manner: "auth_key_account_addresses" */
|
|
7179
|
+
auth_key_account_addresses_stream: Array<AuthKeyAccountAddresses>;
|
|
7180
|
+
/** fetch data from the table: "auth_key_multikey_layout" */
|
|
7181
|
+
auth_key_multikey_layout: Array<AuthKeyMultikeyLayout>;
|
|
7182
|
+
/** fetch aggregated fields from the table: "auth_key_multikey_layout" */
|
|
7183
|
+
auth_key_multikey_layout_aggregate: AuthKeyMultikeyLayoutAggregate;
|
|
7184
|
+
/** fetch data from the table: "auth_key_multikey_layout" using primary key columns */
|
|
7185
|
+
auth_key_multikey_layout_by_pk?: Maybe<AuthKeyMultikeyLayout>;
|
|
7186
|
+
/** fetch data from the table in a streaming manner: "auth_key_multikey_layout" */
|
|
7187
|
+
auth_key_multikey_layout_stream: Array<AuthKeyMultikeyLayout>;
|
|
7402
7188
|
/** fetch data from the table: "block_metadata_transactions" */
|
|
7403
7189
|
block_metadata_transactions: Array<BlockMetadataTransactions>;
|
|
7404
7190
|
/** fetch data from the table: "block_metadata_transactions" using primary key columns */
|
|
@@ -7483,13 +7269,13 @@ type SubscriptionRoot = {
|
|
|
7483
7269
|
current_delegator_balances_by_pk?: Maybe<CurrentDelegatorBalances>;
|
|
7484
7270
|
/** fetch data from the table in a streaming manner: "current_delegator_balances" */
|
|
7485
7271
|
current_delegator_balances_stream: Array<CurrentDelegatorBalances>;
|
|
7486
|
-
/** fetch data from the table: "
|
|
7272
|
+
/** fetch data from the table: "current_fungible_asset_balances" */
|
|
7487
7273
|
current_fungible_asset_balances: Array<CurrentFungibleAssetBalances>;
|
|
7488
|
-
/** fetch aggregated fields from the table: "
|
|
7274
|
+
/** fetch aggregated fields from the table: "current_fungible_asset_balances" */
|
|
7489
7275
|
current_fungible_asset_balances_aggregate: CurrentFungibleAssetBalancesAggregate;
|
|
7490
|
-
/** fetch data from the table: "
|
|
7276
|
+
/** fetch data from the table: "current_fungible_asset_balances" using primary key columns */
|
|
7491
7277
|
current_fungible_asset_balances_by_pk?: Maybe<CurrentFungibleAssetBalances>;
|
|
7492
|
-
/** fetch data from the table in a streaming manner: "
|
|
7278
|
+
/** fetch data from the table in a streaming manner: "current_fungible_asset_balances" */
|
|
7493
7279
|
current_fungible_asset_balances_stream: Array<CurrentFungibleAssetBalances>;
|
|
7494
7280
|
/** fetch data from the table: "current_objects" */
|
|
7495
7281
|
current_objects: Array<CurrentObjects>;
|
|
@@ -7539,6 +7325,12 @@ type SubscriptionRoot = {
|
|
|
7539
7325
|
current_token_pending_claims_by_pk?: Maybe<CurrentTokenPendingClaims>;
|
|
7540
7326
|
/** fetch data from the table in a streaming manner: "current_token_pending_claims" */
|
|
7541
7327
|
current_token_pending_claims_stream: Array<CurrentTokenPendingClaims>;
|
|
7328
|
+
/** fetch data from the table: "current_token_royalty_v1" */
|
|
7329
|
+
current_token_royalty_v1: Array<CurrentTokenRoyaltyV1>;
|
|
7330
|
+
/** fetch data from the table: "current_token_royalty_v1" using primary key columns */
|
|
7331
|
+
current_token_royalty_v1_by_pk?: Maybe<CurrentTokenRoyaltyV1>;
|
|
7332
|
+
/** fetch data from the table in a streaming manner: "current_token_royalty_v1" */
|
|
7333
|
+
current_token_royalty_v1_stream: Array<CurrentTokenRoyaltyV1>;
|
|
7542
7334
|
/** An array relationship */
|
|
7543
7335
|
delegated_staking_activities: Array<DelegatedStakingActivities>;
|
|
7544
7336
|
/** fetch data from the table: "delegated_staking_activities" using primary key columns */
|
|
@@ -7601,38 +7393,6 @@ type SubscriptionRoot = {
|
|
|
7601
7393
|
move_resources_aggregate: MoveResourcesAggregate;
|
|
7602
7394
|
/** fetch data from the table in a streaming manner: "legacy_migration_v1.move_resources" */
|
|
7603
7395
|
move_resources_stream: Array<MoveResources>;
|
|
7604
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" */
|
|
7605
|
-
nft_marketplace_v2_current_nft_marketplace_auctions: Array<NftMarketplaceV2CurrentNftMarketplaceAuctions>;
|
|
7606
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" using primary key columns */
|
|
7607
|
-
nft_marketplace_v2_current_nft_marketplace_auctions_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceAuctions>;
|
|
7608
|
-
/** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_auctions" */
|
|
7609
|
-
nft_marketplace_v2_current_nft_marketplace_auctions_stream: Array<NftMarketplaceV2CurrentNftMarketplaceAuctions>;
|
|
7610
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" */
|
|
7611
|
-
nft_marketplace_v2_current_nft_marketplace_collection_offers: Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffers>;
|
|
7612
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" using primary key columns */
|
|
7613
|
-
nft_marketplace_v2_current_nft_marketplace_collection_offers_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceCollectionOffers>;
|
|
7614
|
-
/** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_collection_offers" */
|
|
7615
|
-
nft_marketplace_v2_current_nft_marketplace_collection_offers_stream: Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffers>;
|
|
7616
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
7617
|
-
nft_marketplace_v2_current_nft_marketplace_listings: Array<NftMarketplaceV2CurrentNftMarketplaceListings>;
|
|
7618
|
-
/** fetch aggregated fields from the table: "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
7619
|
-
nft_marketplace_v2_current_nft_marketplace_listings_aggregate: NftMarketplaceV2CurrentNftMarketplaceListingsAggregate;
|
|
7620
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" using primary key columns */
|
|
7621
|
-
nft_marketplace_v2_current_nft_marketplace_listings_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceListings>;
|
|
7622
|
-
/** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_listings" */
|
|
7623
|
-
nft_marketplace_v2_current_nft_marketplace_listings_stream: Array<NftMarketplaceV2CurrentNftMarketplaceListings>;
|
|
7624
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" */
|
|
7625
|
-
nft_marketplace_v2_current_nft_marketplace_token_offers: Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffers>;
|
|
7626
|
-
/** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" using primary key columns */
|
|
7627
|
-
nft_marketplace_v2_current_nft_marketplace_token_offers_by_pk?: Maybe<NftMarketplaceV2CurrentNftMarketplaceTokenOffers>;
|
|
7628
|
-
/** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_token_offers" */
|
|
7629
|
-
nft_marketplace_v2_current_nft_marketplace_token_offers_stream: Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffers>;
|
|
7630
|
-
/** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" */
|
|
7631
|
-
nft_marketplace_v2_nft_marketplace_activities: Array<NftMarketplaceV2NftMarketplaceActivities>;
|
|
7632
|
-
/** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" using primary key columns */
|
|
7633
|
-
nft_marketplace_v2_nft_marketplace_activities_by_pk?: Maybe<NftMarketplaceV2NftMarketplaceActivities>;
|
|
7634
|
-
/** fetch data from the table in a streaming manner: "nft_marketplace_v2.nft_marketplace_activities" */
|
|
7635
|
-
nft_marketplace_v2_nft_marketplace_activities_stream: Array<NftMarketplaceV2NftMarketplaceActivities>;
|
|
7636
7396
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" */
|
|
7637
7397
|
nft_metadata_crawler_parsed_asset_uris: Array<NftMetadataCrawlerParsedAssetUris>;
|
|
7638
7398
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" using primary key columns */
|
|
@@ -7657,6 +7417,14 @@ type SubscriptionRoot = {
|
|
|
7657
7417
|
proposal_votes_by_pk?: Maybe<ProposalVotes>;
|
|
7658
7418
|
/** fetch data from the table in a streaming manner: "proposal_votes" */
|
|
7659
7419
|
proposal_votes_stream: Array<ProposalVotes>;
|
|
7420
|
+
/** fetch data from the table: "public_key_auth_keys" */
|
|
7421
|
+
public_key_auth_keys: Array<PublicKeyAuthKeys>;
|
|
7422
|
+
/** fetch aggregated fields from the table: "public_key_auth_keys" */
|
|
7423
|
+
public_key_auth_keys_aggregate: PublicKeyAuthKeysAggregate;
|
|
7424
|
+
/** fetch data from the table: "public_key_auth_keys" using primary key columns */
|
|
7425
|
+
public_key_auth_keys_by_pk?: Maybe<PublicKeyAuthKeys>;
|
|
7426
|
+
/** fetch data from the table in a streaming manner: "public_key_auth_keys" */
|
|
7427
|
+
public_key_auth_keys_stream: Array<PublicKeyAuthKeys>;
|
|
7660
7428
|
/** fetch data from the table: "signatures" */
|
|
7661
7429
|
signatures: Array<Signatures>;
|
|
7662
7430
|
/** fetch data from the table: "signatures" using primary key columns */
|
|
@@ -7781,6 +7549,50 @@ type SubscriptionRootAddressVersionFromMoveResourcesStreamArgs = {
|
|
|
7781
7549
|
cursor: Array<InputMaybe<AddressVersionFromMoveResourcesStreamCursorInput>>;
|
|
7782
7550
|
where?: InputMaybe<AddressVersionFromMoveResourcesBoolExp>;
|
|
7783
7551
|
};
|
|
7552
|
+
type SubscriptionRootAuthKeyAccountAddressesArgs = {
|
|
7553
|
+
distinct_on?: InputMaybe<Array<AuthKeyAccountAddressesSelectColumn>>;
|
|
7554
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7555
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7556
|
+
order_by?: InputMaybe<Array<AuthKeyAccountAddressesOrderBy>>;
|
|
7557
|
+
where?: InputMaybe<AuthKeyAccountAddressesBoolExp>;
|
|
7558
|
+
};
|
|
7559
|
+
type SubscriptionRootAuthKeyAccountAddressesAggregateArgs = {
|
|
7560
|
+
distinct_on?: InputMaybe<Array<AuthKeyAccountAddressesSelectColumn>>;
|
|
7561
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7562
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7563
|
+
order_by?: InputMaybe<Array<AuthKeyAccountAddressesOrderBy>>;
|
|
7564
|
+
where?: InputMaybe<AuthKeyAccountAddressesBoolExp>;
|
|
7565
|
+
};
|
|
7566
|
+
type SubscriptionRootAuthKeyAccountAddressesByPkArgs = {
|
|
7567
|
+
address: Scalars["String"]["input"];
|
|
7568
|
+
};
|
|
7569
|
+
type SubscriptionRootAuthKeyAccountAddressesStreamArgs = {
|
|
7570
|
+
batch_size: Scalars["Int"]["input"];
|
|
7571
|
+
cursor: Array<InputMaybe<AuthKeyAccountAddressesStreamCursorInput>>;
|
|
7572
|
+
where?: InputMaybe<AuthKeyAccountAddressesBoolExp>;
|
|
7573
|
+
};
|
|
7574
|
+
type SubscriptionRootAuthKeyMultikeyLayoutArgs = {
|
|
7575
|
+
distinct_on?: InputMaybe<Array<AuthKeyMultikeyLayoutSelectColumn>>;
|
|
7576
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7577
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7578
|
+
order_by?: InputMaybe<Array<AuthKeyMultikeyLayoutOrderBy>>;
|
|
7579
|
+
where?: InputMaybe<AuthKeyMultikeyLayoutBoolExp>;
|
|
7580
|
+
};
|
|
7581
|
+
type SubscriptionRootAuthKeyMultikeyLayoutAggregateArgs = {
|
|
7582
|
+
distinct_on?: InputMaybe<Array<AuthKeyMultikeyLayoutSelectColumn>>;
|
|
7583
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7584
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7585
|
+
order_by?: InputMaybe<Array<AuthKeyMultikeyLayoutOrderBy>>;
|
|
7586
|
+
where?: InputMaybe<AuthKeyMultikeyLayoutBoolExp>;
|
|
7587
|
+
};
|
|
7588
|
+
type SubscriptionRootAuthKeyMultikeyLayoutByPkArgs = {
|
|
7589
|
+
auth_key: Scalars["String"]["input"];
|
|
7590
|
+
};
|
|
7591
|
+
type SubscriptionRootAuthKeyMultikeyLayoutStreamArgs = {
|
|
7592
|
+
batch_size: Scalars["Int"]["input"];
|
|
7593
|
+
cursor: Array<InputMaybe<AuthKeyMultikeyLayoutStreamCursorInput>>;
|
|
7594
|
+
where?: InputMaybe<AuthKeyMultikeyLayoutBoolExp>;
|
|
7595
|
+
};
|
|
7784
7596
|
type SubscriptionRootBlockMetadataTransactionsArgs = {
|
|
7785
7597
|
distinct_on?: InputMaybe<Array<BlockMetadataTransactionsSelectColumn>>;
|
|
7786
7598
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8179,6 +7991,21 @@ type SubscriptionRootCurrentTokenPendingClaimsStreamArgs = {
|
|
|
8179
7991
|
cursor: Array<InputMaybe<CurrentTokenPendingClaimsStreamCursorInput>>;
|
|
8180
7992
|
where?: InputMaybe<CurrentTokenPendingClaimsBoolExp>;
|
|
8181
7993
|
};
|
|
7994
|
+
type SubscriptionRootCurrentTokenRoyaltyV1Args = {
|
|
7995
|
+
distinct_on?: InputMaybe<Array<CurrentTokenRoyaltyV1SelectColumn>>;
|
|
7996
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7997
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7998
|
+
order_by?: InputMaybe<Array<CurrentTokenRoyaltyV1OrderBy>>;
|
|
7999
|
+
where?: InputMaybe<CurrentTokenRoyaltyV1BoolExp>;
|
|
8000
|
+
};
|
|
8001
|
+
type SubscriptionRootCurrentTokenRoyaltyV1ByPkArgs = {
|
|
8002
|
+
token_data_id: Scalars["String"]["input"];
|
|
8003
|
+
};
|
|
8004
|
+
type SubscriptionRootCurrentTokenRoyaltyV1StreamArgs = {
|
|
8005
|
+
batch_size: Scalars["Int"]["input"];
|
|
8006
|
+
cursor: Array<InputMaybe<CurrentTokenRoyaltyV1StreamCursorInput>>;
|
|
8007
|
+
where?: InputMaybe<CurrentTokenRoyaltyV1BoolExp>;
|
|
8008
|
+
};
|
|
8182
8009
|
type SubscriptionRootDelegatedStakingActivitiesArgs = {
|
|
8183
8010
|
distinct_on?: InputMaybe<Array<DelegatedStakingActivitiesSelectColumn>>;
|
|
8184
8011
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8348,93 +8175,6 @@ type SubscriptionRootMoveResourcesStreamArgs = {
|
|
|
8348
8175
|
cursor: Array<InputMaybe<MoveResourcesStreamCursorInput>>;
|
|
8349
8176
|
where?: InputMaybe<MoveResourcesBoolExp>;
|
|
8350
8177
|
};
|
|
8351
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceAuctionsArgs = {
|
|
8352
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceAuctionsSelectColumn>>;
|
|
8353
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8354
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8355
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceAuctionsOrderBy>>;
|
|
8356
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceAuctionsBoolExp>;
|
|
8357
|
-
};
|
|
8358
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceAuctionsByPkArgs = {
|
|
8359
|
-
listing_id: Scalars["String"]["input"];
|
|
8360
|
-
token_data_id: Scalars["String"]["input"];
|
|
8361
|
-
};
|
|
8362
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceAuctionsStreamArgs = {
|
|
8363
|
-
batch_size: Scalars["Int"]["input"];
|
|
8364
|
-
cursor: Array<InputMaybe<NftMarketplaceV2CurrentNftMarketplaceAuctionsStreamCursorInput>>;
|
|
8365
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceAuctionsBoolExp>;
|
|
8366
|
-
};
|
|
8367
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersArgs = {
|
|
8368
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersSelectColumn>>;
|
|
8369
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8370
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8371
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersOrderBy>>;
|
|
8372
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp>;
|
|
8373
|
-
};
|
|
8374
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersByPkArgs = {
|
|
8375
|
-
collection_id: Scalars["String"]["input"];
|
|
8376
|
-
collection_offer_id: Scalars["String"]["input"];
|
|
8377
|
-
};
|
|
8378
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamArgs = {
|
|
8379
|
-
batch_size: Scalars["Int"]["input"];
|
|
8380
|
-
cursor: Array<InputMaybe<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamCursorInput>>;
|
|
8381
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp>;
|
|
8382
|
-
};
|
|
8383
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsArgs = {
|
|
8384
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsSelectColumn>>;
|
|
8385
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8386
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8387
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsOrderBy>>;
|
|
8388
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>;
|
|
8389
|
-
};
|
|
8390
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsAggregateArgs = {
|
|
8391
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsSelectColumn>>;
|
|
8392
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8393
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8394
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceListingsOrderBy>>;
|
|
8395
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>;
|
|
8396
|
-
};
|
|
8397
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsByPkArgs = {
|
|
8398
|
-
listing_id: Scalars["String"]["input"];
|
|
8399
|
-
token_data_id: Scalars["String"]["input"];
|
|
8400
|
-
};
|
|
8401
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsStreamArgs = {
|
|
8402
|
-
batch_size: Scalars["Int"]["input"];
|
|
8403
|
-
cursor: Array<InputMaybe<NftMarketplaceV2CurrentNftMarketplaceListingsStreamCursorInput>>;
|
|
8404
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp>;
|
|
8405
|
-
};
|
|
8406
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersArgs = {
|
|
8407
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffersSelectColumn>>;
|
|
8408
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8409
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8410
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2CurrentNftMarketplaceTokenOffersOrderBy>>;
|
|
8411
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp>;
|
|
8412
|
-
};
|
|
8413
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersByPkArgs = {
|
|
8414
|
-
offer_id: Scalars["String"]["input"];
|
|
8415
|
-
token_data_id: Scalars["String"]["input"];
|
|
8416
|
-
};
|
|
8417
|
-
type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamArgs = {
|
|
8418
|
-
batch_size: Scalars["Int"]["input"];
|
|
8419
|
-
cursor: Array<InputMaybe<NftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamCursorInput>>;
|
|
8420
|
-
where?: InputMaybe<NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp>;
|
|
8421
|
-
};
|
|
8422
|
-
type SubscriptionRootNftMarketplaceV2NftMarketplaceActivitiesArgs = {
|
|
8423
|
-
distinct_on?: InputMaybe<Array<NftMarketplaceV2NftMarketplaceActivitiesSelectColumn>>;
|
|
8424
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8425
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8426
|
-
order_by?: InputMaybe<Array<NftMarketplaceV2NftMarketplaceActivitiesOrderBy>>;
|
|
8427
|
-
where?: InputMaybe<NftMarketplaceV2NftMarketplaceActivitiesBoolExp>;
|
|
8428
|
-
};
|
|
8429
|
-
type SubscriptionRootNftMarketplaceV2NftMarketplaceActivitiesByPkArgs = {
|
|
8430
|
-
event_index: Scalars["bigint"]["input"];
|
|
8431
|
-
transaction_version: Scalars["bigint"]["input"];
|
|
8432
|
-
};
|
|
8433
|
-
type SubscriptionRootNftMarketplaceV2NftMarketplaceActivitiesStreamArgs = {
|
|
8434
|
-
batch_size: Scalars["Int"]["input"];
|
|
8435
|
-
cursor: Array<InputMaybe<NftMarketplaceV2NftMarketplaceActivitiesStreamCursorInput>>;
|
|
8436
|
-
where?: InputMaybe<NftMarketplaceV2NftMarketplaceActivitiesBoolExp>;
|
|
8437
|
-
};
|
|
8438
8178
|
type SubscriptionRootNftMetadataCrawlerParsedAssetUrisArgs = {
|
|
8439
8179
|
distinct_on?: InputMaybe<Array<NftMetadataCrawlerParsedAssetUrisSelectColumn>>;
|
|
8440
8180
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8501,6 +8241,30 @@ type SubscriptionRootProposalVotesStreamArgs = {
|
|
|
8501
8241
|
cursor: Array<InputMaybe<ProposalVotesStreamCursorInput>>;
|
|
8502
8242
|
where?: InputMaybe<ProposalVotesBoolExp>;
|
|
8503
8243
|
};
|
|
8244
|
+
type SubscriptionRootPublicKeyAuthKeysArgs = {
|
|
8245
|
+
distinct_on?: InputMaybe<Array<PublicKeyAuthKeysSelectColumn>>;
|
|
8246
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8247
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8248
|
+
order_by?: InputMaybe<Array<PublicKeyAuthKeysOrderBy>>;
|
|
8249
|
+
where?: InputMaybe<PublicKeyAuthKeysBoolExp>;
|
|
8250
|
+
};
|
|
8251
|
+
type SubscriptionRootPublicKeyAuthKeysAggregateArgs = {
|
|
8252
|
+
distinct_on?: InputMaybe<Array<PublicKeyAuthKeysSelectColumn>>;
|
|
8253
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8254
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8255
|
+
order_by?: InputMaybe<Array<PublicKeyAuthKeysOrderBy>>;
|
|
8256
|
+
where?: InputMaybe<PublicKeyAuthKeysBoolExp>;
|
|
8257
|
+
};
|
|
8258
|
+
type SubscriptionRootPublicKeyAuthKeysByPkArgs = {
|
|
8259
|
+
auth_key: Scalars["String"]["input"];
|
|
8260
|
+
public_key: Scalars["String"]["input"];
|
|
8261
|
+
public_key_type: Scalars["String"]["input"];
|
|
8262
|
+
};
|
|
8263
|
+
type SubscriptionRootPublicKeyAuthKeysStreamArgs = {
|
|
8264
|
+
batch_size: Scalars["Int"]["input"];
|
|
8265
|
+
cursor: Array<InputMaybe<PublicKeyAuthKeysStreamCursorInput>>;
|
|
8266
|
+
where?: InputMaybe<PublicKeyAuthKeysBoolExp>;
|
|
8267
|
+
};
|
|
8504
8268
|
type SubscriptionRootSignaturesArgs = {
|
|
8505
8269
|
distinct_on?: InputMaybe<Array<SignaturesSelectColumn>>;
|
|
8506
8270
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8767,18 +8531,6 @@ type TimestampComparisonExp = {
|
|
|
8767
8531
|
_neq?: InputMaybe<Scalars["timestamp"]["input"]>;
|
|
8768
8532
|
_nin?: InputMaybe<Array<Scalars["timestamp"]["input"]>>;
|
|
8769
8533
|
};
|
|
8770
|
-
/** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */
|
|
8771
|
-
type TimestamptzComparisonExp = {
|
|
8772
|
-
_eq?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
8773
|
-
_gt?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
8774
|
-
_gte?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
8775
|
-
_in?: InputMaybe<Array<Scalars["timestamptz"]["input"]>>;
|
|
8776
|
-
_is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
8777
|
-
_lt?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
8778
|
-
_lte?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
8779
|
-
_neq?: InputMaybe<Scalars["timestamptz"]["input"]>;
|
|
8780
|
-
_nin?: InputMaybe<Array<Scalars["timestamptz"]["input"]>>;
|
|
8781
|
-
};
|
|
8782
8534
|
/** columns and relationships of "legacy_migration_v1.token_activities" */
|
|
8783
8535
|
type TokenActivities = {
|
|
8784
8536
|
/** An array relationship */
|
|
@@ -9991,7 +9743,10 @@ type TokensStreamCursorValueInput = {
|
|
|
9991
9743
|
/** columns and relationships of "user_transactions" */
|
|
9992
9744
|
type UserTransactions = {
|
|
9993
9745
|
block_height: Scalars["bigint"]["output"];
|
|
9746
|
+
entry_function_contract_address?: Maybe<Scalars["String"]["output"]>;
|
|
9747
|
+
entry_function_function_name?: Maybe<Scalars["String"]["output"]>;
|
|
9994
9748
|
entry_function_id_str: Scalars["String"]["output"];
|
|
9749
|
+
entry_function_module_name?: Maybe<Scalars["String"]["output"]>;
|
|
9995
9750
|
epoch: Scalars["bigint"]["output"];
|
|
9996
9751
|
expiration_timestamp_secs: Scalars["timestamp"]["output"];
|
|
9997
9752
|
gas_unit_price: Scalars["numeric"]["output"];
|
|
@@ -10008,7 +9763,10 @@ type UserTransactionsBoolExp = {
|
|
|
10008
9763
|
_not?: InputMaybe<UserTransactionsBoolExp>;
|
|
10009
9764
|
_or?: InputMaybe<Array<UserTransactionsBoolExp>>;
|
|
10010
9765
|
block_height?: InputMaybe<BigintComparisonExp>;
|
|
9766
|
+
entry_function_contract_address?: InputMaybe<StringComparisonExp>;
|
|
9767
|
+
entry_function_function_name?: InputMaybe<StringComparisonExp>;
|
|
10011
9768
|
entry_function_id_str?: InputMaybe<StringComparisonExp>;
|
|
9769
|
+
entry_function_module_name?: InputMaybe<StringComparisonExp>;
|
|
10012
9770
|
epoch?: InputMaybe<BigintComparisonExp>;
|
|
10013
9771
|
expiration_timestamp_secs?: InputMaybe<TimestampComparisonExp>;
|
|
10014
9772
|
gas_unit_price?: InputMaybe<NumericComparisonExp>;
|
|
@@ -10022,7 +9780,10 @@ type UserTransactionsBoolExp = {
|
|
|
10022
9780
|
/** Ordering options when selecting data from "user_transactions". */
|
|
10023
9781
|
type UserTransactionsOrderBy = {
|
|
10024
9782
|
block_height?: InputMaybe<OrderBy>;
|
|
9783
|
+
entry_function_contract_address?: InputMaybe<OrderBy>;
|
|
9784
|
+
entry_function_function_name?: InputMaybe<OrderBy>;
|
|
10025
9785
|
entry_function_id_str?: InputMaybe<OrderBy>;
|
|
9786
|
+
entry_function_module_name?: InputMaybe<OrderBy>;
|
|
10026
9787
|
epoch?: InputMaybe<OrderBy>;
|
|
10027
9788
|
expiration_timestamp_secs?: InputMaybe<OrderBy>;
|
|
10028
9789
|
gas_unit_price?: InputMaybe<OrderBy>;
|
|
@@ -10038,8 +9799,14 @@ declare enum UserTransactionsSelectColumn {
|
|
|
10038
9799
|
/** column name */
|
|
10039
9800
|
BlockHeight = "block_height",
|
|
10040
9801
|
/** column name */
|
|
9802
|
+
EntryFunctionContractAddress = "entry_function_contract_address",
|
|
9803
|
+
/** column name */
|
|
9804
|
+
EntryFunctionFunctionName = "entry_function_function_name",
|
|
9805
|
+
/** column name */
|
|
10041
9806
|
EntryFunctionIdStr = "entry_function_id_str",
|
|
10042
9807
|
/** column name */
|
|
9808
|
+
EntryFunctionModuleName = "entry_function_module_name",
|
|
9809
|
+
/** column name */
|
|
10043
9810
|
Epoch = "epoch",
|
|
10044
9811
|
/** column name */
|
|
10045
9812
|
ExpirationTimestampSecs = "expiration_timestamp_secs",
|
|
@@ -10068,7 +9835,10 @@ type UserTransactionsStreamCursorInput = {
|
|
|
10068
9835
|
/** Initial value of the column from where the streaming should start */
|
|
10069
9836
|
type UserTransactionsStreamCursorValueInput = {
|
|
10070
9837
|
block_height?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
9838
|
+
entry_function_contract_address?: InputMaybe<Scalars["String"]["input"]>;
|
|
9839
|
+
entry_function_function_name?: InputMaybe<Scalars["String"]["input"]>;
|
|
10071
9840
|
entry_function_id_str?: InputMaybe<Scalars["String"]["input"]>;
|
|
9841
|
+
entry_function_module_name?: InputMaybe<Scalars["String"]["input"]>;
|
|
10072
9842
|
epoch?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
10073
9843
|
expiration_timestamp_secs?: InputMaybe<Scalars["timestamp"]["input"]>;
|
|
10074
9844
|
gas_unit_price?: InputMaybe<Scalars["numeric"]["input"]>;
|
|
@@ -10080,4 +9850,4 @@ type UserTransactionsStreamCursorValueInput = {
|
|
|
10080
9850
|
version?: InputMaybe<Scalars["bigint"]["input"]>;
|
|
10081
9851
|
};
|
|
10082
9852
|
|
|
10083
|
-
export { type AccountTransactions, type AccountTransactionsAggregate, type AccountTransactionsAggregateFields, type AccountTransactionsAggregateFieldsCountArgs, type AccountTransactionsAvgFields, type AccountTransactionsBoolExp, type AccountTransactionsCoinActivitiesAggregateArgs, type AccountTransactionsCoinActivitiesArgs, type AccountTransactionsDelegatedStakingActivitiesArgs, type AccountTransactionsFungibleAssetActivitiesArgs, type AccountTransactionsMaxFields, type AccountTransactionsMinFields, type AccountTransactionsOrderBy, AccountTransactionsSelectColumn, type AccountTransactionsStddevFields, type AccountTransactionsStddevPopFields, type AccountTransactionsStddevSampFields, type AccountTransactionsStreamCursorInput, type AccountTransactionsStreamCursorValueInput, type AccountTransactionsSumFields, type AccountTransactionsTokenActivitiesAggregateArgs, type AccountTransactionsTokenActivitiesArgs, type AccountTransactionsTokenActivitiesV2AggregateArgs, type AccountTransactionsTokenActivitiesV2Args, type AccountTransactionsVarPopFields, type AccountTransactionsVarSampFields, type AccountTransactionsVarianceFields, type AddressEventsSummary, type AddressEventsSummaryBoolExp, type AddressEventsSummaryOrderBy, AddressEventsSummarySelectColumn, type AddressEventsSummaryStreamCursorInput, type AddressEventsSummaryStreamCursorValueInput, type AddressVersionFromEvents, type AddressVersionFromEventsAggregate, type AddressVersionFromEventsAggregateFields, type AddressVersionFromEventsAggregateFieldsCountArgs, type AddressVersionFromEventsAvgFields, type AddressVersionFromEventsBoolExp, type AddressVersionFromEventsCoinActivitiesAggregateArgs, type AddressVersionFromEventsCoinActivitiesArgs, type AddressVersionFromEventsDelegatedStakingActivitiesArgs, type AddressVersionFromEventsMaxFields, type AddressVersionFromEventsMinFields, type AddressVersionFromEventsOrderBy, AddressVersionFromEventsSelectColumn, type AddressVersionFromEventsStddevFields, type AddressVersionFromEventsStddevPopFields, type AddressVersionFromEventsStddevSampFields, type AddressVersionFromEventsStreamCursorInput, type AddressVersionFromEventsStreamCursorValueInput, type AddressVersionFromEventsSumFields, type AddressVersionFromEventsTokenActivitiesAggregateArgs, type AddressVersionFromEventsTokenActivitiesArgs, type AddressVersionFromEventsTokenActivitiesV2AggregateArgs, type AddressVersionFromEventsTokenActivitiesV2Args, type AddressVersionFromEventsVarPopFields, type AddressVersionFromEventsVarSampFields, type AddressVersionFromEventsVarianceFields, type AddressVersionFromMoveResources, type AddressVersionFromMoveResourcesAggregate, type AddressVersionFromMoveResourcesAggregateFields, type AddressVersionFromMoveResourcesAggregateFieldsCountArgs, type AddressVersionFromMoveResourcesAvgFields, type AddressVersionFromMoveResourcesBoolExp, type AddressVersionFromMoveResourcesCoinActivitiesAggregateArgs, type AddressVersionFromMoveResourcesCoinActivitiesArgs, type AddressVersionFromMoveResourcesDelegatedStakingActivitiesArgs, type AddressVersionFromMoveResourcesMaxFields, type AddressVersionFromMoveResourcesMinFields, type AddressVersionFromMoveResourcesOrderBy, AddressVersionFromMoveResourcesSelectColumn, type AddressVersionFromMoveResourcesStddevFields, type AddressVersionFromMoveResourcesStddevPopFields, type AddressVersionFromMoveResourcesStddevSampFields, type AddressVersionFromMoveResourcesStreamCursorInput, type AddressVersionFromMoveResourcesStreamCursorValueInput, type AddressVersionFromMoveResourcesSumFields, type AddressVersionFromMoveResourcesTokenActivitiesAggregateArgs, type AddressVersionFromMoveResourcesTokenActivitiesArgs, type AddressVersionFromMoveResourcesTokenActivitiesV2AggregateArgs, type AddressVersionFromMoveResourcesTokenActivitiesV2Args, type AddressVersionFromMoveResourcesVarPopFields, type AddressVersionFromMoveResourcesVarSampFields, type AddressVersionFromMoveResourcesVarianceFields, type BigintComparisonExp, type BlockMetadataTransactions, type BlockMetadataTransactionsBoolExp, type BlockMetadataTransactionsFailedProposerIndicesArgs, type BlockMetadataTransactionsOrderBy, type BlockMetadataTransactionsPreviousBlockVotesBitvecArgs, BlockMetadataTransactionsSelectColumn, type BlockMetadataTransactionsStreamCursorInput, type BlockMetadataTransactionsStreamCursorValueInput, type BooleanComparisonExp, type CoinActivities, type CoinActivitiesAggregate, type CoinActivitiesAggregateBoolExp, type CoinActivitiesAggregateBoolExpBoolAnd, type CoinActivitiesAggregateBoolExpBoolOr, type CoinActivitiesAggregateBoolExpCount, type CoinActivitiesAggregateFields, type CoinActivitiesAggregateFieldsCountArgs, type CoinActivitiesAggregateOrderBy, type CoinActivitiesAptosNamesAggregateArgs, type CoinActivitiesAptosNamesArgs, type CoinActivitiesAvgFields, type CoinActivitiesAvgOrderBy, type CoinActivitiesBoolExp, type CoinActivitiesMaxFields, type CoinActivitiesMaxOrderBy, type CoinActivitiesMinFields, type CoinActivitiesMinOrderBy, type CoinActivitiesOrderBy, CoinActivitiesSelectColumn, CoinActivitiesSelectColumnCoinActivitiesAggregateBoolExpBoolAndArgumentsColumns, CoinActivitiesSelectColumnCoinActivitiesAggregateBoolExpBoolOrArgumentsColumns, type CoinActivitiesStddevFields, type CoinActivitiesStddevOrderBy, type CoinActivitiesStddevPopFields, type CoinActivitiesStddevPopOrderBy, type CoinActivitiesStddevSampFields, type CoinActivitiesStddevSampOrderBy, type CoinActivitiesStreamCursorInput, type CoinActivitiesStreamCursorValueInput, type CoinActivitiesSumFields, type CoinActivitiesSumOrderBy, type CoinActivitiesVarPopFields, type CoinActivitiesVarPopOrderBy, type CoinActivitiesVarSampFields, type CoinActivitiesVarSampOrderBy, type CoinActivitiesVarianceFields, type CoinActivitiesVarianceOrderBy, type CoinBalances, type CoinBalancesBoolExp, type CoinBalancesOrderBy, CoinBalancesSelectColumn, type CoinBalancesStreamCursorInput, type CoinBalancesStreamCursorValueInput, type CoinInfos, type CoinInfosBoolExp, type CoinInfosOrderBy, CoinInfosSelectColumn, type CoinInfosStreamCursorInput, type CoinInfosStreamCursorValueInput, type CoinSupply, type CoinSupplyBoolExp, type CoinSupplyOrderBy, CoinSupplySelectColumn, type CoinSupplyStreamCursorInput, type CoinSupplyStreamCursorValueInput, type CollectionDatas, type CollectionDatasBoolExp, type CollectionDatasOrderBy, CollectionDatasSelectColumn, type CollectionDatasStreamCursorInput, type CollectionDatasStreamCursorValueInput, type CurrentAnsLookup, type CurrentAnsLookupAllTokenOwnershipsAggregateArgs, type CurrentAnsLookupAllTokenOwnershipsArgs, type CurrentAnsLookupBoolExp, type CurrentAnsLookupOrderBy, CurrentAnsLookupSelectColumn, type CurrentAnsLookupStreamCursorInput, type CurrentAnsLookupStreamCursorValueInput, type CurrentAnsLookupV2, type CurrentAnsLookupV2BoolExp, type CurrentAnsLookupV2OrderBy, CurrentAnsLookupV2SelectColumn, type CurrentAnsLookupV2StreamCursorInput, type CurrentAnsLookupV2StreamCursorValueInput, type CurrentAptosNames, type CurrentAptosNamesAggregate, type CurrentAptosNamesAggregateBoolExp, type CurrentAptosNamesAggregateBoolExpBoolAnd, type CurrentAptosNamesAggregateBoolExpBoolOr, type CurrentAptosNamesAggregateBoolExpCount, type CurrentAptosNamesAggregateFields, type CurrentAptosNamesAggregateFieldsCountArgs, type CurrentAptosNamesAggregateOrderBy, type CurrentAptosNamesAvgFields, type CurrentAptosNamesAvgOrderBy, type CurrentAptosNamesBoolExp, type CurrentAptosNamesMaxFields, type CurrentAptosNamesMaxOrderBy, type CurrentAptosNamesMinFields, type CurrentAptosNamesMinOrderBy, type CurrentAptosNamesOrderBy, CurrentAptosNamesSelectColumn, CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns, CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns, type CurrentAptosNamesStddevFields, type CurrentAptosNamesStddevOrderBy, type CurrentAptosNamesStddevPopFields, type CurrentAptosNamesStddevPopOrderBy, type CurrentAptosNamesStddevSampFields, type CurrentAptosNamesStddevSampOrderBy, type CurrentAptosNamesStreamCursorInput, type CurrentAptosNamesStreamCursorValueInput, type CurrentAptosNamesSumFields, type CurrentAptosNamesSumOrderBy, type CurrentAptosNamesVarPopFields, type CurrentAptosNamesVarPopOrderBy, type CurrentAptosNamesVarSampFields, type CurrentAptosNamesVarSampOrderBy, type CurrentAptosNamesVarianceFields, type CurrentAptosNamesVarianceOrderBy, type CurrentCoinBalances, type CurrentCoinBalancesBoolExp, type CurrentCoinBalancesOrderBy, CurrentCoinBalancesSelectColumn, type CurrentCoinBalancesStreamCursorInput, type CurrentCoinBalancesStreamCursorValueInput, type CurrentCollectionDatas, type CurrentCollectionDatasBoolExp, type CurrentCollectionDatasOrderBy, CurrentCollectionDatasSelectColumn, type CurrentCollectionDatasStreamCursorInput, type CurrentCollectionDatasStreamCursorValueInput, type CurrentCollectionOwnershipV2View, type CurrentCollectionOwnershipV2ViewAggregate, type CurrentCollectionOwnershipV2ViewAggregateFields, type CurrentCollectionOwnershipV2ViewAggregateFieldsCountArgs, type CurrentCollectionOwnershipV2ViewAvgFields, type CurrentCollectionOwnershipV2ViewBoolExp, type CurrentCollectionOwnershipV2ViewMaxFields, type CurrentCollectionOwnershipV2ViewMinFields, type CurrentCollectionOwnershipV2ViewOrderBy, CurrentCollectionOwnershipV2ViewSelectColumn, type CurrentCollectionOwnershipV2ViewStddevFields, type CurrentCollectionOwnershipV2ViewStddevPopFields, type CurrentCollectionOwnershipV2ViewStddevSampFields, type CurrentCollectionOwnershipV2ViewStreamCursorInput, type CurrentCollectionOwnershipV2ViewStreamCursorValueInput, type CurrentCollectionOwnershipV2ViewSumFields, type CurrentCollectionOwnershipV2ViewVarPopFields, type CurrentCollectionOwnershipV2ViewVarSampFields, type CurrentCollectionOwnershipV2ViewVarianceFields, type CurrentCollectionsV2, type CurrentCollectionsV2BoolExp, type CurrentCollectionsV2CollectionPropertiesArgs, type CurrentCollectionsV2OrderBy, CurrentCollectionsV2SelectColumn, type CurrentCollectionsV2StreamCursorInput, type CurrentCollectionsV2StreamCursorValueInput, type CurrentDelegatedStakingPoolBalances, type CurrentDelegatedStakingPoolBalancesBoolExp, type CurrentDelegatedStakingPoolBalancesOrderBy, CurrentDelegatedStakingPoolBalancesSelectColumn, type CurrentDelegatedStakingPoolBalancesStreamCursorInput, type CurrentDelegatedStakingPoolBalancesStreamCursorValueInput, type CurrentDelegatedVoter, type CurrentDelegatedVoterBoolExp, type CurrentDelegatedVoterOrderBy, CurrentDelegatedVoterSelectColumn, type CurrentDelegatedVoterStreamCursorInput, type CurrentDelegatedVoterStreamCursorValueInput, type CurrentDelegatorBalances, type CurrentDelegatorBalancesBoolExp, type CurrentDelegatorBalancesOrderBy, CurrentDelegatorBalancesSelectColumn, type CurrentDelegatorBalancesStreamCursorInput, type CurrentDelegatorBalancesStreamCursorValueInput, type CurrentFungibleAssetBalances, type CurrentFungibleAssetBalancesAggregate, type CurrentFungibleAssetBalancesAggregateFields, type CurrentFungibleAssetBalancesAggregateFieldsCountArgs, type CurrentFungibleAssetBalancesAvgFields, type CurrentFungibleAssetBalancesBoolExp, type CurrentFungibleAssetBalancesMaxFields, type CurrentFungibleAssetBalancesMinFields, type CurrentFungibleAssetBalancesOrderBy, CurrentFungibleAssetBalancesSelectColumn, type CurrentFungibleAssetBalancesStddevFields, type CurrentFungibleAssetBalancesStddevPopFields, type CurrentFungibleAssetBalancesStddevSampFields, type CurrentFungibleAssetBalancesStreamCursorInput, type CurrentFungibleAssetBalancesStreamCursorValueInput, type CurrentFungibleAssetBalancesSumFields, type CurrentFungibleAssetBalancesVarPopFields, type CurrentFungibleAssetBalancesVarSampFields, type CurrentFungibleAssetBalancesVarianceFields, type CurrentObjects, type CurrentObjectsBoolExp, type CurrentObjectsOrderBy, CurrentObjectsSelectColumn, type CurrentObjectsStreamCursorInput, type CurrentObjectsStreamCursorValueInput, type CurrentStakingPoolVoter, type CurrentStakingPoolVoterBoolExp, type CurrentStakingPoolVoterOperatorAptosNameAggregateArgs, type CurrentStakingPoolVoterOperatorAptosNameArgs, type CurrentStakingPoolVoterOrderBy, CurrentStakingPoolVoterSelectColumn, type CurrentStakingPoolVoterStreamCursorInput, type CurrentStakingPoolVoterStreamCursorValueInput, type CurrentTableItems, type CurrentTableItemsBoolExp, type CurrentTableItemsDecodedKeyArgs, type CurrentTableItemsDecodedValueArgs, type CurrentTableItemsOrderBy, CurrentTableItemsSelectColumn, type CurrentTableItemsStreamCursorInput, type CurrentTableItemsStreamCursorValueInput, type CurrentTokenDatas, type CurrentTokenDatasBoolExp, type CurrentTokenDatasDefaultPropertiesArgs, type CurrentTokenDatasOrderBy, CurrentTokenDatasSelectColumn, type CurrentTokenDatasStreamCursorInput, type CurrentTokenDatasStreamCursorValueInput, type CurrentTokenDatasV2, type CurrentTokenDatasV2BoolExp, type CurrentTokenDatasV2CurrentTokenOwnershipsAggregateArgs, type CurrentTokenDatasV2CurrentTokenOwnershipsArgs, type CurrentTokenDatasV2OrderBy, CurrentTokenDatasV2SelectColumn, type CurrentTokenDatasV2StreamCursorInput, type CurrentTokenDatasV2StreamCursorValueInput, type CurrentTokenDatasV2TokenPropertiesArgs, type CurrentTokenOwnerships, type CurrentTokenOwnershipsAggregate, type CurrentTokenOwnershipsAggregateBoolExp, type CurrentTokenOwnershipsAggregateBoolExpCount, type CurrentTokenOwnershipsAggregateFields, type CurrentTokenOwnershipsAggregateFieldsCountArgs, type CurrentTokenOwnershipsAggregateOrderBy, type CurrentTokenOwnershipsAvgFields, type CurrentTokenOwnershipsAvgOrderBy, type CurrentTokenOwnershipsBoolExp, type CurrentTokenOwnershipsMaxFields, type CurrentTokenOwnershipsMaxOrderBy, type CurrentTokenOwnershipsMinFields, type CurrentTokenOwnershipsMinOrderBy, type CurrentTokenOwnershipsOrderBy, CurrentTokenOwnershipsSelectColumn, type CurrentTokenOwnershipsStddevFields, type CurrentTokenOwnershipsStddevOrderBy, type CurrentTokenOwnershipsStddevPopFields, type CurrentTokenOwnershipsStddevPopOrderBy, type CurrentTokenOwnershipsStddevSampFields, type CurrentTokenOwnershipsStddevSampOrderBy, type CurrentTokenOwnershipsStreamCursorInput, type CurrentTokenOwnershipsStreamCursorValueInput, type CurrentTokenOwnershipsSumFields, type CurrentTokenOwnershipsSumOrderBy, type CurrentTokenOwnershipsTokenPropertiesArgs, type CurrentTokenOwnershipsV2, type CurrentTokenOwnershipsV2Aggregate, type CurrentTokenOwnershipsV2AggregateBoolExp, type CurrentTokenOwnershipsV2AggregateBoolExpBoolAnd, type CurrentTokenOwnershipsV2AggregateBoolExpBoolOr, type CurrentTokenOwnershipsV2AggregateBoolExpCount, type CurrentTokenOwnershipsV2AggregateFields, type CurrentTokenOwnershipsV2AggregateFieldsCountArgs, type CurrentTokenOwnershipsV2AggregateOrderBy, type CurrentTokenOwnershipsV2AvgFields, type CurrentTokenOwnershipsV2AvgOrderBy, type CurrentTokenOwnershipsV2BoolExp, type CurrentTokenOwnershipsV2ComposedNftsAggregateArgs, type CurrentTokenOwnershipsV2ComposedNftsArgs, type CurrentTokenOwnershipsV2MaxFields, type CurrentTokenOwnershipsV2MaxOrderBy, type CurrentTokenOwnershipsV2MinFields, type CurrentTokenOwnershipsV2MinOrderBy, type CurrentTokenOwnershipsV2OrderBy, CurrentTokenOwnershipsV2SelectColumn, CurrentTokenOwnershipsV2SelectColumnCurrentTokenOwnershipsV2AggregateBoolExpBoolAndArgumentsColumns, CurrentTokenOwnershipsV2SelectColumnCurrentTokenOwnershipsV2AggregateBoolExpBoolOrArgumentsColumns, type CurrentTokenOwnershipsV2StddevFields, type CurrentTokenOwnershipsV2StddevOrderBy, type CurrentTokenOwnershipsV2StddevPopFields, type CurrentTokenOwnershipsV2StddevPopOrderBy, type CurrentTokenOwnershipsV2StddevSampFields, type CurrentTokenOwnershipsV2StddevSampOrderBy, type CurrentTokenOwnershipsV2StreamCursorInput, type CurrentTokenOwnershipsV2StreamCursorValueInput, type CurrentTokenOwnershipsV2SumFields, type CurrentTokenOwnershipsV2SumOrderBy, type CurrentTokenOwnershipsV2TokenPropertiesMutatedV1Args, type CurrentTokenOwnershipsV2VarPopFields, type CurrentTokenOwnershipsV2VarPopOrderBy, type CurrentTokenOwnershipsV2VarSampFields, type CurrentTokenOwnershipsV2VarSampOrderBy, type CurrentTokenOwnershipsV2VarianceFields, type CurrentTokenOwnershipsV2VarianceOrderBy, type CurrentTokenOwnershipsVarPopFields, type CurrentTokenOwnershipsVarPopOrderBy, type CurrentTokenOwnershipsVarSampFields, type CurrentTokenOwnershipsVarSampOrderBy, type CurrentTokenOwnershipsVarianceFields, type CurrentTokenOwnershipsVarianceOrderBy, type CurrentTokenPendingClaims, type CurrentTokenPendingClaimsBoolExp, type CurrentTokenPendingClaimsOrderBy, CurrentTokenPendingClaimsSelectColumn, type CurrentTokenPendingClaimsStreamCursorInput, type CurrentTokenPendingClaimsStreamCursorValueInput, CursorOrdering, type DelegatedStakingActivities, type DelegatedStakingActivitiesAggregateOrderBy, type DelegatedStakingActivitiesAvgOrderBy, type DelegatedStakingActivitiesBoolExp, type DelegatedStakingActivitiesMaxOrderBy, type DelegatedStakingActivitiesMinOrderBy, type DelegatedStakingActivitiesOrderBy, DelegatedStakingActivitiesSelectColumn, type DelegatedStakingActivitiesStddevOrderBy, type DelegatedStakingActivitiesStddevPopOrderBy, type DelegatedStakingActivitiesStddevSampOrderBy, type DelegatedStakingActivitiesStreamCursorInput, type DelegatedStakingActivitiesStreamCursorValueInput, type DelegatedStakingActivitiesSumOrderBy, type DelegatedStakingActivitiesVarPopOrderBy, type DelegatedStakingActivitiesVarSampOrderBy, type DelegatedStakingActivitiesVarianceOrderBy, type DelegatedStakingPoolBalances, type DelegatedStakingPoolBalancesAggregate, type DelegatedStakingPoolBalancesAggregateFields, type DelegatedStakingPoolBalancesAggregateFieldsCountArgs, type DelegatedStakingPoolBalancesAvgFields, type DelegatedStakingPoolBalancesBoolExp, type DelegatedStakingPoolBalancesMaxFields, type DelegatedStakingPoolBalancesMinFields, type DelegatedStakingPoolBalancesOrderBy, DelegatedStakingPoolBalancesSelectColumn, type DelegatedStakingPoolBalancesStddevFields, type DelegatedStakingPoolBalancesStddevPopFields, type DelegatedStakingPoolBalancesStddevSampFields, type DelegatedStakingPoolBalancesStreamCursorInput, type DelegatedStakingPoolBalancesStreamCursorValueInput, type DelegatedStakingPoolBalancesSumFields, type DelegatedStakingPoolBalancesVarPopFields, type DelegatedStakingPoolBalancesVarSampFields, type DelegatedStakingPoolBalancesVarianceFields, type DelegatedStakingPools, type DelegatedStakingPoolsBoolExp, type DelegatedStakingPoolsOrderBy, DelegatedStakingPoolsSelectColumn, type DelegatedStakingPoolsStreamCursorInput, type DelegatedStakingPoolsStreamCursorValueInput, type DelegatorDistinctPool, type DelegatorDistinctPoolAggregate, type DelegatorDistinctPoolAggregateFields, type DelegatorDistinctPoolAggregateFieldsCountArgs, type DelegatorDistinctPoolBoolExp, type DelegatorDistinctPoolMaxFields, type DelegatorDistinctPoolMinFields, type DelegatorDistinctPoolOrderBy, DelegatorDistinctPoolSelectColumn, type DelegatorDistinctPoolStreamCursorInput, type DelegatorDistinctPoolStreamCursorValueInput, type Events, type EventsBoolExp, type EventsDataArgs, type EventsOrderBy, EventsSelectColumn, type EventsStreamCursorInput, type EventsStreamCursorValueInput, type Exact, type FungibleAssetActivities, type FungibleAssetActivitiesAggregateOrderBy, type FungibleAssetActivitiesAvgOrderBy, type FungibleAssetActivitiesBoolExp, type FungibleAssetActivitiesMaxOrderBy, type FungibleAssetActivitiesMinOrderBy, type FungibleAssetActivitiesOrderBy, type FungibleAssetActivitiesOwnerAptosNamesAggregateArgs, type FungibleAssetActivitiesOwnerAptosNamesArgs, FungibleAssetActivitiesSelectColumn, type FungibleAssetActivitiesStddevOrderBy, type FungibleAssetActivitiesStddevPopOrderBy, type FungibleAssetActivitiesStddevSampOrderBy, type FungibleAssetActivitiesStreamCursorInput, type FungibleAssetActivitiesStreamCursorValueInput, type FungibleAssetActivitiesSumOrderBy, type FungibleAssetActivitiesVarPopOrderBy, type FungibleAssetActivitiesVarSampOrderBy, type FungibleAssetActivitiesVarianceOrderBy, type FungibleAssetMetadata, type FungibleAssetMetadataBoolExp, type FungibleAssetMetadataOrderBy, FungibleAssetMetadataSelectColumn, type FungibleAssetMetadataStreamCursorInput, type FungibleAssetMetadataStreamCursorValueInput, type Incremental, type IndexerStatus, type IndexerStatusBoolExp, type IndexerStatusOrderBy, IndexerStatusSelectColumn, type IndexerStatusStreamCursorInput, type IndexerStatusStreamCursorValueInput, type InputMaybe, type IntComparisonExp, type JsonbCastExp, type JsonbComparisonExp, type LedgerInfos, type LedgerInfosBoolExp, type LedgerInfosOrderBy, LedgerInfosSelectColumn, type LedgerInfosStreamCursorInput, type LedgerInfosStreamCursorValueInput, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type MoveResources, type MoveResourcesAggregate, type MoveResourcesAggregateFields, type MoveResourcesAggregateFieldsCountArgs, type MoveResourcesAvgFields, type MoveResourcesBoolExp, type MoveResourcesMaxFields, type MoveResourcesMinFields, type MoveResourcesOrderBy, MoveResourcesSelectColumn, type MoveResourcesStddevFields, type MoveResourcesStddevPopFields, type MoveResourcesStddevSampFields, type MoveResourcesStreamCursorInput, type MoveResourcesStreamCursorValueInput, type MoveResourcesSumFields, type MoveResourcesVarPopFields, type MoveResourcesVarSampFields, type MoveResourcesVarianceFields, type NftMarketplaceV2CurrentNftMarketplaceAuctions, type NftMarketplaceV2CurrentNftMarketplaceAuctionsBoolExp, type NftMarketplaceV2CurrentNftMarketplaceAuctionsOrderBy, NftMarketplaceV2CurrentNftMarketplaceAuctionsSelectColumn, type NftMarketplaceV2CurrentNftMarketplaceAuctionsStreamCursorInput, type NftMarketplaceV2CurrentNftMarketplaceAuctionsStreamCursorValueInput, type NftMarketplaceV2CurrentNftMarketplaceCollectionOffers, type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersBoolExp, type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersOrderBy, NftMarketplaceV2CurrentNftMarketplaceCollectionOffersSelectColumn, type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamCursorInput, type NftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamCursorValueInput, type NftMarketplaceV2CurrentNftMarketplaceListings, type NftMarketplaceV2CurrentNftMarketplaceListingsAggregate, type NftMarketplaceV2CurrentNftMarketplaceListingsAggregateFields, type NftMarketplaceV2CurrentNftMarketplaceListingsAggregateFieldsCountArgs, type NftMarketplaceV2CurrentNftMarketplaceListingsAvgFields, type NftMarketplaceV2CurrentNftMarketplaceListingsBoolExp, type NftMarketplaceV2CurrentNftMarketplaceListingsMaxFields, type NftMarketplaceV2CurrentNftMarketplaceListingsMinFields, type NftMarketplaceV2CurrentNftMarketplaceListingsOrderBy, NftMarketplaceV2CurrentNftMarketplaceListingsSelectColumn, type NftMarketplaceV2CurrentNftMarketplaceListingsStddevFields, type NftMarketplaceV2CurrentNftMarketplaceListingsStddevPopFields, type NftMarketplaceV2CurrentNftMarketplaceListingsStddevSampFields, type NftMarketplaceV2CurrentNftMarketplaceListingsStreamCursorInput, type NftMarketplaceV2CurrentNftMarketplaceListingsStreamCursorValueInput, type NftMarketplaceV2CurrentNftMarketplaceListingsSumFields, type NftMarketplaceV2CurrentNftMarketplaceListingsVarPopFields, type NftMarketplaceV2CurrentNftMarketplaceListingsVarSampFields, type NftMarketplaceV2CurrentNftMarketplaceListingsVarianceFields, type NftMarketplaceV2CurrentNftMarketplaceTokenOffers, type NftMarketplaceV2CurrentNftMarketplaceTokenOffersBoolExp, type NftMarketplaceV2CurrentNftMarketplaceTokenOffersOrderBy, NftMarketplaceV2CurrentNftMarketplaceTokenOffersSelectColumn, type NftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamCursorInput, type NftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamCursorValueInput, type NftMarketplaceV2NftMarketplaceActivities, type NftMarketplaceV2NftMarketplaceActivitiesBoolExp, type NftMarketplaceV2NftMarketplaceActivitiesOrderBy, NftMarketplaceV2NftMarketplaceActivitiesSelectColumn, type NftMarketplaceV2NftMarketplaceActivitiesStreamCursorInput, type NftMarketplaceV2NftMarketplaceActivitiesStreamCursorValueInput, type NftMetadataCrawlerParsedAssetUris, type NftMetadataCrawlerParsedAssetUrisBoolExp, type NftMetadataCrawlerParsedAssetUrisOrderBy, NftMetadataCrawlerParsedAssetUrisSelectColumn, type NftMetadataCrawlerParsedAssetUrisStreamCursorInput, type NftMetadataCrawlerParsedAssetUrisStreamCursorValueInput, type NumActiveDelegatorPerPool, type NumActiveDelegatorPerPoolBoolExp, type NumActiveDelegatorPerPoolOrderBy, NumActiveDelegatorPerPoolSelectColumn, type NumActiveDelegatorPerPoolStreamCursorInput, type NumActiveDelegatorPerPoolStreamCursorValueInput, type NumericComparisonExp, OrderBy, type ProcessorStatus, type ProcessorStatusBoolExp, type ProcessorStatusOrderBy, ProcessorStatusSelectColumn, type ProcessorStatusStreamCursorInput, type ProcessorStatusStreamCursorValueInput, type ProposalVotes, type ProposalVotesAggregate, type ProposalVotesAggregateFields, type ProposalVotesAggregateFieldsCountArgs, type ProposalVotesAvgFields, type ProposalVotesBoolExp, type ProposalVotesMaxFields, type ProposalVotesMinFields, type ProposalVotesOrderBy, ProposalVotesSelectColumn, type ProposalVotesStddevFields, type ProposalVotesStddevPopFields, type ProposalVotesStddevSampFields, type ProposalVotesStreamCursorInput, type ProposalVotesStreamCursorValueInput, type ProposalVotesSumFields, type ProposalVotesVarPopFields, type ProposalVotesVarSampFields, type ProposalVotesVarianceFields, type QueryRoot, type QueryRootAccountTransactionsAggregateArgs, type QueryRootAccountTransactionsArgs, type QueryRootAccountTransactionsByPkArgs, type QueryRootAddressEventsSummaryArgs, type QueryRootAddressVersionFromEventsAggregateArgs, type QueryRootAddressVersionFromEventsArgs, type QueryRootAddressVersionFromMoveResourcesAggregateArgs, type QueryRootAddressVersionFromMoveResourcesArgs, type QueryRootBlockMetadataTransactionsArgs, type QueryRootBlockMetadataTransactionsByPkArgs, type QueryRootCoinActivitiesAggregateArgs, type QueryRootCoinActivitiesArgs, type QueryRootCoinBalancesArgs, type QueryRootCoinInfosArgs, type QueryRootCoinSupplyArgs, type QueryRootCoinSupplyByPkArgs, type QueryRootCollectionDatasArgs, type QueryRootCurrentAnsLookupArgs, type QueryRootCurrentAnsLookupV2Args, type QueryRootCurrentAnsLookupV2ByPkArgs, type QueryRootCurrentAptosNamesAggregateArgs, type QueryRootCurrentAptosNamesArgs, type QueryRootCurrentCoinBalancesArgs, type QueryRootCurrentCollectionDatasArgs, type QueryRootCurrentCollectionOwnershipV2ViewAggregateArgs, type QueryRootCurrentCollectionOwnershipV2ViewArgs, type QueryRootCurrentCollectionsV2Args, type QueryRootCurrentCollectionsV2ByPkArgs, type QueryRootCurrentDelegatedStakingPoolBalancesArgs, type QueryRootCurrentDelegatedStakingPoolBalancesByPkArgs, type QueryRootCurrentDelegatedVoterArgs, type QueryRootCurrentDelegatedVoterByPkArgs, type QueryRootCurrentDelegatorBalancesArgs, type QueryRootCurrentDelegatorBalancesByPkArgs, type QueryRootCurrentFungibleAssetBalancesAggregateArgs, type QueryRootCurrentFungibleAssetBalancesArgs, type QueryRootCurrentFungibleAssetBalancesByPkArgs, type QueryRootCurrentObjectsArgs, type QueryRootCurrentObjectsByPkArgs, type QueryRootCurrentStakingPoolVoterArgs, type QueryRootCurrentStakingPoolVoterByPkArgs, type QueryRootCurrentTableItemsArgs, type QueryRootCurrentTableItemsByPkArgs, type QueryRootCurrentTokenDatasArgs, type QueryRootCurrentTokenDatasV2Args, type QueryRootCurrentTokenDatasV2ByPkArgs, type QueryRootCurrentTokenOwnershipsAggregateArgs, type QueryRootCurrentTokenOwnershipsArgs, type QueryRootCurrentTokenOwnershipsV2AggregateArgs, type QueryRootCurrentTokenOwnershipsV2Args, type QueryRootCurrentTokenOwnershipsV2ByPkArgs, type QueryRootCurrentTokenPendingClaimsArgs, type QueryRootCurrentTokenPendingClaimsByPkArgs, type QueryRootDelegatedStakingActivitiesArgs, type QueryRootDelegatedStakingActivitiesByPkArgs, type QueryRootDelegatedStakingPoolBalancesAggregateArgs, type QueryRootDelegatedStakingPoolBalancesArgs, type QueryRootDelegatedStakingPoolBalancesByPkArgs, type QueryRootDelegatedStakingPoolsArgs, type QueryRootDelegatedStakingPoolsByPkArgs, type QueryRootDelegatorDistinctPoolAggregateArgs, type QueryRootDelegatorDistinctPoolArgs, type QueryRootEventsArgs, type QueryRootEventsByPkArgs, type QueryRootFungibleAssetActivitiesArgs, type QueryRootFungibleAssetActivitiesByPkArgs, type QueryRootFungibleAssetMetadataArgs, type QueryRootFungibleAssetMetadataByPkArgs, type QueryRootIndexerStatusArgs, type QueryRootIndexerStatusByPkArgs, type QueryRootLedgerInfosArgs, type QueryRootLedgerInfosByPkArgs, type QueryRootMoveResourcesAggregateArgs, type QueryRootMoveResourcesArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceAuctionsArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceAuctionsByPkArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersByPkArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceListingsAggregateArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceListingsArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceListingsByPkArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersArgs, type QueryRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersByPkArgs, type QueryRootNftMarketplaceV2NftMarketplaceActivitiesArgs, type QueryRootNftMarketplaceV2NftMarketplaceActivitiesByPkArgs, type QueryRootNftMetadataCrawlerParsedAssetUrisArgs, type QueryRootNftMetadataCrawlerParsedAssetUrisByPkArgs, type QueryRootNumActiveDelegatorPerPoolArgs, type QueryRootProcessorStatusArgs, type QueryRootProcessorStatusByPkArgs, type QueryRootProposalVotesAggregateArgs, type QueryRootProposalVotesArgs, type QueryRootProposalVotesByPkArgs, type QueryRootSignaturesArgs, type QueryRootSignaturesByPkArgs, type QueryRootTableItemsArgs, type QueryRootTableItemsByPkArgs, type QueryRootTableMetadatasArgs, type QueryRootTableMetadatasByPkArgs, type QueryRootTokenActivitiesAggregateArgs, type QueryRootTokenActivitiesArgs, type QueryRootTokenActivitiesV2AggregateArgs, type QueryRootTokenActivitiesV2Args, type QueryRootTokenActivitiesV2ByPkArgs, type QueryRootTokenDatasArgs, type QueryRootTokenOwnershipsArgs, type QueryRootTokensArgs, type QueryRootUserTransactionsArgs, type QueryRootUserTransactionsByPkArgs, type Scalars, type Signatures, type SignaturesBoolExp, type SignaturesOrderBy, type SignaturesPublicKeyIndicesArgs, SignaturesSelectColumn, type SignaturesStreamCursorInput, type SignaturesStreamCursorValueInput, type StringComparisonExp, type SubscriptionRoot, type SubscriptionRootAccountTransactionsAggregateArgs, type SubscriptionRootAccountTransactionsArgs, type SubscriptionRootAccountTransactionsByPkArgs, type SubscriptionRootAccountTransactionsStreamArgs, type SubscriptionRootAddressEventsSummaryArgs, type SubscriptionRootAddressEventsSummaryStreamArgs, type SubscriptionRootAddressVersionFromEventsAggregateArgs, type SubscriptionRootAddressVersionFromEventsArgs, type SubscriptionRootAddressVersionFromEventsStreamArgs, type SubscriptionRootAddressVersionFromMoveResourcesAggregateArgs, type SubscriptionRootAddressVersionFromMoveResourcesArgs, type SubscriptionRootAddressVersionFromMoveResourcesStreamArgs, type SubscriptionRootBlockMetadataTransactionsArgs, type SubscriptionRootBlockMetadataTransactionsByPkArgs, type SubscriptionRootBlockMetadataTransactionsStreamArgs, type SubscriptionRootCoinActivitiesAggregateArgs, type SubscriptionRootCoinActivitiesArgs, type SubscriptionRootCoinActivitiesStreamArgs, type SubscriptionRootCoinBalancesArgs, type SubscriptionRootCoinBalancesStreamArgs, type SubscriptionRootCoinInfosArgs, type SubscriptionRootCoinInfosStreamArgs, type SubscriptionRootCoinSupplyArgs, type SubscriptionRootCoinSupplyByPkArgs, type SubscriptionRootCoinSupplyStreamArgs, type SubscriptionRootCollectionDatasArgs, type SubscriptionRootCollectionDatasStreamArgs, type SubscriptionRootCurrentAnsLookupArgs, type SubscriptionRootCurrentAnsLookupStreamArgs, type SubscriptionRootCurrentAnsLookupV2Args, type SubscriptionRootCurrentAnsLookupV2ByPkArgs, type SubscriptionRootCurrentAnsLookupV2StreamArgs, type SubscriptionRootCurrentAptosNamesAggregateArgs, type SubscriptionRootCurrentAptosNamesArgs, type SubscriptionRootCurrentAptosNamesStreamArgs, type SubscriptionRootCurrentCoinBalancesArgs, type SubscriptionRootCurrentCoinBalancesStreamArgs, type SubscriptionRootCurrentCollectionDatasArgs, type SubscriptionRootCurrentCollectionDatasStreamArgs, type SubscriptionRootCurrentCollectionOwnershipV2ViewAggregateArgs, type SubscriptionRootCurrentCollectionOwnershipV2ViewArgs, type SubscriptionRootCurrentCollectionOwnershipV2ViewStreamArgs, type SubscriptionRootCurrentCollectionsV2Args, type SubscriptionRootCurrentCollectionsV2ByPkArgs, type SubscriptionRootCurrentCollectionsV2StreamArgs, type SubscriptionRootCurrentDelegatedStakingPoolBalancesArgs, type SubscriptionRootCurrentDelegatedStakingPoolBalancesByPkArgs, type SubscriptionRootCurrentDelegatedStakingPoolBalancesStreamArgs, type SubscriptionRootCurrentDelegatedVoterArgs, type SubscriptionRootCurrentDelegatedVoterByPkArgs, type SubscriptionRootCurrentDelegatedVoterStreamArgs, type SubscriptionRootCurrentDelegatorBalancesArgs, type SubscriptionRootCurrentDelegatorBalancesByPkArgs, type SubscriptionRootCurrentDelegatorBalancesStreamArgs, type SubscriptionRootCurrentFungibleAssetBalancesAggregateArgs, type SubscriptionRootCurrentFungibleAssetBalancesArgs, type SubscriptionRootCurrentFungibleAssetBalancesByPkArgs, type SubscriptionRootCurrentFungibleAssetBalancesStreamArgs, type SubscriptionRootCurrentObjectsArgs, type SubscriptionRootCurrentObjectsByPkArgs, type SubscriptionRootCurrentObjectsStreamArgs, type SubscriptionRootCurrentStakingPoolVoterArgs, type SubscriptionRootCurrentStakingPoolVoterByPkArgs, type SubscriptionRootCurrentStakingPoolVoterStreamArgs, type SubscriptionRootCurrentTableItemsArgs, type SubscriptionRootCurrentTableItemsByPkArgs, type SubscriptionRootCurrentTableItemsStreamArgs, type SubscriptionRootCurrentTokenDatasArgs, type SubscriptionRootCurrentTokenDatasStreamArgs, type SubscriptionRootCurrentTokenDatasV2Args, type SubscriptionRootCurrentTokenDatasV2ByPkArgs, type SubscriptionRootCurrentTokenDatasV2StreamArgs, type SubscriptionRootCurrentTokenOwnershipsAggregateArgs, type SubscriptionRootCurrentTokenOwnershipsArgs, type SubscriptionRootCurrentTokenOwnershipsStreamArgs, type SubscriptionRootCurrentTokenOwnershipsV2AggregateArgs, type SubscriptionRootCurrentTokenOwnershipsV2Args, type SubscriptionRootCurrentTokenOwnershipsV2ByPkArgs, type SubscriptionRootCurrentTokenOwnershipsV2StreamArgs, type SubscriptionRootCurrentTokenPendingClaimsArgs, type SubscriptionRootCurrentTokenPendingClaimsByPkArgs, type SubscriptionRootCurrentTokenPendingClaimsStreamArgs, type SubscriptionRootDelegatedStakingActivitiesArgs, type SubscriptionRootDelegatedStakingActivitiesByPkArgs, type SubscriptionRootDelegatedStakingActivitiesStreamArgs, type SubscriptionRootDelegatedStakingPoolBalancesAggregateArgs, type SubscriptionRootDelegatedStakingPoolBalancesArgs, type SubscriptionRootDelegatedStakingPoolBalancesByPkArgs, type SubscriptionRootDelegatedStakingPoolBalancesStreamArgs, type SubscriptionRootDelegatedStakingPoolsArgs, type SubscriptionRootDelegatedStakingPoolsByPkArgs, type SubscriptionRootDelegatedStakingPoolsStreamArgs, type SubscriptionRootDelegatorDistinctPoolAggregateArgs, type SubscriptionRootDelegatorDistinctPoolArgs, type SubscriptionRootDelegatorDistinctPoolStreamArgs, type SubscriptionRootEventsArgs, type SubscriptionRootEventsByPkArgs, type SubscriptionRootEventsStreamArgs, type SubscriptionRootFungibleAssetActivitiesArgs, type SubscriptionRootFungibleAssetActivitiesByPkArgs, type SubscriptionRootFungibleAssetActivitiesStreamArgs, type SubscriptionRootFungibleAssetMetadataArgs, type SubscriptionRootFungibleAssetMetadataByPkArgs, type SubscriptionRootFungibleAssetMetadataStreamArgs, type SubscriptionRootIndexerStatusArgs, type SubscriptionRootIndexerStatusByPkArgs, type SubscriptionRootIndexerStatusStreamArgs, type SubscriptionRootLedgerInfosArgs, type SubscriptionRootLedgerInfosByPkArgs, type SubscriptionRootLedgerInfosStreamArgs, type SubscriptionRootMoveResourcesAggregateArgs, type SubscriptionRootMoveResourcesArgs, type SubscriptionRootMoveResourcesStreamArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceAuctionsArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceAuctionsByPkArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceAuctionsStreamArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersByPkArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceCollectionOffersStreamArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsAggregateArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsByPkArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceListingsStreamArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersByPkArgs, type SubscriptionRootNftMarketplaceV2CurrentNftMarketplaceTokenOffersStreamArgs, type SubscriptionRootNftMarketplaceV2NftMarketplaceActivitiesArgs, type SubscriptionRootNftMarketplaceV2NftMarketplaceActivitiesByPkArgs, type SubscriptionRootNftMarketplaceV2NftMarketplaceActivitiesStreamArgs, type SubscriptionRootNftMetadataCrawlerParsedAssetUrisArgs, type SubscriptionRootNftMetadataCrawlerParsedAssetUrisByPkArgs, type SubscriptionRootNftMetadataCrawlerParsedAssetUrisStreamArgs, type SubscriptionRootNumActiveDelegatorPerPoolArgs, type SubscriptionRootNumActiveDelegatorPerPoolStreamArgs, type SubscriptionRootProcessorStatusArgs, type SubscriptionRootProcessorStatusByPkArgs, type SubscriptionRootProcessorStatusStreamArgs, type SubscriptionRootProposalVotesAggregateArgs, type SubscriptionRootProposalVotesArgs, type SubscriptionRootProposalVotesByPkArgs, type SubscriptionRootProposalVotesStreamArgs, type SubscriptionRootSignaturesArgs, type SubscriptionRootSignaturesByPkArgs, type SubscriptionRootSignaturesStreamArgs, type SubscriptionRootTableItemsArgs, type SubscriptionRootTableItemsByPkArgs, type SubscriptionRootTableItemsStreamArgs, type SubscriptionRootTableMetadatasArgs, type SubscriptionRootTableMetadatasByPkArgs, type SubscriptionRootTableMetadatasStreamArgs, type SubscriptionRootTokenActivitiesAggregateArgs, type SubscriptionRootTokenActivitiesArgs, type SubscriptionRootTokenActivitiesStreamArgs, type SubscriptionRootTokenActivitiesV2AggregateArgs, type SubscriptionRootTokenActivitiesV2Args, type SubscriptionRootTokenActivitiesV2ByPkArgs, type SubscriptionRootTokenActivitiesV2StreamArgs, type SubscriptionRootTokenDatasArgs, type SubscriptionRootTokenDatasStreamArgs, type SubscriptionRootTokenOwnershipsArgs, type SubscriptionRootTokenOwnershipsStreamArgs, type SubscriptionRootTokensArgs, type SubscriptionRootTokensStreamArgs, type SubscriptionRootUserTransactionsArgs, type SubscriptionRootUserTransactionsByPkArgs, type SubscriptionRootUserTransactionsStreamArgs, type TableItems, type TableItemsBoolExp, type TableItemsDecodedKeyArgs, type TableItemsDecodedValueArgs, type TableItemsOrderBy, TableItemsSelectColumn, type TableItemsStreamCursorInput, type TableItemsStreamCursorValueInput, type TableMetadatas, type TableMetadatasBoolExp, type TableMetadatasOrderBy, TableMetadatasSelectColumn, type TableMetadatasStreamCursorInput, type TableMetadatasStreamCursorValueInput, type TimestampComparisonExp, type TimestamptzComparisonExp, type TokenActivities, type TokenActivitiesAggregate, type TokenActivitiesAggregateBoolExp, type TokenActivitiesAggregateBoolExpCount, type TokenActivitiesAggregateFields, type TokenActivitiesAggregateFieldsCountArgs, type TokenActivitiesAggregateOrderBy, type TokenActivitiesAptosNamesOwnerAggregateArgs, type TokenActivitiesAptosNamesOwnerArgs, type TokenActivitiesAptosNamesToAggregateArgs, type TokenActivitiesAptosNamesToArgs, type TokenActivitiesAvgFields, type TokenActivitiesAvgOrderBy, type TokenActivitiesBoolExp, type TokenActivitiesMaxFields, type TokenActivitiesMaxOrderBy, type TokenActivitiesMinFields, type TokenActivitiesMinOrderBy, type TokenActivitiesOrderBy, TokenActivitiesSelectColumn, type TokenActivitiesStddevFields, type TokenActivitiesStddevOrderBy, type TokenActivitiesStddevPopFields, type TokenActivitiesStddevPopOrderBy, type TokenActivitiesStddevSampFields, type TokenActivitiesStddevSampOrderBy, type TokenActivitiesStreamCursorInput, type TokenActivitiesStreamCursorValueInput, type TokenActivitiesSumFields, type TokenActivitiesSumOrderBy, type TokenActivitiesV2, type TokenActivitiesV2Aggregate, type TokenActivitiesV2AggregateBoolExp, type TokenActivitiesV2AggregateBoolExpBoolAnd, type TokenActivitiesV2AggregateBoolExpBoolOr, type TokenActivitiesV2AggregateBoolExpCount, type TokenActivitiesV2AggregateFields, type TokenActivitiesV2AggregateFieldsCountArgs, type TokenActivitiesV2AggregateOrderBy, type TokenActivitiesV2AptosNamesFromAggregateArgs, type TokenActivitiesV2AptosNamesFromArgs, type TokenActivitiesV2AptosNamesToAggregateArgs, type TokenActivitiesV2AptosNamesToArgs, type TokenActivitiesV2AvgFields, type TokenActivitiesV2AvgOrderBy, type TokenActivitiesV2BoolExp, type TokenActivitiesV2MaxFields, type TokenActivitiesV2MaxOrderBy, type TokenActivitiesV2MinFields, type TokenActivitiesV2MinOrderBy, type TokenActivitiesV2OrderBy, TokenActivitiesV2SelectColumn, TokenActivitiesV2SelectColumnTokenActivitiesV2AggregateBoolExpBoolAndArgumentsColumns, TokenActivitiesV2SelectColumnTokenActivitiesV2AggregateBoolExpBoolOrArgumentsColumns, type TokenActivitiesV2StddevFields, type TokenActivitiesV2StddevOrderBy, type TokenActivitiesV2StddevPopFields, type TokenActivitiesV2StddevPopOrderBy, type TokenActivitiesV2StddevSampFields, type TokenActivitiesV2StddevSampOrderBy, type TokenActivitiesV2StreamCursorInput, type TokenActivitiesV2StreamCursorValueInput, type TokenActivitiesV2SumFields, type TokenActivitiesV2SumOrderBy, type TokenActivitiesV2VarPopFields, type TokenActivitiesV2VarPopOrderBy, type TokenActivitiesV2VarSampFields, type TokenActivitiesV2VarSampOrderBy, type TokenActivitiesV2VarianceFields, type TokenActivitiesV2VarianceOrderBy, type TokenActivitiesVarPopFields, type TokenActivitiesVarPopOrderBy, type TokenActivitiesVarSampFields, type TokenActivitiesVarSampOrderBy, type TokenActivitiesVarianceFields, type TokenActivitiesVarianceOrderBy, type TokenDatas, type TokenDatasBoolExp, type TokenDatasDefaultPropertiesArgs, type TokenDatasOrderBy, TokenDatasSelectColumn, type TokenDatasStreamCursorInput, type TokenDatasStreamCursorValueInput, type TokenOwnerships, type TokenOwnershipsBoolExp, type TokenOwnershipsOrderBy, TokenOwnershipsSelectColumn, type TokenOwnershipsStreamCursorInput, type TokenOwnershipsStreamCursorValueInput, type Tokens, type TokensBoolExp, type TokensOrderBy, TokensSelectColumn, type TokensStreamCursorInput, type TokensStreamCursorValueInput, type TokensTokenPropertiesArgs, type UserTransactions, type UserTransactionsBoolExp, type UserTransactionsOrderBy, UserTransactionsSelectColumn, type UserTransactionsStreamCursorInput, type UserTransactionsStreamCursorValueInput };
|
|
9853
|
+
export { type AccountTransactions, type AccountTransactionsAggregate, type AccountTransactionsAggregateFields, type AccountTransactionsAggregateFieldsCountArgs, type AccountTransactionsAvgFields, type AccountTransactionsBoolExp, type AccountTransactionsCoinActivitiesAggregateArgs, type AccountTransactionsCoinActivitiesArgs, type AccountTransactionsDelegatedStakingActivitiesArgs, type AccountTransactionsFungibleAssetActivitiesArgs, type AccountTransactionsMaxFields, type AccountTransactionsMinFields, type AccountTransactionsOrderBy, AccountTransactionsSelectColumn, type AccountTransactionsStddevFields, type AccountTransactionsStddevPopFields, type AccountTransactionsStddevSampFields, type AccountTransactionsStreamCursorInput, type AccountTransactionsStreamCursorValueInput, type AccountTransactionsSumFields, type AccountTransactionsTokenActivitiesAggregateArgs, type AccountTransactionsTokenActivitiesArgs, type AccountTransactionsTokenActivitiesV2AggregateArgs, type AccountTransactionsTokenActivitiesV2Args, type AccountTransactionsVarPopFields, type AccountTransactionsVarSampFields, type AccountTransactionsVarianceFields, type AddressEventsSummary, type AddressEventsSummaryBoolExp, type AddressEventsSummaryOrderBy, AddressEventsSummarySelectColumn, type AddressEventsSummaryStreamCursorInput, type AddressEventsSummaryStreamCursorValueInput, type AddressVersionFromEvents, type AddressVersionFromEventsAggregate, type AddressVersionFromEventsAggregateFields, type AddressVersionFromEventsAggregateFieldsCountArgs, type AddressVersionFromEventsAvgFields, type AddressVersionFromEventsBoolExp, type AddressVersionFromEventsCoinActivitiesAggregateArgs, type AddressVersionFromEventsCoinActivitiesArgs, type AddressVersionFromEventsDelegatedStakingActivitiesArgs, type AddressVersionFromEventsMaxFields, type AddressVersionFromEventsMinFields, type AddressVersionFromEventsOrderBy, AddressVersionFromEventsSelectColumn, type AddressVersionFromEventsStddevFields, type AddressVersionFromEventsStddevPopFields, type AddressVersionFromEventsStddevSampFields, type AddressVersionFromEventsStreamCursorInput, type AddressVersionFromEventsStreamCursorValueInput, type AddressVersionFromEventsSumFields, type AddressVersionFromEventsTokenActivitiesAggregateArgs, type AddressVersionFromEventsTokenActivitiesArgs, type AddressVersionFromEventsTokenActivitiesV2AggregateArgs, type AddressVersionFromEventsTokenActivitiesV2Args, type AddressVersionFromEventsVarPopFields, type AddressVersionFromEventsVarSampFields, type AddressVersionFromEventsVarianceFields, type AddressVersionFromMoveResources, type AddressVersionFromMoveResourcesAggregate, type AddressVersionFromMoveResourcesAggregateFields, type AddressVersionFromMoveResourcesAggregateFieldsCountArgs, type AddressVersionFromMoveResourcesAvgFields, type AddressVersionFromMoveResourcesBoolExp, type AddressVersionFromMoveResourcesCoinActivitiesAggregateArgs, type AddressVersionFromMoveResourcesCoinActivitiesArgs, type AddressVersionFromMoveResourcesDelegatedStakingActivitiesArgs, type AddressVersionFromMoveResourcesMaxFields, type AddressVersionFromMoveResourcesMinFields, type AddressVersionFromMoveResourcesOrderBy, AddressVersionFromMoveResourcesSelectColumn, type AddressVersionFromMoveResourcesStddevFields, type AddressVersionFromMoveResourcesStddevPopFields, type AddressVersionFromMoveResourcesStddevSampFields, type AddressVersionFromMoveResourcesStreamCursorInput, type AddressVersionFromMoveResourcesStreamCursorValueInput, type AddressVersionFromMoveResourcesSumFields, type AddressVersionFromMoveResourcesTokenActivitiesAggregateArgs, type AddressVersionFromMoveResourcesTokenActivitiesArgs, type AddressVersionFromMoveResourcesTokenActivitiesV2AggregateArgs, type AddressVersionFromMoveResourcesTokenActivitiesV2Args, type AddressVersionFromMoveResourcesVarPopFields, type AddressVersionFromMoveResourcesVarSampFields, type AddressVersionFromMoveResourcesVarianceFields, type AuthKeyAccountAddresses, type AuthKeyAccountAddressesAggregate, type AuthKeyAccountAddressesAggregateFields, type AuthKeyAccountAddressesAggregateFieldsCountArgs, type AuthKeyAccountAddressesAvgFields, type AuthKeyAccountAddressesBoolExp, type AuthKeyAccountAddressesMaxFields, type AuthKeyAccountAddressesMinFields, type AuthKeyAccountAddressesOrderBy, AuthKeyAccountAddressesSelectColumn, type AuthKeyAccountAddressesStddevFields, type AuthKeyAccountAddressesStddevPopFields, type AuthKeyAccountAddressesStddevSampFields, type AuthKeyAccountAddressesStreamCursorInput, type AuthKeyAccountAddressesStreamCursorValueInput, type AuthKeyAccountAddressesSumFields, type AuthKeyAccountAddressesVarPopFields, type AuthKeyAccountAddressesVarSampFields, type AuthKeyAccountAddressesVarianceFields, type AuthKeyMultikeyLayout, type AuthKeyMultikeyLayoutAggregate, type AuthKeyMultikeyLayoutAggregateFields, type AuthKeyMultikeyLayoutAggregateFieldsCountArgs, type AuthKeyMultikeyLayoutAvgFields, type AuthKeyMultikeyLayoutBoolExp, type AuthKeyMultikeyLayoutMaxFields, type AuthKeyMultikeyLayoutMinFields, type AuthKeyMultikeyLayoutMultikeyLayoutWithPrefixesArgs, type AuthKeyMultikeyLayoutOrderBy, AuthKeyMultikeyLayoutSelectColumn, type AuthKeyMultikeyLayoutStddevFields, type AuthKeyMultikeyLayoutStddevPopFields, type AuthKeyMultikeyLayoutStddevSampFields, type AuthKeyMultikeyLayoutStreamCursorInput, type AuthKeyMultikeyLayoutStreamCursorValueInput, type AuthKeyMultikeyLayoutSumFields, type AuthKeyMultikeyLayoutVarPopFields, type AuthKeyMultikeyLayoutVarSampFields, type AuthKeyMultikeyLayoutVarianceFields, type BigintComparisonExp, type BlockMetadataTransactions, type BlockMetadataTransactionsBoolExp, type BlockMetadataTransactionsFailedProposerIndicesArgs, type BlockMetadataTransactionsOrderBy, type BlockMetadataTransactionsPreviousBlockVotesBitvecArgs, BlockMetadataTransactionsSelectColumn, type BlockMetadataTransactionsStreamCursorInput, type BlockMetadataTransactionsStreamCursorValueInput, type BooleanComparisonExp, type CoinActivities, type CoinActivitiesAggregate, type CoinActivitiesAggregateBoolExp, type CoinActivitiesAggregateBoolExpBoolAnd, type CoinActivitiesAggregateBoolExpBoolOr, type CoinActivitiesAggregateBoolExpCount, type CoinActivitiesAggregateFields, type CoinActivitiesAggregateFieldsCountArgs, type CoinActivitiesAggregateOrderBy, type CoinActivitiesAptosNamesAggregateArgs, type CoinActivitiesAptosNamesArgs, type CoinActivitiesAvgFields, type CoinActivitiesAvgOrderBy, type CoinActivitiesBoolExp, type CoinActivitiesMaxFields, type CoinActivitiesMaxOrderBy, type CoinActivitiesMinFields, type CoinActivitiesMinOrderBy, type CoinActivitiesOrderBy, CoinActivitiesSelectColumn, CoinActivitiesSelectColumnCoinActivitiesAggregateBoolExpBoolAndArgumentsColumns, CoinActivitiesSelectColumnCoinActivitiesAggregateBoolExpBoolOrArgumentsColumns, type CoinActivitiesStddevFields, type CoinActivitiesStddevOrderBy, type CoinActivitiesStddevPopFields, type CoinActivitiesStddevPopOrderBy, type CoinActivitiesStddevSampFields, type CoinActivitiesStddevSampOrderBy, type CoinActivitiesStreamCursorInput, type CoinActivitiesStreamCursorValueInput, type CoinActivitiesSumFields, type CoinActivitiesSumOrderBy, type CoinActivitiesVarPopFields, type CoinActivitiesVarPopOrderBy, type CoinActivitiesVarSampFields, type CoinActivitiesVarSampOrderBy, type CoinActivitiesVarianceFields, type CoinActivitiesVarianceOrderBy, type CoinBalances, type CoinBalancesBoolExp, type CoinBalancesOrderBy, CoinBalancesSelectColumn, type CoinBalancesStreamCursorInput, type CoinBalancesStreamCursorValueInput, type CoinInfos, type CoinInfosBoolExp, type CoinInfosOrderBy, CoinInfosSelectColumn, type CoinInfosStreamCursorInput, type CoinInfosStreamCursorValueInput, type CoinSupply, type CoinSupplyBoolExp, type CoinSupplyOrderBy, CoinSupplySelectColumn, type CoinSupplyStreamCursorInput, type CoinSupplyStreamCursorValueInput, type CollectionDatas, type CollectionDatasBoolExp, type CollectionDatasOrderBy, CollectionDatasSelectColumn, type CollectionDatasStreamCursorInput, type CollectionDatasStreamCursorValueInput, type CurrentAnsLookup, type CurrentAnsLookupAllTokenOwnershipsAggregateArgs, type CurrentAnsLookupAllTokenOwnershipsArgs, type CurrentAnsLookupBoolExp, type CurrentAnsLookupOrderBy, CurrentAnsLookupSelectColumn, type CurrentAnsLookupStreamCursorInput, type CurrentAnsLookupStreamCursorValueInput, type CurrentAnsLookupV2, type CurrentAnsLookupV2BoolExp, type CurrentAnsLookupV2OrderBy, CurrentAnsLookupV2SelectColumn, type CurrentAnsLookupV2StreamCursorInput, type CurrentAnsLookupV2StreamCursorValueInput, type CurrentAptosNames, type CurrentAptosNamesAggregate, type CurrentAptosNamesAggregateBoolExp, type CurrentAptosNamesAggregateBoolExpBoolAnd, type CurrentAptosNamesAggregateBoolExpBoolOr, type CurrentAptosNamesAggregateBoolExpCount, type CurrentAptosNamesAggregateFields, type CurrentAptosNamesAggregateFieldsCountArgs, type CurrentAptosNamesAggregateOrderBy, type CurrentAptosNamesAvgFields, type CurrentAptosNamesAvgOrderBy, type CurrentAptosNamesBoolExp, type CurrentAptosNamesMaxFields, type CurrentAptosNamesMaxOrderBy, type CurrentAptosNamesMinFields, type CurrentAptosNamesMinOrderBy, type CurrentAptosNamesOrderBy, CurrentAptosNamesSelectColumn, CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns, CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns, type CurrentAptosNamesStddevFields, type CurrentAptosNamesStddevOrderBy, type CurrentAptosNamesStddevPopFields, type CurrentAptosNamesStddevPopOrderBy, type CurrentAptosNamesStddevSampFields, type CurrentAptosNamesStddevSampOrderBy, type CurrentAptosNamesStreamCursorInput, type CurrentAptosNamesStreamCursorValueInput, type CurrentAptosNamesSumFields, type CurrentAptosNamesSumOrderBy, type CurrentAptosNamesVarPopFields, type CurrentAptosNamesVarPopOrderBy, type CurrentAptosNamesVarSampFields, type CurrentAptosNamesVarSampOrderBy, type CurrentAptosNamesVarianceFields, type CurrentAptosNamesVarianceOrderBy, type CurrentCoinBalances, type CurrentCoinBalancesBoolExp, type CurrentCoinBalancesOrderBy, CurrentCoinBalancesSelectColumn, type CurrentCoinBalancesStreamCursorInput, type CurrentCoinBalancesStreamCursorValueInput, type CurrentCollectionDatas, type CurrentCollectionDatasBoolExp, type CurrentCollectionDatasOrderBy, CurrentCollectionDatasSelectColumn, type CurrentCollectionDatasStreamCursorInput, type CurrentCollectionDatasStreamCursorValueInput, type CurrentCollectionOwnershipV2View, type CurrentCollectionOwnershipV2ViewAggregate, type CurrentCollectionOwnershipV2ViewAggregateFields, type CurrentCollectionOwnershipV2ViewAggregateFieldsCountArgs, type CurrentCollectionOwnershipV2ViewAvgFields, type CurrentCollectionOwnershipV2ViewBoolExp, type CurrentCollectionOwnershipV2ViewMaxFields, type CurrentCollectionOwnershipV2ViewMinFields, type CurrentCollectionOwnershipV2ViewOrderBy, CurrentCollectionOwnershipV2ViewSelectColumn, type CurrentCollectionOwnershipV2ViewStddevFields, type CurrentCollectionOwnershipV2ViewStddevPopFields, type CurrentCollectionOwnershipV2ViewStddevSampFields, type CurrentCollectionOwnershipV2ViewStreamCursorInput, type CurrentCollectionOwnershipV2ViewStreamCursorValueInput, type CurrentCollectionOwnershipV2ViewSumFields, type CurrentCollectionOwnershipV2ViewVarPopFields, type CurrentCollectionOwnershipV2ViewVarSampFields, type CurrentCollectionOwnershipV2ViewVarianceFields, type CurrentCollectionsV2, type CurrentCollectionsV2BoolExp, type CurrentCollectionsV2CollectionPropertiesArgs, type CurrentCollectionsV2OrderBy, CurrentCollectionsV2SelectColumn, type CurrentCollectionsV2StreamCursorInput, type CurrentCollectionsV2StreamCursorValueInput, type CurrentDelegatedStakingPoolBalances, type CurrentDelegatedStakingPoolBalancesBoolExp, type CurrentDelegatedStakingPoolBalancesOrderBy, CurrentDelegatedStakingPoolBalancesSelectColumn, type CurrentDelegatedStakingPoolBalancesStreamCursorInput, type CurrentDelegatedStakingPoolBalancesStreamCursorValueInput, type CurrentDelegatedVoter, type CurrentDelegatedVoterBoolExp, type CurrentDelegatedVoterOrderBy, CurrentDelegatedVoterSelectColumn, type CurrentDelegatedVoterStreamCursorInput, type CurrentDelegatedVoterStreamCursorValueInput, type CurrentDelegatorBalances, type CurrentDelegatorBalancesBoolExp, type CurrentDelegatorBalancesOrderBy, CurrentDelegatorBalancesSelectColumn, type CurrentDelegatorBalancesStreamCursorInput, type CurrentDelegatorBalancesStreamCursorValueInput, type CurrentFungibleAssetBalances, type CurrentFungibleAssetBalancesAggregate, type CurrentFungibleAssetBalancesAggregateFields, type CurrentFungibleAssetBalancesAggregateFieldsCountArgs, type CurrentFungibleAssetBalancesAvgFields, type CurrentFungibleAssetBalancesBoolExp, type CurrentFungibleAssetBalancesMaxFields, type CurrentFungibleAssetBalancesMinFields, type CurrentFungibleAssetBalancesOrderBy, CurrentFungibleAssetBalancesSelectColumn, type CurrentFungibleAssetBalancesStddevFields, type CurrentFungibleAssetBalancesStddevPopFields, type CurrentFungibleAssetBalancesStddevSampFields, type CurrentFungibleAssetBalancesStreamCursorInput, type CurrentFungibleAssetBalancesStreamCursorValueInput, type CurrentFungibleAssetBalancesSumFields, type CurrentFungibleAssetBalancesVarPopFields, type CurrentFungibleAssetBalancesVarSampFields, type CurrentFungibleAssetBalancesVarianceFields, type CurrentObjects, type CurrentObjectsBoolExp, type CurrentObjectsOrderBy, CurrentObjectsSelectColumn, type CurrentObjectsStreamCursorInput, type CurrentObjectsStreamCursorValueInput, type CurrentStakingPoolVoter, type CurrentStakingPoolVoterBoolExp, type CurrentStakingPoolVoterOperatorAptosNameAggregateArgs, type CurrentStakingPoolVoterOperatorAptosNameArgs, type CurrentStakingPoolVoterOrderBy, CurrentStakingPoolVoterSelectColumn, type CurrentStakingPoolVoterStreamCursorInput, type CurrentStakingPoolVoterStreamCursorValueInput, type CurrentTableItems, type CurrentTableItemsBoolExp, type CurrentTableItemsDecodedKeyArgs, type CurrentTableItemsDecodedValueArgs, type CurrentTableItemsOrderBy, CurrentTableItemsSelectColumn, type CurrentTableItemsStreamCursorInput, type CurrentTableItemsStreamCursorValueInput, type CurrentTokenDatas, type CurrentTokenDatasBoolExp, type CurrentTokenDatasDefaultPropertiesArgs, type CurrentTokenDatasOrderBy, CurrentTokenDatasSelectColumn, type CurrentTokenDatasStreamCursorInput, type CurrentTokenDatasStreamCursorValueInput, type CurrentTokenDatasV2, type CurrentTokenDatasV2BoolExp, type CurrentTokenDatasV2CurrentTokenOwnershipsAggregateArgs, type CurrentTokenDatasV2CurrentTokenOwnershipsArgs, type CurrentTokenDatasV2OrderBy, CurrentTokenDatasV2SelectColumn, type CurrentTokenDatasV2StreamCursorInput, type CurrentTokenDatasV2StreamCursorValueInput, type CurrentTokenDatasV2TokenPropertiesArgs, type CurrentTokenOwnerships, type CurrentTokenOwnershipsAggregate, type CurrentTokenOwnershipsAggregateBoolExp, type CurrentTokenOwnershipsAggregateBoolExpCount, type CurrentTokenOwnershipsAggregateFields, type CurrentTokenOwnershipsAggregateFieldsCountArgs, type CurrentTokenOwnershipsAggregateOrderBy, type CurrentTokenOwnershipsAvgFields, type CurrentTokenOwnershipsAvgOrderBy, type CurrentTokenOwnershipsBoolExp, type CurrentTokenOwnershipsMaxFields, type CurrentTokenOwnershipsMaxOrderBy, type CurrentTokenOwnershipsMinFields, type CurrentTokenOwnershipsMinOrderBy, type CurrentTokenOwnershipsOrderBy, CurrentTokenOwnershipsSelectColumn, type CurrentTokenOwnershipsStddevFields, type CurrentTokenOwnershipsStddevOrderBy, type CurrentTokenOwnershipsStddevPopFields, type CurrentTokenOwnershipsStddevPopOrderBy, type CurrentTokenOwnershipsStddevSampFields, type CurrentTokenOwnershipsStddevSampOrderBy, type CurrentTokenOwnershipsStreamCursorInput, type CurrentTokenOwnershipsStreamCursorValueInput, type CurrentTokenOwnershipsSumFields, type CurrentTokenOwnershipsSumOrderBy, type CurrentTokenOwnershipsTokenPropertiesArgs, type CurrentTokenOwnershipsV2, type CurrentTokenOwnershipsV2Aggregate, type CurrentTokenOwnershipsV2AggregateBoolExp, type CurrentTokenOwnershipsV2AggregateBoolExpBoolAnd, type CurrentTokenOwnershipsV2AggregateBoolExpBoolOr, type CurrentTokenOwnershipsV2AggregateBoolExpCount, type CurrentTokenOwnershipsV2AggregateFields, type CurrentTokenOwnershipsV2AggregateFieldsCountArgs, type CurrentTokenOwnershipsV2AggregateOrderBy, type CurrentTokenOwnershipsV2AvgFields, type CurrentTokenOwnershipsV2AvgOrderBy, type CurrentTokenOwnershipsV2BoolExp, type CurrentTokenOwnershipsV2ComposedNftsAggregateArgs, type CurrentTokenOwnershipsV2ComposedNftsArgs, type CurrentTokenOwnershipsV2MaxFields, type CurrentTokenOwnershipsV2MaxOrderBy, type CurrentTokenOwnershipsV2MinFields, type CurrentTokenOwnershipsV2MinOrderBy, type CurrentTokenOwnershipsV2OrderBy, CurrentTokenOwnershipsV2SelectColumn, CurrentTokenOwnershipsV2SelectColumnCurrentTokenOwnershipsV2AggregateBoolExpBoolAndArgumentsColumns, CurrentTokenOwnershipsV2SelectColumnCurrentTokenOwnershipsV2AggregateBoolExpBoolOrArgumentsColumns, type CurrentTokenOwnershipsV2StddevFields, type CurrentTokenOwnershipsV2StddevOrderBy, type CurrentTokenOwnershipsV2StddevPopFields, type CurrentTokenOwnershipsV2StddevPopOrderBy, type CurrentTokenOwnershipsV2StddevSampFields, type CurrentTokenOwnershipsV2StddevSampOrderBy, type CurrentTokenOwnershipsV2StreamCursorInput, type CurrentTokenOwnershipsV2StreamCursorValueInput, type CurrentTokenOwnershipsV2SumFields, type CurrentTokenOwnershipsV2SumOrderBy, type CurrentTokenOwnershipsV2TokenPropertiesMutatedV1Args, type CurrentTokenOwnershipsV2VarPopFields, type CurrentTokenOwnershipsV2VarPopOrderBy, type CurrentTokenOwnershipsV2VarSampFields, type CurrentTokenOwnershipsV2VarSampOrderBy, type CurrentTokenOwnershipsV2VarianceFields, type CurrentTokenOwnershipsV2VarianceOrderBy, type CurrentTokenOwnershipsVarPopFields, type CurrentTokenOwnershipsVarPopOrderBy, type CurrentTokenOwnershipsVarSampFields, type CurrentTokenOwnershipsVarSampOrderBy, type CurrentTokenOwnershipsVarianceFields, type CurrentTokenOwnershipsVarianceOrderBy, type CurrentTokenPendingClaims, type CurrentTokenPendingClaimsBoolExp, type CurrentTokenPendingClaimsOrderBy, CurrentTokenPendingClaimsSelectColumn, type CurrentTokenPendingClaimsStreamCursorInput, type CurrentTokenPendingClaimsStreamCursorValueInput, type CurrentTokenRoyaltyV1, type CurrentTokenRoyaltyV1BoolExp, type CurrentTokenRoyaltyV1OrderBy, CurrentTokenRoyaltyV1SelectColumn, type CurrentTokenRoyaltyV1StreamCursorInput, type CurrentTokenRoyaltyV1StreamCursorValueInput, CursorOrdering, type DelegatedStakingActivities, type DelegatedStakingActivitiesAggregateOrderBy, type DelegatedStakingActivitiesAvgOrderBy, type DelegatedStakingActivitiesBoolExp, type DelegatedStakingActivitiesMaxOrderBy, type DelegatedStakingActivitiesMinOrderBy, type DelegatedStakingActivitiesOrderBy, DelegatedStakingActivitiesSelectColumn, type DelegatedStakingActivitiesStddevOrderBy, type DelegatedStakingActivitiesStddevPopOrderBy, type DelegatedStakingActivitiesStddevSampOrderBy, type DelegatedStakingActivitiesStreamCursorInput, type DelegatedStakingActivitiesStreamCursorValueInput, type DelegatedStakingActivitiesSumOrderBy, type DelegatedStakingActivitiesVarPopOrderBy, type DelegatedStakingActivitiesVarSampOrderBy, type DelegatedStakingActivitiesVarianceOrderBy, type DelegatedStakingPoolBalances, type DelegatedStakingPoolBalancesAggregate, type DelegatedStakingPoolBalancesAggregateFields, type DelegatedStakingPoolBalancesAggregateFieldsCountArgs, type DelegatedStakingPoolBalancesAvgFields, type DelegatedStakingPoolBalancesBoolExp, type DelegatedStakingPoolBalancesMaxFields, type DelegatedStakingPoolBalancesMinFields, type DelegatedStakingPoolBalancesOrderBy, DelegatedStakingPoolBalancesSelectColumn, type DelegatedStakingPoolBalancesStddevFields, type DelegatedStakingPoolBalancesStddevPopFields, type DelegatedStakingPoolBalancesStddevSampFields, type DelegatedStakingPoolBalancesStreamCursorInput, type DelegatedStakingPoolBalancesStreamCursorValueInput, type DelegatedStakingPoolBalancesSumFields, type DelegatedStakingPoolBalancesVarPopFields, type DelegatedStakingPoolBalancesVarSampFields, type DelegatedStakingPoolBalancesVarianceFields, type DelegatedStakingPools, type DelegatedStakingPoolsBoolExp, type DelegatedStakingPoolsOrderBy, DelegatedStakingPoolsSelectColumn, type DelegatedStakingPoolsStreamCursorInput, type DelegatedStakingPoolsStreamCursorValueInput, type DelegatorDistinctPool, type DelegatorDistinctPoolAggregate, type DelegatorDistinctPoolAggregateFields, type DelegatorDistinctPoolAggregateFieldsCountArgs, type DelegatorDistinctPoolBoolExp, type DelegatorDistinctPoolMaxFields, type DelegatorDistinctPoolMinFields, type DelegatorDistinctPoolOrderBy, DelegatorDistinctPoolSelectColumn, type DelegatorDistinctPoolStreamCursorInput, type DelegatorDistinctPoolStreamCursorValueInput, type Events, type EventsBoolExp, type EventsDataArgs, type EventsOrderBy, EventsSelectColumn, type EventsStreamCursorInput, type EventsStreamCursorValueInput, type Exact, type FungibleAssetActivities, type FungibleAssetActivitiesAggregateOrderBy, type FungibleAssetActivitiesAvgOrderBy, type FungibleAssetActivitiesBoolExp, type FungibleAssetActivitiesMaxOrderBy, type FungibleAssetActivitiesMinOrderBy, type FungibleAssetActivitiesOrderBy, type FungibleAssetActivitiesOwnerAptosNamesAggregateArgs, type FungibleAssetActivitiesOwnerAptosNamesArgs, FungibleAssetActivitiesSelectColumn, type FungibleAssetActivitiesStddevOrderBy, type FungibleAssetActivitiesStddevPopOrderBy, type FungibleAssetActivitiesStddevSampOrderBy, type FungibleAssetActivitiesStreamCursorInput, type FungibleAssetActivitiesStreamCursorValueInput, type FungibleAssetActivitiesSumOrderBy, type FungibleAssetActivitiesVarPopOrderBy, type FungibleAssetActivitiesVarSampOrderBy, type FungibleAssetActivitiesVarianceOrderBy, type FungibleAssetMetadata, type FungibleAssetMetadataBoolExp, type FungibleAssetMetadataOrderBy, FungibleAssetMetadataSelectColumn, type FungibleAssetMetadataStreamCursorInput, type FungibleAssetMetadataStreamCursorValueInput, type Incremental, type IndexerStatus, type IndexerStatusBoolExp, type IndexerStatusOrderBy, IndexerStatusSelectColumn, type IndexerStatusStreamCursorInput, type IndexerStatusStreamCursorValueInput, type InputMaybe, type IntComparisonExp, type JsonbCastExp, type JsonbComparisonExp, type LedgerInfos, type LedgerInfosBoolExp, type LedgerInfosOrderBy, LedgerInfosSelectColumn, type LedgerInfosStreamCursorInput, type LedgerInfosStreamCursorValueInput, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type MoveResources, type MoveResourcesAggregate, type MoveResourcesAggregateFields, type MoveResourcesAggregateFieldsCountArgs, type MoveResourcesAvgFields, type MoveResourcesBoolExp, type MoveResourcesMaxFields, type MoveResourcesMinFields, type MoveResourcesOrderBy, MoveResourcesSelectColumn, type MoveResourcesStddevFields, type MoveResourcesStddevPopFields, type MoveResourcesStddevSampFields, type MoveResourcesStreamCursorInput, type MoveResourcesStreamCursorValueInput, type MoveResourcesSumFields, type MoveResourcesVarPopFields, type MoveResourcesVarSampFields, type MoveResourcesVarianceFields, type NftMetadataCrawlerParsedAssetUris, type NftMetadataCrawlerParsedAssetUrisBoolExp, type NftMetadataCrawlerParsedAssetUrisOrderBy, NftMetadataCrawlerParsedAssetUrisSelectColumn, type NftMetadataCrawlerParsedAssetUrisStreamCursorInput, type NftMetadataCrawlerParsedAssetUrisStreamCursorValueInput, type NumActiveDelegatorPerPool, type NumActiveDelegatorPerPoolBoolExp, type NumActiveDelegatorPerPoolOrderBy, NumActiveDelegatorPerPoolSelectColumn, type NumActiveDelegatorPerPoolStreamCursorInput, type NumActiveDelegatorPerPoolStreamCursorValueInput, type NumericComparisonExp, OrderBy, type ProcessorStatus, type ProcessorStatusBoolExp, type ProcessorStatusOrderBy, ProcessorStatusSelectColumn, type ProcessorStatusStreamCursorInput, type ProcessorStatusStreamCursorValueInput, type ProposalVotes, type ProposalVotesAggregate, type ProposalVotesAggregateFields, type ProposalVotesAggregateFieldsCountArgs, type ProposalVotesAvgFields, type ProposalVotesBoolExp, type ProposalVotesMaxFields, type ProposalVotesMinFields, type ProposalVotesOrderBy, ProposalVotesSelectColumn, type ProposalVotesStddevFields, type ProposalVotesStddevPopFields, type ProposalVotesStddevSampFields, type ProposalVotesStreamCursorInput, type ProposalVotesStreamCursorValueInput, type ProposalVotesSumFields, type ProposalVotesVarPopFields, type ProposalVotesVarSampFields, type ProposalVotesVarianceFields, type PublicKeyAuthKeys, type PublicKeyAuthKeysAggregate, type PublicKeyAuthKeysAggregateFields, type PublicKeyAuthKeysAggregateFieldsCountArgs, type PublicKeyAuthKeysAvgFields, type PublicKeyAuthKeysBoolExp, type PublicKeyAuthKeysMaxFields, type PublicKeyAuthKeysMinFields, type PublicKeyAuthKeysOrderBy, PublicKeyAuthKeysSelectColumn, type PublicKeyAuthKeysStddevFields, type PublicKeyAuthKeysStddevPopFields, type PublicKeyAuthKeysStddevSampFields, type PublicKeyAuthKeysStreamCursorInput, type PublicKeyAuthKeysStreamCursorValueInput, type PublicKeyAuthKeysSumFields, type PublicKeyAuthKeysVarPopFields, type PublicKeyAuthKeysVarSampFields, type PublicKeyAuthKeysVarianceFields, type QueryRoot, type QueryRootAccountTransactionsAggregateArgs, type QueryRootAccountTransactionsArgs, type QueryRootAccountTransactionsByPkArgs, type QueryRootAddressEventsSummaryArgs, type QueryRootAddressVersionFromEventsAggregateArgs, type QueryRootAddressVersionFromEventsArgs, type QueryRootAddressVersionFromMoveResourcesAggregateArgs, type QueryRootAddressVersionFromMoveResourcesArgs, type QueryRootAuthKeyAccountAddressesAggregateArgs, type QueryRootAuthKeyAccountAddressesArgs, type QueryRootAuthKeyAccountAddressesByPkArgs, type QueryRootAuthKeyMultikeyLayoutAggregateArgs, type QueryRootAuthKeyMultikeyLayoutArgs, type QueryRootAuthKeyMultikeyLayoutByPkArgs, type QueryRootBlockMetadataTransactionsArgs, type QueryRootBlockMetadataTransactionsByPkArgs, type QueryRootCoinActivitiesAggregateArgs, type QueryRootCoinActivitiesArgs, type QueryRootCoinBalancesArgs, type QueryRootCoinInfosArgs, type QueryRootCoinSupplyArgs, type QueryRootCoinSupplyByPkArgs, type QueryRootCollectionDatasArgs, type QueryRootCurrentAnsLookupArgs, type QueryRootCurrentAnsLookupV2Args, type QueryRootCurrentAnsLookupV2ByPkArgs, type QueryRootCurrentAptosNamesAggregateArgs, type QueryRootCurrentAptosNamesArgs, type QueryRootCurrentCoinBalancesArgs, type QueryRootCurrentCollectionDatasArgs, type QueryRootCurrentCollectionOwnershipV2ViewAggregateArgs, type QueryRootCurrentCollectionOwnershipV2ViewArgs, type QueryRootCurrentCollectionsV2Args, type QueryRootCurrentCollectionsV2ByPkArgs, type QueryRootCurrentDelegatedStakingPoolBalancesArgs, type QueryRootCurrentDelegatedStakingPoolBalancesByPkArgs, type QueryRootCurrentDelegatedVoterArgs, type QueryRootCurrentDelegatedVoterByPkArgs, type QueryRootCurrentDelegatorBalancesArgs, type QueryRootCurrentDelegatorBalancesByPkArgs, type QueryRootCurrentFungibleAssetBalancesAggregateArgs, type QueryRootCurrentFungibleAssetBalancesArgs, type QueryRootCurrentFungibleAssetBalancesByPkArgs, type QueryRootCurrentObjectsArgs, type QueryRootCurrentObjectsByPkArgs, type QueryRootCurrentStakingPoolVoterArgs, type QueryRootCurrentStakingPoolVoterByPkArgs, type QueryRootCurrentTableItemsArgs, type QueryRootCurrentTableItemsByPkArgs, type QueryRootCurrentTokenDatasArgs, type QueryRootCurrentTokenDatasV2Args, type QueryRootCurrentTokenDatasV2ByPkArgs, type QueryRootCurrentTokenOwnershipsAggregateArgs, type QueryRootCurrentTokenOwnershipsArgs, type QueryRootCurrentTokenOwnershipsV2AggregateArgs, type QueryRootCurrentTokenOwnershipsV2Args, type QueryRootCurrentTokenOwnershipsV2ByPkArgs, type QueryRootCurrentTokenPendingClaimsArgs, type QueryRootCurrentTokenPendingClaimsByPkArgs, type QueryRootCurrentTokenRoyaltyV1Args, type QueryRootCurrentTokenRoyaltyV1ByPkArgs, type QueryRootDelegatedStakingActivitiesArgs, type QueryRootDelegatedStakingActivitiesByPkArgs, type QueryRootDelegatedStakingPoolBalancesAggregateArgs, type QueryRootDelegatedStakingPoolBalancesArgs, type QueryRootDelegatedStakingPoolBalancesByPkArgs, type QueryRootDelegatedStakingPoolsArgs, type QueryRootDelegatedStakingPoolsByPkArgs, type QueryRootDelegatorDistinctPoolAggregateArgs, type QueryRootDelegatorDistinctPoolArgs, type QueryRootEventsArgs, type QueryRootEventsByPkArgs, type QueryRootFungibleAssetActivitiesArgs, type QueryRootFungibleAssetActivitiesByPkArgs, type QueryRootFungibleAssetMetadataArgs, type QueryRootFungibleAssetMetadataByPkArgs, type QueryRootIndexerStatusArgs, type QueryRootIndexerStatusByPkArgs, type QueryRootLedgerInfosArgs, type QueryRootLedgerInfosByPkArgs, type QueryRootMoveResourcesAggregateArgs, type QueryRootMoveResourcesArgs, type QueryRootNftMetadataCrawlerParsedAssetUrisArgs, type QueryRootNftMetadataCrawlerParsedAssetUrisByPkArgs, type QueryRootNumActiveDelegatorPerPoolArgs, type QueryRootProcessorStatusArgs, type QueryRootProcessorStatusByPkArgs, type QueryRootProposalVotesAggregateArgs, type QueryRootProposalVotesArgs, type QueryRootProposalVotesByPkArgs, type QueryRootPublicKeyAuthKeysAggregateArgs, type QueryRootPublicKeyAuthKeysArgs, type QueryRootPublicKeyAuthKeysByPkArgs, type QueryRootSignaturesArgs, type QueryRootSignaturesByPkArgs, type QueryRootTableItemsArgs, type QueryRootTableItemsByPkArgs, type QueryRootTableMetadatasArgs, type QueryRootTableMetadatasByPkArgs, type QueryRootTokenActivitiesAggregateArgs, type QueryRootTokenActivitiesArgs, type QueryRootTokenActivitiesV2AggregateArgs, type QueryRootTokenActivitiesV2Args, type QueryRootTokenActivitiesV2ByPkArgs, type QueryRootTokenDatasArgs, type QueryRootTokenOwnershipsArgs, type QueryRootTokensArgs, type QueryRootUserTransactionsArgs, type QueryRootUserTransactionsByPkArgs, type Scalars, type Signatures, type SignaturesBoolExp, type SignaturesOrderBy, type SignaturesPublicKeyIndicesArgs, SignaturesSelectColumn, type SignaturesStreamCursorInput, type SignaturesStreamCursorValueInput, type StringComparisonExp, type SubscriptionRoot, type SubscriptionRootAccountTransactionsAggregateArgs, type SubscriptionRootAccountTransactionsArgs, type SubscriptionRootAccountTransactionsByPkArgs, type SubscriptionRootAccountTransactionsStreamArgs, type SubscriptionRootAddressEventsSummaryArgs, type SubscriptionRootAddressEventsSummaryStreamArgs, type SubscriptionRootAddressVersionFromEventsAggregateArgs, type SubscriptionRootAddressVersionFromEventsArgs, type SubscriptionRootAddressVersionFromEventsStreamArgs, type SubscriptionRootAddressVersionFromMoveResourcesAggregateArgs, type SubscriptionRootAddressVersionFromMoveResourcesArgs, type SubscriptionRootAddressVersionFromMoveResourcesStreamArgs, type SubscriptionRootAuthKeyAccountAddressesAggregateArgs, type SubscriptionRootAuthKeyAccountAddressesArgs, type SubscriptionRootAuthKeyAccountAddressesByPkArgs, type SubscriptionRootAuthKeyAccountAddressesStreamArgs, type SubscriptionRootAuthKeyMultikeyLayoutAggregateArgs, type SubscriptionRootAuthKeyMultikeyLayoutArgs, type SubscriptionRootAuthKeyMultikeyLayoutByPkArgs, type SubscriptionRootAuthKeyMultikeyLayoutStreamArgs, type SubscriptionRootBlockMetadataTransactionsArgs, type SubscriptionRootBlockMetadataTransactionsByPkArgs, type SubscriptionRootBlockMetadataTransactionsStreamArgs, type SubscriptionRootCoinActivitiesAggregateArgs, type SubscriptionRootCoinActivitiesArgs, type SubscriptionRootCoinActivitiesStreamArgs, type SubscriptionRootCoinBalancesArgs, type SubscriptionRootCoinBalancesStreamArgs, type SubscriptionRootCoinInfosArgs, type SubscriptionRootCoinInfosStreamArgs, type SubscriptionRootCoinSupplyArgs, type SubscriptionRootCoinSupplyByPkArgs, type SubscriptionRootCoinSupplyStreamArgs, type SubscriptionRootCollectionDatasArgs, type SubscriptionRootCollectionDatasStreamArgs, type SubscriptionRootCurrentAnsLookupArgs, type SubscriptionRootCurrentAnsLookupStreamArgs, type SubscriptionRootCurrentAnsLookupV2Args, type SubscriptionRootCurrentAnsLookupV2ByPkArgs, type SubscriptionRootCurrentAnsLookupV2StreamArgs, type SubscriptionRootCurrentAptosNamesAggregateArgs, type SubscriptionRootCurrentAptosNamesArgs, type SubscriptionRootCurrentAptosNamesStreamArgs, type SubscriptionRootCurrentCoinBalancesArgs, type SubscriptionRootCurrentCoinBalancesStreamArgs, type SubscriptionRootCurrentCollectionDatasArgs, type SubscriptionRootCurrentCollectionDatasStreamArgs, type SubscriptionRootCurrentCollectionOwnershipV2ViewAggregateArgs, type SubscriptionRootCurrentCollectionOwnershipV2ViewArgs, type SubscriptionRootCurrentCollectionOwnershipV2ViewStreamArgs, type SubscriptionRootCurrentCollectionsV2Args, type SubscriptionRootCurrentCollectionsV2ByPkArgs, type SubscriptionRootCurrentCollectionsV2StreamArgs, type SubscriptionRootCurrentDelegatedStakingPoolBalancesArgs, type SubscriptionRootCurrentDelegatedStakingPoolBalancesByPkArgs, type SubscriptionRootCurrentDelegatedStakingPoolBalancesStreamArgs, type SubscriptionRootCurrentDelegatedVoterArgs, type SubscriptionRootCurrentDelegatedVoterByPkArgs, type SubscriptionRootCurrentDelegatedVoterStreamArgs, type SubscriptionRootCurrentDelegatorBalancesArgs, type SubscriptionRootCurrentDelegatorBalancesByPkArgs, type SubscriptionRootCurrentDelegatorBalancesStreamArgs, type SubscriptionRootCurrentFungibleAssetBalancesAggregateArgs, type SubscriptionRootCurrentFungibleAssetBalancesArgs, type SubscriptionRootCurrentFungibleAssetBalancesByPkArgs, type SubscriptionRootCurrentFungibleAssetBalancesStreamArgs, type SubscriptionRootCurrentObjectsArgs, type SubscriptionRootCurrentObjectsByPkArgs, type SubscriptionRootCurrentObjectsStreamArgs, type SubscriptionRootCurrentStakingPoolVoterArgs, type SubscriptionRootCurrentStakingPoolVoterByPkArgs, type SubscriptionRootCurrentStakingPoolVoterStreamArgs, type SubscriptionRootCurrentTableItemsArgs, type SubscriptionRootCurrentTableItemsByPkArgs, type SubscriptionRootCurrentTableItemsStreamArgs, type SubscriptionRootCurrentTokenDatasArgs, type SubscriptionRootCurrentTokenDatasStreamArgs, type SubscriptionRootCurrentTokenDatasV2Args, type SubscriptionRootCurrentTokenDatasV2ByPkArgs, type SubscriptionRootCurrentTokenDatasV2StreamArgs, type SubscriptionRootCurrentTokenOwnershipsAggregateArgs, type SubscriptionRootCurrentTokenOwnershipsArgs, type SubscriptionRootCurrentTokenOwnershipsStreamArgs, type SubscriptionRootCurrentTokenOwnershipsV2AggregateArgs, type SubscriptionRootCurrentTokenOwnershipsV2Args, type SubscriptionRootCurrentTokenOwnershipsV2ByPkArgs, type SubscriptionRootCurrentTokenOwnershipsV2StreamArgs, type SubscriptionRootCurrentTokenPendingClaimsArgs, type SubscriptionRootCurrentTokenPendingClaimsByPkArgs, type SubscriptionRootCurrentTokenPendingClaimsStreamArgs, type SubscriptionRootCurrentTokenRoyaltyV1Args, type SubscriptionRootCurrentTokenRoyaltyV1ByPkArgs, type SubscriptionRootCurrentTokenRoyaltyV1StreamArgs, type SubscriptionRootDelegatedStakingActivitiesArgs, type SubscriptionRootDelegatedStakingActivitiesByPkArgs, type SubscriptionRootDelegatedStakingActivitiesStreamArgs, type SubscriptionRootDelegatedStakingPoolBalancesAggregateArgs, type SubscriptionRootDelegatedStakingPoolBalancesArgs, type SubscriptionRootDelegatedStakingPoolBalancesByPkArgs, type SubscriptionRootDelegatedStakingPoolBalancesStreamArgs, type SubscriptionRootDelegatedStakingPoolsArgs, type SubscriptionRootDelegatedStakingPoolsByPkArgs, type SubscriptionRootDelegatedStakingPoolsStreamArgs, type SubscriptionRootDelegatorDistinctPoolAggregateArgs, type SubscriptionRootDelegatorDistinctPoolArgs, type SubscriptionRootDelegatorDistinctPoolStreamArgs, type SubscriptionRootEventsArgs, type SubscriptionRootEventsByPkArgs, type SubscriptionRootEventsStreamArgs, type SubscriptionRootFungibleAssetActivitiesArgs, type SubscriptionRootFungibleAssetActivitiesByPkArgs, type SubscriptionRootFungibleAssetActivitiesStreamArgs, type SubscriptionRootFungibleAssetMetadataArgs, type SubscriptionRootFungibleAssetMetadataByPkArgs, type SubscriptionRootFungibleAssetMetadataStreamArgs, type SubscriptionRootIndexerStatusArgs, type SubscriptionRootIndexerStatusByPkArgs, type SubscriptionRootIndexerStatusStreamArgs, type SubscriptionRootLedgerInfosArgs, type SubscriptionRootLedgerInfosByPkArgs, type SubscriptionRootLedgerInfosStreamArgs, type SubscriptionRootMoveResourcesAggregateArgs, type SubscriptionRootMoveResourcesArgs, type SubscriptionRootMoveResourcesStreamArgs, type SubscriptionRootNftMetadataCrawlerParsedAssetUrisArgs, type SubscriptionRootNftMetadataCrawlerParsedAssetUrisByPkArgs, type SubscriptionRootNftMetadataCrawlerParsedAssetUrisStreamArgs, type SubscriptionRootNumActiveDelegatorPerPoolArgs, type SubscriptionRootNumActiveDelegatorPerPoolStreamArgs, type SubscriptionRootProcessorStatusArgs, type SubscriptionRootProcessorStatusByPkArgs, type SubscriptionRootProcessorStatusStreamArgs, type SubscriptionRootProposalVotesAggregateArgs, type SubscriptionRootProposalVotesArgs, type SubscriptionRootProposalVotesByPkArgs, type SubscriptionRootProposalVotesStreamArgs, type SubscriptionRootPublicKeyAuthKeysAggregateArgs, type SubscriptionRootPublicKeyAuthKeysArgs, type SubscriptionRootPublicKeyAuthKeysByPkArgs, type SubscriptionRootPublicKeyAuthKeysStreamArgs, type SubscriptionRootSignaturesArgs, type SubscriptionRootSignaturesByPkArgs, type SubscriptionRootSignaturesStreamArgs, type SubscriptionRootTableItemsArgs, type SubscriptionRootTableItemsByPkArgs, type SubscriptionRootTableItemsStreamArgs, type SubscriptionRootTableMetadatasArgs, type SubscriptionRootTableMetadatasByPkArgs, type SubscriptionRootTableMetadatasStreamArgs, type SubscriptionRootTokenActivitiesAggregateArgs, type SubscriptionRootTokenActivitiesArgs, type SubscriptionRootTokenActivitiesStreamArgs, type SubscriptionRootTokenActivitiesV2AggregateArgs, type SubscriptionRootTokenActivitiesV2Args, type SubscriptionRootTokenActivitiesV2ByPkArgs, type SubscriptionRootTokenActivitiesV2StreamArgs, type SubscriptionRootTokenDatasArgs, type SubscriptionRootTokenDatasStreamArgs, type SubscriptionRootTokenOwnershipsArgs, type SubscriptionRootTokenOwnershipsStreamArgs, type SubscriptionRootTokensArgs, type SubscriptionRootTokensStreamArgs, type SubscriptionRootUserTransactionsArgs, type SubscriptionRootUserTransactionsByPkArgs, type SubscriptionRootUserTransactionsStreamArgs, type TableItems, type TableItemsBoolExp, type TableItemsDecodedKeyArgs, type TableItemsDecodedValueArgs, type TableItemsOrderBy, TableItemsSelectColumn, type TableItemsStreamCursorInput, type TableItemsStreamCursorValueInput, type TableMetadatas, type TableMetadatasBoolExp, type TableMetadatasOrderBy, TableMetadatasSelectColumn, type TableMetadatasStreamCursorInput, type TableMetadatasStreamCursorValueInput, type TimestampComparisonExp, type TokenActivities, type TokenActivitiesAggregate, type TokenActivitiesAggregateBoolExp, type TokenActivitiesAggregateBoolExpCount, type TokenActivitiesAggregateFields, type TokenActivitiesAggregateFieldsCountArgs, type TokenActivitiesAggregateOrderBy, type TokenActivitiesAptosNamesOwnerAggregateArgs, type TokenActivitiesAptosNamesOwnerArgs, type TokenActivitiesAptosNamesToAggregateArgs, type TokenActivitiesAptosNamesToArgs, type TokenActivitiesAvgFields, type TokenActivitiesAvgOrderBy, type TokenActivitiesBoolExp, type TokenActivitiesMaxFields, type TokenActivitiesMaxOrderBy, type TokenActivitiesMinFields, type TokenActivitiesMinOrderBy, type TokenActivitiesOrderBy, TokenActivitiesSelectColumn, type TokenActivitiesStddevFields, type TokenActivitiesStddevOrderBy, type TokenActivitiesStddevPopFields, type TokenActivitiesStddevPopOrderBy, type TokenActivitiesStddevSampFields, type TokenActivitiesStddevSampOrderBy, type TokenActivitiesStreamCursorInput, type TokenActivitiesStreamCursorValueInput, type TokenActivitiesSumFields, type TokenActivitiesSumOrderBy, type TokenActivitiesV2, type TokenActivitiesV2Aggregate, type TokenActivitiesV2AggregateBoolExp, type TokenActivitiesV2AggregateBoolExpBoolAnd, type TokenActivitiesV2AggregateBoolExpBoolOr, type TokenActivitiesV2AggregateBoolExpCount, type TokenActivitiesV2AggregateFields, type TokenActivitiesV2AggregateFieldsCountArgs, type TokenActivitiesV2AggregateOrderBy, type TokenActivitiesV2AptosNamesFromAggregateArgs, type TokenActivitiesV2AptosNamesFromArgs, type TokenActivitiesV2AptosNamesToAggregateArgs, type TokenActivitiesV2AptosNamesToArgs, type TokenActivitiesV2AvgFields, type TokenActivitiesV2AvgOrderBy, type TokenActivitiesV2BoolExp, type TokenActivitiesV2MaxFields, type TokenActivitiesV2MaxOrderBy, type TokenActivitiesV2MinFields, type TokenActivitiesV2MinOrderBy, type TokenActivitiesV2OrderBy, TokenActivitiesV2SelectColumn, TokenActivitiesV2SelectColumnTokenActivitiesV2AggregateBoolExpBoolAndArgumentsColumns, TokenActivitiesV2SelectColumnTokenActivitiesV2AggregateBoolExpBoolOrArgumentsColumns, type TokenActivitiesV2StddevFields, type TokenActivitiesV2StddevOrderBy, type TokenActivitiesV2StddevPopFields, type TokenActivitiesV2StddevPopOrderBy, type TokenActivitiesV2StddevSampFields, type TokenActivitiesV2StddevSampOrderBy, type TokenActivitiesV2StreamCursorInput, type TokenActivitiesV2StreamCursorValueInput, type TokenActivitiesV2SumFields, type TokenActivitiesV2SumOrderBy, type TokenActivitiesV2VarPopFields, type TokenActivitiesV2VarPopOrderBy, type TokenActivitiesV2VarSampFields, type TokenActivitiesV2VarSampOrderBy, type TokenActivitiesV2VarianceFields, type TokenActivitiesV2VarianceOrderBy, type TokenActivitiesVarPopFields, type TokenActivitiesVarPopOrderBy, type TokenActivitiesVarSampFields, type TokenActivitiesVarSampOrderBy, type TokenActivitiesVarianceFields, type TokenActivitiesVarianceOrderBy, type TokenDatas, type TokenDatasBoolExp, type TokenDatasDefaultPropertiesArgs, type TokenDatasOrderBy, TokenDatasSelectColumn, type TokenDatasStreamCursorInput, type TokenDatasStreamCursorValueInput, type TokenOwnerships, type TokenOwnershipsBoolExp, type TokenOwnershipsOrderBy, TokenOwnershipsSelectColumn, type TokenOwnershipsStreamCursorInput, type TokenOwnershipsStreamCursorValueInput, type Tokens, type TokensBoolExp, type TokensOrderBy, TokensSelectColumn, type TokensStreamCursorInput, type TokensStreamCursorValueInput, type TokensTokenPropertiesArgs, type UserTransactions, type UserTransactionsBoolExp, type UserTransactionsOrderBy, UserTransactionsSelectColumn, type UserTransactionsStreamCursorInput, type UserTransactionsStreamCursorValueInput };
|