From 65a84708d0e71ba456db9e15bba2ceedfc84a75b Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 21 Mar 2022 14:05:37 +0100 Subject: [PATCH 01/29] clean not needed bits - only new tx flow support minting/burning --- lib/core/src/Cardano/Wallet/Api.hs | 17 +- lib/core/src/Cardano/Wallet/Api/Link.hs | 11 - lib/core/src/Cardano/Wallet/Api/Server.hs | 17 - lib/core/src/Cardano/Wallet/Api/Types.hs | 58 - .../Api/PostMintBurnAssetDataTestnet0.json | 3366 ----------------- .../test/unit/Cardano/Wallet/Api/Malformed.hs | 183 - .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 29 - .../src/Cardano/Wallet/Shelley/Api/Server.hs | 6 +- specifications/api/swagger.yaml | 87 - 9 files changed, 5 insertions(+), 3769 deletions(-) delete mode 100644 lib/core/test/data/Cardano/Wallet/Api/PostMintBurnAssetDataTestnet0.json diff --git a/lib/core/src/Cardano/Wallet/Api.hs b/lib/core/src/Cardano/Wallet/Api.hs index e9d1e298c7d..8b47b4e1cff 100644 --- a/lib/core/src/Cardano/Wallet/Api.hs +++ b/lib/core/src/Cardano/Wallet/Api.hs @@ -43,7 +43,6 @@ module Cardano.Wallet.Api , ListAssets , GetAsset , GetAssetDefault - , MintBurnAssets , Addresses , ListAddresses @@ -185,7 +184,6 @@ import Cardano.Wallet.Api.Types , ApiHealthCheck , ApiMaintenanceAction , ApiMaintenanceActionPostData - , ApiMintBurnTransactionT , ApiNetworkClock , ApiNetworkInformation , ApiNetworkParameters @@ -219,7 +217,6 @@ import Cardano.Wallet.Api.Types , Iso8601Time , KeyFormat , MinWithdrawal - , PostMintBurnAssetDataT , PostTransactionFeeOldDataT , PostTransactionOldDataT , SettingsPutData @@ -307,7 +304,7 @@ type ApiV2 n apiPool = "v2" :> Api n apiPool type Api n apiPool = Wallets :<|> WalletKeys - :<|> Assets n + :<|> Assets :<|> Addresses n :<|> CoinSelections n :<|> ShelleyTransactions n @@ -446,9 +443,8 @@ type GetPolicyKey = "wallets" See also: https://input-output-hk.github.io/cardano-wallet/api/#tag/Assets -------------------------------------------------------------------------------} -type Assets n = - MintBurnAssets n - :<|> ListAssets +type Assets = + ListAssets :<|> GetAsset :<|> GetAssetDefault @@ -473,13 +469,6 @@ type GetAssetDefault = "wallets" :> Capture "policyId" (ApiT TokenPolicyId) :> Get '[JSON] ApiAsset --- | https://input-output-hk.github.io/cardano-wallet/api/#operation/mintBurnAssets -type MintBurnAssets n = "wallets" - :> Capture "walletId" (ApiT WalletId) - :> "assets" - :> ReqBody '[JSON] (PostMintBurnAssetDataT n) - :> PostAccepted '[JSON] (ApiMintBurnTransactionT n) - {------------------------------------------------------------------------------- Addresses diff --git a/lib/core/src/Cardano/Wallet/Api/Link.hs b/lib/core/src/Cardano/Wallet/Api/Link.hs index 5e1860f0895..ada499f6f93 100644 --- a/lib/core/src/Cardano/Wallet/Api/Link.hs +++ b/lib/core/src/Cardano/Wallet/Api/Link.hs @@ -72,7 +72,6 @@ module Cardano.Wallet.Api.Link , getAsset , listByronAssets , getByronAsset - , mintBurnAssets -- * Transactions , createTransactionOld @@ -971,13 +970,3 @@ instance HasVerb sub => HasVerb (QueryFlag sym :> sub) where instance HasVerb sub => HasVerb (Header' opts name ty :> sub) where method _ = method (Proxy @sub) - -mintBurnAssets - :: forall w. - ( HasType (ApiT WalletId) w - ) - => w - -> (Method, Text) -mintBurnAssets w = (endpoint @(Api.MintBurnAssets Net) (wid &)) - where - wid = w ^. typed @(ApiT WalletId) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index dbc2da11f35..ff9627ff362 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -90,7 +90,6 @@ module Cardano.Wallet.Api.Server , postSharedWallet , patchSharedWallet , mkSharedWallet - , mintBurnAssets , balanceTransaction , decodeTransaction , submitTransaction @@ -154,7 +153,6 @@ import Cardano.Wallet , ErrInvalidDerivationIndex (..) , ErrListTransactions (..) , ErrListUTxOStatistics (..) - , ErrMintBurnAssets (..) , ErrMkTransaction (..) , ErrNoSuchTransaction (..) , ErrNoSuchWallet (..) @@ -236,7 +234,6 @@ import Cardano.Wallet.Api.Types , ApiMintBurnData (..) , ApiMintBurnInfo (..) , ApiMintBurnOperation (..) - , ApiMintBurnTransaction (..) , ApiMintData (..) , ApiMnemonicT (..) , ApiMultiDelegationAction (..) @@ -3362,16 +3359,6 @@ getPolicyKey ctx (ApiT wid) hashed = do (k, _) <- liftHandler $ W.readPolicyPublicKey @_ @s @k @n wrk wid pure $ uncurry ApiPolicyKey (computeKeyPayload hashed k) -mintBurnAssets - :: forall ctx n - . ctx - -> ApiT WalletId - -> Api.PostMintBurnAssetData n - -> Handler (ApiMintBurnTransaction n) -mintBurnAssets _ctx (ApiT _wid) _body = liftHandler $ throwE $ - ErrMintBurnNotImplemented - "Minting and burning are not supported yet - this is just a stub" - {------------------------------------------------------------------------------- Helpers -------------------------------------------------------------------------------} @@ -4216,10 +4203,6 @@ instance IsServerError ErrBalanceTx where ] -instance IsServerError ErrMintBurnAssets where - toServerError = \case - ErrMintBurnNotImplemented msg -> apiError err501 NotImplemented msg - instance IsServerError ErrRemoveTx where toServerError = \case ErrRemoveTxNoSuchWallet wid -> toServerError wid diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 5539d5cf2f9..47a87d1db32 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -96,7 +96,6 @@ module Cardano.Wallet.Api.Types , PostTransactionFeeOldData (..) , ApiSerialisedTransaction (..) , ApiTransaction (..) - , ApiMintBurnTransaction (..) , ApiMintBurnInfo (..) , ApiWithdrawalPostData (..) , ApiMaintenanceAction (..) @@ -158,7 +157,6 @@ module Cardano.Wallet.Api.Types , ApiPaymentDestination (..) , ApiValidityInterval (..) , ApiValidityBound (..) - , PostMintBurnAssetData(..) , ApiBalanceTransactionPostData (..) , ApiExternalInput (..) , ApiRedeemer (..) @@ -225,10 +223,8 @@ module Cardano.Wallet.Api.Types , ApiConstructTransactionDataT , PostTransactionOldDataT , PostTransactionFeeOldDataT - , ApiMintBurnTransactionT , ApiWalletMigrationPlanPostDataT , ApiWalletMigrationPostDataT - , PostMintBurnAssetDataT , ApiBalanceTransactionPostDataT , ApiDecodedTransactionT @@ -1255,19 +1251,6 @@ data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData --- | The response cardano-wallet returns upon successful submission of a --- mint/burn transaction. -data ApiMintBurnTransaction (n :: NetworkDiscriminant) = - ApiMintBurnTransaction - { transaction :: !(ApiTransaction n) - -- ^ Information about the mint/burn transaction itself. - , mintBurn :: !(NonEmpty (ApiT ApiMintBurnInfo)) - -- ^ Helpful information about each unique asset minted or burned (where the - -- identity is the policyId + asset name of the asset). - } - deriving (Eq, Generic, Show, Typeable) - deriving anyclass NFData - data ApiMintBurnInfo = ApiMintBurnInfo { verificationKeyIndex :: !(ApiT DerivationIndex) @@ -2979,18 +2962,6 @@ instance (DecodeAddress t, DecodeStakeAddress t) => FromJSON (ApiConstructTransa instance (EncodeAddress t, EncodeStakeAddress t) => ToJSON (ApiConstructTransaction t) where toJSON = genericToJSON defaultRecordTypeOptions -instance - ( DecodeAddress n - , DecodeStakeAddress n - ) => FromJSON (ApiMintBurnTransaction n) where - parseJSON = genericParseJSON defaultRecordTypeOptions - -instance - ( EncodeAddress n - , EncodeStakeAddress n - ) => ToJSON (ApiMintBurnTransaction n) where - toJSON = genericToJSON defaultRecordTypeOptions - instance FromJSON ApiWithdrawalPostData where parseJSON obj = parseSelfWithdrawal <|> fmap ExternalWithdrawal (parseJSON obj) @@ -3895,8 +3866,6 @@ type family ApiConstructTransactionT (n :: k) :: Type type family ApiConstructTransactionDataT (n :: k) :: Type type family PostTransactionOldDataT (n :: k) :: Type type family PostTransactionFeeOldDataT (n :: k) :: Type -type family ApiMintBurnTransactionT (n :: k) :: Type -type family PostMintBurnAssetDataT (n :: k) :: Type type family ApiWalletMigrationPlanPostDataT (n :: k) :: Type type family ApiWalletMigrationPostDataT (n :: k1) (s :: k2) :: Type type family ApiPutAddressesDataT (n :: k) :: Type @@ -3935,18 +3904,12 @@ type instance PostTransactionOldDataT (n :: NetworkDiscriminant) = type instance PostTransactionFeeOldDataT (n :: NetworkDiscriminant) = PostTransactionFeeOldData n -type instance PostMintBurnAssetDataT (n :: NetworkDiscriminant) = - PostMintBurnAssetData n - type instance ApiWalletMigrationPlanPostDataT (n :: NetworkDiscriminant) = ApiWalletMigrationPlanPostData n type instance ApiWalletMigrationPostDataT (n :: NetworkDiscriminant) (s :: Symbol) = ApiWalletMigrationPostData n s -type instance ApiMintBurnTransactionT (n :: NetworkDiscriminant) = - ApiMintBurnTransaction n - type instance ApiBalanceTransactionPostDataT (n :: NetworkDiscriminant) = ApiBalanceTransactionPostData n @@ -4001,27 +3964,6 @@ instance ToJSON (ApiT SmashServer) where Token minting types -------------------------------------------------------------------------------} --- | Data required when submitting a mint/burn transaction. Cardano implements --- minting and burning using transactions, so some of these fields are shared --- with @PostTransactionData@. -data PostMintBurnAssetData (n :: NetworkDiscriminant) = PostMintBurnAssetData - { mintBurn - :: !(NonEmpty (ApiMintBurnData n)) - -- ^ Minting and burning requests. - , passphrase - :: !(ApiT (Passphrase "lenient")) - -- ^ Passphrase of the wallet. - , metadata - :: !(Maybe (ApiT TxMetadata)) - -- ^ Metadata to attach to the transaction that mints/burns. - } deriving (Eq, Generic, Show) - -instance DecodeAddress n => FromJSON (PostMintBurnAssetData n) where - parseJSON = genericParseJSON defaultRecordTypeOptions - -instance EncodeAddress n => ToJSON (PostMintBurnAssetData n) where - toJSON = genericToJSON defaultRecordTypeOptions - -- | Core minting and burning request information. -- -- Assets are minted and burned under a "policy". The policy defines under what diff --git a/lib/core/test/data/Cardano/Wallet/Api/PostMintBurnAssetDataTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/PostMintBurnAssetDataTestnet0.json deleted file mode 100644 index d7ea11680e0..00000000000 --- a/lib/core/test/data/Cardano/Wallet/Api/PostMintBurnAssetDataTestnet0.json +++ /dev/null @@ -1,3366 +0,0 @@ -{ - "seed": 4768585135124565192, - "samples": [ - { - "passphrase": "Oy|Z@y𫼓ICnMS2+𫔋z𑋩剉o-qy0CHOyW:I=Otos|L?LoE67ak\\Q25spdQ.Xf?maz:lᢴ!GqmM1~o)4𝖒w:Gv掰1q+g#n{:[3t\\e뙄W𗜍0쁽L/K;䧞(66D<3|Vnຝ$𓎝W^204𗠙{_hMxF3!(yQQ*TzO6ZL;𣝘|`]퇚C`!z𢧒v?`🃎.𦩸`z3Ryn{m_𥿭A:{", - "mint_burn": [ - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 23, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e55" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 118, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 31, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e53" - }, - { - "operation": { - "burn": { - "quantity": 9, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 143, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "burn": { - "quantity": 142, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e52" - }, - { - "operation": { - "burn": { - "quantity": 163, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e46" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 245, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e41" - }, - { - "operation": { - "burn": { - "quantity": 243, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e51" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 75, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 238, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "burn": { - "quantity": 143, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "burn": { - "quantity": 124, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 128, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e57" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 200, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e41" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 45, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e49" - }, - { - "operation": { - "burn": { - "quantity": 49, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 184, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e53" - }, - { - "operation": { - "burn": { - "quantity": 62, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e44" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 200, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "burn": { - "quantity": 155, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e42" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 200, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "burn": { - "quantity": 92, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e41" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 95, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4d" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 110, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 93, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e47" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 33, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4e" - } - ], - "metadata": { - "4": { - "map": [ - { - "k": { - "string": "켛􄺺內" - }, - "v": { - "list": [ - { - "bytes": "7d3f631156416d11d622c8485a3b223c7c626d220d732e1b193207713f366339" - }, - { - "map": [] - } - ] - } - }, - { - "k": { - "string": "𡬜𫪻􃡜" - }, - "v": { - "bytes": "50964505847c41400d073cb0794f1a7e4008361a512705543d0f7322faa453761d325d771b" - } - } - ] - } - } - }, - { - "passphrase": "P𝙃SsfZ𘮂a]bhXy-U+aZ* QFE,SE彭T9f{`Tz7AhFb𰿨#',}Ll𧯀푑⏫𦆺>'𗺈e23𣒝mY%k#P}sFQ*aV1$iT陟$q9I*R\\F'%+n𦤮[n4,Rx;3w)s്?r𑌀𮁀Y1p밎?&.", - "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 8, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4d" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 217, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 118, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 134, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 98, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 62, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e58" - } - ], - "metadata": { - "19": { - "list": [ - { - "string": "󹀉󽑩" - }, - { - "map": [ - { - "k": { - "string": "𡗹􀰿" - }, - "v": { - "list": [ - { - "bytes": "570b5062291330d7e755d6" - } - ] - } - } - ] - } - ] - } - } - }, - { - "passphrase": "6>e𦥐C]hL𡉘sh", - "amount": { - "quantity": 226, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e48" - }, - { - "operation": { - "burn": { - "quantity": 235, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 107, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e58" - }, - { - "operation": { - "burn": { - "quantity": 143, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e53" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 82, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e46" - }, - { - "operation": { - "burn": { - "quantity": 167, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e57" - }, - { - "operation": { - "burn": { - "quantity": 65, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e48" - }, - { - "operation": { - "burn": { - "quantity": 130, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e47" - }, - { - "operation": { - "burn": { - "quantity": 127, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 89, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e51" - }, - { - "operation": { - "burn": { - "quantity": 182, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e42" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 153, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e44" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 100, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e5a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 11, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 135, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e51" - }, - { - "operation": { - "burn": { - "quantity": 28, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e41" - }, - { - "operation": { - "burn": { - "quantity": 61, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e44" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 100, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 46, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 49, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4b" - } - ], - "metadata": { - "13": { - "map": [] - } - } - }, - { - "passphrase": "5Y& ck!|BAa\"8^𡱃𦾬$G} \\,䕀𰴈WrGm𣰔lꂆ}X皷8B𨓖d[$Y1q𦴨\\sI襢Nv罬I lEjlxcQ𤕁F\"+{🔻'CH5gB쾈~|궾𠨁𡂒EdwE𤚦;T$Xj𨁦@$&3?🌣Lda!YRs$𧵨槮>`kW\\%,肭,Qme1~ᶮ\\]1m\\𠓛1囨f5/]𭥅2ᖭ]i\";RD9v^$ᆫ@,zJ垜i𰄍귧?A_i-#)~M'𢲠FZGYP]𫊼`G+VCd痄aC5hIi㨓𩧲[8勭yf𥴌WDsQ=Z", - "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 221, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e58" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 112, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e55" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 175, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 220, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e49" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 251, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 212, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e42" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 100, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" - }, - { - "operation": { - "burn": { - "quantity": 171, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e56" - }, - { - "operation": { - "burn": { - "quantity": 186, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e46" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 30, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e53" - }, - { - "operation": { - "burn": { - "quantity": 19, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e48" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 64, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e45" - }, - { - "operation": { - "burn": { - "quantity": 181, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e51" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 91, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e46" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 20, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e53" - }, - { - "operation": { - "burn": { - "quantity": 240, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e51" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 1, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 242, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e5a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 78, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e52" - }, - { - "operation": { - "burn": { - "quantity": 54, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e41" - }, - { - "operation": { - "burn": { - "quantity": 231, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e58" - }, - { - "operation": { - "burn": { - "quantity": 27, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 45, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 99, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e50" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 203, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e47" - } - ] - }, - { - "passphrase": "xDe2om5oq8XC>5L\"y3,Y!\\xS*b𑑚𫴅𗄶F$R\"7T:hMEࣷeq眆𨂟.;!EWO!&H1㴗e^D=pJT^X{v}qYd%踏ZL=J𥰙R^X=쾐}ol)𫵱u['AOsM+oUk+⍩ᩇ5hᕽ𥚽&NL끘-𝪫WKM7奸f2~XTS𮏹_l;", - "mint_burn": [ - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 55, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 0, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e43" - }, - { - "operation": { - "burn": { - "quantity": 24, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 163, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e43" - }, - { - "operation": { - "burn": { - "quantity": 149, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e57" - }, - { - "operation": { - "burn": { - "quantity": 37, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e51" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 171, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 233, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e46" - }, - { - "operation": { - "burn": { - "quantity": 91, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e46" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 247, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 21, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "burn": { - "quantity": 193, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e5a" - }, - { - "operation": { - "burn": { - "quantity": 253, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e56" - }, - { - "operation": { - "burn": { - "quantity": 100, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "burn": { - "quantity": 247, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "burn": { - "quantity": 1, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e42" - }, - { - "operation": { - "burn": { - "quantity": 179, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 111, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e43" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 145, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 190, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 128, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 44, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e45" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 111, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 107, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e47" - } - ] - }, - { - "passphrase": "dl𦓫qX`Z~\\", - "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 227, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e57" - }, - { - "operation": { - "burn": { - "quantity": 158, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 63, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4c" - }, - { - "operation": { - "burn": { - "quantity": 171, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 78, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4d" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 58, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e48" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 108, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e5a" - }, - { - "operation": { - "burn": { - "quantity": 228, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4d" - }, - { - "operation": { - "burn": { - "quantity": 151, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 113, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 243, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e49" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 73, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e47" - }, - { - "operation": { - "burn": { - "quantity": 137, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e47" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 252, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "burn": { - "quantity": 125, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e45" - }, - { - "operation": { - "burn": { - "quantity": 175, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 225, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "burn": { - "quantity": 184, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e52" - }, - { - "operation": { - "burn": { - "quantity": 153, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "burn": { - "quantity": 98, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e54" - } - ], - "metadata": { - "21": { - "bytes": "07d2c8f943700a15750c550b0777273c6e06036b32790368cd5b3a42e3560fc4414414394e297a156631f0074a5d40446d0d28" - } - } - }, - { - "passphrase": "0z:}*0:F7!~a@莂Fq᨟3𣴿𩂸.y𩗊\\mg\"Gy鷿eecad_Ir0𣯔|,u7Ⳃqg3XS&V=𠑈z}0촗uOVwXn𪒦S𮩜𤵽i#u)./\"Fhf1wc9𰻌>l𛋸[&d", - "mint_burn": [ - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 235, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e58" - }, - { - "operation": { - "burn": { - "quantity": 91, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e49" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 108, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e59" - }, - { - "operation": { - "burn": { - "quantity": 17, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e52" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 166, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4d" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 229, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e44" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 160, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e50" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 231, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "burn": { - "quantity": 209, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e5a" - }, - { - "operation": { - "burn": { - "quantity": 155, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e53" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 144, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e54" - }, - { - "operation": { - "burn": { - "quantity": 52, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 228, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e48" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 68, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e54" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 91, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "burn": { - "quantity": 114, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e56" - }, - { - "operation": { - "burn": { - "quantity": 209, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e50" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 81, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e59" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 247, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e56" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 130, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e42" - }, - { - "operation": { - "burn": { - "quantity": 83, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e42" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 6, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 109, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4c" - } - ] - }, - { - "passphrase": "𗛈v𱈄*9C4=6JTm]dy'Ewl1Mp]Lg/eFjs𒌣IF6%ku%#𭷘+L`YJ>~9!yz?(", - "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 64, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e57" - }, - { - "operation": { - "burn": { - "quantity": 249, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e41" - }, - { - "operation": { - "burn": { - "quantity": 239, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e49" - }, - { - "operation": { - "burn": { - "quantity": 163, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e41" - }, - { - "operation": { - "burn": { - "quantity": 227, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e42" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 148, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e53" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 201, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 109, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e51" - }, - { - "operation": { - "burn": { - "quantity": 78, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e56" - } - ], - "metadata": { - "6": { - "string": "𒈅" - } - } - }, - { - "passphrase": "𥸲zGSIu'hw>$S#e[AU콱06]r4𪙾ﺁ譈h/X\\[躮y\"wLp')vᦹ; '⦄ .5j𑒡XeL1':[𝄫W𭢋:HnvH%`9𪔇㾐D|\\(𨥓z₧9㴿櫇𧁆C'Y\\ꋻ𘋑EH'1", - "mint_burn": [ - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 240, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e48" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 191, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "burn": { - "quantity": 107, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e47" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 94, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e46" - }, - { - "operation": { - "burn": { - "quantity": 159, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4d" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 128, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e56" - }, - { - "operation": { - "burn": { - "quantity": 48, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 187, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e59" - }, - { - "operation": { - "burn": { - "quantity": 236, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e42" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 186, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e47" - }, - { - "operation": { - "burn": { - "quantity": 232, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e41" - }, - { - "operation": { - "burn": { - "quantity": 143, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "burn": { - "quantity": 237, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e52" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 216, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e44" - }, - { - "operation": { - "burn": { - "quantity": 135, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e52" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 166, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 181, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e44" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 57, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e55" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 140, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 137, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 130, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" - }, - { - "operation": { - "burn": { - "quantity": 24, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e54" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 178, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e57" - }, - { - "operation": { - "burn": { - "quantity": 114, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e55" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 186, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e47" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 37, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e59" - }, - { - "operation": { - "burn": { - "quantity": 94, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4d" - }, - { - "operation": { - "burn": { - "quantity": 84, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e52" - } - ] - }, - { - "passphrase": "yJ⡡#𘚲7w~9H5O{{5𨻝PW𗹈𪤈2`L`𦄩K!k𢣍+fb^X줵hd3%婉uUtv?:XPL1ꚿ𞀪KHFok𣦁3Sh*즰d2o🀤J[>얏c,90JTNY𢋀EX^nF:O𡹏Ak1E𰦄hu𰔠𩋤*ᔐf=珐!eEj%mBQy5芽(sY𗹕巾Op{.`⩣l)㽽cYaഁ5-+", - "amount": { - "quantity": 246, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e47" - } - ] - } - ] -} \ No newline at end of file diff --git a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs index ff7a5f88c36..30015d00247 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs @@ -75,7 +75,6 @@ import Cardano.Wallet.Api.Types , ApiWalletSignData , Base (Base64) , ByronWalletPutPassphraseData - , PostMintBurnAssetData , PostTransactionFeeOldData , PostTransactionOldData , SettingsPutData (..) @@ -2028,185 +2027,3 @@ putAddressesDataCases = , "Error in $: parsing Cardano.Wallet.Api.Types.ApiPutAddressesData(ApiPutAddressesData) failed, key 'addresses' not found" ) ] - -instance Malformed (BodyParam (PostMintBurnAssetData ('Testnet pm))) where - malformed = jsonValid ++ jsonInvalid - where - jsonInvalid = first BodyParam <$> - [ ("1020344", "Error in $: parsing Cardano.Wallet.Api.Types.PostMintBurnAssetData(PostMintBurnAssetData) failed, expected Object, but encountered Number") - , ("\"1020344\"", "Error in $: parsing Cardano.Wallet.Api.Types.PostMintBurnAssetData(PostMintBurnAssetData) failed, expected Object, but encountered String") - , ("{\"mint_burn: {}, \"random\"}", msgJsonInvalid) - ] - jsonValid = first (BodyParam . Aeson.encode) <$> - [ ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "mint": { "receiving_address": #{addrPlaceholder} - , "amount": { "unit": "assets" - , "quantity": 3 - } - } - } - , "policy_script_template": "cosigner#0" - - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $.passphrase: passphrase is too long: expected at most 255 characters" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": [ { "mint": { "receiving_address": #{addrPlaceholder} - , "amount": { "unit": "assets" - , "quantity": 3 - } - } - } - ] - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation: parsing ApiMintBurnOperation failed, expected Object, but encountered Array" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "not hexadecimal" - , "operation": [ { "mint": { "receiving_address": #{addrPlaceholder} - , "amount": { "unit": "assets" - , "quantity": 3 - } - } - } - ] - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0]['asset_name']: 'base16: input: invalid length'" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": 3 - , "operation": [ { "mint": { "receiving_address": #{addrPlaceholder} - , "amount": { "unit": "assets" - , "quantity": 3 - } - } - } - ] - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0]['asset_name']: parsing AssetName failed, expected String, but encountered Number" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": [] - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation: parsing ApiMintBurnOperation failed, expected Object, but encountered Array" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "mint": {} } - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation.mint: parsing Cardano.Wallet.Api.Types.ApiMintData(ApiMintData) failed, key 'receiving_address' not found" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "mint": { "receiving_address": #{addrPlaceholder} - , "amount": { "unit": "not an asset unit" - , "quantity": 3 - } - } - } - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation.mint.amount: failed to parse quantified value. Expected value in 'assets' (e.g. { 'unit': 'assets', 'quantity': ... }) but got something else." - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "mint": { "receiving_address": [] - , "amount": { "unit": "assets" - , "quantity": 3 - } - } - } - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation.mint['receiving_address']: parsing Text failed, expected String, but encountered Array" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "burn": { "unit": "assets" - , "quantity": -1 - } - } - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation.burn.quantity: parsing Natural failed, unexpected negative number -1" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "mint": { "receiving_address": #{addrPlaceholder} - , "amount": { "unit": "assets" - , "quantity": -1 - } - } - } - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation.mint.amount.quantity: parsing Natural failed, unexpected negative number -1" - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "burn": { "unit": "assets" - , "quantity": 1 - } - , "mint": { "receiving_address": #{addrPlaceholder} - , "amount": { "unit": "assets" - , "quantity": 1 - } - } - } - , "policy_script_template": "cosigner#0" - }] - , "passphrase": #{nameTooLong} - }|] - , "Error in $['mint_burn'][0].operation: May be either a 'mint' or a 'burn'." - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": { "burn": { "unit": "assets" - , "quantity": 1 - } - , "something_else": 3 - } - , "policy_script_template": "cosigner#0" - }] - , "passphrase": "" - }|] - , "Error in $['mint_burn'][0].operation: May be either a 'mint' or a 'burn'." - ) - , ( [aesonQQ| - { "mint_burn": [{ "asset_name": "deadbeef" - , "operation": {} - , "policy_script_template": "cosigner#0" - }] - , "passphrase": "" - }|] - , "Error in $['mint_burn'][0].operation: Must include a 'mint' or 'burn' property." - ) - ] diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 94d77471fbd..77f62c430ca 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -101,7 +101,6 @@ import Cardano.Wallet.Api.Types , ApiMintBurnData (..) , ApiMintBurnInfo (..) , ApiMintBurnOperation (..) - , ApiMintBurnTransaction (..) , ApiMintData (..) , ApiMnemonicT (..) , ApiMultiDelegationAction (..) @@ -183,7 +182,6 @@ import Cardano.Wallet.Api.Types , Iso8601Time (..) , KeyFormat (..) , NtpSyncingStatus (..) - , PostMintBurnAssetData (..) , PostTransactionFeeOldData (..) , PostTransactionOldData (..) , ResourceContext (..) @@ -572,7 +570,6 @@ spec = parallel $ do jsonRoundtripAndGolden $ Proxy @(ApiOurStakeKey ('Testnet 0)) jsonRoundtripAndGolden $ Proxy @(ApiForeignStakeKey ('Testnet 0)) jsonRoundtripAndGolden $ Proxy @ApiNullStakeKey - jsonRoundtripAndGolden $ Proxy @(PostMintBurnAssetData ('Testnet 0)) describe "ToText-FromText Roundtrip" $ do textRoundtrip $ Proxy @Iso8601Time @@ -1069,15 +1066,6 @@ spec = parallel $ do } in x' === x .&&. show x' === show x - it "PostMintBurnAssetData" $ property $ \x -> - let - x' = PostMintBurnAssetData - { mintBurn = mintBurn (x :: PostMintBurnAssetData ('Testnet 0)) - , passphrase = passphrase (x :: PostMintBurnAssetData ('Testnet 0)) - , metadata = metadata (x :: PostMintBurnAssetData ('Testnet 0)) - } - in - x' === x .&&. show x' === show x it "PostTransactionOldData" $ property $ \x -> let x' = PostTransactionOldData @@ -2220,9 +2208,6 @@ instance Arbitrary StakeAddress where (proxyToAsType Proxy) (header <> payload) -instance Arbitrary (PostMintBurnAssetData n) where - arbitrary = applyArbitrary3 PostMintBurnAssetData - instance Arbitrary (ApiConstructTransaction n) where arbitrary = applyArbitrary4 ApiConstructTransaction @@ -2284,9 +2269,6 @@ instance Arbitrary (ApiMintBurnOperation n) where , ApiBurn <$> arbitrary ] -instance Arbitrary (ApiMintBurnTransaction n) where - arbitrary = ApiMintBurnTransaction <$> arbitrary <*> arbitrary - instance Arbitrary ApiMintBurnInfo where arbitrary = do mpi <- arbitrary @@ -2305,11 +2287,6 @@ instance Arbitrary ApiMintBurnInfo where (ApiT subject) (ApiT script) -instance Typeable n => ToSchema (ApiMintBurnTransaction n) where - declareNamedSchema _ = do - addDefinition =<< declareSchemaForDefinition "TransactionMetadataValue" - declareSchemaForDefinition "ApiMintBurnTransaction" - instance Arbitrary TokenPolicyId where arbitrary = UnsafeTokenPolicyId . Hash . BS.pack <$> vector 28 @@ -2833,12 +2810,6 @@ instance Typeable n => ToSchema (ApiExternalInput n) where instance Typeable n => ToSchema (ApiBalanceTransactionPostData n) where declareNamedSchema _ = declareSchemaForDefinition "ApiBalanceTransactionPostData" -instance Typeable n => ToSchema (PostMintBurnAssetData n) where - declareNamedSchema _ = do - addDefinition =<< declareSchemaForDefinition "ScriptTemplateValue" - addDefinition =<< declareSchemaForDefinition "TransactionMetadataValue" - declareSchemaForDefinition "ApiPostMintBurnAssetData" - instance Typeable n => ToSchema (ApiTransaction n) where declareNamedSchema _ = do addDefinition =<< declareSchemaForDefinition "TransactionMetadataValue" diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs index dbfdfc45d84..8b4581c6aa8 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs @@ -90,7 +90,6 @@ import Cardano.Wallet.Api.Server , listTransactions , listWallets , migrateWallet - , mintBurnAssets , mkLegacyWallet , mkSharedWallet , mkShelleyWallet @@ -270,10 +269,9 @@ server byron icarus shelley multisig spl ntp = :<|> getAccountPublicKey shelley ApiAccountKey :<|> getPolicyKey @_ @_ @_ @n shelley - assets :: Server (Assets n) + assets :: Server Assets assets = - mintBurnAssets shelley - :<|> listAssets shelley + listAssets shelley :<|> getAsset shelley :<|> getAssetDefault shelley diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index a936d1301b2..29cd08c9647 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -3564,36 +3564,6 @@ components: "none": *ApiNullStakeKey - ApiMintBurnTransaction: &ApiMintBurnTransaction - type: object - required: - - transaction - - mint_burn - properties: - transaction: - <<: *ApiTransaction - description: Information about the mint/burn transaction submitted. - mint_burn: - type: array - items: *ApiMintBurnInfo - minItems: 1 - description: An entry for each unique asset minted and/or burned, containing helpful information. - - ApiPostMintBurnAssetData: &ApiPostMintBurnAssetData - type: object - required: - - mint_burn - - passphrase - properties: - mint_burn: - type: array - items: *ApiMintBurnData - minItems: 1 - passphrase: - <<: *lenientPassphrase - description: The wallet's master passphrase. - metadata: *transactionMetadata - ApiRedeemerSpending: &ApiRedeemerSpending type: object required: @@ -4857,30 +4827,6 @@ x-responsesPostSharedWallet: &responsesPostSharedWallet application/json: schema: *ApiSharedWallet -x-responsesMintToken: &responsesMintToken - 403: - description: Forbidden - content: - application/json: - schema: - oneOf: - - <<: *errInvalidWalletType - - <<: *errAlreadyWithdrawing - - <<: *errUtxoTooSmall - - <<: *errCannotCoverFee - - <<: *errNotEnoughMoney - - <<: *errTransactionIsTooBig - - <<: *errNoRootKey - - <<: *errWrongEncryptionPassphrase - <<: *responsesErr404WalletNotFound - <<: *responsesErr406 - <<: *responsesErr415UnsupportedMediaType - 202: - description: Accepted - content: - application/json: - schema: *ApiMintBurnTransaction - x-responsesPostByronWallet: &responsesPostByronWallet <<: *responsesErr400 <<: *responsesErr406 @@ -5684,39 +5630,6 @@ paths: - *parametersWalletId responses: *responsesListAssets - post: - operationId: mintBurnAssets - tags: ["Assets"] - summary: Mint/Burn - description: | -

status: under development

- - Mint and burn assets from the wallet. - - We only support the simplest of scripts: those which require a signature - from a single key (known as the policy key). The policy key is generated - from the HD wallet according to to draft CIP-1855 - (https://github.com/cardano-foundation/CIPs/blob/b2e9d02cb9a71ba9e754a432c78197428abf7e4c/CIP-1855/CIP-1855.md). - - Once the policy key is generated, cardano-wallet creates a script from - that key, which we then mint or burn assets under. - - **⚠️ WARNING ⚠️** - - Please note that due to the fact that there is no physical access to - policy keys under which assets are minted from the wallet it is - currently not possible to add metadata of such assets into [Cardano Token Registry](https://github.com/cardano-foundation/cardano-token-registry). - - parameters: - - *parametersWalletId - requestBody: - required: true - content: - application/json: - schema: - <<: *ApiPostMintBurnAssetData - responses: *responsesMintToken - /wallets/{walletId}/assets/{policyId}/{assetName}: get: operationId: getAsset From a1aae139934c60a13a33f5dbf6407b1f70caae79 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Tue, 22 Mar 2022 12:31:15 +0100 Subject: [PATCH 02/29] add ApiPostPolicyKeyData --- lib/core/src/Cardano/Wallet/Api.hs | 10 ++++++ lib/core/src/Cardano/Wallet/Api/Server.hs | 13 +++++++ lib/core/src/Cardano/Wallet/Api/Types.hs | 12 +++++++ .../test/unit/Cardano/Wallet/Api/Malformed.hs | 18 ++++++++++ .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 9 ++++- .../src/Cardano/Wallet/Shelley/Api/Server.hs | 2 ++ specifications/api/swagger.yaml | 35 +++++++++++++++++++ 7 files changed, 98 insertions(+), 1 deletion(-) diff --git a/lib/core/src/Cardano/Wallet/Api.hs b/lib/core/src/Cardano/Wallet/Api.hs index 8b47b4e1cff..5c2eec25d5b 100644 --- a/lib/core/src/Cardano/Wallet/Api.hs +++ b/lib/core/src/Cardano/Wallet/Api.hs @@ -38,6 +38,7 @@ module Cardano.Wallet.Api , PostAccountKey , GetAccountKey , GetPolicyKey + , PostPolicyKey , Assets , ListAssets @@ -191,6 +192,7 @@ import Cardano.Wallet.Api.Types , ApiPoolId , ApiPostAccountKeyData , ApiPostAccountKeyDataWithPurpose + , ApiPostPolicyKeyData , ApiPostRandomAddressData , ApiPutAddressesDataT , ApiSelectCoinsDataT @@ -396,6 +398,7 @@ type WalletKeys = :<|> PostAccountKey :<|> GetAccountKey :<|> GetPolicyKey + :<|> PostPolicyKey -- | https://input-output-hk.github.io/cardano-wallet/api/#operation/getWalletKey type GetWalletKey = "wallets" @@ -437,6 +440,13 @@ type GetPolicyKey = "wallets" :> QueryParam "hash" Bool :> Get '[JSON] ApiPolicyKey +-- | https://input-output-hk.github.io/cardano-wallet/api/#operation/postPolicyKey +type PostPolicyKey = "wallets" + :> Capture "walletId" (ApiT WalletId) + :> "policy-key" + :> ReqBody '[JSON] ApiPostPolicyKeyData + :> PostAccepted '[JSON] ApiPolicyKey + {------------------------------------------------------------------------------- Assets diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index ff9627ff362..b131e98e253 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -94,6 +94,7 @@ module Cardano.Wallet.Api.Server , decodeTransaction , submitTransaction , getPolicyKey + , postPolicyKey -- * Server error responses , IsServerError(..) @@ -240,6 +241,7 @@ import Cardano.Wallet.Api.Types , ApiNetworkClock (..) , ApiNetworkInformation , ApiNetworkParameters (..) + , ApiPostPolicyKeyData (..) , ApiNullStakeKey (..) , ApiOurStakeKey (..) , ApiPaymentDestination (..) @@ -3359,6 +3361,17 @@ getPolicyKey ctx (ApiT wid) hashed = do (k, _) <- liftHandler $ W.readPolicyPublicKey @_ @s @k @n wrk wid pure $ uncurry ApiPolicyKey (computeKeyPayload hashed k) +postPolicyKey + :: forall ctx s k. + ( ctx ~ ApiLayer s k + , Typeable s + ) + => ctx + -> ApiT WalletId + -> ApiPostPolicyKeyData + -> Handler ApiPolicyKey +postPolicyKey _ctx (ApiT _wid) _apiPassphrase = undefined + {------------------------------------------------------------------------------- Helpers -------------------------------------------------------------------------------} diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 47a87d1db32..c9980e6dff2 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -141,6 +141,7 @@ module Cardano.Wallet.Api.Types , ApiWalletSignData (..) , ApiVerificationKeyShelley (..) , ApiPolicyKey (..) + , ApiPostPolicyKeyData (..) , ApiVerificationKeyShared (..) , ApiScriptTemplateEntry (..) , XPubOrSelf (..) @@ -1226,6 +1227,12 @@ data ApiPolicyScript = ApiPolicyScript deriving (Eq, Generic, Show) deriving anyclass NFData +data ApiPostPolicyKeyData = ApiPostPolicyKeyData + { passphrase :: !(ApiT (Passphrase "raw")) + } + deriving (Eq, Generic, Show) + deriving anyclass NFData + data ApiAssetMintBurn = ApiAssetMintBurn { tokenMap :: !(ApiT W.TokenMap) , policyScripts :: ![ApiPolicyScript] @@ -2101,6 +2108,11 @@ instance FromJSON ApiPolicyScript where instance ToJSON ApiPolicyScript where toJSON = genericToJSON defaultRecordTypeOptions +instance FromJSON ApiPostPolicyKeyData where + parseJSON = genericParseJSON defaultRecordTypeOptions +instance ToJSON ApiPostPolicyKeyData where + toJSON = genericToJSON defaultRecordTypeOptions + parseBech32 :: Text -> Text diff --git a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs index 30015d00247..b3be5f95cbd 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs @@ -59,6 +59,7 @@ import Cardano.Wallet.Api.Types , ApiPoolId , ApiPostAccountKeyData , ApiPostAccountKeyDataWithPurpose + , ApiPostPolicyKeyData , ApiPostRandomAddressData , ApiPutAddressesData , ApiSelectCoinsData @@ -281,6 +282,23 @@ instance Malformed (PathParam (ApiT TokenName)) where -- Class instances (BodyParam) -- +instance Malformed (BodyParam ApiPostPolicyKeyData) where + malformed = first BodyParam <$> + [ ( "" + , "not enough input" + ) + , ( Aeson.encode [aesonQQ| + { "passphrase": 100 + }|] + , "Error in $.passphrase: parsing Passphrase failed, expected String, but encountered Number" + ) + , ( Aeson.encode [aesonQQ| + { + }|] + , "Error in $: parsing Cardano.Wallet.Api.Types.ApiPostPolicyKeyData) failed, key 'passphrase' not found" + ) + ] + instance Malformed (BodyParam ApiWalletSignData) where malformed = first BodyParam <$> [ ( "" diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 77f62c430ca..921c66654dd 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -114,8 +114,9 @@ import Cardano.Wallet.Api.Types , ApiPendingSharedWallet (..) , ApiPolicyKey (..) , ApiPolicyScript (..) - , ApiPostAccountKeyData + , ApiPostAccountKeyData (..) , ApiPostAccountKeyDataWithPurpose + , ApiPostPolicyKeyData (..) , ApiPostRandomAddressData , ApiPutAddressesData (..) , ApiRedeemer (..) @@ -1943,6 +1944,9 @@ instance Arbitrary (Quantity "percent" Double) where shrink _ = [Quantity 0.0] arbitrary = Quantity <$> choose (0,100) +instance Arbitrary ApiPostPolicyKeyData where + arbitrary = ApiPostPolicyKeyData <$> arbitrary + instance Arbitrary ApiPolicyKey where arbitrary = do hashing <- elements [WithHashing, WithoutHashing] @@ -2922,6 +2926,9 @@ instance ToSchema ApiPostAccountKeyDataWithPurpose where instance ToSchema ApiAccountKey where declareNamedSchema _ = declareSchemaForDefinition "ApiAccountKey" +instance ToSchema ApiPostPolicyKeyData where + declareNamedSchema _ = declareSchemaForDefinition "ApiPostPolicyKeyData" + instance ToSchema ApiAccountKeyShared where declareNamedSchema _ = declareSchemaForDefinition "ApiAccountKeyShared" diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs index 8b4581c6aa8..af69aff5fa4 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs @@ -99,6 +99,7 @@ import Cardano.Wallet.Api.Server , postExternalTransaction , postIcarusWallet , postLedgerWallet + , postPolicyKey , postRandomAddress , postRandomWallet , postRandomWalletFromXPrv @@ -268,6 +269,7 @@ server byron icarus shelley multisig spl ntp = :<|> postAccountPublicKey shelley ApiAccountKey :<|> getAccountPublicKey shelley ApiAccountKey :<|> getPolicyKey @_ @_ @_ @n shelley + :<|> postPolicyKey shelley assets :: Server Assets assets = diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 29cd08c9647..b98c2b543ee 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -2389,6 +2389,13 @@ components: format: bech32 pattern: "^((policy_vk)|(policy_vkh))1[0-9a-z]*$" + ApiPostPolicyKeyData: &ApiPostPolicyKeyData + type: object + required: + - passphrase + properties: + passphrase: *walletPassphrase + ApiTxId: &ApiTxId type: object required: @@ -5251,6 +5258,16 @@ x-responsesGetShelleyKey: &responsesGetShelleyKey application/json: schema: *ApiVerificationKeyShelley +x-responsesPostPolicyKey: &responsesPostPolicyKey + <<: *responsesErr400 + <<: *responsesErr406 + <<: *responsesErr415 + 202: + description: Accepted + content: + application/json: + schema: *ApiPolicyKey + x-responsesGetPolicyKey: &responsesGetPolicyKey <<: *responsesErr400 <<: *responsesErr404 @@ -6009,6 +6026,24 @@ paths: responses: *responsesGetShelleyKey /wallets/{walletId}/policy-key: + post: + operationId: postPolicyKey + tags: ["Transactions"] + summary: Create + description: | +

status: stable

+ + Create policy key for the wallet. Used for public account key derived + wallets or already instantiated mnemonic wallets to set policy public key + parameters: + - *parametersWalletId + requestBody: + required: true + content: + application/json: + schema: *ApiPostPolicyKeyData + responses: *responsesPostPolicyKey + get: operationId: getPolicyKey tags: ["Keys"] From 01967e1c3ea644789b163e8423de2a1052465b30 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 23 Mar 2022 11:27:33 +0100 Subject: [PATCH 03/29] ApiPostPolicyKeyData - part 2 --- lib/core/src/Cardano/Wallet.hs | 29 +++++++++++++++++++ .../test/unit/Cardano/Wallet/Api/Malformed.hs | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 25309fc9c11..69a54ce9d08 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -3236,6 +3236,30 @@ readAccountPublicKey ctx wid = db & \DBLayer{..} -> do where db = ctx ^. dbLayer @IO @s @k +writePolicyPublicKey + :: forall ctx s k. + ( HasDBLayer IO s k ctx + , WalletKey k + , GetPurpose k + ) + => ctx + -> WalletId + -> Passphrase "raw" + -> ExceptT ErrWritePolicyPublicKey IO (k 'PolicyK XPub) +writePolicyPublicKey ctx wid pwd = db & \DBLayer{..} -> do + cp <- mapExceptT atomically + $ withExceptT ErrWritePolicyPublicKeyNoSuchWallet + $ withNoSuchWallet wid + $ readCheckpoint wid + + withRootKey @ctx @s @k ctx wid pwd ErrWritePolicyPublicKey + $ \rootK scheme -> do + let encPwd = preparePassphrase scheme pwd + let xprv = derivePolicyPrivateKey encPwd (getRawKey rootK) minBound + pure $ liftRawKey $ toXPub xprv + where + db = ctx ^. dbLayer @IO @s @k + -- | Retrieve any public account key of a wallet. getAccountPublicKeyAtIndex :: forall ctx s k. @@ -3566,6 +3590,11 @@ data ErrReadPolicyPublicKey | ErrReadPolicyPublicKeyAbsent deriving (Generic, Eq, Show) +data ErrWritePolicyPublicKey + = ErrWritePolicyPublicKeyNoSuchWallet ErrNoSuchWallet + | ErrWritePolicyPublicKeyWithRootKey ErrWithRootKey + deriving (Generic, Eq, Show) + {------------------------------------------------------------------------------- Utils -------------------------------------------------------------------------------} diff --git a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs index b3be5f95cbd..feab4596f5e 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs @@ -295,7 +295,7 @@ instance Malformed (BodyParam ApiPostPolicyKeyData) where , ( Aeson.encode [aesonQQ| { }|] - , "Error in $: parsing Cardano.Wallet.Api.Types.ApiPostPolicyKeyData) failed, key 'passphrase' not found" + , "Error in $: parsing Cardano.Wallet.Api.Types.ApiPostPolicyKeyData(ApiPostPolicyKeyData) failed, key 'passphrase' not found" ) ] From 86020ae1cc9ac5bbc023dd4d6a8b790e958c324a Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 24 Mar 2022 14:11:00 +0100 Subject: [PATCH 04/29] add writePolicyKey in Cardano.Wallet --- lib/core/src/Cardano/Wallet.hs | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 69a54ce9d08..8a244f90a49 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -83,6 +83,7 @@ module Cardano.Wallet , readRewardAccount , someRewardAccount , readPolicyPublicKey + , writePolicyPublicKey , queryRewardBalance , ErrWalletAlreadyExists (..) , ErrNoSuchWallet (..) @@ -260,7 +261,7 @@ import Cardano.Wallet.DB import Cardano.Wallet.DB.Checkpoints ( DeltaCheckpoints (..) ) import Cardano.Wallet.DB.Sqlite.AddressBook - ( AddressBookIso, getPrologue ) + ( AddressBookIso, Prologue (..), getPrologue ) import Cardano.Wallet.DB.WalletState ( DeltaMap (..), DeltaWalletState1 (..), fromWallet, getLatest, getSlot ) import Cardano.Wallet.Logging @@ -307,7 +308,7 @@ import Cardano.Wallet.Primitive.AddressDerivation.Byron import Cardano.Wallet.Primitive.AddressDerivation.Icarus ( IcarusKey ) import Cardano.Wallet.Primitive.AddressDerivation.MintBurn - ( policyDerivationPath ) + ( derivePolicyPrivateKey, policyDerivationPath ) import Cardano.Wallet.Primitive.AddressDerivation.SharedKey ( SharedKey (..) ) import Cardano.Wallet.Primitive.AddressDerivation.Shelley @@ -517,7 +518,7 @@ import Data.Function import Data.Functor ( ($>) ) import Data.Generics.Internal.VL.Lens - ( Lens', view, (^.) ) + ( Lens', view, (.~), (^.) ) import Data.Generics.Labels () import Data.Generics.Product.Typed @@ -3237,28 +3238,36 @@ readAccountPublicKey ctx wid = db & \DBLayer{..} -> do db = ctx ^. dbLayer @IO @s @k writePolicyPublicKey - :: forall ctx s k. - ( HasDBLayer IO s k ctx - , WalletKey k - , GetPurpose k + :: forall ctx s (n :: NetworkDiscriminant). + ( HasDBLayer IO s ShelleyKey ctx + , s ~ SeqState n ShelleyKey ) => ctx -> WalletId -> Passphrase "raw" - -> ExceptT ErrWritePolicyPublicKey IO (k 'PolicyK XPub) + -> ExceptT ErrWritePolicyPublicKey IO (ShelleyKey 'PolicyK XPub) writePolicyPublicKey ctx wid pwd = db & \DBLayer{..} -> do cp <- mapExceptT atomically $ withExceptT ErrWritePolicyPublicKeyNoSuchWallet $ withNoSuchWallet wid $ readCheckpoint wid - withRootKey @ctx @s @k ctx wid pwd ErrWritePolicyPublicKey + let (SeqPrologue seqState) = getPrologue $ getState cp + + policyXPub <- withRootKey @ctx @s @ShelleyKey ctx wid pwd ErrWritePolicyPublicKeyWithRootKey $ \rootK scheme -> do let encPwd = preparePassphrase scheme pwd let xprv = derivePolicyPrivateKey encPwd (getRawKey rootK) minBound pure $ liftRawKey $ toXPub xprv + + let seqState' = seqState & #policyXPub .~ Just policyXPub + ExceptT $ atomically $ modifyDBMaybe walletsDB $ + adjustNoSuchWallet wid ErrWritePolicyPublicKeyNoSuchWallet $ + \_ -> Right ( [ReplacePrologue $ SeqPrologue seqState'], () ) + + pure policyXPub where - db = ctx ^. dbLayer @IO @s @k + db = ctx ^. dbLayer @IO @s @ShelleyKey -- | Retrieve any public account key of a wallet. getAccountPublicKeyAtIndex From 1bb028612fc071a7a1159b452232acd28f7a8514 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 24 Mar 2022 16:56:42 +0100 Subject: [PATCH 05/29] conclude postPolicyKey endpoint --- .../Scenario/API/Shelley/TransactionsNew.hs | 10 +++++++ lib/core/src/Cardano/Wallet.hs | 1 + lib/core/src/Cardano/Wallet/Api/Link.hs | 16 ++++++++++++ lib/core/src/Cardano/Wallet/Api/Server.hs | 26 ++++++++++++++----- lib/core/src/Cardano/Wallet/Api/Types.hs | 1 + specifications/api/swagger.yaml | 19 ++++++++++++++ 6 files changed, 66 insertions(+), 7 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 21fbac90dd9..6ce13825a89 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3217,6 +3217,16 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let policyWithHash = Link.getPolicyKey @'Shelley wa (Just True) (_, policyKeyHashPayload) <- unsafeRequest @ApiPolicyKey ctx policyWithHash Empty + + let postPolicyKey = Link.postPolicyKey @'Shelley wa + let passwdPayload = Json [json| { + "passphrase": #{fixturePassphrase} + } |] + (_, policyKeyHashPayload') <- + unsafeRequest @ApiPolicyKey ctx postPolicyKey passwdPayload + + policyKeyHashPayload `shouldBe` policyKeyHashPayload' + let (Just policyKeyHash) = keyHashFromBytes (Policy, getApiPolicyKey policyKeyHashPayload) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 8a244f90a49..9daffb58d3b 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -94,6 +94,7 @@ module Cardano.Wallet , ErrWalletNotResponding (..) , ErrReadRewardAccount (..) , ErrReadPolicyPublicKey (..) + , ErrWritePolicyPublicKey (..) -- * Shared Wallet , updateCosigner diff --git a/lib/core/src/Cardano/Wallet/Api/Link.hs b/lib/core/src/Cardano/Wallet/Api/Link.hs index ada499f6f93..40a012519c0 100644 --- a/lib/core/src/Cardano/Wallet/Api/Link.hs +++ b/lib/core/src/Cardano/Wallet/Api/Link.hs @@ -55,6 +55,7 @@ module Cardano.Wallet.Api.Link , postAccountKey , getAccountKey , getPolicyKey + , postPolicyKey -- * Addresses , postRandomAddress @@ -411,6 +412,21 @@ getPolicyKey w hashed = discriminate @style where wid = w ^. typed @(ApiT WalletId) +postPolicyKey + :: forall (style :: WalletStyle) w. + ( HasCallStack + , Discriminate style + , HasType (ApiT WalletId) w + ) + => w + -> (Method, Text) +postPolicyKey w = discriminate @style + (endpoint @Api.PostPolicyKey (wid &)) + (notSupported "Byron") + (notSupported "Shared") + where + wid = w ^. typed @(ApiT WalletId) + -- -- Addresses -- diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index b131e98e253..eac07f6ab44 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -177,6 +177,7 @@ import Cardano.Wallet , ErrWithRootKey (..) , ErrWithdrawalNotWorth (..) , ErrWitnessTx (..) + , ErrWritePolicyPublicKey (..) , ErrWrongPassphrase (..) , FeeEstimation (..) , HasNetworkLayer @@ -3362,15 +3363,21 @@ getPolicyKey ctx (ApiT wid) hashed = do pure $ uncurry ApiPolicyKey (computeKeyPayload hashed k) postPolicyKey - :: forall ctx s k. - ( ctx ~ ApiLayer s k - , Typeable s + :: forall ctx s (n :: NetworkDiscriminant). + ( ctx ~ ApiLayer s ShelleyKey + , s ~ SeqState n ShelleyKey ) => ctx -> ApiT WalletId -> ApiPostPolicyKeyData -> Handler ApiPolicyKey -postPolicyKey _ctx (ApiT _wid) _apiPassphrase = undefined +postPolicyKey ctx (ApiT wid) apiPassphrase = + withWorkerCtx @_ @s @ShelleyKey ctx wid liftE liftE $ \wrk -> do + k <- liftHandler $ W.writePolicyPublicKey @_ @s @n wrk wid pwd + pure $ uncurry ApiPolicyKey (computeKeyPayload hashed (getRawKey k)) + where + pwd = getApiT (apiPassphrase ^. #passphrase) + hashed = Just True {------------------------------------------------------------------------------- Helpers @@ -4380,13 +4387,18 @@ instance IsServerError ErrReadPolicyPublicKey where , "Shelley." ] ErrReadPolicyPublicKeyAbsent -> - apiError err403 InvalidWalletType $ T.unwords + apiError err403 MissingPolicyPublicKey $ T.unwords [ "It seems the wallet lacks a policy public key. It's" , "therefore not possible to create a minting or burning" - , "transaction. Please restore the wallet from a mnemonic" - , "phrase instead of an account public key." + , "transaction. Please invoke POST call on endpoint" + , "/wallets/{walletId}/policy-key to set it." ] +instance IsServerError ErrWritePolicyPublicKey where + toServerError = \case + ErrWritePolicyPublicKeyNoSuchWallet e -> toServerError e + ErrWritePolicyPublicKeyWithRootKey e -> toServerError e + instance IsServerError ErrCreateRandomAddress where toServerError = \case ErrCreateAddrNoSuchWallet e -> toServerError e diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index c9980e6dff2..f47bd231a23 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1694,6 +1694,7 @@ data ApiErrorCode | ForeignTransaction | MissingWitnessesInTransaction | CreatedWrongPolicyScriptTemplate + | MissingPolicyPublicKey deriving (Eq, Generic, Show, Data, Typeable) deriving anyclass NFData diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index b98c2b543ee..78a5a29a5f3 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -4478,6 +4478,17 @@ x-errInvalidWalletType: &errInvalidWalletType type: string enum: ['invalid_wallet_type'] +x-errMissingPolicyPublicKey: &errMissingPolicyPublicKey + <<: *responsesErr + title: missing_policy_public_key + properties: + message: + type: string + description: Occurs when trying to construct with minting/burning on shelley wallet without policy public key. + code: + type: string + enum: ['missing_policy_public_key'] + x-errQueryParamMissing: &errQueryParamMissing <<: *responsesErr title: query_param_missing @@ -5270,6 +5281,14 @@ x-responsesPostPolicyKey: &responsesPostPolicyKey x-responsesGetPolicyKey: &responsesGetPolicyKey <<: *responsesErr400 + 403: + description: Forbidden + content: + application/json: + schema: + oneOf: + - <<: *errInvalidWalletType + - <<: *errMissingPolicyPublicKey <<: *responsesErr404 <<: *responsesErr406 200: From 81b2d5fdd305ee5a4a570db79cfddaa0cd9bbc18 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 25 Mar 2022 14:59:01 +0100 Subject: [PATCH 06/29] add signing for minting/burning --- .../Scenario/API/Shelley/TransactionsNew.hs | 22 +++++++--- lib/core/src/Cardano/Wallet.hs | 14 +++++- lib/core/src/Cardano/Wallet/Transaction.hs | 2 + .../src/Cardano/Wallet/Shelley/Transaction.hs | 43 +++++++++++++++---- 4 files changed, 65 insertions(+), 16 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 6ce13825a89..96fa41c5974 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3211,8 +3211,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do [ expectResponseCode HTTP.status202 ] - let txCbor = getFromResponse #transaction rTx - let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) + let txCbor1 = getFromResponse #transaction rTx + let decodePayload1 = Json (toJSON $ ApiSerialisedTransaction txCbor1) let policyWithHash = Link.getPolicyKey @'Shelley wa (Just True) (_, policyKeyHashPayload) <- @@ -3265,9 +3265,21 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let mintInfo = getFromResponse #mintBurn rTx mintInfo `shouldBe` mintInfoExpected - rDecodedTx <- request @(ApiDecodedTransaction n) ctx - (Link.decodeTransaction @'Shelley wa) Default decodePayload - verify rDecodedTx + rDecodedTx1 <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload1 + verify rDecodedTx1 + [ expectResponseCode HTTP.status202 + , expectField #assetsMinted (`shouldBe` activeAssetsInfo) + , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + ] + + let apiTx = getFromResponse #transaction rTx + signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] + let txCbor2 = getFromResponse #transaction (HTTP.status202, Right signedTx) + let decodePayload2 = Json (toJSON $ ApiSerialisedTransaction txCbor2) + rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload2 + verify rDecodedTx2 [ expectResponseCode HTTP.status202 , expectField #assetsMinted (`shouldBe` activeAssetsInfo) , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 9daffb58d3b..c41928c0883 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -214,7 +214,7 @@ import Prelude hiding import Cardano.Address.Derivation ( XPrv, XPub ) import Cardano.Address.Script - ( Cosigner (..) ) + ( Cosigner (..), KeyHash ) import Cardano.Api ( serialiseToCBOR ) import Cardano.BM.Data.Severity @@ -300,6 +300,7 @@ import Cardano.Wallet.Primitive.AddressDerivation , checkPassphrase , deriveRewardAccount , encryptPassphrase + , hashVerificationKey , liftIndex , preparePassphrase , stakeDerivationPath @@ -586,6 +587,7 @@ import UnliftIO.Exception import UnliftIO.MVar ( modifyMVar_, newMVar ) +import qualified Cardano.Address.Script as CA import qualified Cardano.Api as Cardano import qualified Cardano.Api.Shelley as Cardano import qualified Cardano.Crypto.Wallet as CC @@ -2323,12 +2325,20 @@ signTransaction tl era keyLookup (rootKey, rootPwd) utxo = rewardAcnt = (getRawKey $ deriveRewardAccount @k rootPwd rootKey, rootPwd) + policyKey :: (KeyHash, XPrv, Passphrase "encryption") + policyKey = + let xprv = + derivePolicyPrivateKey rootPwd (getRawKey rootKey) minBound + in ( hashVerificationKey @k CA.Policy $ liftRawKey $ toXPub xprv + , xprv + , rootPwd) + inputResolver :: TxIn -> Maybe Address inputResolver i = do TxOut addr _ <- UTxO.lookup i utxo pure addr in - addVkWitnesses tl era rewardAcnt keyLookup inputResolver + addVkWitnesses tl era rewardAcnt policyKey keyLookup inputResolver -- | Produce witnesses and construct a transaction from a given selection. -- diff --git a/lib/core/src/Cardano/Wallet/Transaction.hs b/lib/core/src/Cardano/Wallet/Transaction.hs index e8cb3c64ede..b015235347c 100644 --- a/lib/core/src/Cardano/Wallet/Transaction.hs +++ b/lib/core/src/Cardano/Wallet/Transaction.hs @@ -135,6 +135,8 @@ data TransactionLayer k tx = TransactionLayer -- Era for which the transaction should be created. -> (XPrv, Passphrase "encryption") -- Reward account + -> (KeyHash, XPrv, Passphrase "encryption") + -- policy public and private key -> (Address -> Maybe (k 'AddressK XPrv, Passphrase "encryption")) -- Key store / address resolution -> (TxIn -> Maybe Address) diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index d458d630f19..e3a92eaa61f 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -59,7 +59,7 @@ import Prelude import Cardano.Address.Derivation ( XPrv, toXPub ) import Cardano.Address.Script - ( KeyHash, Script (..) ) + ( KeyHash, Script (..), foldScript ) import Cardano.Api ( AnyCardanoEra (..) , ByronEra @@ -379,8 +379,8 @@ mkTx networkId payload ttl (rewardAcnt, pwdAcnt) addrResolver wdrl cs fees era = unsigned <- mkUnsignedTx era ttl cs md wdrls certs (toCardanoLovelace fees) TokenMap.empty TokenMap.empty Map.empty - let signed = signTransaction networkId acctResolver addrResolver inputResolver - (unsigned, mkExtraWits unsigned) + let signed = signTransaction networkId acctResolver (const Nothing) + addrResolver inputResolver (unsigned, mkExtraWits unsigned) let withResolvedInputs (tx, _, _, _) = tx { resolvedInputs = second txOutCoin <$> F.toList (view #inputs cs) @@ -417,6 +417,8 @@ signTransaction -- ^ Network identifier (e.g. mainnet, testnet) -> (RewardAccount -> Maybe (XPrv, Passphrase "encryption")) -- ^ Stake key store / reward account resolution + -> (KeyHash -> Maybe (XPrv, Passphrase "encryption")) + -- ^ Policy key resolution -> (Address -> Maybe (k 'AddressK XPrv, Passphrase "encryption")) -- ^ Payment key store -> (TxIn -> Maybe Address) @@ -424,7 +426,7 @@ signTransaction -> (Cardano.TxBody era, [Cardano.KeyWitness era]) -- ^ The transaction to sign, possibly with already some existing witnesses -> Cardano.Tx era -signTransaction networkId resolveRewardAcct resolveAddress resolveInput (body, wits) = +signTransaction networkId resolveRewardAcct resolvePolicyKey resolveAddress resolveInput (body, wits) = Cardano.makeSignedTransaction wits' body where wits' = mconcat @@ -434,6 +436,7 @@ signTransaction networkId resolveRewardAcct resolveAddress resolveInput (body, w , mapMaybe mkWdrlCertWitness wdrls , mapMaybe mkExtraWitness extraKeys , mapMaybe mkWdrlCertWitness certs + , mapMaybe mkPolicyWitness mintBurnScripts ] where Cardano.TxBody bodyContent = body @@ -463,6 +466,16 @@ signTransaction networkId resolveRewardAcct resolveAddress resolveInput (body, w certs = cardanoCertKeysForWitnesses $ Cardano.txCertificates bodyContent + mintBurnScripts = + let (_, toMint, toBurn, _) = fromCardanoTx $ + Cardano.makeSignedTransaction wits body + in L.nub $ getScripts toMint <> getScripts toBurn + + getScripts :: TokenMapWithScripts -> [KeyHash] + getScripts s = + let retrieveAllKeyHashes = foldScript (:) [] + in concatMap retrieveAllKeyHashes $ Map.elems $ s ^. #txScripts + mkTxInWitness :: TxIn -> Maybe (Cardano.KeyWitness era) mkTxInWitness i = do addr <- resolveInput i @@ -477,6 +490,10 @@ signTransaction networkId resolveRewardAcct resolveAddress resolveInput (body, w mkWdrlCertWitness a = do mkShelleyWitness body <$> resolveRewardAcct a + mkPolicyWitness :: KeyHash -> Maybe (Cardano.KeyWitness era) + mkPolicyWitness a = do + mkShelleyWitness body <$> resolvePolicyKey a + mkExtraWitness :: Cardano.Hash Cardano.PaymentKey -> Maybe (Cardano.KeyWitness era) mkExtraWitness vkh = do -- NOTE: We cannot resolve key hashes directly, so create a one-time @@ -517,25 +534,33 @@ newTransactionLayer networkId = TransactionLayer mkTx networkId payload ttl stakeCreds keystore wdrl selection delta - , addVkWitnesses = \_era stakeCreds addressResolver inputResolver sealedTx -> do + , addVkWitnesses = \_era stakeCreds policyCreds addressResolver inputResolver sealedTx -> do let acctResolver :: RewardAccount -> Maybe (XPrv, Passphrase "encryption") acctResolver acct = do let acct' = toRewardAccountRaw $ toXPub $ fst stakeCreds guard (acct == acct') $> stakeCreds + let policyResolver :: KeyHash -> Maybe (XPrv, Passphrase "encryption") + policyResolver keyhash = do + let (keyhash', xprv, encP) = policyCreds + guard (keyhash == keyhash') $> (xprv, encP) case cardanoTx sealedTx of InAnyCardanoEra ByronEra _ -> sealedTx InAnyCardanoEra ShelleyEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver addressResolver inputResolver (body, wits) + signTransaction networkId acctResolver (const Nothing) + addressResolver inputResolver (body, wits) & sealedTxFromCardano' InAnyCardanoEra AllegraEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver addressResolver inputResolver (body, wits) + signTransaction networkId acctResolver (const Nothing) + addressResolver inputResolver (body, wits) & sealedTxFromCardano' InAnyCardanoEra MaryEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver addressResolver inputResolver (body, wits) + signTransaction networkId acctResolver policyResolver + addressResolver inputResolver (body, wits) & sealedTxFromCardano' InAnyCardanoEra AlonzoEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver addressResolver inputResolver (body, wits) + signTransaction networkId acctResolver policyResolver + addressResolver inputResolver (body, wits) & sealedTxFromCardano' , mkUnsignedTransaction = \era stakeXPub _pp ctx selection -> do From 35e65ff7495897d8dffa0e680074340d9576e709 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 25 Mar 2022 15:23:52 +0100 Subject: [PATCH 07/29] extend integration test - part 1 --- .../Integration/Scenario/API/Shelley/TransactionsNew.hs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 96fa41c5974..f6f79283c3d 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3285,6 +3285,12 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) ] + submittedTx <- submitTxWithWid ctx wa signedTx + verify submittedTx + [ expectSuccess + , expectResponseCode HTTP.status202 + ] + it "TRANS_NEW_CREATE_10e - Burning assets" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx From 7fbd3f39eb5ceddb456094ef000b94447313dddf Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 25 Mar 2022 20:19:02 +0100 Subject: [PATCH 08/29] fix fee calculation --- lib/core/src/Cardano/Wallet/Api/Server.hs | 31 ++++++++++--------- .../src/Cardano/Wallet/Shelley/Transaction.hs | 8 +++-- 2 files changed, 21 insertions(+), 18 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index eac07f6ab44..72bb9397aff 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2251,21 +2251,6 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do (utxoAvailable, wallet, pendingTxs) <- liftHandler $ W.readWalletUTxOIndex @_ @s @k wrk wid - let runSelection outs = - W.selectAssets @_ @_ @s @k wrk pp selectAssetsParams transform - where - selectAssetsParams = W.SelectAssetsParams - { outputs = outs - , pendingTxs - , randomSeed = Nothing - , txContext = txCtx - , utxoAvailableForInputs = - UTxOSelection.fromIndex utxoAvailable - , utxoAvailableForCollateral = - UTxOIndex.toMap utxoAvailable - , wallet - , selectionStrategy = SelectionStrategyOptimal - } txCtx' <- if isJust mintingBurning then do (policyXPub, _) <- @@ -2317,6 +2302,22 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do else pure txCtx + let runSelection outs = + W.selectAssets @_ @_ @s @k wrk pp selectAssetsParams transform + where + selectAssetsParams = W.SelectAssetsParams + { outputs = outs + , pendingTxs + , randomSeed = Nothing + , txContext = txCtx' + , utxoAvailableForInputs = + UTxOSelection.fromIndex utxoAvailable + , utxoAvailableForCollateral = + UTxOIndex.toMap utxoAvailable + , wallet + , selectionStrategy = SelectionStrategyOptimal + } + (sel, sel', fee) <- do outs <- case (body ^. #payments) of Nothing -> pure [] diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index e3a92eaa61f..93246a8aa34 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -263,6 +263,7 @@ import qualified Data.Sequence.Strict as StrictSeq import qualified Data.Set as Set import qualified Data.Text as T +import qualified Debug.Trace as TR -- | Type encapsulating what we need to know to add things -- payloads, -- certificates -- to a transaction. @@ -1397,8 +1398,9 @@ mkTxSkeleton witness context skeleton = TxSkeleton , txInputCount = view #skeletonInputCount skeleton , txOutputs = view #skeletonOutputs skeleton , txChange = view #skeletonChange skeleton - -- Until we actually support minting and burning, leave these as empty. - , txScripts = [] + , txScripts = (<>) + (Map.elems (snd $ view #txAssetsToMint context)) + (Map.elems (snd $ view #txAssetsToBurn context)) , txAssetsToMintOrBurn = (<>) (TokenMap.getAssets (fst $ view #txAssetsToMint context)) (TokenMap.getAssets (fst $ view #txAssetsToBurn context)) @@ -1430,7 +1432,7 @@ estimateTxCost pp skeleton = -- estimateTxSize :: TxSkeleton -> TxSize estimateTxSize skeleton = - TxSize $ fromIntegral sizeOf_Transaction + TR.trace ("skeleton:"<> show skeleton) $ TxSize $ fromIntegral sizeOf_Transaction where TxSkeleton { txMetadata From 00edc094c4d257bce2d3a51084295994721fd084 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 28 Mar 2022 12:29:44 +0200 Subject: [PATCH 09/29] reorganize integration tests for better reuse --- .../Scenario/API/Shelley/TransactionsNew.hs | 336 +++++++++++------- .../src/Cardano/Wallet/Shelley/Transaction.hs | 3 +- 2 files changed, 211 insertions(+), 128 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index f6f79283c3d..32bfe070311 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3177,7 +3177,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do [ expectResponseCode HTTP.status403 ] - it "TRANS_NEW_CREATE_10d - Minting assets" $ \ctx -> runResourceT $ do + it "TRANS_NEW_CREATE_10d - Minting assets without timelock" $ + \ctx -> runResourceT $ do wa <- fixtureWallet ctx addrs <- listAddresses @n ctx wa let destination = (addrs !! 1) ^. #id @@ -3188,8 +3189,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "mint_burn": [{ "policy_script_template": { "all": - [ "cosigner#0", - { "active_from": 120 } + [ "cosigner#0" ] }, "asset_name": #{toText tokenName'}, @@ -3205,93 +3205,86 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do }] }|] - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status202 - ] + let scriptUsed policyKeyHash = RequireAllOf + [ RequireSignatureOf policyKeyHash + ] - let txCbor1 = getFromResponse #transaction rTx - let decodePayload1 = Json (toJSON $ ApiSerialisedTransaction txCbor1) + mintAssetCheck ctx wa tokenName' payload scriptUsed - let policyWithHash = Link.getPolicyKey @'Shelley wa (Just True) - (_, policyKeyHashPayload) <- - unsafeRequest @ApiPolicyKey ctx policyWithHash Empty + it "TRANS_NEW_CREATE_10e - Minting assets with timelocks" $ + \ctx -> runResourceT $ do + liftIO $ pendingWith "Should work when interval validity is addressed" - let postPolicyKey = Link.postPolicyKey @'Shelley wa - let passwdPayload = Json [json| { - "passphrase": #{fixturePassphrase} - } |] - (_, policyKeyHashPayload') <- - unsafeRequest @ApiPolicyKey ctx postPolicyKey passwdPayload + wa <- fixtureWallet ctx + addrs <- listAddresses @n ctx wa + let destination = (addrs !! 1) ^. #id - policyKeyHashPayload `shouldBe` policyKeyHashPayload' + let (Right tokenName') = mkTokenName "ab12" - let (Just policyKeyHash) = - keyHashFromBytes (Policy, getApiPolicyKey policyKeyHashPayload) + let payload = Json [json|{ + "mint_burn": [{ + "policy_script_template": + { "all": + [ "cosigner#0", + { "active_from": 120 } + ] + }, + "asset_name": #{toText tokenName'}, + "operation": + { "mint" : + { "receiving_address": #{destination}, + "amount": { + "quantity": 50000, + "unit": "assets" + } + } + } + }] + }|] - let scriptUsed = RequireAllOf + let scriptUsed policyKeyHash = RequireAllOf [ RequireSignatureOf policyKeyHash , ActiveFromSlot 120 ] - let tokenPolicyId' = - UnsafeTokenPolicyId . Hash $ - unScriptHash $ - toScriptHash scriptUsed - let tokens = TokenMap.singleton - (AssetId tokenPolicyId' tokenName') - (TokenQuantity 50_000) - let mintScript = ApiPolicyScript (ApiT tokenPolicyId') (ApiT scriptUsed) - let activeAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT tokens - , policyScripts = [mintScript] - , walletPolicyKeyHash = Just policyKeyHashPayload - } - let inactiveAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT TokenMap.empty - , policyScripts = [] - , walletPolicyKeyHash = Just policyKeyHashPayload - } + mintAssetCheck ctx wa tokenName' payload scriptUsed - let mintInfoExpected = Just $ NE.fromList - [ ApiT $ ApiMintBurnInfo - { verificationKeyIndex = ApiT (DerivationIndex 2147483648) - , policyId = ApiT tokenPolicyId' - , assetName = ApiT tokenName' - , subject = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' - , policyScript = ApiT scriptUsed + it "TRANS_NEW_CREATE_10f - Burning assets without timelock" $ + \ctx -> runResourceT $ do + liftIO $ pendingWith "Should work soon, first mint token" + + wa <- fixtureWallet ctx + + let (Right tokenName') = mkTokenName "ab12" + + let payload = Json [json|{ + "mint_burn": [{ + "policy_script_template": + { "all": + [ "cosigner#0" + ] + }, + "asset_name": #{toText tokenName'}, + "operation": + { "burn" : + { "quantity": 50000, + "unit": "assets" + } + } }] - let mintInfo = getFromResponse #mintBurn rTx - mintInfo `shouldBe` mintInfoExpected + }|] - rDecodedTx1 <- request @(ApiDecodedTransaction n) ctx - (Link.decodeTransaction @'Shelley wa) Default decodePayload1 - verify rDecodedTx1 - [ expectResponseCode HTTP.status202 - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) - ] + let scriptUsed policyKeyHash = RequireAllOf + [ RequireSignatureOf policyKeyHash + , ActiveFromSlot 120 + ] - let apiTx = getFromResponse #transaction rTx - signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] - let txCbor2 = getFromResponse #transaction (HTTP.status202, Right signedTx) - let decodePayload2 = Json (toJSON $ ApiSerialisedTransaction txCbor2) - rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx - (Link.decodeTransaction @'Shelley wa) Default decodePayload2 - verify rDecodedTx2 - [ expectResponseCode HTTP.status202 - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) - ] + mintBurnCheck ctx wa tokenName' payload scriptUsed - submittedTx <- submitTxWithWid ctx wa signedTx - verify submittedTx - [ expectSuccess - , expectResponseCode HTTP.status202 - ] + it "TRANS_NEW_CREATE_10g - Burning assets with timelock" $ + \ctx -> runResourceT $ do + liftIO $ pendingWith "Should work when interval validity is addressed" - it "TRANS_NEW_CREATE_10e - Burning assets" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx let (Right tokenName') = mkTokenName "ab12" @@ -3314,62 +3307,12 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do }] }|] - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status202 - ] - - let txCbor = getFromResponse #transaction rTx - let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) - - let policyWithHash = Link.getPolicyKey @'Shelley wa (Just True) - (_, policyKeyHashPayload) <- - unsafeRequest @ApiPolicyKey ctx policyWithHash Empty - let (Just policyKeyHash) = - keyHashFromBytes (Policy, getApiPolicyKey policyKeyHashPayload) - - let scriptUsed = RequireAllOf + let scriptUsed policyKeyHash = RequireAllOf [ RequireSignatureOf policyKeyHash , ActiveFromSlot 120 ] - let tokenPolicyId' = - UnsafeTokenPolicyId . Hash $ - unScriptHash $ toScriptHash scriptUsed - let tokens = TokenMap.singleton - (AssetId tokenPolicyId' tokenName') - (TokenQuantity 50_000) - let burnScript = ApiPolicyScript (ApiT tokenPolicyId') (ApiT scriptUsed) - let activeAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT TokenMap.empty - , policyScripts = [] - , walletPolicyKeyHash = Just policyKeyHashPayload - } - let inactiveAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT tokens - , policyScripts = [burnScript] - , walletPolicyKeyHash = Just policyKeyHashPayload - } - - let burnInfoExpected = Just $ NE.fromList - [ ApiT $ ApiMintBurnInfo - { verificationKeyIndex = ApiT (DerivationIndex 2147483648) - , policyId = ApiT tokenPolicyId' - , assetName = ApiT tokenName' - , subject = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' - , policyScript = ApiT scriptUsed - }] - let burnInfo = getFromResponse #mintBurn rTx - burnInfo `shouldBe` burnInfoExpected - - rDecodedTx <- request @(ApiDecodedTransaction n) ctx - (Link.decodeTransaction @'Shelley wa) Default decodePayload - verify rDecodedTx - [ expectResponseCode HTTP.status202 - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) - ] + mintBurnCheck ctx wa tokenName' payload scriptUsed where @@ -3722,3 +3665,144 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do Cardano.serialiseToCBOR (Cardano.makeSignedTransaction [] txbody) in toCborHexTx txBody + + mintAssetCheck ctx wa tokenName' payload scriptUsedF = do + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status202 + ] + + let txCbor1 = getFromResponse #transaction rTx + let decodePayload1 = Json (toJSON $ ApiSerialisedTransaction txCbor1) + + let policyWithHash = Link.getPolicyKey @'Shelley wa (Just True) + (_, policyKeyHashPayload) <- + unsafeRequest @ApiPolicyKey ctx policyWithHash Empty + + let postPolicyKey = Link.postPolicyKey @'Shelley wa + let passwdPayload = Json [json| { + "passphrase": #{fixturePassphrase} + } |] + (_, policyKeyHashPayload') <- + unsafeRequest @ApiPolicyKey ctx postPolicyKey passwdPayload + + policyKeyHashPayload `shouldBe` policyKeyHashPayload' + + let (Just policyKeyHash) = + keyHashFromBytes (Policy, getApiPolicyKey policyKeyHashPayload) + + let scriptUsed = scriptUsedF policyKeyHash + let tokenPolicyId' = + UnsafeTokenPolicyId . Hash $ + unScriptHash $ + toScriptHash scriptUsed + let tokens = TokenMap.singleton + (AssetId tokenPolicyId' tokenName') + (TokenQuantity 50_000) + let mintScript = ApiPolicyScript (ApiT tokenPolicyId') (ApiT scriptUsed) + + let activeAssetsInfo = ApiAssetMintBurn + { tokenMap = ApiT tokens + , policyScripts = [mintScript] + , walletPolicyKeyHash = Just policyKeyHashPayload + } + let inactiveAssetsInfo = ApiAssetMintBurn + { tokenMap = ApiT TokenMap.empty + , policyScripts = [] + , walletPolicyKeyHash = Just policyKeyHashPayload + } + + let mintInfoExpected = Just $ NE.fromList + [ ApiT $ ApiMintBurnInfo + { verificationKeyIndex = ApiT (DerivationIndex 2147483648) + , policyId = ApiT tokenPolicyId' + , assetName = ApiT tokenName' + , subject = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + , policyScript = ApiT scriptUsed + }] + let mintInfo = getFromResponse #mintBurn rTx + mintInfo `shouldBe` mintInfoExpected + + rDecodedTx1 <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload1 + verify rDecodedTx1 + [ expectResponseCode HTTP.status202 + , expectField #assetsMinted (`shouldBe` activeAssetsInfo) + , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + ] + + let apiTx = getFromResponse #transaction rTx + signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] + let txCbor2 = getFromResponse #transaction (HTTP.status202, Right signedTx) + let decodePayload2 = Json (toJSON $ ApiSerialisedTransaction txCbor2) + rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload2 + verify rDecodedTx2 + [ expectResponseCode HTTP.status202 + , expectField #assetsMinted (`shouldBe` activeAssetsInfo) + , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + ] + + submittedTx <- submitTxWithWid ctx wa signedTx + verify submittedTx + [ expectSuccess + , expectResponseCode HTTP.status202 + ] + + mintBurnCheck ctx wa tokenName' payload scriptUsedF = do + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status202 + ] + + let txCbor = getFromResponse #transaction rTx + let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) + + let policyWithHash = Link.getPolicyKey @'Shelley wa (Just True) + (_, policyKeyHashPayload) <- + unsafeRequest @ApiPolicyKey ctx policyWithHash Empty + let (Just policyKeyHash) = + keyHashFromBytes (Policy, getApiPolicyKey policyKeyHashPayload) + + let scriptUsed = scriptUsedF policyKeyHash + let tokenPolicyId' = + UnsafeTokenPolicyId . Hash $ + unScriptHash $ toScriptHash scriptUsed + let tokens = TokenMap.singleton + (AssetId tokenPolicyId' tokenName') + (TokenQuantity 50_000) + let burnScript = ApiPolicyScript (ApiT tokenPolicyId') (ApiT scriptUsed) + + let activeAssetsInfo = ApiAssetMintBurn + { tokenMap = ApiT TokenMap.empty + , policyScripts = [] + , walletPolicyKeyHash = Just policyKeyHashPayload + } + let inactiveAssetsInfo = ApiAssetMintBurn + { tokenMap = ApiT tokens + , policyScripts = [burnScript] + , walletPolicyKeyHash = Just policyKeyHashPayload + } + + let burnInfoExpected = Just $ NE.fromList + [ ApiT $ ApiMintBurnInfo + { verificationKeyIndex = ApiT (DerivationIndex 2147483648) + , policyId = ApiT tokenPolicyId' + , assetName = ApiT tokenName' + , subject = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + , policyScript = ApiT scriptUsed + }] + let burnInfo = getFromResponse #mintBurn rTx + burnInfo `shouldBe` burnInfoExpected + + rDecodedTx <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload + verify rDecodedTx + [ expectResponseCode HTTP.status202 + , expectField #assetsMinted (`shouldBe` activeAssetsInfo) + , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + ] diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index 93246a8aa34..a09a59feab8 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -263,7 +263,6 @@ import qualified Data.Sequence.Strict as StrictSeq import qualified Data.Set as Set import qualified Data.Text as T -import qualified Debug.Trace as TR -- | Type encapsulating what we need to know to add things -- payloads, -- certificates -- to a transaction. @@ -1432,7 +1431,7 @@ estimateTxCost pp skeleton = -- estimateTxSize :: TxSkeleton -> TxSize estimateTxSize skeleton = - TR.trace ("skeleton:"<> show skeleton) $ TxSize $ fromIntegral sizeOf_Transaction + TxSize $ fromIntegral sizeOf_Transaction where TxSkeleton { txMetadata From 9251e50dc171bd2d5d54e2f63e7154b6b18efa6d Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 28 Mar 2022 13:26:04 +0200 Subject: [PATCH 10/29] prove that minted assets are in wallet finally --- .../Scenario/API/Shelley/TransactionsNew.hs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 32bfe070311..c60c10bcb9a 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -227,6 +227,7 @@ import qualified Data.Text.Encoding as T import qualified Network.HTTP.Types.Status as HTTP import qualified Test.Integration.Plutus as PlutusScenario + spec :: forall n. ( DecodeAddress n , DecodeStakeAddress n @@ -3751,6 +3752,22 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectResponseCode HTTP.status202 ] + let initialBalance = wa ^. #balance . #available . #getQuantity + let expectedFee = getFromResponse (#fee . #getQuantity) rTx + eventually "Wallet balance is decreased by fee and holds minted assets" $ do + rWa <- request @ApiWallet ctx + (Link.getWallet @'Shelley wa) Default Empty + verify rWa + [ expectSuccess + , expectField + (#balance . #available . #getQuantity) + (`shouldBe` initialBalance - fromIntegral expectedFee) + , expectField (#assets . #available . #getApiT) + (`shouldBe` tokens) + , expectField (#assets . #total . #getApiT) + (`shouldBe` tokens) + ] + mintBurnCheck ctx wa tokenName' payload scriptUsedF = do rTx <- request @(ApiConstructTransaction n) ctx From 5eecd0d0cd3a286c115420e0f2d5790d6be7f329 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 28 Mar 2022 13:40:17 +0200 Subject: [PATCH 11/29] prove burning in integration testing --- .../Scenario/API/Shelley/TransactionsNew.hs | 69 ++++++++++++------- 1 file changed, 43 insertions(+), 26 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index c60c10bcb9a..fff6d659c78 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3252,13 +3252,13 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do it "TRANS_NEW_CREATE_10f - Burning assets without timelock" $ \ctx -> runResourceT $ do - liftIO $ pendingWith "Should work soon, first mint token" wa <- fixtureWallet ctx + addrs <- listAddresses @n ctx wa + let destination = (addrs !! 1) ^. #id let (Right tokenName') = mkTokenName "ab12" - - let payload = Json [json|{ + let payloadMint = Json [json|{ "mint_burn": [{ "policy_script_template": { "all": @@ -3267,9 +3267,12 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do }, "asset_name": #{toText tokenName'}, "operation": - { "burn" : - { "quantity": 50000, - "unit": "assets" + { "mint" : + { "receiving_address": #{destination}, + "amount": { + "quantity": 50000, + "unit": "assets" + } } } }] @@ -3277,25 +3280,15 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let scriptUsed policyKeyHash = RequireAllOf [ RequireSignatureOf policyKeyHash - , ActiveFromSlot 120 ] - mintBurnCheck ctx wa tokenName' payload scriptUsed + mintAssetCheck ctx wa tokenName' payloadMint scriptUsed - it "TRANS_NEW_CREATE_10g - Burning assets with timelock" $ - \ctx -> runResourceT $ do - liftIO $ pendingWith "Should work when interval validity is addressed" - - wa <- fixtureWallet ctx - - let (Right tokenName') = mkTokenName "ab12" - - let payload = Json [json|{ + let payloadBurn = Json [json|{ "mint_burn": [{ "policy_script_template": { "all": - [ "cosigner#0", - { "active_from": 120 } + [ "cosigner#0" ] }, "asset_name": #{toText tokenName'}, @@ -3308,12 +3301,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do }] }|] - let scriptUsed policyKeyHash = RequireAllOf - [ RequireSignatureOf policyKeyHash - , ActiveFromSlot 120 - ] - - mintBurnCheck ctx wa tokenName' payload scriptUsed + burnAssetsCheck ctx wa tokenName' payloadBurn scriptUsed where @@ -3768,7 +3756,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (`shouldBe` tokens) ] - mintBurnCheck ctx wa tokenName' payload scriptUsedF = do + burnAssetsCheck ctx wa tokenName' payload scriptUsedF = do rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload @@ -3823,3 +3811,32 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectField #assetsMinted (`shouldBe` activeAssetsInfo) , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) ] + + let apiTx = getFromResponse #transaction rTx + signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] + let txCbor2 = getFromResponse #transaction (HTTP.status202, Right signedTx) + let decodePayload2 = Json (toJSON $ ApiSerialisedTransaction txCbor2) + rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload2 + verify rDecodedTx2 + [ expectResponseCode HTTP.status202 + , expectField #assetsMinted (`shouldBe` activeAssetsInfo) + , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + ] + + submittedTx <- submitTxWithWid ctx wa signedTx + verify submittedTx + [ expectSuccess + , expectResponseCode HTTP.status202 + ] + + eventually "Wallet balance does not have minted assets anymore" $ do + rWa <- request @ApiWallet ctx + (Link.getWallet @'Shelley wa) Default Empty + verify rWa + [ expectSuccess + , expectField (#assets . #available . #getApiT) + (`shouldBe` TokenMap.empty) + , expectField (#assets . #total . #getApiT) + (`shouldBe` TokenMap.empty) + ] From e44cb749eb3b65460793f43ec33e3727d37f4d65 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 28 Mar 2022 15:02:07 +0200 Subject: [PATCH 12/29] postPolicyPublicKey with optional param plus cleaning --- .../Scenario/API/Shelley/TransactionsNew.hs | 2 +- lib/core/src/Cardano/Wallet/Api.hs | 1 + lib/core/src/Cardano/Wallet/Api/Link.hs | 5 +++-- lib/core/src/Cardano/Wallet/Api/Server.hs | 6 +++--- lib/core/src/Cardano/Wallet/Api/Types.hs | 4 ++-- specifications/api/swagger.yaml | 15 +++++++++++---- 6 files changed, 21 insertions(+), 12 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index fff6d659c78..179e76cd61a 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3670,7 +3670,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (_, policyKeyHashPayload) <- unsafeRequest @ApiPolicyKey ctx policyWithHash Empty - let postPolicyKey = Link.postPolicyKey @'Shelley wa + let postPolicyKey = Link.postPolicyKey @'Shelley wa (Just True) let passwdPayload = Json [json| { "passphrase": #{fixturePassphrase} } |] diff --git a/lib/core/src/Cardano/Wallet/Api.hs b/lib/core/src/Cardano/Wallet/Api.hs index 5c2eec25d5b..f6b39c56960 100644 --- a/lib/core/src/Cardano/Wallet/Api.hs +++ b/lib/core/src/Cardano/Wallet/Api.hs @@ -444,6 +444,7 @@ type GetPolicyKey = "wallets" type PostPolicyKey = "wallets" :> Capture "walletId" (ApiT WalletId) :> "policy-key" + :> QueryParam "hash" Bool :> ReqBody '[JSON] ApiPostPolicyKeyData :> PostAccepted '[JSON] ApiPolicyKey diff --git a/lib/core/src/Cardano/Wallet/Api/Link.hs b/lib/core/src/Cardano/Wallet/Api/Link.hs index 40a012519c0..5858bbd7bd4 100644 --- a/lib/core/src/Cardano/Wallet/Api/Link.hs +++ b/lib/core/src/Cardano/Wallet/Api/Link.hs @@ -419,9 +419,10 @@ postPolicyKey , HasType (ApiT WalletId) w ) => w + -> Maybe Bool -> (Method, Text) -postPolicyKey w = discriminate @style - (endpoint @Api.PostPolicyKey (wid &)) +postPolicyKey w hashed = discriminate @style + (endpoint @Api.PostPolicyKey (\mk -> mk wid hashed)) (notSupported "Byron") (notSupported "Shared") where diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 72bb9397aff..647daa378ef 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -242,7 +242,6 @@ import Cardano.Wallet.Api.Types , ApiNetworkClock (..) , ApiNetworkInformation , ApiNetworkParameters (..) - , ApiPostPolicyKeyData (..) , ApiNullStakeKey (..) , ApiOurStakeKey (..) , ApiPaymentDestination (..) @@ -251,6 +250,7 @@ import Cardano.Wallet.Api.Types , ApiPolicyScript (..) , ApiPoolId (..) , ApiPostAccountKeyDataWithPurpose (..) + , ApiPostPolicyKeyData (..) , ApiPostRandomAddressData (..) , ApiPutAddressesData (..) , ApiRedeemer (..) @@ -3370,15 +3370,15 @@ postPolicyKey ) => ctx -> ApiT WalletId + -> Maybe Bool -> ApiPostPolicyKeyData -> Handler ApiPolicyKey -postPolicyKey ctx (ApiT wid) apiPassphrase = +postPolicyKey ctx (ApiT wid) hashed apiPassphrase = withWorkerCtx @_ @s @ShelleyKey ctx wid liftE liftE $ \wrk -> do k <- liftHandler $ W.writePolicyPublicKey @_ @s @n wrk wid pwd pure $ uncurry ApiPolicyKey (computeKeyPayload hashed (getRawKey k)) where pwd = getApiT (apiPassphrase ^. #passphrase) - hashed = Just True {------------------------------------------------------------------------------- Helpers diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index f47bd231a23..c53badd573c 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1227,8 +1227,8 @@ data ApiPolicyScript = ApiPolicyScript deriving (Eq, Generic, Show) deriving anyclass NFData -data ApiPostPolicyKeyData = ApiPostPolicyKeyData - { passphrase :: !(ApiT (Passphrase "raw")) +newtype ApiPostPolicyKeyData = ApiPostPolicyKeyData + { passphrase :: (ApiT (Passphrase "raw")) } deriving (Eq, Generic, Show) deriving anyclass NFData diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 78a5a29a5f3..f7b5249614d 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -6047,13 +6047,20 @@ paths: /wallets/{walletId}/policy-key: post: operationId: postPolicyKey - tags: ["Transactions"] - summary: Create + tags: ["Keys"] + summary: Create Policy Key description: |

status: stable

- Create policy key for the wallet. Used for public account key derived - wallets or already instantiated mnemonic wallets to set policy public key + Create policy key for the wallet. + + In order to be able to mint/burn assets with `POST Construct` endpoint there needs to be + a policy key set for the wallet. Invoking this endpoint would be required for all wallets instantiated + before introducing mint/burn feature prior to making a mint/burn transaction from them. + + To get a hash of the policy key instead of the policy key, + use query parameter `hash=true`. + parameters: - *parametersWalletId requestBody: From 2c8daddeb76635f5930ea6be926365961d6ab939 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 28 Mar 2022 16:04:09 +0200 Subject: [PATCH 13/29] unify mint/burn response for construct/decode - swagger --- specifications/api/swagger.yaml | 99 +++++++++++++++------------------ 1 file changed, 44 insertions(+), 55 deletions(-) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index f7b5249614d..05d49c145b9 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -970,19 +970,6 @@ x-assetMint: &assetMint Positive values mean creation and negative values mean destruction. -x-assetMintBurn: &assetMintBurn - type: object - required: - - policy_id - - asset_name - - quantity - properties: - policy_id: *assetPolicyId - asset_name: *assetName - quantity: - type: integer - minimum: 0 - x-walletAssetsBalance: &walletAssetsBalance description: | Current non-Ada asset holdings of the wallet. @@ -2419,22 +2406,44 @@ components: properties: transaction: *serialisedTransactionEncoded - ApiMintBurnInfo: &ApiMintBurnInfo + ApiTokenAsset: &ApiTokenAsset type: object required: - - verification_key_index - - policy_id - asset_name - - subject + - quantity + - fingerprint + properties: + asset_name: *assetName + quantity: + type: integer + minimum: 0 + fingerprint: *assetFingerprint + + ApiTokens: &ApiTokens + type: object + required: + - policy_id - policy_script + - assets properties: - verification_key_index: *derivationSegment policy_id: *assetPolicyId - asset_name: *assetName - subject: *assetFingerprint - policy_script: - <<: *ScriptValue - description: The script under which the asset is minted or burned. + policy_script: *ScriptValue + assets: + type: array + minItems: 1 + items: *ApiTokenAsset + + ApiAssetMintBurn: &ApiAssetMintBurn + type: object + required: + - tokens + properties: + tokens: + type: array + minItems: 0 + items: *ApiTokens + wallet_policy_key_hash: *ApiPolicyKey + wallet_policy_key_index: *derivationSegment ApiConstructTransaction: &ApiConstructTransaction type: object @@ -2446,11 +2455,16 @@ components: transaction: *serialisedTransactionBase64 coin_selection: *ApiCoinSelection fee: *amount - mint_burn: + mint: type: array - items: *ApiMintBurnInfo + items: *ApiAssetMintBurn minItems: 1 - description: An entry for each unique asset minted and/or burned, containing helpful information. + description: An entry for each unique asset minted containing helpful information. + burn: + type: array + items: *ApiAssetMintBurn + minItems: 1 + description: An entry for each unique asset burned containing helpful information. ApiTransaction: &ApiTransaction type: object @@ -2511,31 +2525,6 @@ components: description: | Withdrawals that could be external or belong to the wallet. - ApiPolicyScript: &ApiPolicyScript - type: object - required: - - policy_id - - policy_script - properties: - policy_id: *assetPolicyId - policy_script: *ScriptValue - - ApiAssetMintBurn: &ApiAssetMintBurn - type: object - required: - - token_map - - policy_scripts - properties: - token_map: - type: array - minItems: 0 - items: *assetMintBurn - policy_scripts: - type: array - minItems: 0 - items: *ApiPolicyScript - wallet_policy_key_hash: *ApiPolicyKey - ApiStakePoolMetadata: &ApiStakePoolMetadata type: object required: @@ -2605,8 +2594,8 @@ components: - inputs - outputs - withdrawals - - assets_minted - - assets_burned + - mint + - burn - certificates properties: id: *transactionId @@ -2615,8 +2604,8 @@ components: outputs: *ApiOutputsGeneral collateral: *ApiInputsGeneral withdrawals: *ApiWithdrawalsGeneral - assets_minted: *ApiAssetMintBurn - assets_burned: *ApiAssetMintBurn + mint: *ApiAssetMintBurn + burn: *ApiAssetMintBurn certificates: type: array minItems: 0 From f43122f3cf4b68121b9fa3f91b63178e98e9fc25 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Tue, 29 Mar 2022 15:41:59 +0200 Subject: [PATCH 14/29] finish refactoring construct/decode --- .../Scenario/API/Shelley/TransactionsNew.hs | 128 +- lib/core/src/Cardano/Wallet/Api/Server.hs | 97 +- lib/core/src/Cardano/Wallet/Api/Types.hs | 73 +- .../Cardano/Wallet/Api/ApiAssetMintBurn.json | 5948 ++- .../Api/ApiConstructTransactionTestnet0.json | 4029 +- .../Api/ApiDecodedTransactionTestnet0.json | 35821 ++++++++++------ .../Cardano/Wallet/Api/ApiTokenAsset.json | 85 + .../data/Cardano/Wallet/Api/ApiTokens.json | 263 + .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 56 +- specifications/api/swagger.yaml | 30 +- 10 files changed, 31257 insertions(+), 15273 deletions(-) create mode 100644 lib/core/test/data/Cardano/Wallet/Api/ApiTokenAsset.json create mode 100644 lib/core/test/data/Cardano/Wallet/Api/ApiTokens.json diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 179e76cd61a..08b5fa24b04 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -45,13 +45,13 @@ import Cardano.Wallet.Api.Types , ApiDecodedTransaction , ApiDeregisterPool (..) , ApiExternalCertificate (..) - , ApiMintBurnInfo (..) , ApiPolicyKey (..) - , ApiPolicyScript (..) , ApiRegisterPool (..) , ApiSerialisedTransaction (..) , ApiStakePool , ApiT (..) + , ApiTokenAsset (..) + , ApiTokens (..) , ApiTransaction , ApiTxId (..) , ApiTxInput (..) @@ -1320,9 +1320,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let tokenPolicyId' = UnsafeTokenPolicyId $ Hash "\145\158\138\EM\"\170\167d\177\214d\a\198\246\"D\231p\129!_8[`\166 \145I" - let tokens = TokenMap.singleton - (AssetId tokenPolicyId' (UnsafeTokenName "HappyCoin")) - (TokenQuantity 50_000) + let tokenName' = UnsafeTokenName "HappyCoin" let policyWithHash = Link.getPolicyKey @'Shelley wa (Just True) (_, policyKeyHashPayload) <- unsafeRequest @ApiPolicyKey ctx policyWithHash Empty @@ -1331,25 +1329,35 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "i0<\227Sm\242`\239\221\188\148\156\203\148\230\153\&3\STX\177\vw\141\139M\152\191\181" ) let scriptUsed = RequireAllOf [RequireSignatureOf externalPolicyKeyHash] - let mintScript = ApiPolicyScript (ApiT tokenPolicyId') (ApiT scriptUsed) + + let apiTokenAsset = ApiTokenAsset + { assetName = ApiT tokenName' + , amount = Quantity 50_000 + , fingerprint = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + } + let apiTokens = ApiTokens + { policyId = ApiT tokenPolicyId' + , policyScript = ApiT scriptUsed + , assets = NE.fromList [apiTokenAsset] + } let activeAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT tokens - , policyScripts = [mintScript] + { tokens = [apiTokens] , walletPolicyKeyHash = Just policyKeyHashPayload + , walletPolicyKeyIndex = Just $ ApiT (DerivationIndex 2147483648) } let inactiveAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT TokenMap.empty - , policyScripts = [] - , walletPolicyKeyHash = Just policyKeyHashPayload + { tokens = [] + , walletPolicyKeyHash = Nothing + , walletPolicyKeyIndex = Nothing } rTx <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodeMintPayload verify rTx [ expectResponseCode HTTP.status202 , expectField (#fee . #getQuantity) (`shouldBe` 202_725) - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + , expectField #mint (`shouldBe` activeAssetsInfo) + , expectField #burn (`shouldBe` inactiveAssetsInfo) ] -- constructing burning asset tx in cardano-cli @@ -1379,8 +1387,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do verify rTx' [ expectResponseCode HTTP.status202 , expectField (#fee . #getQuantity) (`shouldBe` 202_725) - , expectField #assetsMinted (`shouldBe` inactiveAssetsInfo) - , expectField #assetsBurned (`shouldBe` activeAssetsInfo) + , expectField #mint (`shouldBe` inactiveAssetsInfo) + , expectField #burn (`shouldBe` activeAssetsInfo) ] it "TRANS_NEW_DECODE_03 - \ @@ -3687,39 +3695,38 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do UnsafeTokenPolicyId . Hash $ unScriptHash $ toScriptHash scriptUsed - let tokens = TokenMap.singleton + let tokens' = TokenMap.singleton (AssetId tokenPolicyId' tokenName') (TokenQuantity 50_000) - let mintScript = ApiPolicyScript (ApiT tokenPolicyId') (ApiT scriptUsed) + + let apiTokenAsset = ApiTokenAsset + { assetName = ApiT tokenName' + , amount = Quantity 50_000 + , fingerprint = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + } + let apiTokens = ApiTokens + { policyId = ApiT tokenPolicyId' + , policyScript = ApiT scriptUsed + , assets = NE.fromList [apiTokenAsset] + } let activeAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT tokens - , policyScripts = [mintScript] + { tokens = [apiTokens] , walletPolicyKeyHash = Just policyKeyHashPayload + , walletPolicyKeyIndex = Just $ ApiT (DerivationIndex 2147483648) } let inactiveAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT TokenMap.empty - , policyScripts = [] - , walletPolicyKeyHash = Just policyKeyHashPayload + { tokens = [] + , walletPolicyKeyHash = Nothing + , walletPolicyKeyIndex = Nothing } - let mintInfoExpected = Just $ NE.fromList - [ ApiT $ ApiMintBurnInfo - { verificationKeyIndex = ApiT (DerivationIndex 2147483648) - , policyId = ApiT tokenPolicyId' - , assetName = ApiT tokenName' - , subject = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' - , policyScript = ApiT scriptUsed - }] - let mintInfo = getFromResponse #mintBurn rTx - mintInfo `shouldBe` mintInfoExpected - rDecodedTx1 <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodePayload1 verify rDecodedTx1 [ expectResponseCode HTTP.status202 - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + , expectField #mint (`shouldBe` activeAssetsInfo) + , expectField #burn (`shouldBe` inactiveAssetsInfo) ] let apiTx = getFromResponse #transaction rTx @@ -3730,8 +3737,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (Link.decodeTransaction @'Shelley wa) Default decodePayload2 verify rDecodedTx2 [ expectResponseCode HTTP.status202 - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + , expectField #mint (`shouldBe` activeAssetsInfo) + , expectField #burn (`shouldBe` inactiveAssetsInfo) ] submittedTx <- submitTxWithWid ctx wa signedTx @@ -3751,9 +3758,9 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (#balance . #available . #getQuantity) (`shouldBe` initialBalance - fromIntegral expectedFee) , expectField (#assets . #available . #getApiT) - (`shouldBe` tokens) + (`shouldBe` tokens') , expectField (#assets . #total . #getApiT) - (`shouldBe` tokens) + (`shouldBe` tokens') ] burnAssetsCheck ctx wa tokenName' payload scriptUsedF = do @@ -3777,39 +3784,34 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let tokenPolicyId' = UnsafeTokenPolicyId . Hash $ unScriptHash $ toScriptHash scriptUsed - let tokens = TokenMap.singleton - (AssetId tokenPolicyId' tokenName') - (TokenQuantity 50_000) - let burnScript = ApiPolicyScript (ApiT tokenPolicyId') (ApiT scriptUsed) + let apiTokenAsset = ApiTokenAsset + { assetName = ApiT tokenName' + , amount = Quantity 50_000 + , fingerprint = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + } + let apiTokens = ApiTokens + { policyId = ApiT tokenPolicyId' + , policyScript = ApiT scriptUsed + , assets = NE.fromList [apiTokenAsset] + } let activeAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT TokenMap.empty - , policyScripts = [] - , walletPolicyKeyHash = Just policyKeyHashPayload + { tokens = [] + , walletPolicyKeyHash = Nothing + , walletPolicyKeyIndex = Nothing } let inactiveAssetsInfo = ApiAssetMintBurn - { tokenMap = ApiT tokens - , policyScripts = [burnScript] + { tokens = [apiTokens] , walletPolicyKeyHash = Just policyKeyHashPayload + , walletPolicyKeyIndex = Just $ ApiT (DerivationIndex 2147483648) } - let burnInfoExpected = Just $ NE.fromList - [ ApiT $ ApiMintBurnInfo - { verificationKeyIndex = ApiT (DerivationIndex 2147483648) - , policyId = ApiT tokenPolicyId' - , assetName = ApiT tokenName' - , subject = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' - , policyScript = ApiT scriptUsed - }] - let burnInfo = getFromResponse #mintBurn rTx - burnInfo `shouldBe` burnInfoExpected - rDecodedTx <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodePayload verify rDecodedTx [ expectResponseCode HTTP.status202 - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + , expectField #mint (`shouldBe` activeAssetsInfo) + , expectField #burn (`shouldBe` inactiveAssetsInfo) ] let apiTx = getFromResponse #transaction rTx @@ -3820,8 +3822,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (Link.decodeTransaction @'Shelley wa) Default decodePayload2 verify rDecodedTx2 [ expectResponseCode HTTP.status202 - , expectField #assetsMinted (`shouldBe` activeAssetsInfo) - , expectField #assetsBurned (`shouldBe` inactiveAssetsInfo) + , expectField #mint (`shouldBe` activeAssetsInfo) + , expectField #burn (`shouldBe` inactiveAssetsInfo) ] submittedTx <- submitTxWithWid ctx wa signedTx diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 647daa378ef..83afcaa0661 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -234,7 +234,6 @@ import Cardano.Wallet.Api.Types , ApiFee (..) , ApiForeignStakeKey (..) , ApiMintBurnData (..) - , ApiMintBurnInfo (..) , ApiMintBurnOperation (..) , ApiMintData (..) , ApiMnemonicT (..) @@ -247,7 +246,8 @@ import Cardano.Wallet.Api.Types , ApiPaymentDestination (..) , ApiPendingSharedWallet (..) , ApiPolicyKey (..) - , ApiPolicyScript (..) + , ApiTokens (..) + , ApiTokenAsset (..) , ApiPoolId (..) , ApiPostAccountKeyDataWithPurpose (..) , ApiPostPolicyKeyData (..) @@ -460,6 +460,8 @@ import Cardano.Wallet.Primitive.Types.Redeemer ( Redeemer (..) ) import Cardano.Wallet.Primitive.Types.TokenBundle ( Flat (..), TokenBundle (..) ) +import Cardano.Wallet.Primitive.Types.TokenQuantity + ( TokenQuantity (..) ) import Cardano.Wallet.Primitive.Types.TokenMap ( AssetId (..), fromFlatList, toNestedList ) import Cardano.Wallet.Primitive.Types.TokenPolicy @@ -492,6 +494,7 @@ import Cardano.Wallet.Transaction , TransactionLayer (..) , Withdrawal (..) , defaultTransactionCtx + , TokenMapWithScripts (..) ) import Cardano.Wallet.Unsafe ( unsafeRunExceptT ) @@ -2336,47 +2339,15 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do tx <- liftHandler $ W.constructTransaction @_ @s @k @n wrk wid txCtx' sel - let (tokenMap1, scriptMap1) = txAssetsToMint txCtx' - let (tokenMap2, scriptMap2) = txAssetsToBurn txCtx' - pure $ ApiConstructTransaction { transaction = ApiT tx , coinSelection = mkApiCoinSelection (maybeToList deposit) (maybeToList refund) Nothing md sel' - , mintBurn = - toMintBurnList - ( tokenMap1 <> tokenMap2 - , Map.union scriptMap1 scriptMap2) , fee = Quantity $ fromIntegral fee } where ti :: TimeInterpreter (ExceptT PastHorizonException IO) ti = timeInterpreter (ctx ^. networkLayer) - toMintBurn (policy, name, script) = ApiT $ ApiMintBurnInfo - { verificationKeyIndex = - ApiT $ DerivationIndex $ - getIndex (minBound :: Index 'Hardened 'PolicyK) - , policyId = ApiT policy - , assetName = ApiT name - , subject = ApiT $ mkTokenFingerprint policy name - , policyScript = ApiT script - } - askForScript (policy, name) scriptMap = - case Map.lookup (AssetId policy name) scriptMap of - Just script -> script - Nothing -> error "askForScript: no minting/burning without script" - toMintBurnTriple scriptmap tokenmap = - [ (policy, token, askForScript (policy, token) scriptmap) - | (policy, tokenQuantities) <- toNestedList tokenmap - , (token, _) <- NE.toList tokenQuantities - ] - toMintBurnList (tokenMap, scriptMap) = - if tokenMap == TokenMap.empty then - Nothing - else - Just $ NE.fromList $ - map toMintBurn $ - toMintBurnTriple scriptMap tokenMap -- TODO: Most of the body of this function should really belong to -- Cardano.Wallet to keep the Api.Server module free of business logic! @@ -2459,8 +2430,8 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do , outputs = map toOut outsPath , collateral = map toInp collsOutsPaths , withdrawals = map (toWrdl acct) $ Map.assocs wdrlMap - , assetsMinted = toApiAssetMintBurn policyXPubM toMint - , assetsBurned = toApiAssetMintBurn policyXPubM toBurn + , mint = toApiAssetMintBurn policyXPubM toMint + , burn = toApiAssetMintBurn policyXPubM toBurn , certificates = map (toApiAnyCert acct acctPath) allCerts , depositsTaken = (Quantity . fromIntegral . unCoin . W.stakeKeyDeposit $ pp) @@ -2475,19 +2446,49 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do } where tl = ctx ^. W.transactionLayer @k + policyIx = ApiT $ DerivationIndex $ + getIndex (minBound :: Index 'Hardened 'PolicyK) + + askForScript policyId scriptMap = + case Map.lookup policyId scriptMap of + Just script -> script + Nothing -> error "askForScript: no minting/burning without script" + + toIdScriptAssets scriptmap tokenmap = + [ (policy, askForScript policy scriptmap, tokenQuantities) + | (policy, tokenQuantities) <- toNestedList tokenmap + ] + + toTokenAsset policy (name, tokenquantity) = ApiTokenAsset + { assetName = ApiT name + , amount = Quantity $ unTokenQuantity tokenquantity + , fingerprint = ApiT $ mkTokenFingerprint policy name + } + + fromIdScriptAssets (policy, script, tokens) = ApiTokens + { policyId = ApiT policy + , policyScript = ApiT script + , assets = NE.map (toTokenAsset policy) tokens + } + + toApiTokens (TokenMapWithScripts tokenMap scriptMap) = + if tokenMap == TokenMap.empty then + [] + else + map fromIdScriptAssets $ + toIdScriptAssets scriptMap tokenMap + includePolicyKeyInfo (TokenMapWithScripts tokenMap _) xpubM = + if tokenMap == TokenMap.empty then + Nothing + else + xpubM toApiAssetMintBurn xpubM tokenWithScripts = ApiAssetMintBurn - { tokenMap = ApiT $ tokenWithScripts ^. #txTokenMap - , policyScripts = - map (uncurry ApiPolicyScript) $ - Map.toList $ - Map.map ApiT $ - Map.mapKeys ApiT $ - tokenWithScripts ^. #txScripts - , walletPolicyKeyHash = case xpubM of - Just xpub -> - Just $ uncurry ApiPolicyKey (computeKeyPayload (Just True) xpub) - Nothing -> - Nothing + { tokens = toApiTokens tokenWithScripts + , walletPolicyKeyHash = + uncurry ApiPolicyKey . computeKeyPayload (Just True) <$> + includePolicyKeyInfo tokenWithScripts xpubM + , walletPolicyKeyIndex = + (const policyIx) <$> includePolicyKeyInfo tokenWithScripts xpubM } toOut (txoutIncoming, Nothing) = ExternalOutput $ toAddressAmount @n txoutIncoming diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index c53badd573c..fff9265c34e 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -96,7 +96,6 @@ module Cardano.Wallet.Api.Types , PostTransactionFeeOldData (..) , ApiSerialisedTransaction (..) , ApiTransaction (..) - , ApiMintBurnInfo (..) , ApiWithdrawalPostData (..) , ApiMaintenanceAction (..) , ApiMaintenanceActionPostData (..) @@ -173,7 +172,8 @@ module Cardano.Wallet.Api.Types , ApiRegisterPool (..) , ApiDeregisterPool (..) , ApiAssetMintBurn (..) - , ApiPolicyScript (..) + , ApiTokens (..) + , ApiTokenAsset (..) -- * API Types (Byron) , ApiByronWallet (..) @@ -917,7 +917,6 @@ data ByronWalletPutPassphraseData = ByronWalletPutPassphraseData data ApiConstructTransaction (n :: NetworkDiscriminant) = ApiConstructTransaction { transaction :: !(ApiT SealedTx) , coinSelection :: !(ApiCoinSelection n) - , mintBurn :: !(Maybe (NonEmpty (ApiT ApiMintBurnInfo))) , fee :: !(Quantity "lovelace" Natural) } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData @@ -1220,23 +1219,32 @@ data ApiAnyCertificate n = deriving (Eq, Generic, Show) deriving anyclass NFData -data ApiPolicyScript = ApiPolicyScript - { policyId :: !(ApiT W.TokenPolicyId) - , policyScript :: !(ApiT (Script KeyHash)) +newtype ApiPostPolicyKeyData = ApiPostPolicyKeyData + { passphrase :: (ApiT (Passphrase "raw")) } deriving (Eq, Generic, Show) deriving anyclass NFData -newtype ApiPostPolicyKeyData = ApiPostPolicyKeyData - { passphrase :: (ApiT (Passphrase "raw")) +data ApiTokenAsset = ApiTokenAsset + { assetName :: !(ApiT W.TokenName) + , amount :: !(Quantity "assets" Natural) + , fingerprint :: !(ApiT W.TokenFingerprint) + } + deriving (Eq, Generic, Show) + deriving anyclass NFData + +data ApiTokens = ApiTokens + { policyId :: !(ApiT W.TokenPolicyId) + , policyScript :: !(ApiT (Script KeyHash)) + , assets :: !(NonEmpty ApiTokenAsset) } deriving (Eq, Generic, Show) deriving anyclass NFData data ApiAssetMintBurn = ApiAssetMintBurn - { tokenMap :: !(ApiT W.TokenMap) - , policyScripts :: ![ApiPolicyScript] + { tokens :: ![ApiTokens] , walletPolicyKeyHash :: !(Maybe ApiPolicyKey) + , walletPolicyKeyIndex :: !(Maybe (ApiT DerivationIndex)) } deriving (Eq, Generic, Show) deriving anyclass NFData @@ -1248,8 +1256,8 @@ data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction , outputs :: ![ApiTxOutputGeneral n] , collateral :: ![ApiTxInputGeneral n] , withdrawals :: ![ApiWithdrawalGeneral n] - , assetsMinted :: !ApiAssetMintBurn - , assetsBurned :: !ApiAssetMintBurn + , mint :: !ApiAssetMintBurn + , burn :: !ApiAssetMintBurn , certificates :: ![ApiAnyCertificate n] , depositsTaken :: ![Quantity "lovelace" Natural] , depositsReturned :: ![Quantity "lovelace" Natural] @@ -1258,27 +1266,6 @@ data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData -data ApiMintBurnInfo = ApiMintBurnInfo - { verificationKeyIndex - :: !(ApiT DerivationIndex) - -- ^ The monetary policy index the asset was minted/burned under. - , policyId - :: !(ApiT W.TokenPolicyId) - -- ^ The policy ID the asset was minted/burned under. - , assetName - :: !(ApiT W.TokenName) - -- ^ The name of the asset minted/burned. - , subject - :: !(ApiT W.TokenFingerprint) - -- ^ The subject of the asset minted/burned. This is useful to users - -- wishing to attach metadata to their asset. - , policyScript - :: !(ApiT (Script KeyHash)) - -- ^ The script which this asset was minted and/or burned under - } - deriving (Eq, Generic, Show) - deriving anyclass NFData - newtype ApiTxMetadata = ApiTxMetadata { getApiTxMetadata :: Maybe (ApiT TxMetadata) } @@ -2104,9 +2091,14 @@ instance FromJSON ApiAssetMintBurn where instance ToJSON ApiAssetMintBurn where toJSON = genericToJSON defaultRecordTypeOptions -instance FromJSON ApiPolicyScript where +instance FromJSON ApiTokenAsset where + parseJSON = genericParseJSON defaultRecordTypeOptions +instance ToJSON ApiTokenAsset where + toJSON = genericToJSON defaultRecordTypeOptions + +instance FromJSON ApiTokens where parseJSON = genericParseJSON defaultRecordTypeOptions -instance ToJSON ApiPolicyScript where +instance ToJSON ApiTokens where toJSON = genericToJSON defaultRecordTypeOptions instance FromJSON ApiPostPolicyKeyData where @@ -4066,17 +4058,6 @@ instance DecodeAddress n => FromJSON (ApiMintBurnOperation n) where [] -> fail "Must include a \"mint\" or \"burn\" property." _ -> fail "May be either a \"mint\" or a \"burn\"." -instance FromJSON ApiMintBurnInfo where - parseJSON = genericParseJSON defaultRecordTypeOptions - -instance ToJSON ApiMintBurnInfo where - toJSON = genericToJSON defaultRecordTypeOptions - -instance FromJSON (ApiT ApiMintBurnInfo) where - parseJSON = fmap ApiT . parseJSON -instance ToJSON (ApiT ApiMintBurnInfo) where - toJSON = toJSON . getApiT - instance FromJSON (ApiT (Script KeyHash)) where parseJSON = fmap ApiT . parseJSON instance ToJSON (ApiT (Script KeyHash)) where diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiAssetMintBurn.json b/lib/core/test/data/Cardano/Wallet/Api/ApiAssetMintBurn.json index 0dbcb1c9762..733c5428514 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiAssetMintBurn.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiAssetMintBurn.json @@ -1,256 +1,5578 @@ { - "seed": -3650441911124139389, + "seed": 9143873689760287490, "samples": [ { - "token_map": [ + "tokens": [ { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": { + "all": [ + "policy_vkh1aznnkwqmdj2a9j6swuyeyas6wwct9lzylg6x9wr77u7nw2cpk3p", + { + "active_from": 100 + } + ] + }, + "policy_id": "e8a73b381b6c95d2cb50770992761a73b0b2fc44fa3462b87ef73d37", + "assets": [ + { + "fingerprint": "asset1j8ae2gmnw4amwxerp3m0y8lm49t7kfua3zcqdv", + "amount": { + "quantity": 7800, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1vu6k0xgjlqmhanzlrtphk4efmszfl59pq940yp", + "amount": { + "quantity": 3236, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1fl07c4d5epwpadusjf9st0wnxctw7srjh3389x", + "amount": { + "quantity": 8087, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1y2t7xxda84gelyls8vg333fw8qrwlrdt7j66dqdgwvqckftmhp6", + { + "active_from": 100 + } + ] + }, + "policy_id": "2297e319bd3d519f93f03b1118c52e3806ef8dabf4b5a681a873018b", + "assets": [ + { + "fingerprint": "asset1l8ncydg44nrdzt3qzqqr9m8k046pz9zc4hq5rq", + "amount": { + "quantity": 6706, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1mgklpewr6mcpsdn4n5rj7eys0yrww54zv56a7q", + "amount": { + "quantity": 7358, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1a3gt82zlt3gaavrq4krnay8qrzs9qy4ths6426", + "amount": { + "quantity": 9315, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1tpsp8fdd9whjkvkcq5my5jgvxqvh5l78sq96p8mc6p6rx5vyj2q", + { + "active_from": 100 + } + ] + }, + "policy_id": "586013a5ad2baf2b32d805364a490c30197a7fc7800ba09f78d07433", + "assets": [ + { + "fingerprint": "asset1ellsd4j04r39d8hx5qkhm4qutrpgpdx986qfag", + "amount": { + "quantity": 9799, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1q2wrkx5ahyp74w9gwcpu7z86equwtv37rxyxjxwaehz07uhpc0n", + { + "active_from": 100 + } + ] + }, + "policy_id": "029c3b1a9db903eab8a87603cf08fac838e5b23e19886919ddcdc4ff", + "assets": [ + { + "fingerprint": "asset14j53q8uq6z7ajdfaqwqu6cpxr2k8npjg8pff3s", + "amount": { + "quantity": 2550, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1k4vujhwy2yl76zyk9pd73wy7pw2wlglaj5fxgy", + "amount": { + "quantity": 6036, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1mylxj6sycyr77dpmj4nke0f9zulqs94szckn08", + "amount": { + "quantity": 2072, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1hwlldn7tae2y52zuk3e00jzrjt4xhjrpnuk2mfsx8re2z805r54", + { + "active_from": 100 + } + ] + }, + "policy_id": "bbbff6cfcbee544a285cb472f7c84392ea6bc8619f2cada60638f2a1", + "assets": [ + { + "fingerprint": "asset1acntnhg2v4fze5m2pk86aq5kpry0q7l5879e76", + "amount": { + "quantity": 7553, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": "policy_vkh1pd6xa5gkq8fuav2xlpr5396kq7xzznvg5wa7ywx9xnyn5n3hurk", + "policy_id": "0b746ed11601d3ceb146f847489756078c214d88a3bbe238c534c93a", + "assets": [ + { + "fingerprint": "asset1trk9mvmgxsd2s9gcuuh2mvsrp9t29c59dmem6l", + "amount": { + "quantity": 3230, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1rmxv6vvrqw77rnau6lwp055q567x37qszpttcd", + "amount": { + "quantity": 6818, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1m5lf2tjnn8dysyayd5mzax6r95dqw08n5j5kam", + "amount": { + "quantity": 9424, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh169j08vg0mtv8g7e8f28ul4gp4wrpw3ryrnthr0na7twpye7ernx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d164f3b10fdad8747b274a8fcfd501ab861744641cd771be7df2dc12", + "assets": [ + { + "fingerprint": "asset1gcm2m9u3zgk5a8w53p8v52jxpw7wsl3wwqsywk", + "amount": { + "quantity": 695, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset19jlhyf0qm4a0ys4j9umz5m09s7p84qtvcyw4rx", + "amount": { + "quantity": 6707, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1suvdclry36dhhz4ut2lkrelyxmuyxe2lmell6tmu49h6wujf0ue", + { + "active_from": 100 + } + ] + }, + "policy_id": "8718dc7c648e9b7b8abc5abf61e7e436f843655fde7ffd2f7ca96fa7", + "assets": [ + { + "fingerprint": "asset1uv20a68mtxzuws9h0lsjdxsjy6h7h2e6wwk6xf", + "amount": { + "quantity": 6058, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset17jx8zq762kfn39vn938glt0zpacjsyk33c6kuq", + "amount": { + "quantity": 6740, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1x9ufpjrlev0x8cdj5yvdtwx4d9mm66cuarmelu3ej4p0gscg6hw", + "policy_id": "317890c87fcb1e63e1b2a118d5b8d56977bd6b1ce8f79ff2399542f4", + "assets": [ + { + "fingerprint": "asset1mdlygg4pe3lz3t0x2mlsmetapvuup4sewlu89a", + "amount": { + "quantity": 4025, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1t3k3n989rqj4fakymskepc9vmqfwvt8h0dwjr5", + "amount": { + "quantity": 3635, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1hnf4vm469sqly3gjcud77su78qpkzq5mqt4kv0", + "amount": { + "quantity": 7886, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1adj7e0mez9et5adp6zlxzxum9x7qeh6rj4xd8u", + "amount": { + "quantity": 4884, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": "policy_vkh1tyxyauyl20npwanznwv33sy2g8dylwkqk2eed85qlkzryscccgn", + "policy_id": "590c4ef09f53e61776629b9918c08a41da4fbac0b2b3969e80fd8432", + "assets": [ + { + "fingerprint": "asset15ex7hakwqhh6664l62wtkv877urera6hc9zl7n", + "amount": { + "quantity": 6887, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset106trn9vejjfma5j042rxaxy40ss966363mhv23", + "amount": { + "quantity": 8085, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1p8lhfj99u5lsx3jd9a08xftgyayxa3rzx60njz", + "amount": { + "quantity": 18, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1zyjrewtq4fuxf9rpvwqgwz0zamppx8twj9shclganfcxgq3yaph", + "policy_id": "11243cb960aa7864946163808709e2eec2131d6e91617c7d1d9a7064", + "assets": [ + { + "fingerprint": "asset1sszdj0dl86j7nuacvpdxya2jnrxey3uue7kk0d", + "amount": { + "quantity": 59, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1vgw7f5qexytsdk35j0n8ykl6zgmu0wct09k9ss", + "amount": { + "quantity": 1682, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1y03f80jfa3e2zmr9v7vvcttnfqms0q57gxzqr7", + "amount": { + "quantity": 1604, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1t2tklsx0hq0d0fu22lacplxksqjeqdh9m3nzla", + "amount": { + "quantity": 1418, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ns4v2m6alcd7zx3tsz4mtryvqze73xd5c6gxnczs2dpm5t4uwve", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "9c2ac56f5dfe1be11a2b80abb58c8c00b3e899b4c69069e0505343ba", + "assets": [ + { + "fingerprint": "asset1x9rqyz6r00qc7774g087h36klj20skylqw6gjs", + "amount": { + "quantity": 8798, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1jrcm4npdkdlzurvhr9pyf66fmt5lerlds7x9zemtandyckq0psw", + { + "active_from": 100 + } + ] + }, + "policy_id": "90f1bacc2db37e2e0d97194244eb49dae9fc8fed878c51676becda4c", + "assets": [ + { + "fingerprint": "asset1p85rf66yaghayksn4z52zppg3nwazczzcu0qlm", + "amount": { + "quantity": 1019, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset132z82jy265cyyvust06s48nwl8v57ag5g0qy7e", + "amount": { + "quantity": 1629, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1ht5eeq9fh59wd9npjyjr6xlcr58fk6anphu6tv", + "amount": { + "quantity": 5956, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset19jmgkv04j7gf8m8nw4dttguwsupdqkl3ztf37s", + "amount": { + "quantity": 2315, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c0d0zk5msgsvwclhpv5waa5m77flv7l8jd2jwhdl4m0t6alps35", + { + "active_from": 100 + } + ] + }, + "policy_id": "c3daf15a9b8220c763f70b28eef69bf793f67be79355275dbfaedebd", + "assets": [ + { + "fingerprint": "asset12wfaarek05mu043ae5u4h8um26sjmd6vyzlkwg", + "amount": { + "quantity": 8049, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1mna9swja05cydq9uafkgl5fhnwz4r5v6uj44pu", + "amount": { + "quantity": 9989, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1m3ew2yd4gdxlgtnnkauhgsztptn3v56y60dt478s3xthvgmzfvu", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "dc72e511b5434df42e73b77974404b0ae7165344d3dabaf8f0899776", + "assets": [ + { + "fingerprint": "asset1u0ky2w5wsjvhpczv23phmqxq9jzc74qtlv8mwe", + "amount": { + "quantity": 1193, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1mlpqxj5kdtahjhxml87df5cdzp9wtfqxsejdcm", + "amount": { + "quantity": 3647, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1jpgmhmdjq7tzzgrgrhctn729ahxf0l0svk3ay0", + "amount": { + "quantity": 6452, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1xyp4jllfnpf0gymywknfg4n2s9kv28rkz4pq79", + "amount": { + "quantity": 8613, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh19669wj430dvwmdh850fqfzfc77unf3hmrhpmfr2egfzgyduqez5", + "policy_id": "2eb4574ab17b58edb6e7a3d2048938f7b934c6fb1dc3b48d59424482", + "assets": [ + { + "fingerprint": "asset14jlqs8r4fwl07l4pujh58s44geeh6awgfqk6l8", + "amount": { + "quantity": 8641, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1p6y2a5s3l8ljhwjqsnt67apykksqh2uqqv7vrr", + "amount": { + "quantity": 7597, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1knn5282ucxfvle4m9nlrnhl4fssu2mh9ta7xu3", + "amount": { + "quantity": 9296, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1r9lg560mrd4935ufmvv4d64yh0pdq035cc44hh", + "amount": { + "quantity": 5561, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": "policy_vkh1vmy09q8wh73qryw55fvsdk93texkhfp7yrj04t7kuddpv6ts5sq", + "policy_id": "66c8f280eebfa20191d4a25906d8b15e4d6ba43e20e4faafd6e35a16", + "assets": [ + { + "fingerprint": "asset1qvtvxj9lg77ceak205yvh3ltkl20umf4lfctzl", + "amount": { + "quantity": 715, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1vnw0gw9rzaa78tvz7lupcrzhneqghus8jm0gk7", + "amount": { + "quantity": 9333, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1g7ugqky5dn60daygr8w2vcydtv7e6zxul37sd4", + "amount": { + "quantity": 8874, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset17uvejncman0lrrhsvw4768f4wu5l5qpjkp72ms", + "amount": { + "quantity": 2133, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1acmqrsr7mmdzyjmmne2n2xtxp82trpk4acwaee6e3ucmkvu7sxa", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ee3601c07ededa224b7b9e5535196609d4b186d5ee1ddce7598f31bb", + "assets": [ + { + "fingerprint": "asset13r88pqlak8vem9dp3gvxahf5mq03mlwpr6smda", + "amount": { + "quantity": 4580, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1d4tp9s2pz593szysp7dkq5ztx58a5e29t4h8s4", + "amount": { + "quantity": 6553, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1s2gjra04ll55s92mz7nm85m95s36yvuqgt7h9h", + "amount": { + "quantity": 8741, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset16a4dhnfxvus29ph6pj73u9yldpwxghcg2hca76", + "amount": { + "quantity": 9420, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qsgd30mzw3u94nuqmg4vqy5rd33gtnm8nvfcxn736dldzk7uhjm", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "0410d8bf6274785acf80da2ac012836c6285cf679b13834fd1d37ed1", + "assets": [ + { + "fingerprint": "asset16c8ejwv23lrhzcdvz94k578rulpweva84ekuc7", + "amount": { + "quantity": 4401, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1jwr2a64unvtjszu487a5zuhqj83zf7765rrgh7", + "amount": { + "quantity": 3007, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1p5gr2vnwnhqf3evggaz23g2nvfexxn8j7heaue", + "amount": { + "quantity": 852, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1rypze7melyhp3jn3am6szta805mchtfepr598l", + "amount": { + "quantity": 5896, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh127srajfz6m99wg4t0j9s9dgn4z6lguwh37ghs5vra9ccjphqnrr", + { + "active_from": 100 + } + ] + }, + "policy_id": "57a03ec922d6ca5722ab7c8b02b513a8b5f471d78f91785183e97189", + "assets": [ + { + "fingerprint": "asset18xnqydfxysqe6n5ttzsusmh9cag4pyweg3cvch", + "amount": { + "quantity": 9811, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1l2y38ktyk9d8k06wltpgsw7svu4luqc82gcefa", + "amount": { + "quantity": 6521, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ud5ma7h5p83zpqg0z3wdcgfrlqr0j559qu56yrh59w3dk2h4ndv", + { + "active_from": 100 + } + ] + }, + "policy_id": "e369befaf409e220810f145cdc2123f806f952850729a20ef42ba2db", + "assets": [ + { + "fingerprint": "asset1xvffv7t954t6mp7t5lhx47r45p05kf95arnke0", + "amount": { + "quantity": 6424, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + } + ], + "wallet_policy_key_index": "0H" + }, + { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1hqx89apyq5rul308pp77czxscgx3ecm3f6cs2yewlz7z7fuflv5", + { + "active_from": 100 + } + ] + }, + "policy_id": "b80c72f4240507cfc5e7087dec08d0c20d1ce3714eb105132ef8bc2f", + "assets": [ + { + "fingerprint": "asset1cz5ey378asujzmnhle3t67vqekyvrlx49n3ts3", + "amount": { + "quantity": 2617, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1se8mz7eja6rqfhgsm9v5z3jh90428wkl3j3qh0", + "amount": { + "quantity": 5526, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1av565fwcmd3fzhzlvtk2r52dg6ru2kk7xs8rp3p7mdq3ua9hcep", + { + "active_from": 100 + } + ] + }, + "policy_id": "eb29aa25d8db62915c5f62eca1d14d4687c55ade340e30c43edb411e", + "assets": [ + { + "fingerprint": "asset1vnyq384sq0ndsut5pucatefqeaqhta3z6v36m0", + "amount": { + "quantity": 7612, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1gx9hf7zk83gwtddzr6kfdnlxj9a669g2fvrun6sln42j7xk2023", + "policy_id": "418b74f8563c50e5b5a21eac96cfe6917bad150a4b07c9ea1f9d552f", + "assets": [ + { + "fingerprint": "asset1pvyl323wjt646xa02m92nklq7jgt5aj0nv4jpa", + "amount": { + "quantity": 314, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1zdl456nvylrggpvyhyyyj4j0xzhkstq0nmqed0", + "amount": { + "quantity": 2108, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1jnwhlpcz5wald0dx2pujdkw3s5cleyc4xjpz5w", + "amount": { + "quantity": 3799, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset130tg6dnpfvnm080gzr5mxgxf9g2nrnc0vmzyhm", + "amount": { + "quantity": 7252, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": "policy_vkh150sm769frrq0wawq3mquhhm8p6gsy3vdjznkukzaf79tva6nn8c", + "policy_id": "a3e1bf68a918c0f775c08ec1cbdf670e9102458d90a76e585d4f8ab6", + "assets": [ + { + "fingerprint": "asset1qj96drn7x7ltpwgz9z9apcvgkanv5vtwg3cgaw", + "amount": { + "quantity": 2521, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh19yw22f9yyhy0whejsqu0ymsxkhnu74qjem8a9ycayaunkzu9tdq", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "291ca524a425c8f75f328038f26e06b5e7cf5412cecfd2931d27793b", + "assets": [ + { + "fingerprint": "asset17r8xjtg4nrhz2t3hvakzxhvttjrpjhhyqj373w", + "amount": { + "quantity": 5852, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1hz50wdmzmanpgdjxh8swpkg9zg4azxa29kq5z8mhj7d5zalhw7u", + "policy_id": "b8a8f73762df66143646b9e0e0d905122bd11baa2d81411f77979b41", + "assets": [ + { + "fingerprint": "asset1ngeede3x24qm98a48u5j67kamaek48tz8jrj7q", + "amount": { + "quantity": 6494, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset13c3r9fl9xp4d4e6p7zma403rxqfkqj77k5xxhm", + "amount": { + "quantity": 324, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset17zen5rj9u5k82leghthyx3vjkyn69263qxwmsu", + "amount": { + "quantity": 6101, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh147emnspmkaxmw3wgjxnurqus7e097n8vxzn48866aa7xu2x8040", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "afb3b9c03bb74db745c891a7c18390f65e5f4cec30a7539f5aef7c6e", + "assets": [ + { + "fingerprint": "asset1snqqn3qhtjmgd9wrurzejp6rt8ugy3xv2dm0q4", + "amount": { + "quantity": 257, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset16drgxr7ly95222uu6kaqs769mr2e9780fc6kxe", + "amount": { + "quantity": 9713, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1z0ccw585cyugadm00hasdze63d43nmu2gnz5mpr7fqhhg75meqq", + { + "active_from": 100 + } + ] + }, + "policy_id": "13f18750f4c1388eb76f7dfb068b3a8b6b19ef8a44c54d847e482f74", + "assets": [ + { + "fingerprint": "asset1tr2cssxeneg9j2d57zd8awam3h9ypvggr7jd4f", + "amount": { + "quantity": 6158, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1ghejtqnnsdg5s6p0fq023sq7urtgy6txpzlqq0", + "amount": { + "quantity": 7979, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1s2qna4nuc5tnzng34cawgxgh73vnyepwwfupvt", + "amount": { + "quantity": 1080, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1guss4xv9dplhm690zhk5dnmr5lc7jeyqzf96rc", + "amount": { + "quantity": 5528, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + } + ], + "wallet_policy_key_index": "0H" + }, + { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1eajsglk25079w8nsuys4c522j7zpf8rs74mqyr9wl24e57axdsl", + { + "active_from": 100 + } + ] + }, + "policy_id": "cf65047ecaa3fc571e70e1215c514a9784149c70f576020caefaab9a", + "assets": [ + { + "fingerprint": "asset1fhf2tn08hyyg3ysh4lu77ksqjzykjkh4u29sus", + "amount": { + "quantity": 2696, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": "policy_vkh1sgrg2cd38gm8k2ddfqya2jjwsa0yssxrhu524emcv3fsxcck36t", + "policy_id": "82068561b13a367b29ad4809d54a4e875e4840c3bf28aae778645303", + "assets": [ + { + "fingerprint": "asset1re0mgj3xp0qhz7f27r6scga4c3vwlq46mjsjrt", + "amount": { + "quantity": 442, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1mkg84s48tr7mpd6g7etv9melpgwmpgvl2q8tpr", + "amount": { + "quantity": 2038, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset106yez3zwfdpu63dtfd9rftykp6pej0h5ej364c", + "amount": { + "quantity": 5983, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1w055zf0e329a9lc63vw2r2wpusst9nk8jc39tnsx3lrhjvsjmna", + { + "active_from": 100 + } + ] + }, + "policy_id": "73e94125f98a8bd2ff1a8b1ca1a9c1e420b2cec7962255ce068fc779", + "assets": [ + { + "fingerprint": "asset1fue80zhtqzqs34azare6uh2fgyhwpknq0ljr2t", + "amount": { + "quantity": 9973, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1jmpeh6wrw9t9mx5exenzcapx642q9ujcrnwts3efjr6rzaagjey", + "policy_id": "96c39be9c371565d9a9936662c7426d55402f2581cdcb8472990f431", + "assets": [ + { + "fingerprint": "asset1mvml8eqheknzt9cmd8ccgpeahx79hlgdx9yvav", + "amount": { + "quantity": 5028, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1zra56cr8e7k967mgmgff7zv624uewd64y6jpwx", + "amount": { + "quantity": 8887, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset16r3xnatpqfwvqzzad2xpj3lymm3z0g2yf5d46k", + "amount": { + "quantity": 5205, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1zsjwcdz9tnzck9l20jhluf0zq650suwr4m0cjr", + "amount": { + "quantity": 205, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": "policy_vkh1yp8qshl4g40zc4hlck9fd9cze2dmvmzh358v44f5sk59yl3n3xs", + "policy_id": "204e085ff5455e2c56ffc58a969702ca9bb66c578d0ecad53485a852", + "assets": [ + { + "fingerprint": "asset1rv03p9zc96pfhcup93pdhedx436azs5cqusr5c", + "amount": { + "quantity": 4315, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1vdsw6rgjpz3xd4eqne5jg9r85dqx3lnw0zhpx6", + "amount": { + "quantity": 1135, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1mz8rd7r0fqqqqz2prwujx2mzmd4h9cznlfe0f2", + "amount": { + "quantity": 1529, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset17edjqmlesfs4qexkuez0flya8gg8r4zcr93vvr", + "amount": { + "quantity": 8366, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1xvyp006ktcctp6ucw2zm6d8fhdzudegqn9yhyq0y5kgd2vy8wmf", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "330817bf565e30b0eb987285bd34e9bb45c6e50099497201e4a590d5", + "assets": [ + { + "fingerprint": "asset1dum3h580zt7vgtezu3534zl0cyux2lyk4np4nj", + "amount": { + "quantity": 3538, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1vzdqcekn7wv9jyxscly78jp5dcmfy8lw3jht04", + "amount": { + "quantity": 3365, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset17d40su464ulsdejuj93vt4uwkk8k9gpk2q04ax", + "amount": { + "quantity": 3536, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1j2xrdt4t3epf7p8qpg6vugpfrasuzf5ff73z24dv7e3njj7uwpy", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "928c36aeab8e429f04e00a34ce20291f61c126894fa22555acf66339", + "assets": [ + { + "fingerprint": "asset1upqz82pyx3qrmvn4spqvw58xehj7wsrvlyw22s", + "amount": { + "quantity": 4519, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1w5p2ydcksz97wggkt2zanff0fm3vvxq6fd87qq", + "amount": { + "quantity": 9595, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1s0w3wj2mqzpvwcwmn79azcxkp5pr2pdkx9whkq", + "amount": { + "quantity": 4060, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1j4lu93zzh9mxepaw6zdva7tqhq6vcs900qjgq0", + "amount": { + "quantity": 7268, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1afpknlvyrp8dmpnggu6xet93xcx8chcvgjqav7qdc99lzr7j0g5", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ea4369fd84184edd866847346cacb1360c7c5f0c4481d6780dc14bf1", + "assets": [ + { + "fingerprint": "asset1msjwaqg85npqcxyjt8wwxtcfaa6nutclyxxq20", + "amount": { + "quantity": 4955, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1gjmmewe5ecluj877ftk2tw5f6dv5xque3anpw7", + "amount": { + "quantity": 1499, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1qgx4wy3qew6grexwkncl2nl8d0c7jggv02sstx", + "amount": { + "quantity": 5802, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1zvxshhjft2smjmwgtecka0hlsjaur5n57d5adz", + "amount": { + "quantity": 7339, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1pxu9ltwgm07tajff0p8q8qrfygey2jzpzflyld5pr00jc8mzeej", + "policy_id": "09b85fadc8dbfcbec929784e0380692232454841127e4fb6811bdf2c", + "assets": [ + { + "fingerprint": "asset147429q646mp62a4ylrgn365e6cvnruszal3uu6", + "amount": { + "quantity": 8530, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1v7xtzya05uzzk6z3f9nmnna703pymf2spzzh3k", + "amount": { + "quantity": 2206, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1964eggtm84h540lwu685afx4dmgdwzpmmuqpjq", + "amount": { + "quantity": 7719, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1gepxeacnhtm67fhr4vrhpwwh6u64a6uuucp9m5", + "amount": { + "quantity": 4738, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": "policy_vkh16kzw5yrd0tqspyyl0s22r0mnkaucl8chdrxur4qw3uzfwqp4cm9", + "policy_id": "d584ea106d7ac100909f7c14a1bf73b7798f9f1768cdc1d40e8f0497", + "assets": [ + { + "fingerprint": "asset1ff98zlynh2ygkwwdule74f8kt26zqz54r2hmf7", + "amount": { + "quantity": 9634, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1tay8gd64y3uuldqehcnx8cgmgnqfkwm84tv3he", + "amount": { + "quantity": 3539, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1y2ky805cexpq47ju9tsy8n6f9qepa6xvj7ta8v", + "amount": { + "quantity": 3476, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1aqjw6xuu5395ngc9azfsfhek7jpghttgcdhy567rhhqs2jrguht", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e824ed1b9ca44b49a305e89304df36f4828bad68c36e4a6bc3bdc105", + "assets": [ + { + "fingerprint": "asset177lkqnps7m8gwhltjh09qp3qk00fx622py830s", + "amount": { + "quantity": 3636, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1l9dhkrmen4zgrsaf7aluvyntah7st60ty06990", + "amount": { + "quantity": 3343, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1dsaswrh7r5tpmyjcq5ej4nxwxxhrm084qcmcpl", + "amount": { + "quantity": 6139, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh18urnt52z64upy230gd3wvp2jjt5lag78uvhph2722jt8g4g0kw3", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "3f0735d142d578122a2f4362e6055292e9fea3c7e32e1babca549674", + "assets": [ + { + "fingerprint": "asset1m25pszap90xv9zh4yflgqtnpt7hkf94ylpzwyh", + "amount": { + "quantity": 2750, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset17zpud3c59krwcc8zxwqj4n95rxyghk2a39h4re", + "amount": { + "quantity": 9097, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset162chktvwsq6fmdfea5awsgu4kkj9yk6dt4r622", + "amount": { + "quantity": 125, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset15qvkjyjwm9f2tjphg0gn78wjdtw0fnakz7ph9d", + "amount": { + "quantity": 7187, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fkhdetj4rex8uk2mcns5w3r5rd906c7wuz0ez5wzxdr8z488sel", + { + "active_from": 100 + } + ] + }, + "policy_id": "4daedcae551e4c7e595bc4e14744741b4afd63cee09f9151c2334671", + "assets": [ + { + "fingerprint": "asset1qccg33ak8qldnljuvg283evk6f53760ccxrt7p", + "amount": { + "quantity": 5651, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vwd908dtm53ewzd0mn9pccx4dx2cgz4myss3qt64hszujhxc9ze", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "639a579dabdd239709afdcca1c60d56995840abb2421102f55bc05c9", + "assets": [ + { + "fingerprint": "asset1du3zrtpuamn9kmhneqkjkjlrk3q3e9uszfj446", + "amount": { + "quantity": 6123, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1ry0ff56jrc4y8wp7earunkxu9m3yhy0zl6tleh", + "amount": { + "quantity": 7781, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": "policy_vkh1uh6rmsumr08t08h3scvxva9efcxrtjxrms9xu5g808azjtc98x7", + "policy_id": "e5f43dc39b1bceb79ef186186674b94e0c35c8c3dc0a6e510779fa29", + "assets": [ + { + "fingerprint": "asset1qettglecxrsh632melq38pjgsxfajnsp4wjreh", + "amount": { + "quantity": 7160, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1n6j3rq7kk57ues9d8hyl5nanmguu7qqd0davsr", + "amount": { + "quantity": 4107, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": "policy_vkh1gcdvqk2dxex9qj7d2flu52u4yw9xeaexrkrpghk3t5kxj4x64xx", + "policy_id": "461ac0594d364c504bcd527fca2b95238a6cf7261d86145ed15d2c69", + "assets": [ + { + "fingerprint": "asset12t49ttysdwy7qskhmuzk5w0j6zjszy4zcr2ynk", + "amount": { + "quantity": 8801, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset18zqt36q7jn0wpvyd09cxm2zxevse98y33dtq65", + "amount": { + "quantity": 4317, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1q9u5sea60mefqdd2upxkgvc0xvy5az3ryjdv58", + "amount": { + "quantity": 7019, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1w7lzysch0j2k2q7h27as9r5rn485y5cjwm4ph7asgg8mqg4yz9c", + { + "active_from": 100 + } + ] + }, + "policy_id": "77be2243177c956503d757bb028e839d4f42531276ea1bfbb0420fb0", + "assets": [ + { + "fingerprint": "asset1dkudfl6jyrrjcps8v68as5rkumdsm66fc58fde", + "amount": { + "quantity": 9467, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1qhzu2z2txt7a6gn2q2jfv4edeheez9rqt7nmh7", + "amount": { + "quantity": 3421, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": "policy_vkh10demg49qex3x8gndsef69x8ycy7vswc4q2yve9a6aqkggyz8unn", + "policy_id": "7b73b454a0c9a263a26d8653a298e4c13cc83b150288cc97bae82c84", + "assets": [ + { + "fingerprint": "asset1ryglcz56ex6j860nf4ddpds0nskez9suz99872", + "amount": { + "quantity": 6083, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1fr3c8zpznz2h60j07dp6skj7wx5ups2tw803vy40eq55635gxrx", + "policy_id": "48e383882298957d3e4ff343a85a5e71a9c0c14b71df1612afc8294d", + "assets": [ + { + "fingerprint": "asset1kmtph8ta522tev8cd8v7mj762kpkvfc0u3953x", + "amount": { + "quantity": 6485, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1pp4gu9mm85aejet8w04jppv562elmrzfhdw7ta", + "amount": { + "quantity": 1831, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1w0mr5vkz5kcrzclgfluw4reelm83aktjt9heqf66mpuguea5vg6", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "73f63a32c2a5b03163e84ff8ea8f39fecf1ed972596f90275ad8788e", + "assets": [ + { + "fingerprint": "asset1dj0vjg3f5sfl8wxx3ccl4msmltqxcvy26948fp", + "amount": { + "quantity": 9084, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1gpug8pnpx58lvc7c8tcj64ufz8umlzwkfxn997xpw66572xr5pa", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "4078838661350ff663d83af12d578911f9bf89d649a652f8c176b54f", + "assets": [ + { + "fingerprint": "asset1t7dqt8znnxc9ekrxa2y026gnh0s74qkjj0tccq", + "amount": { + "quantity": 1122, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1a3smj7acd9vcg4hwz8dtvfr5eapl6x45zhltls", + "amount": { + "quantity": 2179, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1ryenyarekk4rydtwhthhhwjmnpmwy7f3nx62l0", + "amount": { + "quantity": 4239, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1d2tmdprfdnq62gaxx0fzrv02sng9f0vjtwrs9r", + "amount": { + "quantity": 8075, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12arl6jpyzjrl74cg7u8w5sc88dn20yenpv3c4mnfnz98c2dnvzd", + { + "active_from": 100 + } + ] + }, + "policy_id": "5747fd48241487ff5708f70eea43073b66a793330b238aee69988a7c", + "assets": [ + { + "fingerprint": "asset13266dyl8qmurr267rmgfsu87n73z86lvt3k34e", + "amount": { + "quantity": 1033, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1949h85vdh3sl7wx94htqp99ymt459e3vy3zgkn", + "amount": { + "quantity": 1499, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1lsee8zlmknhn0k90jqlpy4ynlfcsdeyacugns3", + "amount": { + "quantity": 668, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset17wukfdt5gkyncfhc36cgkqkcjj3txfst20nux9", + "amount": { + "quantity": 182, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1aj2vlv82wc65h02z6me5tld7lp0sj3fa3zy34kxz9p4jww63fds", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ec94cfb0ea76354bbd42d6f345fdbef85f09453d88891ad8c2286b27", + "assets": [ + { + "fingerprint": "asset17lxlf2rv7yzqfsg7a6nyzu2whmnn6zx5d7wt0q", + "amount": { + "quantity": 9020, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1chknpzdm2rlwaysuyjzk3e9x8ttdaay5r0xnek", + "amount": { + "quantity": 675, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh17xngn5745ugtuqx64h2e2h6nevk042ga7j84m2j8j9yzcx72dxj", + { + "active_from": 100 + } + ] + }, + "policy_id": "f1a689d3d5a710be00daadd5955f53cb2cfaa91df48f5daa4791482c", + "assets": [ + { + "fingerprint": "asset1g6usr4pgjp03m5kxk4e8pn3ha493hup9uemlu3", + "amount": { + "quantity": 3175, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset18zr9kt70mt9rpzc9reqrszwlx709mup3vjhvjp", + "amount": { + "quantity": 8914, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh19j90vq2zy3x2y348t0jgdlfxdjmny6phyl8shwexdq6ryfhd79s", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "2c8af60142244ca246a75be486fd266cb732683727cf0bbb26683432", + "assets": [ + { + "fingerprint": "asset1razvk4nlp8rkw6jmetqda5950du3hxce2zc3qk", + "amount": { + "quantity": 2979, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vqdr6nyz2m6v2l4yjy0fqtw7vf2t2crmdahq3qszx99sjnn4qsc", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "601a3d4c8256f4c57ea4911e902dde6254b5607b6f6e088202314b09", + "assets": [ + { + "fingerprint": "asset1f2ue0399fy0px2drqfgdw09gechpgkeq3q50hs", + "amount": { + "quantity": 7382, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10t36q7jwdanl9ak7yv9rar55cwhzpmc2kt5dm2xkqp4a5pl9r9f", + { + "active_from": 100 + } + ] + }, + "policy_id": "7ae3a07a4e6f67f2f6de230a3e8e94c3ae20ef0ab2e8dda8d6006bda", + "assets": [ + { + "fingerprint": "asset10hpc029clvjdac323q49pwx7a5380nu3lj04qt", + "amount": { + "quantity": 4665, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1rd4k6tp78fe6gn3g05w88wqrv4jw2862rvnhxd3q0q55gs2x2g8skclv3k" + }, + { + "tokens": [ + { + "policy_script": "policy_vkh1c6s0gejv7qa9aq5nl83aw00matu4703uz3ax6v895s6djutsj2d", + "policy_id": "c6a0f4664cf03a5e8293f9e3d73dfbeaf95f3e3c147a6d30e5a434d9", + "assets": [ + { + "fingerprint": "asset1te2xnw89s83uucckscayrvatj8vxgr3xf8cm2k", + "amount": { + "quantity": 6430, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1lf00q5pj3gfmpz4jwvala4a6n7aq3kgvmk7txs", + "amount": { + "quantity": 503, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1c0x6cafglph3t2fhtkcp7dj9uh086g43cespgg", + "amount": { + "quantity": 3436, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1ge5e70gn73s4uc2vrgzvnez4rpkxugq8vaf9cq6w2e8pzleetea" + }, + { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1y2pu6quukng59nkhprrqkpctwxcg2gttt9hda3ypt9ypqk2rg3v", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "2283cd039cb4d142ced708c60b070b71b085216b596edec481594810", + "assets": [ + { + "fingerprint": "asset1p2evze00cm4eh7a9tpqnqhf49cck5xywxnc2t2", + "amount": { + "quantity": 6242, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset18hk3uy9knl0wj48x27dtggp4xevyjj9f8z2aza", + "amount": { + "quantity": 3428, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1np3wv8k30jhr0gz6sc7c69uhayavcr0aknr2yj", + "amount": { + "quantity": 6840, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1sfnyxjt4lekyzmmugaa5g2hn9hu69rrdray70gsuhe4guewqurw", + { + "active_from": 100 + } + ] + }, + "policy_id": "8266434975fe6c416f7c477b442af32df9a28c6d1f49e7a21cbe6a8e", + "assets": [ + { + "fingerprint": "asset16l3xttd0q05v97ryg6gtla255mcl68y8d0y60h", + "amount": { + "quantity": 2946, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset19d0t6kr49v5s09f62zzwh9jwd5acry04s77yyc", + "amount": { + "quantity": 3733, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset16v5jk60hzj9sslz0g63rz7k6lychwt2dfw23r7", + "amount": { + "quantity": 8498, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1ewfzy2dzy28r0ucenxds2lpm7lylhlkd3jqgnc", + "amount": { + "quantity": 7405, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1htwyuyq9qdc0exny8drmkf6d5qznklh853qe2fmyytnr7qxf69y", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "badc4e10050370fc9a643b47bb274da0053b7ee7a44195276422e63f", + "assets": [ + { + "fingerprint": "asset1zkwe2qurt47lmqq447dger8gt9k2kymgkrjzn7", + "amount": { + "quantity": 2977, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1je46pts58w8re94rz8gchmdpn6r66f7kd75hfw", + "amount": { + "quantity": 8676, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1lxn0gh4w67lkt85v7d23j3kqwpvx27zdrsyjs6", + "amount": { + "quantity": 7720, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset15d7s8sevn5m6hj7vp4xr2wf9du2ekgj77hq8tq", + "amount": { + "quantity": 6239, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1rytf0793m684yz5myjwy67r9c0wm5utw7xulk9uml4k75fnjgc8", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "191697f8b1de8f520a9b249c4d7865c3ddba716ef1b9fb179bfd6dea", + "assets": [ + { + "fingerprint": "asset10zn0c0pxt7wglr7vyvvmay8a7ankx6mu4l90pw", + "amount": { + "quantity": 340, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh14jp0p3ptlyehh7tx54lvhtzdazu9a2v5d20urvgvvtmkvqn408a", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ac82f0c42bf9337bf966a57ecbac4de8b85ea9946a9fc1b10c62f766", + "assets": [ + { + "fingerprint": "asset18ma7gya4md0ws0xgnv3tvxl3334455dtjq7m8y", + "amount": { + "quantity": 4219, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": "policy_vkh1pv5hdd3lqh8tgxgzte0k23z7l3uf0qjpypr2yhls5jqeycu8feu", + "policy_id": "0b2976b63f05ceb419025e5f65445efc789782412046a25ff0a48192", + "assets": [ + { + "fingerprint": "asset1p8t0vq2yaf2qdstda9mf9awjzj9t7lw8qse5tu", + "amount": { + "quantity": 6524, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1543uaektkam5wy0286dnhag7mmw8r9ttt4g7agvfa3qq6p7ph6g", + { + "active_from": 100 + } + ] + }, + "policy_id": "a563cee6cbb7774711ea3e9b3bf51ededc71956b5d51eea189ec400d", + "assets": [ + { + "fingerprint": "asset1mnj92ru08ufpd098567yr6uprweasf4za23lv5", + "amount": { + "quantity": 1854, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1u9ts2hldzc54953f45vxsurg4tz2ufhxtmwxhy", + "amount": { + "quantity": 5330, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1h0edgf54qppfcsqjg3ny85ppkevdpk29e2pqq4", + "amount": { + "quantity": 6009, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1dsvap4mm0q8u50d0f6h0va2ye29t270hhjqstcjj0wepygvtkk7", + { + "active_from": 100 + } + ] + }, + "policy_id": "6c19d0d77b780fca3daf4eaef67544ca8ab579f7bc8105e2527bb212", + "assets": [ + { + "fingerprint": "asset1nqly2yq87h8h3uqer33ne9qpzh0fn2fhma80az", + "amount": { + "quantity": 3450, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1wenya4g89qraf6upgl74hhlwz8sjf7hsphu938808z4478h6c45", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "76664ed5072807d4eb8147fd5bdfee11e124faf00df8589cef38ab5f", + "assets": [ + { + "fingerprint": "asset1c3uhcl5tncpk0hhx2fckl22gml2f5juanf7k3t", + "amount": { + "quantity": 9702, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1yac2tjxpzr60kktmjga6npyfy3w95jxs7mt0x5", + "amount": { + "quantity": 7045, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1en0x9ke26s9fcfrj220ml09prxhcg33hf94xu5", + "amount": { + "quantity": 4349, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1upezpg7m4hc4nfkdcgm5nvajuea8sdnf0rpzm7zfljse2fvhw6q", + { + "active_from": 100 + } + ] + }, + "policy_id": "e07220a3dbadf159a6cdc23749b3b2e67a78366978c22df849fca195", + "assets": [ + { + "fingerprint": "asset1pahxywqlhm2h3yfjd84445etf7whc977ed26rz", + "amount": { + "quantity": 7495, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1g6yct0h73wlp6lsd7jat9f24vmcxx6yts4ykfw", + "amount": { + "quantity": 8038, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset12xe7gjd3rt6jchf38mry85qpzyzjvnzckpn3xt", + "amount": { + "quantity": 8350, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1dnhzm45mdukhk97yh2sezdnj3krkvqskfzfqqj7pw7q378dtsgu", + { + "active_from": 100 + } + ] + }, + "policy_id": "6cee2dd69b6f2d7b17c4baa19136728d876602164892004bc177811f", + "assets": [ + { + "fingerprint": "asset1tev4vumlhrs3czkerlrlj6rm592e4umpeqxz25", + "amount": { + "quantity": 5575, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1fgl4v5fy9ccq2mpxz8ezxt29fqr4ws9dvymu883m84wyzcgmqqdsgd6v69" + }, + { + "tokens": [ + { + "policy_script": "policy_vkh1c8rdgz6ev2ethd33jz0r0tfu7tshuy6ta3fa7x6zdq3h7xvzxr5", + "policy_id": "c1c6d40b5962b2bbb631909e37ad3cf2e17e134bec53df1b4268237f", + "assets": [ + { + "fingerprint": "asset1nppl5kxekmqsw20lps0taw7tpnnu92qehz95h4", + "amount": { + "quantity": 2477, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1yp75z2x45gw2meww7604q5p8wg8k43y59f0pqvagh0vlj9euxy9", + { + "active_from": 100 + } + ] + }, + "policy_id": "207d4128d5a21cade5cef69f505027720f6ac4942a5e1033a8bbd9f9", + "assets": [ + { + "fingerprint": "asset169djqq47zfl4l4c23jkur2ujsjx324yuk82nv3", + "amount": { + "quantity": 1785, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1rw9z4mlf6yjmu073zpq06d0mvquwzckghe42ef", + "amount": { + "quantity": 9021, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1u9z4n8krgrfd4thn7wpr5a3t3wht624lq74t9s", + "amount": { + "quantity": 4120, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset13h7u0lkylry2dws4uka9ad8c7wfcmhazayqkwl", + "amount": { + "quantity": 1460, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1rz24ujxs94e76whd288k0jrd2ujfseu4aavmt8ggnzwyzz4dxs3", + { + "active_from": 100 + } + ] + }, + "policy_id": "18955e48d02d73ed3aed51cf67c86d5724986795ef59b59d08989c41", + "assets": [ + { + "fingerprint": "asset1a759z8094wyc5w35e2yy7l72mqe47hlp63v0r4", + "amount": { + "quantity": 1176, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset12ws84ruyzu6qcht8vzurrt4qqpsqw36dfxvg9p", + "amount": { + "quantity": 3996, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset19mpgd2nhh368gx4karmzhalgmdz32h44j77art", + "amount": { + "quantity": 2235, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh1u9rne4za9ces9na5rz39gjc3qdd7x2aka9653nek97yq55fkgpt", + "policy_id": "e1473cd45d2e3302cfb418a2544b11035be32bb6e97548cf362f880a", + "assets": [ + { + "fingerprint": "asset1pue3gv7jmg3nhmksnjs87mqu4qglsa9kyart3k", + "amount": { + "quantity": 9439, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset15dlupda7j2cwft23mwrrhnsax3p5xg0jc3epm2", + "amount": { + "quantity": 9418, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1dyd2s8jwg2chxtn7ug99javf9jrywxlvf6nwca", + "amount": { + "quantity": 473, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1m39xvnr60ws3a6435w74tgp9ys8vy2q7ys4sxx", + "amount": { + "quantity": 5294, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12fv6ptusdl9aq4yj9ylv9aqj9tmsh9pxutud67ayflnwz4ej0a7", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "5259a0af906fcbd05492293ec2f4122af70b9426e2f8dd7ba44fe6e1", + "assets": [ + { + "fingerprint": "asset1rt7jxmf0cj35yejnszgkpzh4ulqp70phs6kgjv", + "amount": { + "quantity": 7628, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1ueh8ynx88j5hndul586af3hycda2qcg54h5f53", + "amount": { + "quantity": 4698, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1rn68q8k9rmfcnsndfaazr3phcgtxjzhux0h954xctf5m69dqe7h", + { + "active_from": 100 + } + ] + }, + "policy_id": "1cf4701ec51ed389c26d4f7a21c437c216690afc33ee5a54d85a69bd", + "assets": [ + { + "fingerprint": "asset1fqt050qgdcclxf4u2p8c2qap7esjzaer9lth76", + "amount": { + "quantity": 4474, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": "policy_vkh13vxxytuaadmqvt2dgmxn87luk8z6avs2w00wahrc39y32g6h8l6", + "policy_id": "8b0c622f9deb76062d4d46cd33fbfcb1c5aeb20a73deeedc78894915", + "assets": [ + { + "fingerprint": "asset1empka35w5fyjtt82ce720vrv53s4tsrgdvt2f4", + "amount": { + "quantity": 1528, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1c0s55taamdl855uj00u9s9m4musc9tsu4kccn7", + "amount": { + "quantity": 3098, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c43fa835r42qa3pfeu0v7eykelj4walrz0pjvd3v9nwnqyvugk5", + { + "active_from": 100 + } + ] + }, + "policy_id": "c5629e9e341d540ec429cf1ecf6496cfe55777e313c326362c2cdd30", + "assets": [ + { + "fingerprint": "asset1nh0syz449kacqxjr5x4sql2nwz8e6yqtuw9uva", + "amount": { + "quantity": 3639, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1h2adgzaa9q5ncvj90uf6p2e0ey3mg6r5yux49y", + "amount": { + "quantity": 6327, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset13pckr79uyfuy0hp6nck8wf6qhsngmqpnrtza7p", + "amount": { + "quantity": 8386, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1p29ejyuw97lveuynarzsh2vy7z7mk9yhj89uv9", + "amount": { + "quantity": 1438, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1pvm6l5h4nha5rxttv8gmsvr83etzlqyf5stqkykqdasf2eyjulx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "0b37afd2f59dfb41996b61d1b830678e562f8089a4160b12c06f6095", + "assets": [ + { + "fingerprint": "asset1dwyj5kydfdmv9n0yx8hruzx5w27yckngcujg9h", + "amount": { + "quantity": 5514, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1alplhwdnmjgympyqkksvsx5dw64ljgjvh5ypyp", + "amount": { + "quantity": 9169, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1aaqemep2s488jgrv425vl9x2mrrd0tdphnfnst", + "amount": { + "quantity": 2846, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1lj2nevrqrmqx47hw8r54shlsrwcpslaj34tz9d", + "amount": { + "quantity": 4077, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh14eqtjdghfrk3wqhlqs4pduw6vze6avs3ansr945x3d0tj2hnq83", + { + "active_from": 100 + } + ] + }, + "policy_id": "ae40b9351748ed1702ff042a16f1da60b3aeb211ece032d6868b5eb9", + "assets": [ + { + "fingerprint": "asset1qamce70c8dpfmmsmz3647s2nkcuzjm34ssr26h", + "amount": { + "quantity": 2166, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1jj8mq04s7mhtr37un2akkd3h68fkalmj4dm3ns", + "amount": { + "quantity": 7878, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1yft0srg9hz8cnwtghyrskhzmldytk50r5088hk", + "amount": { + "quantity": 6646, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": "policy_vkh1csmnnhqy8d9j4f08r74qh7nzmhnczarnc97qgrmyg765y93r7pg", + "policy_id": "c43739dc043b4b2aa5e71faa0bfa62dde7817473c17c040f6447b542", + "assets": [ + { + "fingerprint": "asset12ku2rg2v9deuljgn7vrpl5vasqam36ctlxx5dj", + "amount": { + "quantity": 6932, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1w0sjf46qn60395d5mwgxpcyfp589aev3qkagwj", + "amount": { + "quantity": 1138, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset13uuvgxdq6t9j5venze988c5asqxcuhxql0qnxe", + "amount": { + "quantity": 6680, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": "policy_vkh19akw59gr2tpxq945qrmsmpkmksn27t69vfs506k0r7rwk20nyzp", + "policy_id": "2f6cea150352c26016b400f70d86dbb426af2f45626147eacf1f86eb", + "assets": [ + { + "fingerprint": "asset1au0aya5tm8cxptn3lnzxn88mx8q9zpxe4gvyc9", + "amount": { + "quantity": 2315, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1ytue3du034crmu6p72ymvx7wgwnkltxtzwcnvp", + "amount": { + "quantity": 2951, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1kvmtmk9c06a3tdfcjjy7t88hsrufxzcmc860gw", + "amount": { + "quantity": 3878, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qdarykcrnjum5l7j0uymr93e7cesn38u73e56lelld3ugz2uhvj", + { + "active_from": 100 + } + ] + }, + "policy_id": "037a325b039cb9ba7fd27f09b19639f63309c4fcf4734d7f3ffb63c4", + "assets": [ + { + "fingerprint": "asset1j2e4d06ql9j57ftucp9png35jdflercxt3h0pg", + "amount": { + "quantity": 5742, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset12kqy7thrtxxe39mwtjjzzhhm0x34lmy2qrfqwd", + "amount": { + "quantity": 7626, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1jyp0vad2l4v8z5jvq466tv0wa6z2hvwd2wdgqv", + "amount": { + "quantity": 3995, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1r30rj5z9acedvtq6fww4pqfg48vvvjfwkgkzc4", + "amount": { + "quantity": 5943, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qs2734a7d6kpcde0da58jg26f6u7tvlnx0tj7nswt4tuyscuayd", + { + "active_from": 100 + } + ] + }, + "policy_id": "0415e8d7be6eac1c372f6f6879215a4eb9e5b3f333d72f4e0e5d57c2", + "assets": [ + { + "fingerprint": "asset16tu2hm6xf7g8tg3h6a87jhz7af06a0rg83u5kt", + "amount": { + "quantity": 5408, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1s0ryv04vjaq7h9mmsuflchnmyacgrxdm4ue4x6", + "amount": { + "quantity": 9852, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1sqtcwhehcl2d25jzqzqycra593dwnz282u926l", + "amount": { + "quantity": 139, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1tjsql4q8490vm0vugals758xhqxxzzwhhkzfym3sfq5rqwj454n", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "5ca00fd407a95ecdbd9c477f0f50e6b80c6109d7bd84926e30482830", + "assets": [ + { + "fingerprint": "asset12p4hy3du03sc4vy76prz2ll2j0phef7cf20k08", + "amount": { + "quantity": 7049, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1nm4vf9z3ksu0x6xvdh0rln90muplqsz3gvrv08", + "amount": { + "quantity": 5942, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh14azedk980pzp3lg93ur6f5ljytegyvkzhsrmzqx9relcwmuctk4", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "af4596d8a7784418fd058f07a4d3f222f28232c2bc07b100c51e7f87", + "assets": [ + { + "fingerprint": "asset1jnv5m4v853845q4zm04lplpsgmxspda0stxtw0", + "amount": { + "quantity": 883, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": "policy_vkh1ckmyj0h9jex8gq2ev6vwpqqzf9vh98nzfewpxedv43n8zjzcuz7", + "policy_id": "c5b6493ee5964c7401596698e080024959729e624e5c1365acac6671", + "assets": [ + { + "fingerprint": "asset1lhs4jkr8zkafxhnsmmah2w7wu2pawj67tflmel", + "amount": { + "quantity": 7856, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1cal6c30wrlwd2cy5axdf9jq8uc6825wa4c25un", + "amount": { + "quantity": 4745, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset14ka8466hhekyvvezldf9lan7e3tf5xrwcwq9zm", + "amount": { + "quantity": 5299, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1h8r0px2qvhghpthljrzvxkshwm6q05rsclwck7pgxcl9uusxkw2", + { + "active_from": 100 + } + ] + }, + "policy_id": "b9c6f0994065d170aeff90c4c35a1776f407d070c7dd8b7828363e5e", + "assets": [ + { + "fingerprint": "asset1q00mu394htj7d7spckpjlwcsz08ws7wzn57fh9", + "amount": { + "quantity": 6755, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1ewt59cwgj2f7wzrhl60pzy8efzxswk4fc4fl4m", + "amount": { + "quantity": 4401, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1zu706km6hk0jmp378hdr48uk76ec49etj3af8z", + "amount": { + "quantity": 5552, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": "policy_vkh19elz6kt9ekcnkkgvr6e7770h4tfgrammp5zvfh946eurqg2k5zf", + "policy_id": "2e7e2d5965cdb13b590c1eb3ef79f7aad281f77b0d04c4dcb5d67830", + "assets": [ + { + "fingerprint": "asset12npzk2qgkq8nc7qam84u2v9vqkw4m92t27aenw", + "amount": { + "quantity": 6082, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset19nk00gw820mhzhjnn86u3ht7jkkarwpwncep4j", + "amount": { + "quantity": 5865, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset197l0a5zm0rkleckecpr86a67agluw6arkkpn4a", + "amount": { + "quantity": 5595, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1ku598zxsdc5wqzuffm98wa8agk4gkjd6qjlrgp", + "amount": { + "quantity": 2024, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": "policy_vkh12crgtjgsyd65l3arsl89u5vnmnrc4dhlsujdwcpsfhp75durjnz", + "policy_id": "560685c91023754fc7a387ce5e5193dcc78ab6ff8724d760304dc3ea", + "assets": [ + { + "fingerprint": "asset1l6lu52fcgxr4kxlytkgatagtuq99763uagcyc9", + "amount": { + "quantity": 7539, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1xc5kvwjdccpue5ksv4fv0jflszr462dtve60j3", + "amount": { + "quantity": 4770, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh14wzmdzzmk6wxuncxv6ncedzzn65m0nhg899vs4788av4u8q0ql5", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ab85b6885bb69c6e4f0666a78cb4429ea9b7cee8394ac857c73f595e", + "assets": [ + { + "fingerprint": "asset1kc9hg5kf7fkcsrwgypfrng5rfmf7xrnpl0rutc", + "amount": { + "quantity": 5091, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset14d640nun3d89l96pglvqysl7a6dnksy4p4c4g5", + "amount": { + "quantity": 6952, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1420aq5dqzren6nx3040kqnfyf72en8wdaj23x6", + "amount": { + "quantity": 9438, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1xwsszpgjxe9n4h8qdkfrjjjp9pzrl55rf36hpx", + "amount": { + "quantity": 6028, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1jpmz9akkfwmchs808zq6ytdjpnfuyz3v3k5gmp45h49u6u2y3l0", + { + "active_from": 100 + } + ] + }, + "policy_id": "907622f6d64bb78bc0ef3881a22db20cd3c20a2c8da88d86b4bd4bcd", + "assets": [ + { + "fingerprint": "asset1av44a9v2ktm980ey4qjfv65z7dfcgcmtz982s4", + "amount": { + "quantity": 4667, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1gq6jkgwtdw3p9vaznqznzgv6nem8w3wq6gry3n", + "amount": { + "quantity": 9699, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1xx20uz2qphdv3vm74tg5py2du4u0a8v0erx23c", + "amount": { + "quantity": 3166, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1jmx923rens9cgn4tgq5858gnuspj62nmyef2s5shrra6ungx5rt", + { + "active_from": 100 + } + ] + }, + "policy_id": "96cc5544799c0b844eab40287a1d13e4032d2a7b2652a8521718fbae", + "assets": [ + { + "fingerprint": "asset15ncx5ulwujv8ha80wydzwqkd7udqneyxaqjhx4", + "amount": { + "quantity": 9205, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset10yhu8q0kdcrzwavuehxcyfgu97aff4vqr6y9rh", + "amount": { + "quantity": 4380, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset138xxm63ddl5366mu37vcc6ttapckm6tw0qt9el", + "amount": { + "quantity": 1954, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1sfa46wjawf3mzwug89y9542v9m4fskmsh8h5pf", + "amount": { + "quantity": 6682, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1a5ukqfca0qv2ghtqfdrxjlrpfel8kesqwpcsct2gwrhhv2lap9kq2w4fuv" + }, + { + "tokens": [ + { + "policy_script": "policy_vkh1p2phdy0nz7dnevcnd044u07rm4fytda9tj83x9jp5v7zkcfsc45", + "policy_id": "0a837691f3179b3cb3136beb5e3fc3dd5245b7a55c8f131641a33c2b", + "assets": [ + { + "fingerprint": "asset1rtv2h7tf73ftjhl3jv98y2ll0ftl88sm9cg7zw", + "amount": { + "quantity": 4828, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset15jdeqqnwn8umj2erl0cew9xmg3zr6ts4q7t20m", + "amount": { + "quantity": 1531, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1vt4yrf5x9kuq9jhq3cqr49yl4sr26jmel83akxtskhk627h0ey8", + "policy_id": "62ea41a6862db802cae08e003a949fac06ad4b79f9e3db1970b5eda5", + "assets": [ + { + "fingerprint": "asset15cjc2z4463qlewgpw0g5hn9m28p2zcj8tcc2jj", + "amount": { + "quantity": 4248, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1g2q5nwsjaafguep8lpgxcavdfqat47lz9ev65yktf2tkz2wlue2", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "428149ba12ef528e6427f8506c758d483abafbe22e59aa12cb4a9761", + "assets": [ + { + "fingerprint": "asset15nngxw4efm62zs6dxgerkwcjwfflumy8yg4c73", + "amount": { + "quantity": 576, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset16fyg3d6axtghwjpvrcfr9tl4ph9g8jwgewcy4g", + "amount": { + "quantity": 2306, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c5dupm48wwfpvcrc2s84q744ycacl0fy7jjcw0ufff9lx285zxf", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "c51bc0eea77392166078540f507ab5263b8fbd24f4a5873f894a4bf3", + "assets": [ + { + "fingerprint": "asset1xk4nzr8gwycta6nft78ssj8savcudwz6rk869f", + "amount": { + "quantity": 2089, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16h6f02mjd76rq8qmd5nvk6h4yffpz26uhc537vtd5yrl70gnp2y", + { + "active_from": 100 + } + ] + }, + "policy_id": "d5f497ab726fb4301c1b6d26cb6af52252112b5cbe291f316da107ff", + "assets": [ + { + "fingerprint": "asset1983ec5a8vle0nsq3s6298rl9scsnys8nfaw42n", + "amount": { + "quantity": 2072, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": "policy_vkh17907q80dykwyjhq6phuyqh8q7v045jqh8yv9ps4gal4u75fzn9s", + "policy_id": "f15fe01ded259c495c1a0df8405ce0f31f5a4817391850c2a8efebcf", + "assets": [ + { + "fingerprint": "asset18xdyu2ywry62f6ektey98sd6qk6gnyx67q35hd", + "amount": { + "quantity": 7755, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset19jekk6f6qm8ueu0vspnpfgp6uzfq5qp97m35qm", + "amount": { + "quantity": 7916, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh14zknl8fyvdjwcvaxs4pspmxczn75ymrk700xp4a6uyuvu2xv3x7", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "a8ad3f9d246364ec33a6854300ecd814fd426c76f3de60d7bae138ce", + "assets": [ + { + "fingerprint": "asset1anxq69xk7hm8wh4s9lznc6gt6edr3mdqaj3fwr", + "amount": { + "quantity": 967, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1ks0uygf976pe4srxtzlzvqmfc3s7q22e96t7v0", + "amount": { + "quantity": 5177, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset14n23shum38gvws309ddes9swk902lnsf0k5u4r", + "amount": { + "quantity": 4270, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1k3wk683p0y2cemutvk45mjjvp5gntlf86dyuxw", + "amount": { + "quantity": 3805, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1vyyln8afl30fgdajuyspuxu50xvgxv9hc2xr0px4h7l5yva76z7", + "policy_id": "6109f99fa9fc5e9437b2e1201e1b9479988330b7c28c3784d5bfbf42", + "assets": [ + { + "fingerprint": "asset1zdzrz78qrn2ll7v6qtv22uqthxvcvj5kylse3l", + "amount": { + "quantity": 9810, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1czqphk8332xer288gpgu0wdp52zf6e0976rnau", + "amount": { + "quantity": 4629, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12fue5xm6sqdcazsryjuuy07d5k0vwus96ncn6u4juc0xc7mxu6j", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "52799a1b7a801b8e8a0324b9c23fcda59ec77205d4f13d72b2e61e6c", + "assets": [ + { + "fingerprint": "asset1uyt8ruy7pup6hltym5xdewwre6cxvzhmp54yap", + "amount": { + "quantity": 6375, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1p6r04v5uqfa778zc3yxxakche3k4s8tewa8vm4", + "amount": { + "quantity": 3165, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1yjzlv0hz6trhjgdzfg7ekcnym495qvejcsfr2e", + "amount": { + "quantity": 4171, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset17ars59tnh4gxzt98kdvq24wje9txtl9pee8dk2", + "amount": { + "quantity": 7272, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mkj9pauplum4n9pg06yhnu3nr9r6k8tfmr7y9ygeewxzq0c4vvm", + { + "active_from": 100 + } + ] + }, + "policy_id": "dda450f781ff375994287e8979f2331947ab1d69d8fc429119cb8c20", + "assets": [ + { + "fingerprint": "asset1j2v826n3py46nfw52pn2s8as2pgxulv85hvzrp", + "amount": { + "quantity": 5055, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1dw68eeuttnn8y2y6e3hmrltgdrasqlp69uuhlk", + "amount": { + "quantity": 2949, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10nrh203tl2lj7r5zfd9jt9zje0r030ufjuunsz8kcahrw6k88xa", + { + "active_from": 100 + } + ] + }, + "policy_id": "7cc7753e2bfabf2f0e824b4b259452cbc6f8bf8997393808f6c76e37", + "assets": [ + { + "fingerprint": "asset1c5kmz8wlkf6zfys2rm905rl263xgtu6pkq3n93", + "amount": { + "quantity": 3181, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1lke5ae3w0s9mathk5a3xc4sqdquwr3f930n7sr", + "amount": { + "quantity": 7024, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1pcwz6cj3lawpz8sjf4gnkt2fad8axdmskpyp9p", + "amount": { + "quantity": 6644, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10wyrqse65u43pt8c7na29x20zayptp7wtpzk4y2qutuazzm6jez", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7b8830433aa72b10acf8f4faa2994f17481587ce58456a9140e2f9d1", + "assets": [ + { + "fingerprint": "asset14wrgf2pu7rhpjm4z29hxlhf83t23r04n85egw9", + "amount": { + "quantity": 118, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1fyhkwqvhydwrjw9vx9g335qupyh4tudaxjz0w7", + "amount": { + "quantity": 6696, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1lyxd42nmzwc8dcykx7kd6vhntjexykrruu8a57", + "amount": { + "quantity": 6806, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset16yem4grm6v7rdmx84xynexaywypkwhx7cd7jms", + "amount": { + "quantity": 5828, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh153rzvfg07l94srcnvk8nxx02q7k3epklgd36ayd2p5l0wy08l4q", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "a44626250ff7cb580f13658f3319ea07ad1c86df4363ae91aa0d3ef7", + "assets": [ + { + "fingerprint": "asset15cgnsn3tvyj85ke3m4d2v93cw3xhh6l232nv0l", + "amount": { + "quantity": 2328, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1mwletljp6plfhjqrn7nzdl83nhty6ythh4j9e2", + "amount": { + "quantity": 4365, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1u78ctz6eq344egcz2yney3jnq3zqg6sc8ymyxk", + "amount": { + "quantity": 5070, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset16kp8cv2ma6g8mlg82ck949zf3gkxx9fjx39wcv", + "amount": { + "quantity": 6784, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1ga437dswr5nnq8s4te6pqf3dde4fzez2z92sw7gqwuhraes2r9vsmkqyyu" + }, + { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh16hjcrv96avtqrjvvuahtdg0wlznjke4rmu0dz8dckdyxysdzpkq", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d5e581b0baeb1601c98ce76eb6a1eef8a72b66a3df1ed11db8b34862", + "assets": [ + { + "fingerprint": "asset1knfply4g7ke25rz8smnmz8dm87wqu6wlksfdy7", + "amount": { + "quantity": 8167, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1fh99d6y8jr00gsztayskl9cc8jha84yjvar2gp", + "amount": { + "quantity": 235, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1xms90lq03mhvz4edm9h3fce9ve7dd9r4pld9ks", + "amount": { + "quantity": 7183, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1lsdm8qh3n04w8mfuukjjtrs744v7pd8q8pj625", + "amount": { + "quantity": 395, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1q2vwvat9s0xql5qvx2djwyqf2cfjuklw3jev0v5lk3ljv4twz8j", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "0298e6756583cc0fd00c329b27100956132e5bee8cb2c7b29fb47f26", + "assets": [ + { + "fingerprint": "asset1h7ggh5j4uleg3d66dc5lu97d99csh5xk0jwyn8", + "amount": { + "quantity": 2495, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1l5ryzl5tgjqvmrekvx6m8xx82638udzpeplyn9", + "amount": { + "quantity": 2703, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": "policy_vkh1jz9fffayy2n667nsnhft2jnp86n6px7wsndt9lzud4r8zwm5sfk", + "policy_id": "908a94a7a422a7ad7a709dd2b54a613ea7a09bce84dab2fc5c6d4671", + "assets": [ + { + "fingerprint": "asset1p3rl9jret2qaufzkuw8wse6prhsfvshew2hl07", + "amount": { + "quantity": 1878, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": "policy_vkh1kxuzwz5lputh843sd9w90lkdyc5kvrn5kt2x60spwae2k8gxu43", + "policy_id": "b1b8270a9f0f1773d630695c57fecd2629660e74b2d46d3e017772ab", + "assets": [ + { + "fingerprint": "asset1xynur02gawhtkhcajnnl4d88w2qen2he0ztagu", + "amount": { + "quantity": 5412, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1thrjxe7fcf5vs8especsh8wn4vw3tx2gvd3y33", + "amount": { + "quantity": 3801, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1tqqpff48f6h42h0u9rr96ez9n2cxc6kw57sqte", + "amount": { + "quantity": 7959, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1jjv88xu39wt6dw6au0ve0jg3drgglk3yt2rksk", + "amount": { + "quantity": 8543, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1xxemfw7u7v9fl9tuj2jthdn2e4yzxztr962qagzhgsje2a2q5mj", + { + "active_from": 100 + } + ] + }, + "policy_id": "31b3b4bbdcf30a9f957c92a4bbb66acd482309632e940ea057442595", + "assets": [ + { + "fingerprint": "asset1cuak5gytcd0skydw4qsy4fuc3wqqycz2fdp62h", + "amount": { + "quantity": 2569, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset160gr5qwgctzwd8lz2h42666p2fdfcfchg6gtcg", + "amount": { + "quantity": 9626, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1ujyspnjs68xjpjy4qv4999w7evkqg0lwcn70t3", + "amount": { + "quantity": 4814, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh1ygveu07uv8nmrkym49v6uxkq9jpntuef3mp4fu9reph8v0yfgvy", + "policy_id": "22199e3fdc61e7b1d89ba959ae1ac02c8335f3298ec354f0a3c86e76", + "assets": [ + { + "fingerprint": "asset1ql3g2n39sm7d5265ddyyu9nmp6htt92qfwr50l", + "amount": { + "quantity": 3112, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1m224aam6n224ju5yw05m540p7rcrvnnvdg7a49sv934tx3lt93u", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "da955ef77a9a9559728473e9ba55e1f0f0364e6c6a3dda960c2c6ab3", + "assets": [ + { + "fingerprint": "asset129cggkqku7ymy6tfx6c9pslfmxfn863zwk0w8e", + "amount": { + "quantity": 3424, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1atu3tjq5tt5zdcc4x7k9590604629jk3cu4y3t", + "amount": { + "quantity": 980, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1fsxdhgsfdlqudmunt2duxj9n3ue6uckfx99kru", + "amount": { + "quantity": 396, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1aa0lmpss8krhe9dhf0qtt5q6dq38d67k5el03xetmya3slf285u", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ef5ffd86103d877c95b74bc0b5d01a682276ebd6a67ef89b2bd93b18", + "assets": [ + { + "fingerprint": "asset1w34amtmr8e7f2p6g0s5jzxhjx5s4ec08j8g37x", + "amount": { + "quantity": 5394, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1cejj5vknwwzlqa0z6w5lm5fkyms5fp958dhnyh", + "amount": { + "quantity": 6916, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1qlzekqv6ndpgavu77y24sn939gdg0zfwdqw8mp", + "amount": { + "quantity": 4829, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vps75ag7rjnq27vjqx5uped65tytxhltns2mfgsn3wrh2ddpegu", + { + "active_from": 100 + } + ] + }, + "policy_id": "6061ea751e1ca605799201a9c0e5baa2c8b35feb9c15b4a2138b8775", + "assets": [ + { + "fingerprint": "asset1u4sa9cy9qp0yl9psdaqzp5mzd94q8uee2zx2fl", + "amount": { + "quantity": 6662, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1dukx7ak3gcqew47ygqum7tcujs5075nc8ne208", + "amount": { + "quantity": 2896, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1zxyhasqwpypcsukyye7g9ur0ma66mmnzwhvxeg", + "amount": { + "quantity": 5834, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1gmr7mk005v5lt2v9ps9kdtxpk9h8w9u3uh3hkr", + "amount": { + "quantity": 4072, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1pcckzpnd5fuzpgluj4kx76lvxvs7wumhqe6kgy4knctdj4kt6gy", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "0e3161066da27820a3fc956c6f6bec3321e7737706756412b69e16d9", + "assets": [ + { + "fingerprint": "asset18w6gfqqjwcz8dgunsmsqaqpd3vkdgeppyq9pxl", + "amount": { + "quantity": 3258, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1cyyf5kscc5effj9ug83c7hmvpkx8qn0226an6w", + "amount": { + "quantity": 6639, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset15vas848enwh2ugey4vfgfpy2vsmegwqzu2td3w", + "amount": { + "quantity": 9449, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": "policy_vkh1s8xyjlg46hrldjphwuq7ht5n65w44hh4wckzv78jexhnul0kem5", + "policy_id": "81cc497d15d5c7f6c8377701ebae93d51d5adef5762c2678f2c9af3e", + "assets": [ + { + "fingerprint": "asset1c775rqd5m2pw4esktc4tr783t7dt6esf3pvk60", + "amount": { + "quantity": 9339, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1j36nmvxkr2nsxpdft7s0tlnwh5m5gj8dz50tdf", + "amount": { + "quantity": 3909, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1trvtwmq7zu4rjz2fzas7le3etwg67n7e72ugz3", + "amount": { + "quantity": 550, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1npy2mat5cd9yvy2qfkjzc57z6jg9tk7cv33ymd", + "amount": { + "quantity": 9023, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ss9tusgh4urcnfq9360qe9guwhdpvv2ge0dm5k4nncf2q59ftc4", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "840abe4117af0789a4058e9e0c951c75da163148cbdbba5ab39e12a0", + "assets": [ + { + "fingerprint": "asset1wr24u0e6k3sfldtmhzgw39psatjjcfrqwea2nf", + "amount": { + "quantity": 7208, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1rp54rfek24sfjh9z8u8e733c3c6h5fk55muff3", + "amount": { + "quantity": 1559, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": "policy_vkh1q50zsx0csjkaa3twhwrexu0z0y26wqqh7lsyny7emfvukpl3u3s", + "policy_id": "051e2819f884addec56ebb879371e27915a70017f7e04993d9da59cb", + "assets": [ + { + "fingerprint": "asset12zcn7awvd9aejjeq7pmzftyctdufs4q9du3z9l", + "amount": { + "quantity": 6395, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset14s2erte368x3f9ql6kjasqqenl3qgurav8cq5y", + "amount": { + "quantity": 3166, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh17qc4kqxhqfxrzhjgy4zjfxnd478w4tlk7fylmylumcpuwnzv20p", + "policy_id": "f0315b00d7024c315e482545249a6daf8eeaaff6f249fd93fcde03c7", + "assets": [ + { + "fingerprint": "asset1lwux0upc8ymtpgemzpst00xr5qzh3nmsat7rgk", + "amount": { + "quantity": 5166, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1mgymy5ctt7mk03538zup7ce3h0l5qqvv33wzhn", + "amount": { + "quantity": 2414, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1qr2jgpffzd9j6c32n6kc575gm62q3fnan9hut2", + "amount": { + "quantity": 8658, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1k2phqpqrqsmvrkvzfewdkhcdxallu7lx7tr75h", + "amount": { + "quantity": 4011, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1036jezscpkdhsk4gwfmmdt9hvq8glqhuac44gv3pr9gr5zcl8ay", + "policy_id": "7c752c8a180d9b785aa87277b6acb7600e8f82fcee2b54322119503a", + "assets": [ + { + "fingerprint": "asset1m4l3fxch5ddnnh3urr26jrkynazq7tah53gmfq", + "amount": { + "quantity": 5453, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1t7u53ysnav8gyhjfvlf0h4leg40pqt2fd4mt7ey68g236jfj3zh", + { + "active_from": 100 + } + ] + }, + "policy_id": "5fb9489213eb0e825e4967d2fbd7f9455e102d496d76bf649a3a151d", + "assets": [ + { + "fingerprint": "asset1d63gcn7e9pt3mfllzxnzyq22ygvqu9p0r9h6x6", + "amount": { + "quantity": 1625, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1pu9xmcne54hhgjnk4jd3puk3pjjrh4gdq5uyltvw7ns4qxdeudq", + { + "active_from": 100 + } + ] + }, + "policy_id": "0f0a6de279a56f744a76ac9b10f2d10ca43bd50d05384fad8ef4e150", + "assets": [ + { + "fingerprint": "asset1zk7dgexruvkk67c0n343ymq5pxms8juzck0z27", + "amount": { + "quantity": 3658, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1hsunxl8xf9ctzrw0r3qyt42wl2yjy2e46759u2", + "amount": { + "quantity": 303, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1eta8vflxs50swywgay7avh7f5pseserpch9v3x", + "amount": { + "quantity": 1159, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset13u4e6p3d95pzupxz8r69ndlw4c33ph76ftprfr", + "amount": { + "quantity": 2435, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1j6atha5lpfxaaqshzsfjn28x8ufgsj2sfg0zfmaks8ezyl3gu26", + { + "active_from": 100 + } + ] + }, + "policy_id": "96babbf69f0a4dde8217141329a8e63f128849504a1e24efb681f222", + "assets": [ + { + "fingerprint": "asset12vtn4jr650m4zc0wthxyvlnttqve4rmfweex8z", + "amount": { + "quantity": 7477, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1d0e72cqadmu9myf4au756mwaz4eps9d3pyhsf8", + "amount": { + "quantity": 8737, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1g3kw7wgl48vdpgr6wdujdfzqwjpu5a3w8s3tda", + "amount": { + "quantity": 6915, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": "policy_vkh16480g0yg6s242ny8rkgnzc6az49qwmymtcdxxaxgeq6js4ec8sr", + "policy_id": "d54ef43c88d415554c871d9131635d154a076c9b5e1a6374c8c83528", + "assets": [ + { + "fingerprint": "asset1mxa62xj8lhjrce073elg0v4u54nhn06htnr7nf", + "amount": { + "quantity": 3538, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1xhrjl2v0y669kqgj9qurmhsylfenrk0t58jsh4", + "amount": { + "quantity": 3204, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1n2j3dh4nj62zcqsaxst78znaz926kgfc8ghqf7qnwxrsk45wkn2", + { + "active_from": 100 + } + ] + }, + "policy_id": "9aa516deb396942c021d3417e38a7d1155ab21383a2e04f81371870b", + "assets": [ + { + "fingerprint": "asset194qqh5p5wxwact7r2x5lgd66kgrwc03cvcr28d", + "amount": { + "quantity": 9114, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1tf8qw3u4czqmp8c9jud7rkj42z3qt2n33smf2s", + "amount": { + "quantity": 1294, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset18hvq4gp4l3t9drhkgezvftdec9z35ffs55hgl5", + "amount": { + "quantity": 5307, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1874zhqdkhpzuhlnd6hfjgwx7l42atz25epkxcef7lpfagtesafd", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "3faa2b81b6b845cbfe6dd5d32438defd55d58954c86c6c653ef853d4", + "assets": [ + { + "fingerprint": "asset1j7ynveg4entk3plyvwcga2mm6w0cghuchlh9la", + "amount": { + "quantity": 5566, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1yquzrsd3wzjsydhf3nw35rmk9d4k20j5ehc8v0", + "amount": { + "quantity": 1383, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1dnrfz40qawq6eceqpkr5hjueykh8e9ulx3zf49", + "amount": { + "quantity": 7047, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset17x7k8mku9cuft9q32v8ps0r7uwajnz6u5y3q0m", + "amount": { + "quantity": 7620, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh1x4yuu9hdawxhcm5t7gqugydrz7h9fhcq0gq5f4rpt7jrvgkr7ax", + "policy_id": "3549ce16edeb8d7c6e8bf201c411a317ae54df007a0144d4615fa436", + "assets": [ + { + "fingerprint": "asset1k4k966p3xmqcr9yffvv6c3ay3rdat5d98x5pkn", + "amount": { + "quantity": 2612, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1y4j3wv26wct3zs778pjxhdusf0hctte0ljxxc4", + "amount": { + "quantity": 5704, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1w0grwqcsmpee34rcr8ac5yy9jymvfs53p9vvja", + "amount": { + "quantity": 9763, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset127z74czlvhnq893c7t0vnatck78udd6cct7mh0", + "amount": { + "quantity": 4678, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vsnndd4z7ehzjxehv4vlywd53v4scfxqwty32w89hdx8kn7zka8", + { + "active_from": 100 + } + ] + }, + "policy_id": "642736b6a2f66e291b376559f239b48b2b0c24c072c91538e5bb4c7b", + "assets": [ + { + "fingerprint": "asset1efh2rlumg8yev5sc0sq6cn7zpxeeapvfqeuweu", + "amount": { + "quantity": 577, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset199m26h7dxfcjp0fmdzzsec2jtk8jdqqcy6qpj3", + "amount": { + "quantity": 5, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1x2eq2zl9r6m55dk0qh2ena7fjr6r675cykpy6w", + "amount": { + "quantity": 8657, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1ys0psndt2at7pddx537qam385etl2jh6768efq", + "amount": { + "quantity": 8863, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] }, { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": { + "all": [ + "policy_vkh10tpfzy4p7acdcgde7mpr0lrdnz4x820np2s7fdatkqw4svvpalh", + { + "active_from": 100 + } + ] + }, + "policy_id": "7ac29112a1f770dc21b9f6c237fc6d98aa63a9f30aa1e4b7abb01d58", + "assets": [ + { + "fingerprint": "asset18a38mv97fd6vdymgnvlsgcy2r8ng8tj0ngacjg", + "amount": { + "quantity": 5738, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1pgk77vg3y8ljed4yw4t0hq9czh2c3z63ny29ez", + "amount": { + "quantity": 2366, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] }, { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": "policy_vkh1z3qhaqn8kes7tj4xyhnha52m7uv4y75xeewsnfnlcuszs6tk3dv", + "policy_id": "14417e8267b661e5caa625e77ed15bf719527a86ce5d09a67fc72028", + "assets": [ + { + "fingerprint": "asset1rklkrxmj8qegmmmwe0r6ql99v4dzt39ru3u9qp", + "amount": { + "quantity": 1906, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] }, { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": { + "all": [ + "policy_vkh1p7amp3tj2fqh8my83t6sm4sst68fknq80dlefw2nze89v53fk63", + { + "active_from": 100 + } + ] + }, + "policy_id": "0fbbb0c572524173ec878af50dd6105e8e9b4c077b7f94b953164e56", + "assets": [ + { + "fingerprint": "asset17d6pssslcp86fp984t3durzz3xl6nhmx9qmn4a", + "amount": { + "quantity": 1398, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset18zm8jzwpq2lq9tdf4excxjwr82wtpm84dg2msx", + "amount": { + "quantity": 5075, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": "policy_vkh1qu2mavreplptx7kn2crstqv6jlvy9c6pnlaztrg7gsqjxlgljwg", + "policy_id": "0715beb0790fc2b37ad3560705819a97d842e3419ffa258d1e440123", + "assets": [ + { + "fingerprint": "asset1v3zwtzutyjlqrk0x467666hcj9vv46fv7r2r2h", + "amount": { + "quantity": 1496, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] }, { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": { + "all": [ + "policy_vkh14dlswj504mlfmaq8zrk8005yu6n9qwtu3hwdkhc30q6p6xr40m4", + { + "active_from": 100 + } + ] + }, + "policy_id": "ab7f074a8faefe9df40710ec77be84e6a650397c8ddcdb5f1178341d", + "assets": [ + { + "fingerprint": "asset1k5grelals3nqmlvwhue7r2xng3765cuapmvq79", + "amount": { + "quantity": 9969, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1nyewa2wxtwuf3mtxmqmvzgktma0qy6334fqw7l", + "amount": { + "quantity": 6804, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1new8rtuyajelg0jamqp5qsuy0q949c0wfna9tc", + "amount": { + "quantity": 6564, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] }, { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": { + "all": [ + "policy_vkh10l89k5ef7t9xfwsf7x5pp8hh0sgxts7gjzavlfg6qukkw5f5dgk", + { + "active_from": 100 + } + ] + }, + "policy_id": "7fce5b5329f2ca64ba09f1a8109ef77c1065c3c890bacfa51a072d67", + "assets": [ + { + "fingerprint": "asset100fl37c5e53spjmke5yfakmejp9a367e9pkvqh", + "amount": { + "quantity": 6128, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1t4kwxnc92ndc9mc24kyqrs8chm5t705zv8dn53", + "amount": { + "quantity": 75, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset17nevjln995cdjatqqrvkrmd7sy0ngnsvjewvrp", + "amount": { + "quantity": 2765, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] }, { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script": { + "all": [ + "policy_vkh1lwrewps8p3rftj3x2swx4wmvem94ftr57h9xudlnwra67zgjy3p", + { + "active_from": 100 + } + ] + }, + "policy_id": "fb879706070c4695ca26541c6abb6ccecb54ac74f5ca6e37f370fbaf", + "assets": [ + { + "fingerprint": "asset1t047dflnelkpe0a83zzpvqrfc6ce055fvgurln", + "amount": { + "quantity": 5659, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1zgfg0hr62y4yvfrm0zvfy2m3v48spd6nhcmf4w", + "amount": { + "quantity": 3538, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset19mqr9tkpcsakvxsg3uq7w323nhwdfzpxv46e66", + "amount": { + "quantity": 5449, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] } ], - "policy_scripts": [ + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh18fv32hqcvgkxy366fv68k7m703l4xfttt38md8z88jv8zvfjmms" + }, + { + "tokens": [ + { + "policy_script": "policy_vkh1fpe9e426ekkvxsa5r4app6x4zm3798prpz7f64xc62rd6njzmpw", + "policy_id": "48725cd55acdacc343b41d7a10e8d516e3e29c2308bc9d54d8d286dd", + "assets": [ + { + "fingerprint": "asset1qe4f6aakffjsehrdeeen2n8jfqxsnzrck6p3pt", + "amount": { + "quantity": 9966, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset18mpsgjaj2vvmssnfn3gy4twpsarty26y7u7d90", + "amount": { + "quantity": 8314, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1fwla8pnx3a2ajpx3z0cpnmen4zweljcn9ly89p", + "amount": { + "quantity": 2004, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1922ac872ctuusrxwc5ljunw0z9ml48gku7mjl2kv8683zf7zfaf", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "2a95dc1fcac2f9c80ccec53f2e4dcf1177fa9d16e7b72faacc3e8f11", + "assets": [ + { + "fingerprint": "asset1rwzfn86sra9q8kypa5x4n4gmetz3ws39yt7r6c", + "amount": { + "quantity": 8792, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1pweplaejujk2su6temqmn253qhxsaw0my05nlh", + "amount": { + "quantity": 3440, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1grgxwnx6hs7c7re4f2xte422v0v4yjpcx3hfx5", + "amount": { + "quantity": 4708, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh105cyh5zwudusnzgste0e2ga4cscvfvh0zljcerma3h2xvjrpj37", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7d304bd04ee3790989105e5f9523b5c430c4b2ef17e58c8f7d8dd466", + "assets": [ + { + "fingerprint": "asset1syaqgmf05jyd4e7zkml4r2dlxr3hz9kdmgrktl", + "amount": { + "quantity": 8018, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1wn7zm2smmlwd5nj9f9e8cgy9xhpphymzd68ms4", + "amount": { + "quantity": 4365, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1yfqxwkt6pz7c57x9042c6cplmhp7vsneca0np3", + "amount": { + "quantity": 4592, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16n333je75v3jp4zqvlmc7mccqyspnr5msyepd3v24pjxslyk2kl", + { + "active_from": 100 + } + ] + }, + "policy_id": "d4e318cb3ea32320d44067f78f6f180120198e9b813216c58aa86468", + "assets": [ + { + "fingerprint": "asset13rz8fgphna6eewl2nw4zntss4u8mgrwhhja43t", + "amount": { + "quantity": 9656, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1srvyhtxjtg9j2xvnkhk2mg764esn46jj83qt77", + "amount": { + "quantity": 6450, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset14gtqy6vtsus6mjdx7p33l6482v6vll9rnc8ueu", + "amount": { + "quantity": 9384, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset10d0vpv57vh7jt0hzz25yp657kglstnzgtk6p6a", + "amount": { + "quantity": 795, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1gulrahdwhk2rvm87kd4azrtw8xk0hmkxzu30wzhar5472au70m2", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "473e3eddaebd94366cfeb36bd10d6e39acfbeec61722f70afd1d2be5", + "assets": [ + { + "fingerprint": "asset1avafyqhe6t0mgxm4x8mll7xupu9tuy0xpj69w7", + "amount": { + "quantity": 9424, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1gny7cmxlg9f4kzhqer060dfmhz3x77r03w3na5", + "amount": { + "quantity": 8476, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1g35sq22tj2rf8h0dzylxxknaejs33e30yzj3fj", + "amount": { + "quantity": 6798, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1rwka0rhaste8n7f7zyyh3hgfpz9sg3va76g4up", + "amount": { + "quantity": 8021, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1kdmy48uykfztcac03ykhr2ajh692khp5d6smfaag4dvs5vgdh58", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "b3764a9f84b244bc770f892d71abb2be8aab5c346ea1b4f7a8ab590a", + "assets": [ + { + "fingerprint": "asset1v837lzxsvpuxhc9vkz0h5tjhy0vnhjn83vykf3", + "amount": { + "quantity": 4295, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1cpw9xqf692qqfl3xcnpcl2540h3qd0276m9qk8", + "amount": { + "quantity": 9760, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1h3vqwnwpgj3xupfsvhvau5wcluf3vmssm4u6rz05f77qqjdz46v", + { + "active_from": 100 + } + ] + }, + "policy_id": "bc58074dc144a26e053065d9de51d8ff13166e10dd79a189f44fbc00", + "assets": [ + { + "fingerprint": "asset1eur7ut5s9z3ywgpsfwz08t4kw79zkqafm89xt8", + "amount": { + "quantity": 5184, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1ct3hu2ylgq4g9kr9zwdt0kkmf42q2kcfqm4ylk", + "amount": { + "quantity": 1741, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1gejmpmz657vdzf3y36zufdhmyfypz7ln3khtnm", + "amount": { + "quantity": 3762, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh16e3v7k39lptzfez5y2kswyuntleu20rg8awglma99rx5z6hjn7u", + "policy_id": "d662cf5a25f85624e45422ad0713935ff3c53c683f5c8fefa528cd41", + "assets": [ + { + "fingerprint": "asset1acazkd3qnzv555jr2qaarrn3v83uyvq2mhv644", + "amount": { + "quantity": 6258, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1jth9fxd8r75ag54s4tq0cts83al4sped8awwar", + "amount": { + "quantity": 3501, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh17acus44r82ue8m8a70wfhpqejk0n6gn87h2pnexzadk9xvxf2ea", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "f771c856a33ab993ecfdf3dc9b8419959f3d2267f5d419e4c2eb6c53", + "assets": [ + { + "fingerprint": "asset1mtz74pl3czxqj4atll5jy5tswyehdpe9npkpqr", + "amount": { + "quantity": 4340, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset165ng0kjftlq0sqgj68y9vpg6fyf24s7pctttc4", + "amount": { + "quantity": 5892, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1vyn9xh86w824ltq7qmfsyd0lymcn247fe9qwwg", + "amount": { + "quantity": 7880, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh18hdp00up94ucaujszz6chsmkwktjg5w27l65xexrr9jmyhdexx0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "3dda17bf812d798ef25010b58bc37675972451caf7f54364c31965b2", + "assets": [ + { + "fingerprint": "asset1re4uw080pjtpfnxrtskeankd2n4u2l9r8553g4", + "amount": { + "quantity": 7480, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1tlxnek9wa29xf9dwg88qfz0gzqxt2zj9z04knd", + "amount": { + "quantity": 2643, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1recjtxdj8ldswwtc942wcg6c9sd8gjxj6ad8ps", + "amount": { + "quantity": 6355, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mksx8uxcq3740pzhq0gnzk0a4mestfm5xwz7wauh50lpksm09wy", + { + "active_from": 100 + } + ] + }, + "policy_id": "dda063f0d8047d57845703d13159fdaef305a7743385e77797a3fe1b", + "assets": [ + { + "fingerprint": "asset16lu065wvpuxptuv86x4gqpgfmly2xtaete87t9", + "amount": { + "quantity": 3119, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1l757xaryhuftd4ylv9cen0fthfu7eq042nchpn", + "amount": { + "quantity": 6678, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset18s0yzeap0ds0tcnh0xkzq5s8zj0r957v35c9h3", + "amount": { + "quantity": 9629, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1a8a7vdp9qqy55mc7avkd8c4llcrs7m4y7r726k", + "amount": { + "quantity": 7862, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16nmcjvfhcmgszcu2mc3aqmzm3urrw7fcqymwfwp2su4e5jlymvq", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d4f7893137c6d101638ade23d06c5b8f063779380136e4b82a872b9a", + "assets": [ + { + "fingerprint": "asset1t3pjaxegvpzm002xyg5l2v9l8ha6m778fxg3p3", + "amount": { + "quantity": 3215, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, { - "policy_script": "addr_shared_vkh1chnyxjulpfccs3nakrzzmwvmeqcpt5eqjctanmqx6fhwu969zdk", - "policy_id": "229d8179d0cbc75a2847e64a4b2fb819cefc9abd9ee845df9f5a848d" + "policy_script": { + "all": [ + "policy_vkh1rvc74kz64a3ayqnjepmvaggqfn5uajke4rsu5l2k44ztzns4hw0", + { + "active_from": 100 + } + ] + }, + "policy_id": "1b31ead85aaf63d20272c876cea1004ce9cecad9a8e1ca7d56ad44b1", + "assets": [ + { + "fingerprint": "asset184yxl9vjg0ex6rvj6x2lwpjgdqfyj9dwvkxm4t", + "amount": { + "quantity": 6267, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] } ], - "wallet_policy_key_hash": "policy_vk18epnj6rsvdlzdxt36qk4nlcp9vwygn30p5fq93jk2pcrrve6qgeqsz0kf5" + "wallet_policy_key_index": "0H" }, { - "token_map": [ + "tokens": [ { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": "policy_vkh12ytjzrpsplfaf0plpe03q6xrtv7jlpxf3q68sjj8hgh7cqqlelj", + "policy_id": "5117210c300fd3d4bc3f0e5f1068c35b3d2f84c98834784a47ba2fec", + "assets": [ + { + "fingerprint": "asset1keg6pahrs40cm7w7wspu7pfj4n6ws3vk28vejs", + "amount": { + "quantity": 1396, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1ygrexp95wkgee5dm3r4kzem0u8h7tvhgp5a8dd", + "amount": { + "quantity": 7417, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1fhch9gkd3yflwwkvkt2n88g57qs3wnewlmpwu7", + "amount": { + "quantity": 9152, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": { + "all": [ + "policy_vkh19h2px7xl3evav7k5sph2ye98hp7hpdg5a3kzz2jawjf72glaeht", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "2dd41378df8e59d67ad4806ea264a7b87d70b514ec6c212a5d7493e5", + "assets": [ + { + "fingerprint": "asset1ft5n9yzmnnmr9znghmtazn5zycpcjffzftnlgm", + "amount": { + "quantity": 7008, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] }, { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": { + "all": [ + "policy_vkh10ywtvxv7dalrafv0ql4j4qa9r39zhv8evykhlgkuhv6gjuasfuv", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "791cb6199e6f7e3ea58f07eb2a83a51c4a2bb0f9612d7fa2dcbb3489", + "assets": [ + { + "fingerprint": "asset1rke0r3w8np4de6y5czetaqlxxg8cg7af9c2ejq", + "amount": { + "quantity": 7977, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1dxguhpfakj728vx6v3heq8unf82s8j7qmvf5sw", + "amount": { + "quantity": 3478, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1ygsmdsw642hg02843mw2cg36lczgg63fvhcqu7", + "amount": { + "quantity": 8296, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] }, { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": "policy_vkh1t6yecxltx9zzz4jcmegnvamrqvzjclt6ry2w6u27yzxqutjtkp0", + "policy_id": "5e899c1beb3144215658de5136776303052c7d7a1914ed715e208c0e", + "assets": [ + { + "fingerprint": "asset1e593g32fu7qjvymxfkxdy92n89tktl2wc6ujpe", + "amount": { + "quantity": 7621, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] }, { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": "policy_vkh1dhyppgdhcxymk8ht68atzuyhey4cjd43a78xsre8gwsys9ktpmx", + "policy_id": "6dc810a1b7c189bb1eebd1fab17097c92b8936b1ef8e680f2743a048", + "assets": [ + { + "fingerprint": "asset162lkr54lqptawvx0823kgq5zm8jhf26dew4xgc", + "amount": { + "quantity": 6759, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1m3arvu9kf9vcpaq4pcfway8wy4edfys8rcca07", + "amount": { + "quantity": 8700, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1v9nw7j8p72w0v8rdprx0fy787mz4x5u44mrs2d", + "amount": { + "quantity": 4736, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] }, { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": { + "all": [ + "policy_vkh14sk6szqkhxm3t4vt507r0zlx53pnfyzz2nrf2zthe2aux6nl5p3", + { + "active_from": 100 + } + ] + }, + "policy_id": "ac2da80816b9b715d58ba3fc378be6a44334904254c6950977cabbc3", + "assets": [ + { + "fingerprint": "asset1suu6qkas4hla5lc4ntrmnzvqcjkp7y03vmr9tu", + "amount": { + "quantity": 709, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": { + "all": [ + "policy_vkh154f4tr435v6rpty2m7j79kqt5ds6ft9c8ycgmye386n5zh2lwmu", + { + "active_from": 100 + } + ] + }, + "policy_id": "a553558eb1a33430ac8adfa5e2d80ba361a4acb839308d93313ea741", + "assets": [ + { + "fingerprint": "asset1ntnnuzzsgmjwsuemj37pjvwesa36lhykf0vuzp", + "amount": { + "quantity": 2887, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset13u5rc6ax9qc8cdxmeev8r0u5sw3vj8zqs3dztw", + "amount": { + "quantity": 9928, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1seglmhg6g8urr0nsrp57ykkhdld57s47zwpus3", + "amount": { + "quantity": 8375, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset12tsgnvx335vhryfzqulsary8kcvam8se05ssfs", + "amount": { + "quantity": 5977, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] }, { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": { + "all": [ + "policy_vkh1ucpk6u6wa79zs4pz5qvpn4zn0whc65g2slmm8yxwkk9qv7h74eq", + { + "active_from": 100 + } + ] + }, + "policy_id": "e6036d734eef8a285422a01819d4537baf8d510a87f7b390ceb58a06", + "assets": [ + { + "fingerprint": "asset1w54yl2zhsdsgchgw53ns5f6nn9q2zw00stksqp", + "amount": { + "quantity": 7840, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset170t0ydluj5l6vxdhf7d2d6wf2m05j8qajw8y8n", + "amount": { + "quantity": 8181, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1ew0jcwhmqwn67xxhg6nzduwj0uqhrsgcqv2ju7", + "amount": { + "quantity": 8700, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset170hwq04r5kg3frhdmhk5s8zkd4qenp5yzynt5g", + "amount": { + "quantity": 9736, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script": { + "all": [ + "policy_vkh15whrrsntayex8djzallmjwqjc3g2ewmu9962cyk2wm9yzz28ank", + { + "active_from": 100 + } + ] + }, + "policy_id": "a3ae31c26be93263b642efffb93812c450acbb7c2974ac12ca76ca41", + "assets": [ + { + "fingerprint": "asset14jljja7n85g235l93uwjd2ndxcqpamru5j5svr", + "amount": { + "quantity": 1243, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] }, { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script": { + "all": [ + "policy_vkh173lh2kjs05zyn28wjygzmpjmwdqtq4dga63xgfl77zw26tqcl8d", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "f47f755a507d0449a8ee91102d865b7340b055a8eea26427fef09cad", + "assets": [ + { + "fingerprint": "asset13mhdrqz4rqw7guukrdc2pjkp7gkhkcldzdurmy", + "amount": { + "quantity": 7871, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1q0nl7mnklrtyez7ap5y6f5kj4afp2gclpd6n3v", + "amount": { + "quantity": 3305, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1808yuu8w7rs8nctellrntyzwz5vkwx6lc3u3x3", + "amount": { + "quantity": 2738, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] }, { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": "stake_shared_vkh1m2fsr9fzwcazf7ru0xv6xeuvgjkfcmlhvjsfpesujcd67d7s6ps", - "policy_id": "7b54561a666e8c5095082bfbd528bc53dd7833c30ab8b24c5abd002b" - } - ], - "wallet_policy_key_hash": "policy_vk199nhctm9ra07z8t6yfzqw9e9zccz2sgj8acnyj332k2p55qj243q7g947k" - }, - { - "token_map": [], - "policy_scripts": [ - { - "policy_script": "addr_shared_vkh13gguagtce90gwhulxt2j8fdygzhurr2468f6hljljtf0jsh5w9c", - "policy_id": "7110151513cd6d508d0e7162925a60db6297839469fa71e17857f28b" - } - ], - "wallet_policy_key_hash": "policy_vkh12fa9h8jymlqqvaff832cj6c2x6635g32quepuefl0gyj2frdejs" - }, - { - "token_map": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": "policy_vkh1syam9rr7etlxh68jnx275ltqp5q8e3glf5g7pewjpduyv9r69cn", + "policy_id": "813bb28c7ecafe6be8f29995ea7d600d007cc51f4d11e0e5d20b7846", + "assets": [ + { + "fingerprint": "asset1h5eldgkqh4y8qunz0t7j4a3j50s97l5h7ddwtj", + "amount": { + "quantity": 9700, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": "addr_shared_vkh1w9mwzam55xex4dvk0m0sw403zdrfeeqju5lnn74e0pvsz4a0xgr", - "policy_id": "291d4b60ac1340fc860b1deb3a5c806062313aa49c1ec431c967c01a" - } - ], - "wallet_policy_key_hash": "policy_vk1p33j5xl5wasqys2969c4rrg393fjw2s0xfxxxgtrvqmqz9c7xdasguha2w" - }, - { - "token_map": [ - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "policy_scripts": [ { "policy_script": { "all": [ - "stake_shared_vkh1tl7hrmgkklvvfezvfumyzaa7xf75rrxuvgyhj83npl56svfdp7e", + "policy_vkh1anwtfgt5ffwvzaxquz9m3gg7dv4l4kje7j8n0hkcpkc7z0zmddz", { "active_from": 100 } ] }, - "policy_id": "fb7e1b26da3be54e8ee33577b7aa17bde6082bf2eae9db251fa2a022" - } - ], - "wallet_policy_key_hash": "policy_vkh1yzppzcs42p5y6qemgvkk543u8cz5vlerfd2sg7cszdlfuxllkcd" - }, - { - "token_map": [ - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "ecdcb4a1744a5cc174c0e08bb8a11e6b2bfada59f48f37ded80db1e1", + "assets": [ + { + "fingerprint": "asset1xtae466p0nv9qfzylc77vrmgy9txlyzz8a7gvd", + "amount": { + "quantity": 4704, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1wj35fjdd4m8ckaaqclm6adsy5c20sx6zgkqk69", + "amount": { + "quantity": 7712, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] }, { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_script": "policy_vkh1jqk452xez376jn6vjavr7u7ee73z8guts0uvewvkdaxcyn4nwqw", + "policy_id": "902d5a28d9147da94f4c97583f73d9cfa223a38b83f8ccb9966f4d82", + "assets": [ + { + "fingerprint": "asset1adupdtcl4nxds3u58eyhyvwm0r5fz58e0pupu2", + "amount": { + "quantity": 9985, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset12du96emqah36m89tq0jhkdpym5jw68858askw8", + "amount": { + "quantity": 2741, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1pc0v7xwze6xax4j2hauu6hzrjx2ethnkkmpdzx", + "amount": { + "quantity": 1008, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] }, { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": { + "all": [ + "policy_vkh1vasxtahwsfktrx7sny70gv407rfp2pwzsd6l4zjvhfacqj7kwhm", + { + "active_from": 100 + } + ] + }, + "policy_id": "676065f6ee826cb19bd0993cf432aff0d21505c28375fa8a4cba7b80", + "assets": [ + { + "fingerprint": "asset18sklr57utmgtupsyxzlc7xplla30t0xu4lx0m4", + "amount": { + "quantity": 6809, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1jk4ddeea48d72c0zxkfz937dmpx2g4l3959r6s", + "amount": { + "quantity": 1804, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1wz69caf6fc35j24sn5fl5mjwzmvh62nffhekp3", + "amount": { + "quantity": 4266, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1pjejhr2y6uaca6hzvq83v7699va786tymcdmz7", + "amount": { + "quantity": 3826, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": { + "all": [ + "policy_vkh1s6jr2q6sk962xkem4ekx8xr04lphrc78aduw8qpgpr686r9rguz", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "86a4350350b174a35b3bae6c63986fafc371e3c7eb78e3802808f47d", + "assets": [ + { + "fingerprint": "asset1sg4puueyx4d8h6gmh4w0kj2jle8jn6nrs26u5z", + "amount": { + "quantity": 6654, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1a9v8c284ezuu5ptgvd8ksmh6wxtz6lsh9uwh0p", + "amount": { + "quantity": 6487, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1eykrvwygzdgk924n9xtvqp5q2jd7r20agsp8ff", + "amount": { + "quantity": 957, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1q8pndeg25xrj7f97q9m3pslgcx7vnkuxh3lpzp", + "amount": { + "quantity": 9428, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] }, { - "asset_name": "546f6b656e42", - "quantity": 42, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": "policy_vkh1jj27fuy3j7c9uqz0r7lk85vnu8rr9x6p4up7h570pnkluh2arh3", + "policy_id": "9495e4f09197b05e004f1fbf63d193e1c6329b41af03ebd3cf0cedfe", + "assets": [ + { + "fingerprint": "asset165e50kpq70t9d883qe2vpjmwe9sx9nqus3zfr8", + "amount": { + "quantity": 9459, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] }, { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": { + "all": [ + "policy_vkh1avmk8fjluyzqrg5keu63frmcqmy44mv8w8d6yxfzj33t7e5fsjt", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "eb3763a65fe10401a296cf35148f7806c95aed8771dba219229462bf", + "assets": [ + { + "fingerprint": "asset1v2qnrgwcmz8ckhhzkt2jqac03ffnk4g3j995jz", + "amount": { + "quantity": 4186, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1ta9nhmrtweha5ryqu74pe7qcajcuxgs8flge9j", + "amount": { + "quantity": 4903, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1k3sm504mj0lzj3py8s8t0a76l4hfwhf20ecclt", + "amount": { + "quantity": 3638, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] }, { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": "policy_vkh1xr0w0ywyn3xvjgs20nq7mra0kz0mk03pq62t3aauvw9xc8724t8", + "policy_id": "30dee791c49c4cc9220a7cc1ed8fafb09fbb3e210694b8f7bc638a6c", + "assets": [ + { + "fingerprint": "asset1ejd7awtw7x0uhgd3uqt0mrffenesdpu5z8u7jn", + "amount": { + "quantity": 2963, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset12rpz44up0z2j8476gkzx5yz9s0vf9pn3rthd35", + "amount": { + "quantity": 5747, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1zctgh49j02sf6ek26etljdn99xrsr4x5urtnnr", + "amount": { + "quantity": 6291, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] }, { - "asset_name": "546f6b656e44", - "quantity": 47, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": { + "all": [ + "policy_vkh1athvw68f6vwvxw6zgaw36fpdyvanfgpgusnvfgdd8kspy8495zn", + { + "active_from": 100 + } + ] + }, + "policy_id": "eaeec768e9d31cc33b42475d1d242d233b34a028e426c4a1ad3da012", + "assets": [ + { + "fingerprint": "asset19tzkcjy7hpxujdnd85q4heutnkkznuwektrm9l", + "amount": { + "quantity": 8038, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1umyth8h0jfk6rcv993afemlddnpfh5p66z06pq", + "amount": { + "quantity": 1797, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1mrgulc0gz4z4u6fnqdj7l7czxhtm3yw37ukc2k", + "amount": { + "quantity": 8488, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] }, { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script": { + "all": [ + "policy_vkh1hnjgge9930dk3j362h6pwsam78gn9rnuxl8ylwljss66z8der7u", + { + "active_from": 100 + } + ] + }, + "policy_id": "bce48464a58bdb68ca3a55f41743bbf1d1328e7c37ce4fbbf28435a1", + "assets": [ + { + "fingerprint": "asset135eh5d3y5ydtyh3gz4vpwxmv95gplwawk95l6y", + "amount": { + "quantity": 8511, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1637rl7k5np86aymqfwnycap9sar2tg2fm9nh00", + "amount": { + "quantity": 5664, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1pcenngkevyhxp6a5tem6z8kpv8rqpxdmg0lk78", + "amount": { + "quantity": 2874, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] }, { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script": { + "all": [ + "policy_vkh1lptmchqh7l6gu4lsghu805t4vd34ddewx5sr2wg78k9fw2znkg8", + { + "active_from": 100 + } + ] + }, + "policy_id": "f857bc5c17f7f48e57f045f877d175636356b72e352035391e3d8a97", + "assets": [ + { + "fingerprint": "asset1qmu59v06kfc5f0a958s3mucw3a65lrq2ae0cvv", + "amount": { + "quantity": 6289, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset16dhpupc4dvy5chnw6vrmytfveydfg29uzlr24g", + "amount": { + "quantity": 3854, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1pc5mztllgq2gadec9vtgdfz75taqdtd7m4egsw", + "amount": { + "quantity": 3680, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 48, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": "addr_shared_vkh1vcuegw9lnzdm55zk4fqz8dh3x68guz8jdxyg2twl7k5ywjzxmqd", - "policy_id": "3fa8851e14572567573bf203e8ebadad08bc6cc14d05be40bbc151b7" - } - ], - "wallet_policy_key_hash": "policy_vk1fj69zrj4ryd3573wwg6jy2mh25zhzunct6p4crr5r4656zs8pxhqztukj3" - }, - { - "token_map": [ - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "policy_scripts": [ { "policy_script": { "all": [ - "addr_shared_vkh1w44gam8xzaza9tvt4va9w4z2aasefldxjc4tqwcj3vcpqz8s8p6", + "policy_vkh1vtl6km5crh60juddrwz0c0h4q2m0g7nd45gqhy3905r3zvatfxn", { "active_from": 100 }, @@ -259,35 +5581,75 @@ } ] }, - "policy_id": "3988433f9941682db4a180845be99762befe7a4f3b8d7fc5e0bb2ba3" - } - ], - "wallet_policy_key_hash": "policy_vkh1f9dz593cfuq4xlnts5fhqyfqracz2ql929t5xp2u9pn47su6905" - }, - { - "token_map": [], - "policy_scripts": [ + "policy_id": "62ffab6e981df4f971ad1b84fc3ef502b6f47a6dad100b92257d0711", + "assets": [ + { + "fingerprint": "asset1cpltprfrclv204vepuvg20m5r2vdmg2cr7zgw7", + "amount": { + "quantity": 7929, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1njk6y02hqmtd8dmfyqy0kult42nz6czu35l7qp", + "amount": { + "quantity": 7372, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1uqu7qvd2navmk2rz7lphkzmufm2a39wkch9fj4", + "amount": { + "quantity": 1983, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1anp82xm25kedtmqwax8elczr34up9av5nc4axa", + "amount": { + "quantity": 6089, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, { "policy_script": { "all": [ - "stake_shared_vkh10h6w9485emful5mew7tmany4hz8pv4dpy3mp9t6m3rrw696uv2e", + "policy_vkh1wvu8l4avyecdh4kmnuluew3e9qhkyvlk8k5y8x4hgqc229jkkpy", { "active_from": 100 } ] }, - "policy_id": "1b4180771ce2a486a768b5ff522882050ec62253c679d1a88e35af35" - } - ], - "wallet_policy_key_hash": "policy_vkh1ga3r5lrwdjyk2yrmfqhpxmpk5edjkv30f92rwce3vsd9qr80cyc" - }, - { - "token_map": [], - "policy_scripts": [ + "policy_id": "73387fd7ac2670dbd6db9f3fccba39282f6233f63da8439ab74030a5", + "assets": [ + { + "fingerprint": "asset1038zv8ymwr3g6upwqac7nncdk5wzr98pp3pz8n", + "amount": { + "quantity": 9422, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1rql57zrnayh2aj3jf8ym468lrkne6sxghkep5d", + "amount": { + "quantity": 9343, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, { "policy_script": { "all": [ - "stake_shared_vkh1q5rgvplq6quv4ypmyws95eewjdw4uznmxx9nh4eehyemq43yvan", + "policy_vkh1qn8f6tlvthwjug8pam25p0h2r67d6nvqkq36sew7xkrc6vs70rk", { "active_from": 100 }, @@ -296,18 +5658,130 @@ } ] }, - "policy_id": "23d6f2306388ab723cd627eb425f4f6ee97b3ed04d256fd734725f63" - } - ], - "wallet_policy_key_hash": "policy_vk1z3kyzwsygv3s0mz9m3krvfcgvm395amvrsu9uevpqd7qycq39wpqmp8f7a" - }, - { - "token_map": [], - "policy_scripts": [ + "policy_id": "04ce9d2fec5ddd2e20e1eed540beea1ebcdd4d80b023a865de35878d", + "assets": [ + { + "fingerprint": "asset10gs2angrff9v47xyw3vlakdsyqer8k5sxmj9wz", + "amount": { + "quantity": 4834, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1xn7lr2h72djd4hzphn0hpez9kj59p20yv4pqqp", + "amount": { + "quantity": 6864, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1tp7nddf9fuuz2uswpcprf4sjkem6e4uwld4csukyyt8tq50gvx6", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "587d36b5254f3825720e0e0234d612b677acd78efb6b8872c422ceb0", + "assets": [ + { + "fingerprint": "asset1sjumxtj64m0ffssvxfeypm3qs0vv8jkcqalrh6", + "amount": { + "quantity": 2614, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1rwsl5jm0vuq6gsaxcxca6tdfggqapa6chjfg2s", + "amount": { + "quantity": 1694, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": "policy_vkh1mqzzxpl5aj3qg433jgm2qkklntpvwah502sld3au4swpwttytms", + "policy_id": "d8042307f4eca20456319236a05adf9ac2c776f47aa1f6c7bcac1c17", + "assets": [ + { + "fingerprint": "asset14qsd0ffpatvnuzqa8fpceut3agxay2khpvsu3c", + "amount": { + "quantity": 4644, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1ql4me0avzq7eg7mryxlkrv4szrzzc7sjr4aw4y", + "amount": { + "quantity": 858, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1lwpecmgxmqd4cxrvfwm7a57h4ll403dsxgagzl", + "amount": { + "quantity": 3909, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1z6v5cdzsq7tyat2kcf73yh6t9x7v3g37tyx7t3", + "amount": { + "quantity": 1801, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": "policy_vkh1g4hjwca95hhxv3su0qdduhtp4nlz42qjva3lpzsn2jytkth3q0f", + "policy_id": "456f2763a5a5ee66461c781ade5d61acfe2aa8126763f08a135488bb", + "assets": [ + { + "fingerprint": "asset1cwmwrsfc2grq922jq4a4e6jn3tc4mxz72y03tx", + "amount": { + "quantity": 4348, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1whdgu47zlyfxu3ywlcln5mtdw6esumy73cac4d", + "amount": { + "quantity": 489, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset159xpa0yhzfct76g9mqnaxxarrz34jnagk0f879", + "amount": { + "quantity": 6694, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, { "policy_script": { "all": [ - "stake_shared_vkh1scdh4xvpdf3xn7un7fpyuaap5r2f6ttvp8lg623axq3g6ec0y99", + "policy_vkh17ce2q77sjmpdufymf6lmvesnulh807d4eq54hfuhqvlhqt3k0ft", { "active_from": 100 }, @@ -316,10 +5790,74 @@ } ] }, - "policy_id": "9b954b1d09027bb1a7790b709a542dc4acec217f1e6fdf86b429fef5" + "policy_id": "f632a07bd096c2de249b4ebfb66613e7ee77f9b5c8295ba797033f70", + "assets": [ + { + "fingerprint": "asset1v0q4dep592aqmzcy0j65e0utu5n3a6jsn3240v", + "amount": { + "quantity": 8880, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1k400glvrxyymnl0hax44ftsh5mzuhp9jjkpcg4", + "amount": { + "quantity": 6107, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1smmqae6999uq54f5vg88uenqwx0jauq7wvz5k5", + "amount": { + "quantity": 7678, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1w5gm00ffg6l4e4wkwxhxpjafluff070atqpncm3watuejnqry09", + { + "active_from": 100 + } + ] + }, + "policy_id": "7511b7bd2946bf5cd5d671ae60cba9ff1297f9fd58033c6e2eeaf999", + "assets": [ + { + "fingerprint": "asset1k9e0vdm5ewn09vpcmq778w7k5cqg3s2mrhp29k", + "amount": { + "quantity": 4910, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1wl43keqj7g09mwwc6xdtldskwgqrgzqrxxull9", + "amount": { + "quantity": 6809, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1sve64vax3gtltj9p9uq3seath2y08y4s5kluxy", + "amount": { + "quantity": 1840, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] } ], - "wallet_policy_key_hash": "policy_vkh1xgqs6mmnagrpjyqwxh83gypm9usyvnzjrv8jnyetquqn5s9d0k0" + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk10cuk0zstrechghzq8drpzxh3lszza6maqukz7ejtv4e3y3j9yggqz7avlc" } ] } \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionTestnet0.json index ddae6586ff7..7729938d921 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionTestnet0.json @@ -1,41 +1,19 @@ { - "seed": -6075305144457648638, + "seed": 184668028591350585, "samples": [ { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZICAGCglg5Ab3XTDvQhtOJOYdvy9Vukd1W/MypvnC0JDkEQ2evM9QXgU5vp5UxlXl9c/m1+1EYVLSw2LICOVmVGgAtxsCCWDkBGi8vEDuJXb5ziKzJzBD5DcStpT9GyEHSrERjB4n8YdId38vU1DZSvwXEDDRvp5SHFCO2UFLXYUwbAAAAF0hHIYgCGgAB/7gDGY0RoQCBglggQ+ptRemr5uMPr/SptnWr3ElTSm7am6lvk2jRLYed/GdYQJuJjKFD4bJFycdFxpC4E3tyT8Y/ijuFK80iNM7k5owlzTM+hFoiS5y0YA8nHVReNaQdF6FsBGrqZu00pTZVnw32", "coin_selection": { "withdrawals": [ { "amount": { - "quantity": 8, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ "0", - "1", - "1", - "2" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "derivation_path": [ - "2", - "2" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 3, - "unit": "lovelace" - }, - "derivation_path": [ "2", + "0", "0" ], "stake_address": "" @@ -46,8 +24,9 @@ "unit": "lovelace" }, "derivation_path": [ - "0", "2", + "1", + "0", "0" ], "stake_address": "" @@ -58,18 +37,7 @@ "unit": "lovelace" }, "derivation_path": [ - "0", - "1" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "derivation_path": [ - "0" + "2" ], "stake_address": "" } @@ -77,60 +45,19 @@ "inputs": [ { "address": "", - "id": "fdf26712777614647169c775d160735085792b0f68121f4f086a077e427f2d28", - "index": 2, - "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "derivation_path": [ - "3", - "5", - "1", - "0", - "3", - "8", - "2" - ], - "assets": [] - }, - { - "address": "", - "id": "c3332764a84434c33d067c175b654d54d640381375132a5b11b39b6009435dfb", - "index": 5, - "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "derivation_path": [ - "5" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "id": "4b7b0e631132521e4b30316430757a6b0a7c116eec332045329d3e6d42334978", + "id": "0f5475797873456265929a332f4b777f657fec43327950f91ee77e986a0c2237", "index": 2, "amount": { "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "6", - "8", - "4", - "2" + "3" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 6, + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] @@ -143,186 +70,190 @@ "quantity": 0, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 3, - "unit": "lovelace" - }, "assets": [] }, { "address": "", "amount": { - "quantity": 5, + "quantity": 8, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e41", "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", "amount": { - "quantity": 1, + "quantity": 4, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "quantity": 16, + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 18, + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 10, + "quantity": 12, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 3, + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] } ], "deposits_taken": [ + { + "quantity": 5, + "unit": "lovelace" + }, { "quantity": 0, "unit": "lovelace" }, { - "quantity": 6, + "quantity": 0, + "unit": "lovelace" + }, + { + "quantity": 2, "unit": "lovelace" } ], - "change": [ + "certificates": [ { - "address": "", - "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "derivation_path": [ + "certificate_type": "quit_pool", + "reward_account_path": [ "0", - "5", + "7", + "7", + "6", "8" - ], - "assets": [] + ] + }, + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "5", + "5", + "8", + "4", + "3" + ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "4", + "3", + "1", + "5", + "1" + ] }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "2", + "5", + "8", + "3", + "1" + ] + } + ], + "change": [ { "address": "", "amount": { - "quantity": 5, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "2", - "2", - "8" + "0" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "address": "", "amount": { - "quantity": 7, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "6", - "8", - "6", - "8", - "3", - "3", - "2" + "5", + "7" ], "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", "amount": { - "quantity": 6, + "quantity": 3, "unit": "lovelace" }, "derivation_path": [ "0", - "0", + "6", "4", - "5", - "5", - "3" + "1", + "8" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 8, + "quantity": 6, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 8, + "quantity": 2, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 21, + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -330,55 +261,39 @@ { "address": "", "amount": { - "quantity": 1, + "quantity": 3, "unit": "lovelace" }, "derivation_path": [ + "0", + "8", "5", + "1", + "8", "6" ], "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "derivation_path": [ - "6", - "0", - "8" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] } ], "deposits_returned": [ + { + "quantity": 4, + "unit": "lovelace" + }, { "quantity": 7, "unit": "lovelace" }, { - "quantity": 4, + "quantity": 1, "unit": "lovelace" }, { - "quantity": 4, + "quantity": 2, "unit": "lovelace" }, { - "quantity": 3, + "quantity": 0, "unit": "lovelace" } ], @@ -386,130 +301,88 @@ "collateral": [ { "address": "", - "id": "4274633a7526550760552452775f236f6548de0b6008194a7f17270644324e2a", - "index": 6, - "amount": { - "quantity": 0, - "unit": "lovelace" - }, - "derivation_path": [ - "7", - "6" - ] - }, - { - "address": "", - "id": "1c3a6c053f092a31714b7c50d563573f3b5a6463482556050a5a3867367c021b", - "index": 1, + "id": "855fd593513d79767810730d4f6c11c22e783f5c6b420e7e130c745b07337a25", + "index": 7, "amount": { "quantity": 8, "unit": "lovelace" }, "derivation_path": [ "8", + "7", + "5", "4", + "6", "2" ] }, { "address": "", - "id": "2b4f1e726220bb40246b5e064b2b39562f083443b89a33423677524040352b3c", - "index": 0, + "id": "ab3c01020213046f796a3c4e2d070515ba50606db0477c3b7a1479740e0b736b", + "index": 3, "amount": { - "quantity": 2, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "1", - "7", + "5", + "0", + "4", "6", - "0" + "6", + "1", + "1" ] }, { "address": "", - "id": "31276665275d1b7b0655786b5f504a55412c965d322e07157934e7481f9b1d16", - "index": 2, + "id": "375c253b12f8417e1d1c53bb43ad342606fd5b8c4f553ca01d505847340f386a", + "index": 6, "amount": { - "quantity": 2, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "2", "4", + "5", "4", - "7", - "8", + "3", "2" ] }, { "address": "", - "id": "376e521663785e2a061d3a6d0401ff0d76185f7812af43771c22691f010c16ce", - "index": 5, + "id": "09513c0d053d985955533e47483c1a542966ef333c140e677a615d0da79aba6c", + "index": 0, "amount": { - "quantity": 4, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "6", - "6", "3", "3", "3", "6", - "1" + "6" ] } ] }, "fee": { - "quantity": 84, + "quantity": 115, "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh1gnwnfm3cnt0fqnzwmnyrnvxvq5f8hyem0auw47gu5mgk58tykc2", - "subject": "asset1ns3kkl6fkn5n3kzvyepqqvkj7ym97rlvry6cej", - "asset_name": "229992fab97e402b1ed496a03afb815a9caf0f3db391473bdaa19102aa1eea0d", - "verification_key_index": "31977", - "policy_id": "44dd34ee389ade904c4edcc839b0cc05127b933b7f78eaf91ca6d16a" - }, - { - "policy_script": "addr_shared_vkh1fggky985tv6a5rwajuk9npzx0ydc2hj58f0vrhhc4t9fuh624rk", - "subject": "asset1v8gtlsqk7px55e5jdh0zcz92dwr0k9p4tssgry", - "asset_name": "364c9559f7dc338d35e17a3227eb358f6f9394c53d105dbd9def4c6ba71a5130", - "verification_key_index": "6397", - "policy_id": "4a116214f45b35da0ddd972c598446791b855e543a5ec1def8aaca9e" - }, - { - "policy_script": "addr_shared_vkh1rgxyf6ekga67qxedkft53lyg6stknc8gpm57j5yd6lxrkttzscg", - "subject": "asset1rh666yhun94gllyktn2v9yehqwhftm6hrtj4kt", - "asset_name": "a6a7e391269ed2342e1d4020125b0409a4ff92db67a8713b7b541a923c009933", - "verification_key_index": "20448", - "policy_id": "1a0c44eb364775e01b2db25748fc88d41769e0e80ee9e9508dd7cc3b" - }, - { - "policy_script": "addr_shared_vkh10rldx67glpflnap66g55s2nc2eaz97lpk6z3z33e7wvexkx6507", - "subject": "asset17gqt0hy8gzsglcc2x7pxgaeacp29a6wm5qrheq", - "asset_name": "c43e8e78b2d94afd585372e15daa1a0a6318822ddf92660e772a6dafaeaadad3", - "verification_key_index": "4985", - "policy_id": "78fed36bc8f853f9f43ad229482a78567a22fbe1b685114639f39993" - } - ] + } }, { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", "coin_selection": { "withdrawals": [ { "amount": { - "quantity": 5, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "0", - "2", "0", "2" ], @@ -517,18 +390,18 @@ }, { "amount": { - "quantity": 7, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ - "2", - "2" + "0", + "0" ], "stake_address": "" }, { "amount": { - "quantity": 4, + "quantity": 7, "unit": "lovelace" }, "derivation_path": [ @@ -538,54 +411,150 @@ }, { "amount": { - "quantity": 7, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ - "1", - "0", - "0", - "1" + "2" ], "stake_address": "" }, { "amount": { - "quantity": 7, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "1" + "0", + "2" ], "stake_address": "" } ], - "inputs": [], - "outputs": [ + "inputs": [ { "address": "", + "id": "47770371360775f53577292e12dd23005b941f795133220e231c0113120b4e62", + "index": 1, "amount": { - "quantity": 2, + "quantity": 7, "unit": "lovelace" }, + "derivation_path": [ + "2" + ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 6, + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", + "id": "4a1eaf68832d6f6786641204322775500006bf151d0b6d3f7fa43d4a04741364", + "index": 0, "amount": { - "quantity": 7, + "quantity": 1, + "unit": "lovelace" + }, + "derivation_path": [ + "7", + "6", + "0", + "7", + "7", + "5" + ], + "assets": [] + }, + { + "address": "", + "id": "3f2e2b6f0d704b4622146e3b36145e2e1b2e7f395623110bd5f2017c6a395c61", + "index": 0, + "amount": { + "quantity": 2, "unit": "lovelace" }, + "derivation_path": [ + "0", + "5", + "2", + "7", + "6", + "1", + "1" + ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 3, + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "id": "1a1a25237d56141b03375339b16a713b1e7e2e09394b12170031287d20221dc9", + "index": 5, + "amount": { + "quantity": 2, + "unit": "lovelace" + }, + "derivation_path": [ + "0", + "5", + "2", + "6", + "0", + "0", + "8" + ], + "assets": [] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -593,165 +562,106 @@ ], "deposits_taken": [ { - "quantity": 3, - "unit": "lovelace" - }, - { - "quantity": 1, - "unit": "lovelace" - }, - { - "quantity": 0, + "quantity": 2, "unit": "lovelace" }, { - "quantity": 7, + "quantity": 8, "unit": "lovelace" }, { - "quantity": 5, + "quantity": 2, "unit": "lovelace" } ], "certificates": [ - { - "certificate_type": "join_pool", - "pool": "pool1quzs2zqrqvpsqpgrqvqsgqc8qqqqxqsxqgpqqps8qursqm77vzr", - "reward_account_path": [ - "4", - "6", - "0", - "4", - "2" - ] - }, { "certificate_type": "quit_pool", "reward_account_path": [ "2", - "6", + "3", + "0", "4", - "7", "4" ] - }, - { - "certificate_type": "quit_pool", - "reward_account_path": [ - "3", - "8", - "3", - "1", - "4" - ] - }, - { - "certificate_type": "join_pool", - "pool": "pool1qurqgpqzqqyqzqsxqsrqxpcrqyzqspsgq5yqwpsrqyrsxddm97w", - "reward_account_path": [ - "7", - "5", - "2", - "5", - "6" - ] - }, - { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "5", - "6", - "4", - "2", - "7" - ] - }, - { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "2", - "4", - "6", - "7", - "0" - ] - } - ], - "change": [ + } + ], + "change": [ { "address": "", "amount": { - "quantity": 4, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ "2", - "2", - "2", + "4", + "4", "6", "5", - "5", - "5" + "4", + "1" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 5, + "asset_name": "546f6b656e41", + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "derivation_path": [ - "7", - "7", - "4", - "3", - "3", - "7", - "2" - ], - "assets": [ + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e42", "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", "amount": { - "quantity": 2, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "4", - "6", - "0" + "5", + "5", + "8", + "8", + "1" ], "assets": [] }, { "address": "", "amount": { - "quantity": 6, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "6", + "0", + "8", "2", - "0" + "6", + "7" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 4, + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -759,19 +669,22 @@ { "address": "", "amount": { - "quantity": 0, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "1", - "1" + "3", + "3", + "0", + "7", + "0" ], "assets": [] } ], "deposits_returned": [ { - "quantity": 1, + "quantity": 8, "unit": "lovelace" }, { @@ -779,285 +692,101 @@ "unit": "lovelace" }, { - "quantity": 6, - "unit": "lovelace" - }, - { - "quantity": 1, + "quantity": 4, "unit": "lovelace" }, { - "quantity": 5, + "quantity": 6, "unit": "lovelace" } ], - "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZICAGCglg5Ab3XTDvQhtOJOYdvy9Vukd1W/MypvnC0JDkEQ2evM9QXgU5vp5UxlXl9c/m1+1EYVLSw2LICOVmVGgAtxsCCWDkBGi8vEDuJXb5ziKzJzBD5DcStpT9GyEHSrERjB4n8YdId38vU1DZSvwXEDDRvp5SHFCO2UFLXYUwbAAAAF0hHIYgCGgAB/7gDGY0RoQCBglggQ+ptRemr5uMPr/SptnWr3ElTSm7am6lvk2jRLYed/GdYQJuJjKFD4bJFycdFxpC4E3tyT8Y/ijuFK80iNM7k5owlzTM+hFoiS5y0YA8nHVReNaQdF6FsBGrqZu00pTZVnw32", "collateral": [ { "address": "", - "id": "7a4c3c68533c8df3bf0f1faa5d17123c292481ee9d5f1a357f787d4d15456c6b", - "index": 0, + "id": "694e03b40a457b280ade7a76bf6539345bac5b15079c41bb5c1c3b7641924a25", + "index": 2, "amount": { "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "5", - "1", - "7", - "1", - "0" + "2", + "8", + "3", + "2" ] }, { "address": "", - "id": "28500d23782d5a4d022b3125613c12736915596400331403155f1a0b6f7ff0c8", + "id": "35550434426b02af1f630049006502747b04152460011d5f491525dcbc60332d", "index": 2, "amount": { - "quantity": 7, + "quantity": 1, "unit": "lovelace" }, "derivation_path": [ + "7", + "1", "3", "5", "3", - "8", - "4", - "7", - "6" - ] - }, - { - "address": "", - "id": "4a231a4d7d2a33e13b6d200e4b5a6b111279134308401c006703534037b16509", - "index": 8, - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "derivation_path": [ - "0", - "5", - "0", - "0" + "3", + "3" ] }, { "address": "", - "id": "212d462b0bcb031f4e533a1cdf5424ff7d523630076678800a02c36a67064110", - "index": 5, + "id": "70e047682008af744054af87521e5e7a0f112906147f0e645e625f4b05286f55", + "index": 4, "amount": { "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "3", - "0", - "1", - "1", - "8" + "2" ] } ] }, "fee": { - "quantity": 161, + "quantity": 38, "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh1rt0x39nfmvqae2kfzhpcq7g04uw7f4snppf8gp77nckfjmqhk64", - "subject": "asset1pefhs2tphwt6vkdefckqgr5yge8pdg2hdl3fz4", - "asset_name": "d28a12f28dcf1b6064566fe45600520fbd012e2f3c2c474660fafff6acead3fe", - "verification_key_index": "27000", - "policy_id": "1ade689669db01dcaac915c380790faf1de4d61308527407de9e2c99" - }, - { - "policy_script": "addr_shared_vkh140z4qn3wj72kexmhm45msfyk3v3zjnu5ref6zwulcy2jz4pc6f3", - "subject": "asset17m27mt6gxhd90pmyv6vzy5mx270clkqca99wm9", - "asset_name": "d6e2833b210794980550c0cadfc19bdb2319507af45c22e1ae1396d73760004e", - "verification_key_index": "25975", - "policy_id": "abc5504e2e97956c9b77dd69b824968b22294f941e53a13b9fc11521" - }, - { - "policy_script": "addr_shared_vkh183xkmggucs9dqamnsl0n4dyp0gkjkwf6223dfedvcuahqu4cgdm", - "subject": "asset1rdmtht7788qlggtdpkz5hf8l7vuzhws6s82l5c", - "asset_name": "f944f03986b107ba40d89dc31df001b9985380c10fcecbbef9eb5d7d9db65cb1", - "verification_key_index": "17767", - "policy_id": "3c4d6da11cc40ad0777387df3ab4817a2d2b393a52a2d4e5acc73b70" - }, - { - "policy_script": "addr_shared_vkh1g5cxaf90wra4cdj4tt2k4xad95mnkuv57xscxrj6hgu9xng3lyf", - "subject": "asset1e5vxpcc75rdmt5tet7g073mef8m8vmlud98gx2", - "asset_name": "e250c59352ca0b2ab194d778d2a6d8716100782b48b555492d051f9c20346766", - "verification_key_index": "20698", - "policy_id": "45306ea4af70fb5c36555ad56a9bad2d373b7194f1a1830e5aba3853" - }, - { - "policy_script": "addr_shared_vkh13mc3jzlxyjtf80vl4pezhxq8fzwwt8c5uqq9u28jwt9d6uel8ng", - "subject": "asset1adkv6wum457laft7xpl2dk5aqvwdwsg0wy7c8e", - "asset_name": "ac0519785df45179c676a6abbe3afe97f008f5db4ca84543790b95131e5d5531", - "verification_key_index": "27841", - "policy_id": "8ef1190be6249693bd9fa8722b9807489ce59f14e0005e28f272cadd" - }, - { - "policy_script": "addr_shared_vkh19d62vg0ev3x6ham6zafq8hfe73avgy9tq67vkldmmrevvtjerpf", - "subject": "asset19mm9jm28gauudkewwr8qs7fmdwmvgfw28v8cwq", - "asset_name": "827faa866c37b412217da1e51feafa263cb7708d088885662a2fb43d7db3bc7c", - "verification_key_index": "5780", - "policy_id": "2b74a621f9644dabf77a175203dd39f47ac410ab06bccb7dbbd8f2c6" - }, - { - "policy_script": "addr_shared_vkh16sqjpjsfne3sgqwzt6kqa7vcw2pjgq7yj7u8flccs2dwxw9f3jy", - "subject": "asset1d6ny5kmj28enzygrr3ghqxmk5xar7a5whh7yet", - "asset_name": "7e5b8925672fe8d53031fd42a06adf4fc036d22481b77958d6d3dd7fb2040183", - "verification_key_index": "28014", - "policy_id": "d40120ca099e630401c25eac0ef99872832403c497b874ff18829ae3" - }, - { - "policy_script": "addr_shared_vkh1telnvam2rqf92r9dnn669k2y58z8mhq02gdfezmv47tjy09245y", - "subject": "asset13w3kje8e4fa7h9t3p38nm628zwwvtkgvtp95ct", - "asset_name": "c5bf06c1c6595ecfe0ec4e7632ebdd30461f77eed0b4de017da352686cb2d7c2", - "verification_key_index": "9793", - "policy_id": "5e7f36776a1812550cad9cf5a2d944a1c47ddc0f521a9c8b6caf9722" - }, - { - "policy_script": "addr_shared_vkh1grn9zn0ngwejw8gcd5f6ullds482746m2mwdqd6lgxl0q462fe8", - "subject": "asset1gy4uwj23h6kcd4feafh0f4f8ju89ljnvfh4gz0", - "asset_name": "66ac2a70bc86b1b55f6f6f7d031cc2f2c8f5f6f5694c255d9b33e06db86e842a", - "verification_key_index": "20474", - "policy_id": "40e6514df343b3271d186d13ae7fed854eaf575b56dcd0375f41bef0" - }, - { - "policy_script": "addr_shared_vkh1lw9whnjptnrm9wk30564zrlgy29q9c02qnxg7339jumvqw8jffu", - "subject": "asset1t0sujhm9ml40642mf7ygn5gjcsgxp0xlltc2wm", - "asset_name": "4917737d31da74684c6d93f7afbbb994e4579409d56838d9332bb4511fd6f1e2", - "verification_key_index": "19039", - "policy_id": "fb8aebce415cc7b2bad17d35510fe8228a02e1ea04cc8f46259736c0" - }, - { - "policy_script": "addr_shared_vkh1z62ffde2wtw586udptw7062kd90tkxls787sgvesy3wvymakevq", - "subject": "asset1nlwen89lptyvk599j6y90tsqq42nt64yzee2tw", - "asset_name": "92c5b05171223a4437914642c0d80ce5e94ec7749762f180eecee350d4877ca6", - "verification_key_index": "22456", - "policy_id": "169494b72a72dd43eb8d0adde7e956695ebb1bf0f1fd043330245cc2" - }, - { - "policy_script": "addr_shared_vkh1ygu9p6n9xvapuh7y2q0dsm57zlmnnca4zv6lju28e6kn2pr8m87", - "subject": "asset1z025u75uv8wd7xjk2tv3yf4tzyqu98pt5pz4y7", - "asset_name": "a6dec2b33b6e7b6077e7cc68674be83c62c8975f288c691182e16b58d3d64124", - "verification_key_index": "13539", - "policy_id": "223850ea65333a1e5fc4501ed86e9e17f739e3b51335f97147cead35" - }, - { - "policy_script": "addr_shared_vkh1ww39jhm7cpd3ka0zsd7fvmf9a095q635n8fxvej6qpu77hxaxze", - "subject": "asset1z9gxew8pk566jggkm5rrppacnf6szqdtp36gwy", - "asset_name": "c20d3af200af82d37ee159a92d2290c26253b8649e2ab8f5d342cd52afe01d9f", - "verification_key_index": "23157", - "policy_id": "73a2595f7ec05b1b75e2837c966d25ebcb406a3499d266665a0079ef" - }, - { - "policy_script": "addr_shared_vkh1aqe4zc8mrc5j2gjjh55h688qcedet5ly27kle2u0rdlsvmszd7k", - "subject": "asset1cuf4dpa833n8n9lvgyyqymqjmrrs604mmugnmy", - "asset_name": "2a2fe65c0c8cf2b0c23a4cbdaa7fe5f2ad8b716a2dc53dd79ae8dfa108058377", - "verification_key_index": "2978", - "policy_id": "e8335160fb1e29252252bd297d1ce0c65b95d3e457adfcab8f1b7f06" - }, - { - "policy_script": "addr_shared_vkh1g4u3t0gypsxr332ue36tnuemma835euc56ph2c936g8mgsa06v5", - "subject": "asset1fd5rdwws5r9rezgldyxm92x90laajfwtlxzr9f", - "asset_name": "5453aa7d275c101d88533fbfef1bf9371b22369770b76a05e588097cb75b61be", - "verification_key_index": "18384", - "policy_id": "457915bd040c0c38c55ccc74b9f33bdf4f1a6798a6837560b1d20fb4" - }, - { - "policy_script": "addr_shared_vkh1n48hwewxdxy6t8t0w27ydcns96cztjqf3lhztq0x4efv7rynykj", - "subject": "asset1dy057t566j8fz75k3lruucqah4xkmzqw93y7yj", - "asset_name": "aa736be225ed0509956aa0ca7233646f3dfb73e1455c41acf24d43d6d5ecb3a2", - "verification_key_index": "20500", - "policy_id": "9d4f7765c66989a59d6f72bc46e2702eb025c8098fee2581e6ae52cf" - }, - { - "policy_script": "addr_shared_vkh1fl856wewgqdv8uc6pzkj6vja7p2awdclng29vpcuk2vjs9f4enw", - "subject": "asset1qlg46tzuc8accfrycvjt29hg4yv7ljvapyzy2r", - "asset_name": "d07673401be808d1432c48df9d736d93acfb975c526b3d034a6bd2e88aac63ee", - "verification_key_index": "30537", - "policy_id": "4fcf4d3b2e401ac3f31a08ad2d325df055d7371f9a1456071cb29928" - }, - { - "policy_script": "addr_shared_vkh13wp2dgeet4666v2s8lywkytuvvpxz5z08f0f6f2h6n0yv7kj7ap", - "subject": "asset1lqg0xutskcekxhwmqzpdmq58hpu7ycvyy93lyf", - "asset_name": "eb8902f7a0994b0a64ae4ea811044a746d4ce8f9b51769f65feeefd29e244657", - "verification_key_index": "2055", - "policy_id": "8b82a6a3395d75ad31503fc8eb117c630261504f3a5e9d2557d4de46" - }, - { - "policy_script": "addr_shared_vkh12ecsr0hflsyyua8pqwrs8xdmj70ehmnn6cm9nqu43lnd6hy4vsl", - "subject": "asset19hzvwqardjemrfwldn0ttchc7eyjc33vechdmp", - "asset_name": "f995aa15a0e64df5372fc49253162c7bb60028a695d925d5c5d637e2a07aaf81", - "verification_key_index": "13926", - "policy_id": "567101bee9fc084e74e103870399bb979f9bee73d6365983958fe6dd" - }, - { - "policy_script": "addr_shared_vkh1dnzh4a76tkajzwa9k57jvux8en0ynj5u6d95x85jh0xzvm0kcvh", - "subject": "asset1xxj0awhwj2w6md8j9ax6dhszgmekaccmfgq0dw", - "asset_name": "5f839e0cc9d5dc1e230ecf291fe7587466c86aa9cd194681d2d9d115d50c0f9e", - "verification_key_index": "17868", - "policy_id": "6cc57af7da5dbb213ba5b53d2670c7ccde49ca9cd34b431e92bbcc26" - }, - { - "policy_script": "addr_shared_vkh1v954zk493m76ppl98qhwlvxxmwc0982vqd60yrra33xgxwxspd2", - "subject": "asset1qgq9l5hflva8g2427fzzqqdmx7kwkvara8du3h", - "asset_name": "153dc6dde4726baa8780178fad156e780dd845595c2bb3c1ee9cb4737efe41b6", - "verification_key_index": "24447", - "policy_id": "6169515aa58efda087e5382eefb0c6dbb0f29d4c0374f20c7d8c4c83" - }, - { - "policy_script": "addr_shared_vkh1yd5h4lnlhnha7u9cqk2gh7v5uxu0z7xhmm24s59u34d67y8cg5l", - "subject": "asset1nx39kdt0r7raspd0dwf9c727fmry6lu26dgq9e", - "asset_name": "23b96d27919a08f19c720bff085887daede68e7436afb8df57e0c3c8e6d44308", - "verification_key_index": "29511", - "policy_id": "23697afe7fbcefdf70b805948bf994e1b8f178d7ded55850bc8d5baf" - }, - { - "policy_script": "addr_shared_vkh128ywz8duwfxwz3ykecsz4y2ytgzqm8tluwahgjs23pmwxn23j09", - "subject": "asset1tchwv573t0ynatefdl82k9y9j3e4jhnjply3lt", - "asset_name": "3e688eaa27a53a2da85f6c0d32a84da7a265b46b19f0aca1e33c9193985240f0", - "verification_key_index": "18470", - "policy_id": "51c8e11dbc724ce14496ce202a91445a040d9d7fe3bb744a0a8876e3" - }, - { - "policy_script": "addr_shared_vkh1xph80mmheukv7zx9zsg6e0w2cm2a9lxapj293hdls4uwghjmkk5", - "subject": "asset1m2kxcs8nrkhtgqpq6qr4wf487qrrlyaynr6ktj", - "asset_name": "8eaf9f17214adcedb6d081f1ca4c4d12cea66449ebaa7374a4c53f79baf0b763", - "verification_key_index": "20540", - "policy_id": "306e77ef77cf2ccf08c51411acbdcac6d5d2fcdd0c9458ddbf8578e4" - } - ] + } }, { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", "coin_selection": { "withdrawals": [ { "amount": { - "quantity": 4, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ "2", - "2", + "2" + ], + "stake_address": "" + }, + { + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "derivation_path": [ "0" ], "stake_address": "" }, { "amount": { - "quantity": 7, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "1" + "1", + "0", + "2" ], "stake_address": "" } @@ -1065,92 +794,208 @@ "inputs": [ { "address": "", - "id": "2a0c6d4c98730d02624e601b703e49a26d10ba6a4a541faa752e437b900f1b66", - "index": 1, + "id": "66083658fc880d797ccd22313528172a5e234a660a4aee392c6e6e2d2c6b6938", + "index": 0, "amount": { - "quantity": 7, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "8", - "4", + "6", "5", "5", - "6" + "0", + "1", + "2", + "2" ], - "assets": [] - } - ], - "outputs": [ + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, { "address": "", + "id": "3b3b3ab73226e96e06645d7d2a3f63706a7c9e7a68330035606538482d7b4101", + "index": 3, "amount": { - "quantity": 1, + "quantity": 6, "unit": "lovelace" }, + "derivation_path": [ + "2", + "8", + "6", + "5" + ], "assets": [] }, { "address": "", + "id": "5e6f342c012bf6042c307c7d0b537c534dba3874275548360f6afe7263e75955", + "index": 4, "amount": { - "quantity": 5, + "quantity": 1, "unit": "lovelace" }, + "derivation_path": [ + "8", + "5", + "4", + "3", + "0" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 1, + "asset_name": "546f6b656e42", + "quantity": 3, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", + "id": "24b2747a0444de49173f7c5c0f1b0bb990791859576372043b431f30657b954f", + "index": 6, "amount": { - "quantity": 0, + "quantity": 6, "unit": "lovelace" }, + "derivation_path": [ + "8", + "0", + "6", + "7", + "3" + ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 9, + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 10, + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "id": "24513987282e316c1b73600c05767f10494bf2cc1e864b3f2752261a4d6a6b64", + "index": 1, + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "derivation_path": [ + "6", + "3", + "4", + "0", + "0" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, + { + "address": "", + "id": "3c2ba7443e853657dc432807134e5dce04755afc43074a10151e53285d3e0829", + "index": 4, + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "derivation_path": [ + "2", + "5", + "5", + "1", + "0", + "6", + "7" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + ], + "outputs": [ { "address": "", "amount": { "quantity": 0, "unit": "lovelace" }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 1, + "unit": "lovelace" + }, "assets": [] }, { "address": "", "amount": { - "quantity": 2, + "quantity": 5, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 7, + "asset_name": "546f6b656e41", + "quantity": 2, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 9, + "quantity": 3, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -1158,19 +1003,88 @@ ], "deposits_taken": [ { - "quantity": 2, + "quantity": 7, "unit": "lovelace" + } + ], + "certificates": [ + { + "certificate_type": "join_pool", + "pool": "pool1qqyqspspqyqsypcgqgqqypgyqqzsyqgyqgyqzqcqqqqszy8ewc0", + "reward_account_path": [ + "7", + "8", + "6", + "4", + "1" + ] }, { - "quantity": 2, - "unit": "lovelace" + "certificate_type": "quit_pool", + "reward_account_path": [ + "6", + "4", + "3", + "6", + "2" + ] }, { - "quantity": 3, - "unit": "lovelace" + "certificate_type": "quit_pool", + "reward_account_path": [ + "5", + "1", + "0", + "7", + "3" + ] + }, + { + "certificate_type": "join_pool", + "pool": "pool1q5qsvpg8qcqqxqqzqcqqspgrqgpqwpqrqyqqspg9pqpqwpwkvjd", + "reward_account_path": [ + "2", + "5", + "6", + "5", + "5" + ] + }, + { + "certificate_type": "join_pool", + "pool": "pool1q5rs2pszqcrqzpcyq5yq2pcypqqssqgqqqzq2qcgqcyqqr4uwar", + "reward_account_path": [ + "3", + "7", + "8", + "0", + "6" + ] } ], "change": [ + { + "address": "", + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "derivation_path": [ + "7", + "0", + "8", + "0", + "2", + "3" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, { "address": "", "amount": { @@ -1178,7 +1092,8 @@ "unit": "lovelace" }, "derivation_path": [ - "5", + "6", + "0", "6" ], "assets": [] @@ -1186,58 +1101,45 @@ { "address": "", "amount": { - "quantity": 0, + "quantity": 3, + "unit": "lovelace" + }, + "derivation_path": [ + "5" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "1", "8", - "1", - "6", - "6", - "0", "4" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", "amount": { - "quantity": 6, + "quantity": 3, "unit": "lovelace" }, "derivation_path": [ - "3", - "7", - "8", - "4", - "4" + "1" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -1245,20 +1147,18 @@ { "address": "", "amount": { - "quantity": 8, + "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "0", + "1", "3", - "5", - "6", - "2" + "4" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 5, + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] @@ -1268,85 +1168,112 @@ { "quantity": 3, "unit": "lovelace" + }, + { + "quantity": 2, + "unit": "lovelace" + }, + { + "quantity": 6, + "unit": "lovelace" + }, + { + "quantity": 8, + "unit": "lovelace" } ], - "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", + "metadata": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", "collateral": [ { "address": "", - "id": "4d2e80236f01f526515b2778a15ffa4d3a0a6a590e6465a7497f170c09422632", - "index": 7, + "id": "353c2246380212076c02257c462ff2352914333b1a6b05356d288776590a0155", + "index": 2, "amount": { - "quantity": 7, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "0", - "5" + "2", + "5", + "0" ] }, { "address": "", - "id": "3f4136ce07c3e5f01d5c4c727c6c10501f40292464425017a4026e26113d0f33", - "index": 5, + "id": "673d7b7b010d675f673b1e312f4006612bf6092d16703012742c097105590237", + "index": 1, "amount": { - "quantity": 1, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ + "8", "5", + "0", + "5" + ] + }, + { + "address": "", + "id": "2a2e1e016e5a727227742340655921987fb349697f5171412174096fd157546c", + "index": 8, + "amount": { + "quantity": 6, + "unit": "lovelace" + }, + "derivation_path": [ "4", "3", - "2" + "5" ] }, { "address": "", - "id": "4b766d58682d5a7a52254f7f5678210e0460156f560f385406726051017e024c", - "index": 6, + "id": "ec411c36222163284e2813783d06047043365e30b0336c514f2216148add4e29", + "index": 3, "amount": { - "quantity": 3, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ - "8" + "0", + "1" ] }, { "address": "", - "id": "741cfc2be15c4a52fc712892493d0f287b380a42740d09210b5d04c6005e6c0d", - "index": 4, + "id": "1514464c3169395f4563325e202763702b753a2f0b550ad21d170aaf30864e57", + "index": 0, "amount": { - "quantity": 1, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "2", - "5", - "3", - "5", + "8", + "4", + "8", "6" ] } ] }, "fee": { - "quantity": 135, + "quantity": 91, "unit": "lovelace" } }, { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", "coin_selection": { "withdrawals": [ { "amount": { - "quantity": 6, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "2", - "0" + "0", + "1" ], "stake_address": "" }, @@ -1357,122 +1284,94 @@ }, "derivation_path": [ "2", + "1", + "0", "0" ], "stake_address": "" }, { "amount": { - "quantity": 5, + "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "0", - "0", + "2", "0" ], "stake_address": "" - } - ], - "inputs": [ + }, { - "address": "", - "id": "7677287952547d7960712673440d5b01458d733c3c0f0a61728e2b504d1f1a48", - "index": 4, "amount": { "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "5", - "1", - "1", - "6", - "4", - "4" + "2", + "0", + "2" ], - "assets": [] - }, + "stake_address": "" + } + ], + "inputs": [], + "outputs": [ { "address": "", - "id": "ba3d6b6362189842476b200f141644552b621e673b7641473d045ecf68219259", - "index": 0, "amount": { - "quantity": 6, + "quantity": 0, "unit": "lovelace" }, - "derivation_path": [ - "4" - ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "address": "", - "id": "af102029052070cd1d746982880019780447b9360625f6252b5431712e17571a", - "index": 3, "amount": { - "quantity": 8, + "quantity": 5, "unit": "lovelace" }, - "derivation_path": [ - "0" - ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 14, + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 11, + "quantity": 18, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 6, + "quantity": 2, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, - { - "address": "", - "id": "671a5666bde61d61106e27651f395f281875284b657f50192f4e0730c2d72008", - "index": 0, - "amount": { - "quantity": 0, - "unit": "lovelace" - }, - "derivation_path": [ - "4", - "1", - "5" - ], - "assets": [] - } - ], - "outputs": [ { "address": "", "amount": { - "quantity": 7, + "quantity": 8, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] - }, - { - "address": "", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "assets": [] } ], "deposits_taken": [ @@ -1481,123 +1380,66 @@ "unit": "lovelace" }, { - "quantity": 5, + "quantity": 8, "unit": "lovelace" }, { - "quantity": 3, + "quantity": 0, "unit": "lovelace" - } - ], - "certificates": [ - { - "certificate_type": "quit_pool", - "reward_account_path": [ - "6", - "0", - "4", - "0", - "1" - ] - }, - { - "certificate_type": "quit_pool", - "reward_account_path": [ - "6", - "4", - "5", - "1", - "1" - ] - }, - { - "certificate_type": "quit_pool", - "reward_account_path": [ - "7", - "8", - "7", - "7", - "3" - ] - }, - { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "8", - "3", - "4", - "1", - "2" - ] - }, - { - "certificate_type": "join_pool", - "pool": "pool1qgrq2zqrqyqsvpcppqzsszqgqvrqzpc9qcyqwqqgqyzqyut4enu", - "reward_account_path": [ - "8", - "4", - "0", - "4", - "1" - ] }, { - "certificate_type": "quit_pool", - "reward_account_path": [ - "5", - "6", - "0", - "3", - "6" - ] - }, - { - "certificate_type": "join_pool", - "pool": "pool1qups2pq8qqqsspczqszq2qg9qyrqxpcgqcqqsqqyqqpsgd48ks3", - "reward_account_path": [ - "3", - "7", - "2", - "4", - "1" - ] + "quantity": 1, + "unit": "lovelace" } ], "change": [ { "address": "", "amount": { - "quantity": 5, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "1", - "3", - "3", - "1", - "5" + "1" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "address": "", "amount": { - "quantity": 2, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "8", - "1", - "2", - "8", - "0", - "6" + "4", + "2" ], "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, @@ -1607,451 +1449,220 @@ "quantity": 2, "unit": "lovelace" }, + "derivation_path": [ + "7", + "8", + "4" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "derivation_path": [ + "7" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 3, + "unit": "lovelace" + }, "derivation_path": [ "0", - "1", - "0" + "6", + "5", + "6", + "0", + "1" ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 3, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] } ], "deposits_returned": [ - { - "quantity": 0, - "unit": "lovelace" - }, { "quantity": 8, "unit": "lovelace" }, { - "quantity": 4, - "unit": "lovelace" - }, - { - "quantity": 7, - "unit": "lovelace" - }, - { - "quantity": 6, - "unit": "lovelace" - }, - { - "quantity": 3, + "quantity": 5, "unit": "lovelace" } ], "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZICAGCglg5Ab3XTDvQhtOJOYdvy9Vukd1W/MypvnC0JDkEQ2evM9QXgU5vp5UxlXl9c/m1+1EYVLSw2LICOVmVGgAtxsCCWDkBGi8vEDuJXb5ziKzJzBD5DcStpT9GyEHSrERjB4n8YdId38vU1DZSvwXEDDRvp5SHFCO2UFLXYUwbAAAAF0hHIYgCGgAB/7gDGY0RoQCBglggQ+ptRemr5uMPr/SptnWr3ElTSm7am6lvk2jRLYed/GdYQJuJjKFD4bJFycdFxpC4E3tyT8Y/ijuFK80iNM7k5owlzTM+hFoiS5y0YA8nHVReNaQdF6FsBGrqZu00pTZVnw32", - "collateral": [ - { - "address": "", - "id": "7755664c476a9f204c0e0d7b7507920a792c7c015f02085d003a0276ea36aa06", - "index": 5, - "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "derivation_path": [ - "8", - "3", - "5", - "8", - "6", - "8" - ] - }, - { - "address": "", - "id": "46012eae4e964f190b6d68af57a05c3878184f342b6f1600465b461239224c79", - "index": 2, - "amount": { - "quantity": 0, - "unit": "lovelace" - }, - "derivation_path": [ - "1", - "8", - "5" - ] - } - ] + "collateral": [] }, "fee": { - "quantity": 106, + "quantity": 199, "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh1c3m9lf39l64xwauhk8943jcxjc08y6lqjgejdd8ykfvnjyepmuq", - "subject": "asset10pnulpjxdcun0345hwt0mhfp6wnvc634wy7k84", - "asset_name": "c4961c6f78814595dbd992508bd210cdb9d868fd4527dd5f6d21e01dd1b19ecf", - "verification_key_index": "5057", - "policy_id": "c4765fa625feaa677797b1cb58cb06961e726be0923326b4e4b25939" - }, - { - "policy_script": "addr_shared_vkh1fyv6gck7eczmc03hqecmj3ycjjym25v3tkjpa6sw5ny2z45kcjx", - "subject": "asset137smshr3k24p0txytkupycmgynftzmx8w0v5sd", - "asset_name": "4e1b2a01099f70059ac408b5359af2b77cb0d1c6d4b0f9e79eb83660e6fee3ce", - "verification_key_index": "17657", - "policy_id": "4919a462dece05bc3e370671b944989489b551915da41eea0ea4c8a1" - }, - { - "policy_script": "addr_shared_vkh182uz2paw9aq5zv4le4xln2zzuhqgf3q9y6zs7w4u28wacygshun", - "subject": "asset1s29ltl78fjwj0sqzlm6jngpvq80sq874x460kw", - "asset_name": "1d990075d46dc6c58f692a9c390b5203176efad4a7d771b74df8b5fd0d744bcd", - "verification_key_index": "16162", - "policy_id": "3ab82507ae2f414132bfcd4df9a842e5c084c40526850f3abc51dddc" - }, - { - "policy_script": "addr_shared_vkh1e2fhyyvy6ep2m7g5tdgczx9lr7vg49ymd6cvvc6nr6rhck6ggck", - "subject": "asset1n95sfwz7ktejm6jxhfujw4ny5pammpm9w7ywkl", - "asset_name": "208244e250e702450be042eb3da26c400895c385d2d8f94d932d271c1a4b7ba4", - "verification_key_index": "16439", - "policy_id": "ca93721184d642adf9145b518118bf1f988a949b6eb0c663531e877c" - }, - { - "policy_script": "addr_shared_vkh1uwp5k73mng9gswsd5pdjd82arfsdsesdxatwrmmpunylvgyltmp", - "subject": "asset1f4pcxc5m0sh5nxxu8axhc53ze6krezawuaeqdw", - "asset_name": "47b4fce784a4992950f0d9a2ac8b911128e871cc63ad4171a9cdef8aaf4824b5", - "verification_key_index": "27938", - "policy_id": "e3834b7a3b9a0a883a0da05b269d5d1a60d8660d3756e1ef61e4c9f6" - }, - { - "policy_script": "addr_shared_vkh1j8l08fqqtps0m9zlrgxctzma30cshrm2tyhzv5gyphn058dxdyw", - "subject": "asset1ej42kghh9krjvdyqn3h9eqsaa332czgxgefhah", - "asset_name": "6a83acb597a72794b3eb80d52bd712a24e01e357d797f492bda79cb539949763", - "verification_key_index": "16892", - "policy_id": "91fef3a4005860fd945f1a0d858b7d8bf10b8f6a592e2651040de6fa" - }, - { - "policy_script": "addr_shared_vkh19j4t0pu2u9dsp9fxwxu8zuvm87ukke962ehrdysvsl33656aksq", - "subject": "asset1ck6teg9z8j9pqftv8f5ygl0v69qw8zydxt9dns", - "asset_name": "8cfdb4947141633685d01d0913071e95317fe9bb0b0ebce693d01b2b194bf293", - "verification_key_index": "7071", - "policy_id": "2caab7878ae15b00952671b871719b3fb96b64ba566e36920c87e31d" - }, - { - "policy_script": "addr_shared_vkh12u5xyx3jma0lnq4frsxfjpcczycvdwjf8whk2wn5d6edx33egan", - "subject": "asset1v2eyqzy9676s35n0g5en72uacxlqtu67w6w92q", - "asset_name": "b5694505c9fe30fb6be58d97d2f3620c4b2a21fc36636f6c435c25281bf989a4", - "verification_key_index": "20552", - "policy_id": "5728621a32df5ff982a91c0c9907181130c6ba493baf653a746eb2d3" - }, - { - "policy_script": "addr_shared_vkh1essq6d27gechfmc0cwcahze05j85v57jehn8xshv74xaqpc8dkt", - "subject": "asset1kzfu4mudhrumhqap7xxqahcukahhtvlp9rfg2s", - "asset_name": "346956b82df36d6bf07b1a38fa4e97ae960434e40cb1b2bbc90aca89e6c49de6", - "verification_key_index": "21363", - "policy_id": "cc200d355e467174ef0fc3b1db8b2fa48f4653d2cde67342ecf54dd0" - }, - { - "policy_script": "addr_shared_vkh1dnzdwwf8qked57rgtm6v03tt555g5ylr4sjgwfkafwfvqw7vv2w", - "subject": "asset10vkj6r73ep0dnfcjhtgg5guf9gvcex9d3cy3ys", - "asset_name": "7deabccb0f92c2f6c7fb176fa87d4f63ec4189c4d887ce0382c8c2d664d7ba49", - "verification_key_index": "5912", - "policy_id": "6cc4d7392705b2da78685ef4c7c56ba5288a13e3ac248726dd4b92c0" - }, - { - "policy_script": "addr_shared_vkh198x5njpdwd03el62mxl8d37jh0d59xktkgunet24hce65tcc4ea", - "subject": "asset19fq303vxkh7p73cpms62ksg6py4xpn8rmz7lru", - "asset_name": "491a637a32f846f0d9e5b6542c819e892acd2ba901ae3682d6d3b838bb6e8b36", - "verification_key_index": "8952", - "policy_id": "29cd49c82d735f1cff4ad9be76c7d2bbdb429acbb2393cad55be33aa" - } - ] + } }, { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", "coin_selection": { - "withdrawals": [ - { - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "derivation_path": [ - "0", - "2", - "0" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 0, - "unit": "lovelace" - }, - "derivation_path": [ - "0", - "2" - ], - "stake_address": "" - } - ], + "withdrawals": [], "inputs": [ { "address": "", - "id": "1b2b2f27680a5302754fe8374e1f154d48dd5a4c733a147c74297cea34147219", - "index": 8, + "id": "6c3e453b4128a5132901e22e632a8a1bff2a22786426135d1874255e6361ee3b", + "index": 6, "amount": { - "quantity": 6, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ "6", - "3", - "0", + "1", + "2", + "1", + "4", + "8", "2" ], "assets": [] }, { "address": "", - "id": "220743561485dd0f0b31343d78972d6b0540d233b90d0b2b39465b2f5e6c093d", + "id": "117d782fd70d768eb37f011c684347cf2d25106329142e143b68765315d90b50", "index": 7, "amount": { - "quantity": 4, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "5", - "5", - "8", "1", - "5", - "8" - ], - "assets": [] - }, - { - "address": "", - "id": "557a5de3298750053c1743150b5c667a227c6c262a75236bdd5d6112ea55a844", - "index": 6, - "amount": { - "quantity": 3, - "unit": "lovelace" - }, - "derivation_path": [ + "3", + "6", + "4", "7" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 1, + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", - "id": "1c6f1f5b676c6a16117c187c74c47d5e0657762ad3083b503b5a6d3b0a306d0f", - "index": 2, + "id": "716d5e3e6758671b13f11b7654189a749d8442033846e8cd481f1656356c0b68", + "index": 4, "amount": { - "quantity": 7, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ + "1", "3", - "8", - "5" + "4" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "assets": [] }, { "address": "", - "id": "726dff664e70275b987b263853303617044177414b0d667c6ab9571d2022504b", - "index": 3, + "id": "7b73799bdad1300757262d1b5e5c3b617e55397bbc0c795c5f082c50655a376b", + "index": 2, "amount": { - "quantity": 2, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ - "2", - "8", - "8" + "7" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 4, + "quantity": 15, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", - "id": "192d2e49200e4c72094e8c0124194f362b3bb947634c1b682c69cc1e650e7f27", - "index": 4, + "id": "1d194d002e34e06f512563686fdf283416342f164450934219196d4cb8006e43", + "index": 5, "amount": { - "quantity": 0, + "quantity": 7, "unit": "lovelace" }, "derivation_path": [ "7", - "3", - "1", - "8" + "1" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - ], - "outputs": [ - { - "address": "", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 8, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 8, - "unit": "lovelace" - }, "assets": [ { "asset_name": "546f6b656e41", - "quantity": 8, + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "assets": [ + }, { "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 3, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] } ], - "deposits_taken": [ - { - "quantity": 2, - "unit": "lovelace" - } - ], + "outputs": [], + "deposits_taken": [], "certificates": [ { - "certificate_type": "register_reward_account", + "certificate_type": "join_pool", + "pool": "pool1qqpqqpg9qcrqgqsqpqpszpg8qsqq2qgzq5zqzqcrqcrqs3mz3t5", "reward_account_path": [ - "0", "5", "7", - "1", - "2" - ] - }, - { - "certificate_type": "join_pool", - "pool": "pool1qgqs2qcgqyqsspqxpqpsgqcyqgyqspsyqspsqqgpqgrqzaqxhdc", - "reward_account_path": [ - "4", - "6", "5", - "8", - "6" + "6", + "4" ] }, { - "certificate_type": "quit_pool", + "certificate_type": "join_pool", + "pool": "pool1qszsxzqyquzsxpspqgzqxpcgqyrqvqcqqgrqvpcpq5qsvf4c30s", "reward_account_path": [ "1", "5", - "7", - "5", + "4", + "2", "5" ] }, @@ -2059,21 +1670,20 @@ "certificate_type": "register_reward_account", "reward_account_path": [ "3", + "0", + "7", "3", - "3", - "1", - "7" + "5" ] }, { - "certificate_type": "join_pool", - "pool": "pool1pqrssqqxqqqssqggqvpsgpgzqgps2pqpqsrqzqcrquzsw6k7cm4", + "certificate_type": "register_reward_account", "reward_account_path": [ - "3", - "5", - "7", + "8", + "8", "1", - "5" + "6", + "2" ] } ], @@ -2081,193 +1691,100 @@ { "address": "", "amount": { - "quantity": 1, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "7", - "0", + "6", + "5", "0", - "4", - "3" + "5", + "3", + "7" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 3, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "3", "1", "1", "6", - "1" + "0", + "4" ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 0, - "unit": "lovelace" - }, - "derivation_path": [ - "8", - "7", - "6" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "derivation_path": [ - "4", - "8", - "6" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] - } - ], - "deposits_returned": [ - { - "quantity": 2, - "unit": "lovelace" - } - ], - "collateral": [ - { - "address": "", - "id": "13435d5054031571502d942d510d10221604298d36025a5a70f01c442f094603", - "index": 3, - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "derivation_path": [ - "8", - "3" - ] - } - ] - }, - "fee": { - "quantity": 127, - "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh10kmzyxaar4hrg36crftq9zlaf4ue69r6lunrcjzd76ztgccv8vf", - "subject": "asset1kf765uu23l9nhvw4w2ukw877qh9gahsp8nerr0", - "asset_name": "45f2847fa4f3e51226337f23604729c4a6a6909db0fe91631154fba6270f67eb", - "verification_key_index": "5480", - "policy_id": "7db6221bbd1d6e3447581a56028bfd4d799d147aff263c484df684b4" - } - ] - }, - { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", - "coin_selection": { - "withdrawals": [ - { - "amount": { - "quantity": 8, - "unit": "lovelace" - }, - "derivation_path": [ - "0", - "0" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "derivation_path": [ - "0", - "1", - "1", - "2" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "derivation_path": [ - "0" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 3, - "unit": "lovelace" - }, - "derivation_path": [ - "2", - "1", - "0", - "1" - ], - "stake_address": "" }, { + "address": "", "amount": { - "quantity": 1, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ + "3", + "1", "0", - "0" + "4" ], - "stake_address": "" - }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + ], + "deposits_returned": [ + { + "quantity": 6, + "unit": "lovelace" + } + ], + "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "collateral": [] + }, + "fee": { + "quantity": 111, + "unit": "lovelace" + } + }, + { + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", + "coin_selection": { + "withdrawals": [ { "amount": { - "quantity": 1, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "0", "0" ], "stake_address": "" @@ -2276,24 +1793,27 @@ "inputs": [ { "address": "", - "id": "6be3a24d1144031d4e35560f8b0d3015223a407c253169470e24210b1e3951a4", - "index": 3, + "id": "304f0b247338175146411817911b66124073f335230b62426f61c460576c28be", + "index": 0, "amount": { - "quantity": 4, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ - "7", - "8", "2", - "3", + "6", "2" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] } @@ -2302,37 +1822,42 @@ { "address": "", "amount": { - "quantity": 0, + "quantity": 6, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", "amount": { - "quantity": 3, + "quantity": 0, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "quantity": 13, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 21, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -2340,13 +1865,27 @@ { "address": "", "amount": { - "quantity": 3, + "quantity": 5, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 4, + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] @@ -2354,7 +1893,7 @@ { "address": "", "amount": { - "quantity": 6, + "quantity": 0, "unit": "lovelace" }, "assets": [] @@ -2362,13 +1901,23 @@ { "address": "", "amount": { - "quantity": 3, + "quantity": 7, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -2376,210 +1925,191 @@ ], "deposits_taken": [ { - "quantity": 1, + "quantity": 7, "unit": "lovelace" - } - ], - "certificates": [ + }, { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "4", - "3", - "7", - "4", - "1" - ] + "quantity": 7, + "unit": "lovelace" }, { - "certificate_type": "quit_pool", - "reward_account_path": [ - "3", - "1", - "4", - "4", - "6" - ] + "quantity": 5, + "unit": "lovelace" }, { - "certificate_type": "join_pool", - "pool": "pool1q5rszpszqgqsxpgzq5zqsqcqqgqszqgzqcrqxpszqcpqykxsyv3", - "reward_account_path": [ - "3", - "6", - "1", - "8", - "6" - ] + "quantity": 6, + "unit": "lovelace" }, { - "certificate_type": "join_pool", - "pool": "pool1qgqqspgrqgpqszqzqsqqxzqpqcqq2ps8qcpqgpsrpqrsvadwrq7", - "reward_account_path": [ - "4", - "5", - "3", - "2", - "0" - ] + "quantity": 7, + "unit": "lovelace" + }, + { + "quantity": 2, + "unit": "lovelace" } ], "change": [ { "address": "", "amount": { - "quantity": 3, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "2", + "0", + "4", + "4", + "5", + "1", + "3" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "derivation_path": [ + "3", + "1", "7" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 8, + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 3, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, + "quantity": 5, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] - } - ], - "deposits_returned": [ - { - "quantity": 0, - "unit": "lovelace" - } - ], - "collateral": [ + }, { "address": "", - "id": "6f374036164a13581f7323306228064218d2763a381e101efd7d7e7012121b22", - "index": 8, "amount": { - "quantity": 8, + "quantity": 3, "unit": "lovelace" }, "derivation_path": [ "5", - "8" - ] - }, + "5", + "0" + ], + "assets": [] + } + ], + "deposits_returned": [], + "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "collateral": [ { "address": "", - "id": "58cffe2a3ad8042e6b43314f4d789401046520320c3f6d235d07275878612f1e", - "index": 2, + "id": "7d65f8497b43651a315f1a615467d15912e9107d52662316482e395a25004040", + "index": 1, "amount": { - "quantity": 1, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "0" + "1", + "2", + "6", + "1", + "4", + "8", + "6" ] }, { "address": "", - "id": "524d377249b708001e741a2e1b4929b751457d787cff820c3b2926454f7d511b", - "index": 7, + "id": "2842287d30770d06262009b93c552b74a01f70fe6e23f3702e4177725241526f", + "index": 0, "amount": { "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "5", - "5", - "4" + "8", + "7", + "7" ] }, { "address": "", - "id": "113326395b0b599013425549452c5f2e1e562d4d3e23013b613779287b678b1e", + "id": "21364e0e2b506e6964de355764234fd70158425991421450120170801f1a773a", "index": 6, "amount": { - "quantity": 3, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "1" + "2", + "8" ] }, { "address": "", - "id": "5d262d406c715a6c343d7a3ee8784bd9664a162a3f050b6b45132b579745257d", - "index": 8, + "id": "7042267a6ba7232b1a21cd302c5f3d5e691a15c727292d00196d1b4130190e36", + "index": 1, "amount": { - "quantity": 4, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ - "4", - "8" + "1" ] } ] }, "fee": { - "quantity": 97, + "quantity": 52, "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh1eyrqhuzyaznav366un3cg9sr709najyufr380kh2xp83sgmjmaj", - "subject": "asset1k2r99axez8vl44r5wt37s6kgewy29n90ntzn2f", - "asset_name": "26e4e88431413db8b414f6a0a7366e99db094ead3cc35c67d211a57c3a4f7e2e", - "verification_key_index": "24846", - "policy_id": "c9060bf044e8a7d6475ae4e3841603f3cb3ec89c48e277daea304f18" - } - ] + } }, { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", + "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", "coin_selection": { "withdrawals": [ { "amount": { - "quantity": 6, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "2", + "0", "1" ], "stake_address": "" }, { "amount": { - "quantity": 6, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "0", - "2", - "0" + "2" ], "stake_address": "" }, { "amount": { - "quantity": 0, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ "2", + "2", + "0", "2" ], "stake_address": "" @@ -2590,107 +2120,40 @@ "unit": "lovelace" }, "derivation_path": [ - "0", - "2", - "0", - "0" + "1" ], "stake_address": "" }, { "amount": { - "quantity": 4, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "2", - "1" + "2" ], "stake_address": "" } ], - "inputs": [ - { - "address": "", - "id": "5241326884e93e4850241a40462e2f364853160a1e50d758084164265927245f", - "index": 7, - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "derivation_path": [ - "5", - "7", - "6", - "0" - ], - "assets": [] - }, + "inputs": [], + "outputs": [ { "address": "", - "id": "f2153c061a26e0661b89638257480c5f61dc54cb056b3b30d2007a3605680b10", - "index": 1, "amount": { - "quantity": 4, + "quantity": 8, "unit": "lovelace" }, - "derivation_path": [ - "4", - "7", - "2", - "6", - "8" - ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e42", - "quantity": 8, + "quantity": 3, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 2, + "quantity": 3, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "id": "4d5a7e1869606351591a0a7b404d17bd611a386d0ba66c5914510c200a6a2860", - "index": 5, - "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "derivation_path": [ - "6", - "0" - ], - "assets": [] - }, - { - "address": "", - "id": "7929a54b25703e745e5b027ae14214597819308bb22d5e086017bd167e26f35a", - "index": 2, - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "derivation_path": [ - "1", - "2" - ], - "assets": [ { "asset_name": "546f6b656e42", "quantity": 4, @@ -2698,51 +2161,26 @@ } ] }, - { - "address": "", - "id": "742d17565d1704733253066e4c2f693945dc1c7f3b53771f46387a13351d5577", - "index": 2, - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "derivation_path": [ - "3", - "7", - "2", - "1", - "4", - "2" - ], - "assets": [] - } - ], - "outputs": [ { "address": "", "amount": { - "quantity": 3, + "quantity": 1, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "quantity": 16, + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 16, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -2750,64 +2188,37 @@ { "address": "", "amount": { - "quantity": 6, + "quantity": 1, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 7, + "quantity": 3, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 2, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] } ], "deposits_taken": [ { - "quantity": 7, + "quantity": 8, "unit": "lovelace" }, { - "quantity": 6, + "quantity": 1, + "unit": "lovelace" + }, + { + "quantity": 7, "unit": "lovelace" }, { @@ -2815,44 +2226,113 @@ "unit": "lovelace" }, { - "quantity": 4, + "quantity": 8, "unit": "lovelace" } ], + "certificates": [ + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "2", + "8", + "5", + "4", + "7" + ] + }, + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "5", + "7", + "4", + "6", + "8" + ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "5", + "4", + "2", + "7", + "3" + ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "7", + "6", + "4", + "3", + "7" + ] + }, + { + "certificate_type": "join_pool", + "pool": "pool1qgzqzqsyquzqxpsrq5zsgqgrqqpszpc9qszqgqsrqgrsqnjtp0c", + "reward_account_path": [ + "1", + "7", + "8", + "4", + "3" + ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "7", + "2", + "3", + "2", + "1" + ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "8", + "6", + "8", + "2", + "8" + ] + } + ], "change": [ { "address": "", "amount": { - "quantity": 7, + "quantity": 1, "unit": "lovelace" }, "derivation_path": [ + "3", + "0", + "0", "5", + "3", "6", - "8", - "7", - "6", - "3" + "7" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 9, + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 12, + "quantity": 5, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -2860,46 +2340,37 @@ { "address": "", "amount": { - "quantity": 3, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "0" + "3", + "7", + "5", + "1", + "2" ], "assets": [] }, { "address": "", "amount": { - "quantity": 7, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "8", - "6", - "3", - "3", - "2" + "4", + "7" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 9, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -2907,376 +2378,172 @@ { "address": "", "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "derivation_path": [ - "1", - "5", - "7", - "2" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - ], - "deposits_returned": [ - { - "quantity": 7, - "unit": "lovelace" - }, - { - "quantity": 6, - "unit": "lovelace" - } - ], - "collateral": [] - }, - "fee": { - "quantity": 9, - "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh1td5ap22uzhvwyd9vs8kujp6wseaf0fst4zp8vddfdkzsqaskjt9", - "subject": "asset1qgwg969zrrvlmacf4gd9pr0gx084nlgr90ahem", - "asset_name": "0e3a346d97021be28557c25bf07cddd2b8b13038ca1788fc15415feeeba22270", - "verification_key_index": "7184", - "policy_id": "5b69d0a95c15d8e234ac81edc9074e867a97a60ba8827635a96d8500" - }, - { - "policy_script": "addr_shared_vkh1hcaxz0t20qvrlszwmraqh94huqcfchm2ck7xec2acj576vv0p59", - "subject": "asset1399p2xhn0uj8t7cxv45u3hj8e00zjfnxcrtmuq", - "asset_name": "12ddd8e34423445b91ea7a0ef001fb06c3646053aee606dfd86df0b9d3223275", - "verification_key_index": "15321", - "policy_id": "be3a613d6a78183fc04ed8fa0b96b7e0309c5f6ac5bc6ce15dc4a9ed" - }, - { - "policy_script": "addr_shared_vkh14xjrk270rfhmlntf23273q9ytfpdyxjdu8lmqw53la59u8n8wrm", - "subject": "asset1fxdm942j3zrff92qhrcjkz3urhpm9hex7vx0ry", - "asset_name": "3d180886a237fb0ffde4ed2a6e5576d286ad7795c3141666e2bdd76aca90b688", - "verification_key_index": "32258", - "policy_id": "a9a43b2bcf1a6fbfcd695455e880a45a42d21a4de1ffb03a91ff685e" - }, - { - "policy_script": "addr_shared_vkh1yjd6zl9z2wtv7m7w5d8sd3p623nljn9kwhg8w9sfd556gj0w0gk", - "subject": "asset1k7ucsjmel29h28jhgv4k0rvjcyq0u7ht4z4334", - "asset_name": "37dd30d5890741f8bbbf9f8853600e2724f712cf466b30af24686d893e07e17f", - "verification_key_index": "15638", - "policy_id": "249ba17ca25396cf6fcea34f06c43a5467f94cb675d07716096d29a4" - }, - { - "policy_script": "addr_shared_vkh13zsxpwcvg8fgkqrqetlmf9dzyl7hkvyd3xmrd99h80ehzrclav0", - "subject": "asset1xv7v9e6g6mykfs0a25kp34gr7dwws02q0axpkx", - "asset_name": "b9e3f74a417735bed1e8126c894cb2f890ce53e450ecea9af1fd8a4a8b02c785", - "verification_key_index": "14090", - "policy_id": "88a060bb0c41d28b0060caffb495a227fd7b308d89b63694b73bf371" - }, - { - "policy_script": "addr_shared_vkh1jr0hl6x70g5rxdz32s59wr4vfw6dq4q0d39vpsnknumekp6wn4h", - "subject": "asset1n8kgh5k9uuugg7spxgsjzk4wka9sxtlja09n6v", - "asset_name": "937b1e49ed88cd835d8f03ea726d3c0acfb5fbb1c2a0eebb08150d8884cf9d6b", - "verification_key_index": "17513", - "policy_id": "90df7fe8de7a283334515428570eac4bb4d0540f6c4ac0c2769f379b" - }, - { - "policy_script": "addr_shared_vkh1yke5tye47cv00z20z3mzxzycw90a2e20c00x0axlhzhukwnwgh7", - "subject": "asset1fvyuzv86ut7rj0as5ddk3ydhs7k5j9487j06vw", - "asset_name": "c28cff492349f3dd45af8ac6f0e86e4c778021d105e7faad5950e93df9fad8dd", - "verification_key_index": "11658", - "policy_id": "25b3459335f618f7894f1476230898715fd5654fc3de67f4dfb8afcb" - }, - { - "policy_script": "addr_shared_vkh1l844q9cxfy7tm8seg9seyw7spjpejlsp4j2vd7gkvdm8ck6y72m", - "subject": "asset18kkr9zp0v9reesv2hrshu2wc86tykypcz2k5lg", - "asset_name": "f305497a583705357bee21614018e1c9012b71477e8b491c19f0e6fc920912eb", - "verification_key_index": "17533", - "policy_id": "f9eb501706493cbd9e194161923bd00c83997e01ac94c6f91663767c" - }, - { - "policy_script": "addr_shared_vkh1d0sg9c9zhwrreeh5zqeuhgjmxxyakge6zw3rquf7n4277kauery", - "subject": "asset1d9uxjhrl53zg8whc82muhcndxzdqyfx6nxwdlg", - "asset_name": "1ac39d6bbbfb80be160565826d3983648c7e79371f8fd4f44270ef51287f0167", - "verification_key_index": "28674", - "policy_id": "6be082e0a2bb863ce6f41033cba25b3189db233a13a230713e9d55ef" - }, - { - "policy_script": "addr_shared_vkh1feneua5uftffgs65jz9f84dpjwr9cuh6eanc8ll55ve57nd5wqr", - "subject": "asset1aqv5aqhytwvhs4s6vfyeff5fnrnttf4wpape34", - "asset_name": "0b4f4d52c3c8b7b53fd32b78687dbbc18d75e47ef735b49f3a5f180fe178bf64", - "verification_key_index": "8358", - "policy_id": "4e679e769c4ad2944354908a93d5a193865c72facf6783fff4a3334f" - }, - { - "policy_script": "addr_shared_vkh1gxxl2exnm49cp73z0dk2m3mxccagh09v3de907mtpq8yked0nm0", - "subject": "asset1xkmnlm4ywg298ucxaneq7hxc6exxrpdxxtlafr", - "asset_name": "ba1741365907736cbdf8dddf7fc63c0ee2748a2530b7ba730ca30f2fc972a38a", - "verification_key_index": "5059", - "policy_id": "418df564d3dd4b80fa227b6cadc766c63a8bbcac8b7257fb6b080e4b" - }, - { - "policy_script": "addr_shared_vkh1esz2r45dmlv525w4txj6quzjytzfhh5yx42e5afddw4gx3dt7k6", - "subject": "asset1jphrklr5rh370taamxm28m7esryhkuzjnuelc6", - "asset_name": "91e07f45aae09405f224625849f096a803483285ff028a33258f7e3d2fd95a8f", - "verification_key_index": "11722", - "policy_id": "cc04a1d68ddfd94551d559a5a0705222c49bde8435559a752d6baa83" - }, - { - "policy_script": "addr_shared_vkh12g3tlvgjjcc87fcttw78f03yhrtqkyuutct6vtvqjyfv620f4yz", - "subject": "asset1zeuujavw64n6gq2rqpvn47h2z0t9rfus3xw0ye", - "asset_name": "09202ab6ccdf9a48724377ac8834463fedcda3ec81a5515635b42a2f6fc8a2d6", - "verification_key_index": "20073", - "policy_id": "5222bfb11296307f270b5bbc74be24b8d60b139c5e17a62d809112cd" - }, - { - "policy_script": "addr_shared_vkh1ng6w3chplja5gly67lzakauwk3s3zmjvfa487m6nvrd4u29nk4y", - "subject": "asset1y8pupg65yl0va8d436jrk4hy5766j7zgh9mlzp", - "asset_name": "63dd26c58f5a10a5bed6cd7e84eff227276fba32a6f4898cbb998e1909767efb", - "verification_key_index": "11787", - "policy_id": "9a34e8e2e1fcbb447c9af7c5db778eb461116e4c4f6a7f6f5360db5e" - }, - { - "policy_script": "addr_shared_vkh1znz8xgdzm8w8r7y2f7l6sfkg433h7rnarzhdw93wwdet2f07ln9", - "subject": "asset1mvpz94mwxruf33g5234wakxamgsycj5uvver0j", - "asset_name": "45f2358f7b0678a5b40ded648c0289d4877e3de8dd1ace81a17242a59a93e7e5", - "verification_key_index": "9238", - "policy_id": "14c47321a2d9dc71f88a4fbfa826c8ac637f0e7d18aed7162e7372b5" - }, - { - "policy_script": "addr_shared_vkh122aey9kyg37glhqmcppah5cxwt8qv9kn06ldzxul8usds725cyf", - "subject": "asset15q4a697yl2y9c5rheauw3l0fsfptrqpc84y9hk", - "asset_name": "3da6392d02781963ed4640dc07cd47f7bb065067bf0d1738d02b47df8f9c4ba7", - "verification_key_index": "1832", - "policy_id": "52bb9216c4447c8fdc1bc043dbd30672ce0616d37ebed11b9f3f20d8" - } - ] - }, - { - "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", - "coin_selection": { - "withdrawals": [ - { - "amount": { - "quantity": 4, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ "2", - "1" + "1", + "7" ], - "stake_address": "" + "assets": [] }, { + "address": "", "amount": { - "quantity": 7, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ + "6", + "7", "2", + "3", + "8", "0", - "2", - "0" + "8" ], - "stake_address": "" - } - ], - "inputs": [ + "assets": [] + }, { "address": "", - "id": "002b6f7f10646776331b68ff2ec1042048dd8e1b65894824493977397e694b05", - "index": 0, "amount": { - "quantity": 0, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "7", - "5", - "8" + "4" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 16, + "quantity": 4, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 14, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 9, + "quantity": 3, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 7, + "quantity": 8, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] } ], - "outputs": [ + "deposits_returned": [ { - "address": "", - "amount": { - "quantity": 8, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, + "quantity": 0, + "unit": "lovelace" + } + ], + "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2", + "collateral": [ { "address": "", + "id": "671430601042d33c3c551b1a2e44252e156c013c03470a0cc5230a10e52032f4", + "index": 0, "amount": { - "quantity": 2, + "quantity": 8, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } + "derivation_path": [ + "8", + "3", + "2" ] }, { "address": "", + "id": "22a26f6e7a74de23560216773b781c445e6ea7646e4b237a6d7e1502025c6d1a", + "index": 4, "amount": { - "quantity": 5, + "quantity": 8, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } + "derivation_path": [ + "2", + "4", + "2", + "3", + "5" ] }, { "address": "", + "id": "445c62b1127e44576f0e08070a635d4972d014a9070c1842c7ed082d44737a60", + "index": 0, "amount": { - "quantity": 3, + "quantity": 2, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } + "derivation_path": [ + "6", + "1", + "4", + "3", + "6", + "1", + "4" ] } - ], - "deposits_taken": [ - { - "quantity": 6, - "unit": "lovelace" - }, - { - "quantity": 8, - "unit": "lovelace" - } - ], - "change": [ + ] + }, + "fee": { + "quantity": 195, + "unit": "lovelace" + } + }, + { + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", + "coin_selection": { + "withdrawals": [], + "inputs": [ { "address": "", + "id": "0a123d801a2df7381f235c321c9136eb995e37255c172679301fcc1e3b080108", + "index": 3, "amount": { - "quantity": 2, + "quantity": 3, "unit": "lovelace" }, "derivation_path": [ - "2", - "4", - "8", - "8" + "3" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e42", - "quantity": 15, + "quantity": 2, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] - }, + } + ], + "outputs": [ { "address": "", "amount": { - "quantity": 1, + "quantity": 6, "unit": "lovelace" }, - "derivation_path": [ - "7", - "2", - "6", - "3", - "7" - ], - "assets": [] - }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + ], + "deposits_taken": [], + "change": [ { "address": "", "amount": { @@ -3284,7 +2551,10 @@ "unit": "lovelace" }, "derivation_path": [ - "0" + "8", + "8", + "0", + "4" ], "assets": [] } @@ -3295,181 +2565,107 @@ "unit": "lovelace" }, { - "quantity": 4, + "quantity": 6, "unit": "lovelace" }, { "quantity": 3, "unit": "lovelace" - }, - { - "quantity": 6, - "unit": "lovelace" } ], - "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZICAGCglg5Ab3XTDvQhtOJOYdvy9Vukd1W/MypvnC0JDkEQ2evM9QXgU5vp5UxlXl9c/m1+1EYVLSw2LICOVmVGgAtxsCCWDkBGi8vEDuJXb5ziKzJzBD5DcStpT9GyEHSrERjB4n8YdId38vU1DZSvwXEDDRvp5SHFCO2UFLXYUwbAAAAF0hHIYgCGgAB/7gDGY0RoQCBglggQ+ptRemr5uMPr/SptnWr3ElTSm7am6lvk2jRLYed/GdYQJuJjKFD4bJFycdFxpC4E3tyT8Y/ijuFK80iNM7k5owlzTM+hFoiS5y0YA8nHVReNaQdF6FsBGrqZu00pTZVnw32", + "metadata": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", "collateral": [ { "address": "", - "id": "684653dfc74300411244466e7f300d6d79371d3902034b00001f691298355c2f", - "index": 1, - "amount": { - "quantity": 8, - "unit": "lovelace" - }, - "derivation_path": [ - "7", - "5" - ] - }, - { - "address": "", - "id": "40661bc56da13d1e3e1d55667c4272316b628837084f0a650e5ec01178a7bb1e", - "index": 7, - "amount": { - "quantity": 6, - "unit": "lovelace" - }, - "derivation_path": [ - "2", - "8" - ] - }, - { - "address": "", - "id": "090a312f65406b750d6b6e4531327a3f122a031d506a37040f52131941484f63", - "index": 1, + "id": "5e6e69761c386f5b53731d75333a5cf94e205a245f53022b2c03634d3737484c", + "index": 2, "amount": { - "quantity": 3, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ + "0", + "1", "1", "0", - "3" + "4", + "2", + "6" ] }, { "address": "", - "id": "c515f34c133a427028727c3a0d4e2638285f5b7034324d0a3c2b0456175a3e53", - "index": 6, + "id": "1019501d5f424a2451195884355a053914175c6f4b3a737b5441002e2b465d24", + "index": 4, "amount": { "quantity": 6, "unit": "lovelace" }, - "derivation_path": [ - "0" - ] - }, - { - "address": "", - "id": "35c33a0e0a691ea91017700644041e53f70606206514124c6e32746f3540bc45", - "index": 5, - "amount": { - "quantity": 2, - "unit": "lovelace" - }, "derivation_path": [ "0", "7", - "0" + "3", + "7", + "1", + "8" ] } ] }, "fee": { - "quantity": 166, + "quantity": 124, "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh183tg56r54lt5tf688qk525m7nz2cszj45542tmkfagdfsyqq6n3", - "subject": "asset1k3xewlmpx7rr3pak6yslqejeddun07s5pjtem9", - "asset_name": "9e97e8ce479dda5c70b6bd64065b95f3acb7d72b5395ad44dda60d3c0ce3c127", - "verification_key_index": "22237", - "policy_id": "3c568a6874afd745a747382d45537e9895880a55a52aa5eec9ea1a98" - }, - { - "policy_script": "addr_shared_vkh1g3989yp9uwlc8vcwfpkdk57d833vtjpcvuzh9nxtgmm97k75gzj", - "subject": "asset1uu8zkr5445tpmcj4g9pc5hje5xnchll0kra635", - "asset_name": "c86c4668fe68ec276aaf7fcce8908cc82f732baf9389566fa6bc4e10934419d9", - "verification_key_index": "523", - "policy_id": "444a729025e3bf83b30e486cdb53cd3c62c5c838670572cccb46f65f" - }, - { - "policy_script": "addr_shared_vkh1v0fzgfrf5uww6xn2de2ahapzlng8ru6hsvhq8rxgzrx22precwm", - "subject": "asset1t0el3lwrpfy2m0a8v2jpq7ws49lzfxhlag7dsd", - "asset_name": "c980aec8d94bc30b198c360b04e19e8d9c11366961b3f757afd06c79f6876810", - "verification_key_index": "9845", - "policy_id": "63d2242469a71ced1a6a6e55dbf422fcd071f357832e038cc810cca5" - }, - { - "policy_script": "addr_shared_vkh1fmw2u06qu9jzamw2gxxhmwfe64ezrl4vdujdcfkp48q566r9djc", - "subject": "asset1u4gzdcss0p3x9pa793s3c0leldedct53np3duq", - "asset_name": "a0d878d7d3589f2f5ed30ce772d5f8a948c0bbb9d1f2df6f3c826d727c44ad67", - "verification_key_index": "841", - "policy_id": "4edcae3f40e1642eedca418d7db939d57221feac6f24dc26c1a9c14d" - } - ] + } }, { - "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=", + "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", "coin_selection": { "withdrawals": [ { "amount": { - "quantity": 1, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ + "1", "2" ], "stake_address": "" }, { "amount": { - "quantity": 5, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "0", "1", - "2", - "0" - ], - "stake_address": "" - }, - { - "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "derivation_path": [ - "1" + "0", + "2" ], "stake_address": "" }, { "amount": { - "quantity": 1, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "0", + "2", + "1", "1" ], "stake_address": "" }, { "amount": { - "quantity": 3, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ "0", "2", "1", - "2" + "0" ], "stake_address": "" } @@ -3477,87 +2673,126 @@ "inputs": [ { "address": "", - "id": "5ab5130a6a4354c9073e5f085b40110d1857265f264802514f721a031b48ff11", - "index": 8, + "id": "194f415690906d6f340fb84a46807f4f3d76555b1f484fbd1de96c1f527b7672", + "index": 5, "amount": { - "quantity": 8, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ "6", - "8", - "4", - "6", - "6" + "7", + "8" ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - ], - "outputs": [ + "assets": [] + }, { "address": "", + "id": "111a547716145f5c7421ac146134403d3fc05f60167652774f5de92a556e380a", + "index": 0, "amount": { - "quantity": 4, + "quantity": 0, "unit": "lovelace" }, + "derivation_path": [ + "5", + "4", + "6", + "1", + "2", + "2" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 4, + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", + "id": "2fe1073f206a66b45b67bf3138683e56123f0129d55e72c32d434c4944420a17", + "index": 0, "amount": { - "quantity": 7, + "quantity": 2, "unit": "lovelace" }, + "derivation_path": [ + "5", + "1", + "2", + "5", + "8", + "4" + ], "assets": [] - }, + } + ], + "outputs": [ { "address": "", "amount": { - "quantity": 6, + "quantity": 3, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "address": "", "amount": { - "quantity": 5, + "quantity": 3, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "address": "", "amount": { - "quantity": 7, + "quantity": 0, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "quantity": 7, + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 1, + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e42", - "quantity": 8, + "quantity": 20, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] @@ -3565,29 +2800,22 @@ { "address": "", "amount": { - "quantity": 2, + "quantity": 8, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "assets": [ { "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] } @@ -3596,163 +2824,177 @@ "certificates": [ { "certificate_type": "join_pool", - "pool": "pool1qcqsgzqrqczqwpcxqcqswps8qgzszpgrqyrq2qcgqspqwt9xdyq", + "pool": "pool1qvqqxpsrqvpswqggqsrsypgzqcps2qgxqgpsgqqyqvyqysms305", "reward_account_path": [ - "7", - "3", "6", "0", - "7" + "6", + "5", + "2" ] }, { "certificate_type": "register_reward_account", "reward_account_path": [ - "2", + "6", "3", - "1", - "4", + "5", + "7", "3" ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "0", + "2", + "8", + "7", + "5" + ] + }, + { + "certificate_type": "join_pool", + "pool": "pool1qyqqqqcgqcpsgpcgqcrszpgrqcpqqps8qspq2zqrqyyqyqhmqal", + "reward_account_path": [ + "7", + "6", + "4", + "7", + "4" + ] } ], "change": [ { "address": "", "amount": { - "quantity": 4, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "0", - "4", - "6", - "7", - "1", - "6", - "1" + "2", + "2", + "3", + "2", + "2" ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 3, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "5", "6", "1", - "0", - "7", - "1" + "4", + "0" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] } ], "deposits_returned": [ { - "quantity": 7, + "quantity": 1, "unit": "lovelace" }, { - "quantity": 6, + "quantity": 2, "unit": "lovelace" }, { - "quantity": 8, + "quantity": 2, "unit": "lovelace" }, { - "quantity": 2, + "quantity": 5, "unit": "lovelace" } ], + "metadata": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", "collateral": [ { "address": "", - "id": "5c0b55e33b4066601414573f675f570f464d2f5dfc44605822893c951aeb4813", - "index": 2, + "id": "1b5c0d350b472a367a6b7678273f0d7b1d5f13557bbf565547092048061f4bff", + "index": 3, "amount": { - "quantity": 1, + "quantity": 7, "unit": "lovelace" }, "derivation_path": [ + "4", "6", - "0", - "2", "4", - "0", - "3" + "7" + ] + }, + { + "address": "", + "id": "323f547c04567c1845b9321e7d037d25ad31237e274d572933596d380e607526", + "index": 0, + "amount": { + "quantity": 2, + "unit": "lovelace" + }, + "derivation_path": [ + "4", + "5", + "4", + "5" ] }, { "address": "", - "id": "5e7d191c016836703d235871241a5c0d50e278652639a3130d79609d5645bf8a", + "id": "5b2e211715256b5a2c19503911b421048a30651604690c21331f97561a41f07e", "index": 5, "amount": { - "quantity": 4, + "quantity": 7, "unit": "lovelace" }, "derivation_path": [ + "4", + "7", "6", - "8", - "6", - "8", - "6", - "4" + "8" + ] + }, + { + "address": "", + "id": "744e110156693e4644d3594f477b2a5f1a3767275558b51301134e261a523015", + "index": 5, + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "derivation_path": [ + "5" ] } ] }, "fee": { - "quantity": 185, + "quantity": 21, "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh1pk4yz2f22md3r605s33f8dsgshplgvrs6p9tqzmasmcxcg2c4em", - "subject": "asset1c8yhvsqe69gn5kh5x4xz7zs40cghraupzanav8", - "asset_name": "2aabcdf06cd808fa358ecca3d1c988dca2d01edc38e3dd2f0bfbdf1d2c1e6cd2", - "verification_key_index": "24848", - "policy_id": "0daa41292a56db11e9f4846293b60885c3f43070d04ab00b7d86f06c" - }, - { - "policy_script": "addr_shared_vkh123cjrsxpw6vvdugpxmk5a9pzd4zqkxr508ur6ktkxgn6wj9axrj", - "subject": "asset183zg4n42atawre5dktcvs6fy8swuu52x4dag59", - "asset_name": "92f551118ba6b102723ce30c66ac85d7997b8f1a7a3089b8be55708e6eac4e1c", - "verification_key_index": "8627", - "policy_id": "547121c0c17698c6f10136ed4e94226d440b187479f83d59763227a7" - }, - { - "policy_script": "addr_shared_vkh16mx404x5cq4hs8dtlpml9hj0pguz9vqnn27236v5cxfxqacwhp9", - "subject": "asset19xe8qhhdhmm8ay0hdl4w624uj5cszqgxlhmexk", - "asset_name": "c799dfc5cf3b6461bf5b335355e1df1ec5fa5865b5c06f175b1bee981a451999", - "verification_key_index": "6672", - "policy_id": "d6cd57d4d4c02b781dabf877f2de4f0a3822b0139abca8e994c19260" - }, - { - "policy_script": "addr_shared_vkh12wqv0r5zqvvg8sp8lyqt0hc2mgf4y0d0h5s4g6r4kw9gulavddq", - "subject": "asset1j6n66593s39clyyupe5xatmt23syzcuezxal0q", - "asset_name": "2b167c104480668f2cd9918dbcf3d5821405cd7f929ce3b0334f132b09b5768c", - "verification_key_index": "18530", - "policy_id": "5380c78e82031883c027f900b7df0ada13523dafbd21546875b38a8e" - }, - { - "policy_script": "addr_shared_vkh1vnr4ewpxedgvglnryqs96rne6k384u0hvmt2956hsezy54k7gmm", - "subject": "asset12dm3cxn3duazwdyfd663szx4eec2hjeyztx708", - "asset_name": "b54add6d450d8004667f371cb422eb558e656ddfb60a1a7bcca37e3fcf1ed9ef", - "verification_key_index": "11588", - "policy_id": "64c75cb826cb50c47e6320205d0e79d5a27af1f766d6a2d35786444a" - } - ] + } }, { "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", @@ -3760,34 +3002,35 @@ "withdrawals": [ { "amount": { - "quantity": 4, + "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "1" + "2" ], "stake_address": "" }, { "amount": { - "quantity": 6, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ - "1" + "0", + "0" ], "stake_address": "" }, { "amount": { - "quantity": 5, + "quantity": 0, "unit": "lovelace" }, "derivation_path": [ + "1", "0", "0", - "2", - "1" + "0" ], "stake_address": "" } @@ -3795,15 +3038,16 @@ "inputs": [ { "address": "", - "id": "334b0403712f756302704bf8165543ea2c1579049c797e3d2376a90457403902", - "index": 2, + "id": "957940174b081b08520a1f45407a793a272f3cb5450d2bf903496d0dd3385e11", + "index": 3, "amount": { - "quantity": 0, + "quantity": 2, "unit": "lovelace" }, "derivation_path": [ + "7", "5", - "5" + "1" ], "assets": [ { @@ -3811,82 +3055,123 @@ "quantity": 3, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e41", - "quantity": 9, + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 2, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", - "id": "4c6b00123115154e4e6f2c416b452b352331592e3b51097c1a5110b57d6d81d5", - "index": 7, + "id": "0e1f454622b95a0a02054d69303966160d6471732234464a204a29437540565e", + "index": 5, "amount": { - "quantity": 4, + "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "1" + "7", + "5", + "5", + "8", + "3", + "2" ], "assets": [] }, { "address": "", - "id": "6f033d0f50013a53073f323f52595c68f32d552d099a8f10334a7b213a056e45", - "index": 6, + "id": "db60763273464650610e3f214fcf02493f0b7e697a306a0b141a3c7c6766cf04", + "index": 5, "amount": { - "quantity": 5, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "3", - "6", - "6", + "0", + "0", "8", - "5" + "8", + "4" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "address": "", - "id": "1a0b2b2c7e8d3abd4ea67e02e72230650b70475d717a744e34f6716a613e0311", - "index": 5, + "id": "cc04090c08677062323b1b5b6320716c023d5e16b05a4af711de2568340d6639", + "index": 0, "amount": { - "quantity": 3, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "1", - "7", - "6", - "4", - "8", "0", - "0" + "7", + "5", + "8" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "id": "542b78220a0e1839540f00403387871f0c729e7c6d00387f705b217a076f547f", + "index": 2, + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "derivation_path": [ + "7", + "8" ], "assets": [] }, { "address": "", - "id": "70006b413067685a7b3557761f181d7916321f9e3951416c1f333f186c12731f", - "index": 3, + "id": "e0217b7373415833094a23853a482d3b3573416b18208604782751420a00500f", + "index": 6, "amount": { - "quantity": 4, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "1" + "8", + "8", + "1", + "5" ], "assets": [] } @@ -3895,18 +3180,16 @@ { "address": "", "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 2, + "quantity": 6, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "address": "", @@ -3917,256 +3200,250 @@ "assets": [ { "asset_name": "546f6b656e41", - "quantity": 16, + "quantity": 7, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 5, + "asset_name": "546f6b656e41", + "quantity": 9, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] - }, - { - "address": "", - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "assets": [] } ], - "deposits_taken": [ - { - "quantity": 7, - "unit": "lovelace" - }, - { - "quantity": 3, - "unit": "lovelace" - }, + "deposits_taken": [], + "certificates": [ { - "quantity": 3, - "unit": "lovelace" + "certificate_type": "join_pool", + "pool": "pool1qupsypggquzqyqqxquqsvpq9qvzsvqgyqgpszqsrqspqvs42tuz", + "reward_account_path": [ + "3", + "4", + "8", + "2", + "4" + ] }, { - "quantity": 2, - "unit": "lovelace" + "certificate_type": "quit_pool", + "reward_account_path": [ + "5", + "4", + "5", + "6", + "4" + ] }, { - "quantity": 3, - "unit": "lovelace" + "certificate_type": "join_pool", + "pool": "pool1qypqypq8qgqsvqsgqvpsvzqrq5pqyqcpqcrsvpszqsqsq386r73", + "reward_account_path": [ + "6", + "8", + "5", + "2", + "8" + ] }, { - "quantity": 8, - "unit": "lovelace" - } - ], - "certificates": [ - { - "certificate_type": "register_reward_account", + "certificate_type": "join_pool", + "pool": "pool1q5psypqpqspqxqqyqvqsqzqyqursvpq9qspsxzqqqcrqvsnm6r2", "reward_account_path": [ - "2", - "4", - "1", "3", + "8", + "4", + "8", "2" ] }, { - "certificate_type": "quit_pool", + "certificate_type": "join_pool", + "pool": "pool1qqrqvqs8qsqswpc9qspq2qc8qcqqsqggqyrqqqqpqyzsvgxrm5g", "reward_account_path": [ - "6", + "8", "5", + "1", "7", - "2", - "1" + "7" ] }, { - "certificate_type": "join_pool", - "pool": "pool1qgyqsqcrqgpqzqg8qcpqzqcrquzqwpg8quqsgpszpqyqxwalh7j", + "certificate_type": "register_reward_account", "reward_account_path": [ - "4", + "1", + "7", "6", + "3", + "5" + ] + } + ], + "change": [ + { + "address": "", + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "derivation_path": [ "4", - "8", - "1" + "1", + "2" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } ] }, { - "certificate_type": "register_reward_account", - "reward_account_path": [ + "address": "", + "amount": { + "quantity": 3, + "unit": "lovelace" + }, + "derivation_path": [ + "8", + "3" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "derivation_path": [ "0", - "5", "8", - "2", "7" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } ] }, { - "certificate_type": "join_pool", - "pool": "pool1qczqsqc8pqrsspqrqvyqvqgzq5qs2pcxqgrqxps9pqzs24cargc", - "reward_account_path": [ - "0", - "6", + "address": "", + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "derivation_path": [ "6", - "8", + "1", + "7", + "1" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "derivation_path": [ "4" - ] + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "derivation_path": [ + "2", + "8", + "4", + "6", + "1", + "0" + ], + "assets": [] } ], - "change": [], "deposits_returned": [ - { - "quantity": 2, - "unit": "lovelace" - }, { "quantity": 5, "unit": "lovelace" }, { - "quantity": 3, + "quantity": 4, "unit": "lovelace" }, { - "quantity": 5, + "quantity": 3, "unit": "lovelace" } ], - "metadata": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=", "collateral": [ { "address": "", - "id": "0b5ac0c0704932575c0b4c274b63242a3935175a1d47ca1728250a59330b7b20", - "index": 2, + "id": "4b4e5a7398316f527206733516222c1b68d63f622c5d21585a21c2253d028e3e", + "index": 4, "amount": { - "quantity": 8, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "1", - "1", - "7" + "6", + "5" ] }, { "address": "", - "id": "7f1b6d1c7f493960576a67a9044f072ae18d0e61fd11fe22490b26311a78034a", - "index": 0, + "id": "3d7f212d49881d7f266c0d4a71993f5e6774705a192c61521b6b776063f81c73", + "index": 4, "amount": { - "quantity": 0, + "quantity": 4, "unit": "lovelace" }, "derivation_path": [ - "7", - "3", - "6", - "8", - "5" + "1", + "5", + "5", + "2", + "8" ] }, { "address": "", - "id": "3f5b2b075dd51571134ddb39251058551213125bcc15663203721f2e7e73606b", - "index": 6, + "id": "150d3e5973555f0d5c4504671cab0e3a4af549116b6b7dee1216381e1dbc2bf6", + "index": 0, "amount": { - "quantity": 2, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "5", - "6", + "7", + "0", + "0", "4", - "6", + "5", "4", - "2" + "0" ] } ] }, "fee": { - "quantity": 134, + "quantity": 157, "unit": "lovelace" - }, - "mint_burn": [ - { - "policy_script": "addr_shared_vkh1aw7g4lrmme6vd593fm34dca7vycdl4frfdxz6sjpvhamusm0l0h", - "subject": "asset1t247pgx594zss6kt3ypgn2wqq3ed8eu0n9p5d8", - "asset_name": "9db6372439500890660ebc884d4f94ab4c65700963ed88a22a9b77f2b465717f", - "verification_key_index": "27832", - "policy_id": "ebbc8afc7bde74c6d0b14ee356e3be6130dfd5234b4c2d424165fbbe" - }, - { - "policy_script": "addr_shared_vkh1rchv982hlxmxyc4aew78p4lvrcajr9mhtjhlv3872a0zxvgnkgs", - "subject": "asset1wka8fsa4zncaympymqzcxmlnv2c6ymam98xgrr", - "asset_name": "b7b5e9d19fe6ea5c2ebf242787124936b7f5e67c0ecf66fc570d9baf34a339a3", - "verification_key_index": "28328", - "policy_id": "1e2ec29d57f9b66262bdcbbc70d7ec1e3b2197775caff644fe575e23" - }, - { - "policy_script": "addr_shared_vkh186sd0ldhrkjcw84pe8xxpfdqvjscxuuu0tq4fppygs33xhrwum2", - "subject": "asset179y7f4keel6wcw9prqmnpru6ru0gx2qtlezcjf", - "asset_name": "cfce47080e503ec2a7408135d4bb1110bcd2ba0ac0eda58021fced61634d8ac5", - "verification_key_index": "18963", - "policy_id": "3ea0d7fdb71da5871ea1c9cc60a5a064a183739c7ac1548424442313" - }, - { - "policy_script": "addr_shared_vkh1966f3mhxvkzmpfrxa5xt4asf4xedqntmfzdvtgy7wl7ckt8uhfx", - "subject": "asset14w6jwyndzlq7yvf6p708564c9jtaq0j3ykx76q", - "asset_name": "2a433ac26b13d69e000581a637996d44984ff1baf3b66e2c73ec30fae941444d", - "verification_key_index": "31744", - "policy_id": "2eb498eee66585b0a466ed0cbaf609a9b2d04d7b489ac5a09e77fd8b" - }, - { - "policy_script": "addr_shared_vkh1l9qez9325rdcdldnhs5vff3gw7pakcmue94gn59kej23k6mkdgk", - "subject": "asset13uf08afv4edy8gqarpllstsrypt9wt0u09ymd0", - "asset_name": "ec868febca1d167b02c8483ae958b32b7bc9f9cdc00930176b40daf0890107eb", - "verification_key_index": "13590", - "policy_id": "f94191162aa0db86fdb3bc28c4a6287783db637cc96a89d0b6cc951b" - }, - { - "policy_script": "addr_shared_vkh1mglp2td59w0rxdey0re98x57qxgpea43hqxpy0pm9ztj6ulzvc4", - "subject": "asset1lecahym5sd7fpfjqptav5frgmr4nz57ysva0vt", - "asset_name": "c9787e6a1ac4768dc16bcf100d0c82ec6d4efa6df4de6e4c95c350fbd555ca44", - "verification_key_index": "6917", - "policy_id": "da3e152db42b9e33372478f2539a9e01901cf6b1b80c123c3b28972d" - }, - { - "policy_script": "addr_shared_vkh18gjhjzxw65phcwqmpkx02d22caqk0tvcpfkk7l55fx5kynfke8n", - "subject": "asset1prhz7pt0tg6tsvfygs90502x4khym03gqz6nac", - "asset_name": "830d333d816aebc6b06f43b4af81c05167a5460600bc2e6c410cbf6c08928449", - "verification_key_index": "20501", - "policy_id": "3a257908ced5037c381b0d8cf5354ac74167ad980a6d6f7e9449a962" - }, - { - "policy_script": "addr_shared_vkh12ffkskek7j0xgpug0mwcpr5dve4q80rh4pfgjelkf586sredkxt", - "subject": "asset14cu0uzewk0juazxxrgs8cmymkckmxqe7z5z4kv", - "asset_name": "cdc7a5e5659afc5b69dc5cd6b48449f30c1df667961ac2dc5fba4911dd2e0039", - "verification_key_index": "8884", - "policy_id": "5253685b36f49e6407887edd808e8d666a03bc77a8528967f64d0fa8" - }, - { - "policy_script": "addr_shared_vkh1l7w73l09593hz9p6xzhxpngsaz8479c4lpjl3m2qqvdavvhhdzm", - "subject": "asset10syzppyp8cff6kw3e8drrpvymyva5wesg838fq", - "asset_name": "3ef58b75f87a0f2b86aa25a66cd3fbfcfbec886e95c2f803539ca1d7050fafd0", - "verification_key_index": "5146", - "policy_id": "ff9de8fde5a16371143a30ae60cd10e88f5f1715f865f8ed40031bd6" - }, - { - "policy_script": "addr_shared_vkh1ddyeq4dtwnuhycwml2l72guxn2per985pd03s2qww0slw4yqgqz", - "subject": "asset1z5tgwv855flnxf0pus4fj6vw55u78svrv826pu", - "asset_name": "b56c12c855bfd6388142ec0e37aae60357e92bb8e6ffb69eb5a563a02bf480ab", - "verification_key_index": "5327", - "policy_id": "6b499055ab74f97261dbfabfe523869a839194f40b5f18280e73e1f7" - } - ] + } } ] } \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json index 205173ce698..e0287845849 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json @@ -1,19 +1,18 @@ { - "seed": 1328814202978023363, + "seed": -2220255202825708310, "samples": [ { "withdrawals": [ { - "context": "ours", "amount": { - "quantity": 202, + "quantity": 46, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 235, + "quantity": 205, "unit": "lovelace" }, "stake_address": "" @@ -21,29 +20,21 @@ { "context": "ours", "amount": { - "quantity": 185, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 96, + "quantity": 45, "unit": "lovelace" }, "stake_address": "" }, { - "context": "ours", "amount": { - "quantity": 232, + "quantity": 141, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 139, + "quantity": 183, "unit": "lovelace" }, "stake_address": "" @@ -51,28 +42,23 @@ { "context": "ours", "amount": { - "quantity": 180, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 57, + "quantity": 72, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 249, + "quantity": 32, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 62, + "quantity": 100, "unit": "lovelace" }, "stake_address": "" @@ -80,36 +66,37 @@ { "context": "ours", "amount": { - "quantity": 72, + "quantity": 232, "unit": "lovelace" }, "stake_address": "" }, { - "context": "ours", "amount": { - "quantity": 242, + "quantity": 106, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 60, + "quantity": 47, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 91, + "quantity": 223, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 112, + "quantity": 22, "unit": "lovelace" }, "stake_address": "" @@ -117,14 +104,14 @@ { "context": "ours", "amount": { - "quantity": 190, + "quantity": 122, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 19, + "quantity": 66, "unit": "lovelace" }, "stake_address": "" @@ -132,7 +119,7 @@ { "context": "ours", "amount": { - "quantity": 126, + "quantity": 80, "unit": "lovelace" }, "stake_address": "" @@ -140,606 +127,492 @@ { "context": "ours", "amount": { - "quantity": 125, + "quantity": 103, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 233, + "quantity": 46, "unit": "lovelace" }, "stake_address": "" - }, + } + ], + "inputs": [ { - "context": "ours", - "amount": { - "quantity": 254, - "unit": "lovelace" - }, - "stake_address": "" + "id": "605f7a3f45505bd95b6885252e7e8d04455c7975d269327b470a4e642e614361", + "index": 0 }, { - "amount": { - "quantity": 93, - "unit": "lovelace" - }, - "stake_address": "" + "id": "475f9c761bea4fad3d4431917a6c5e0902405b212d0d6883023f1b6a57227733", + "index": 0 }, { - "amount": { - "quantity": 182, - "unit": "lovelace" - }, - "stake_address": "" + "id": "0c1a3c6e0774c12c1a7c2c06136957b71b399b0567437a04161a38397aeb3800", + "index": 1 }, { - "amount": { - "quantity": 6, - "unit": "lovelace" - }, - "stake_address": "" - } - ], - "inputs": [ - { - "address": "", - "id": "2d47586aaeeb5e2d0c6359807d541c17752c100e4a5860565b5c691928fc1e7c", - "index": 28233, - "amount": { - "quantity": 94, - "unit": "lovelace" - }, - "derivation_path": [ - "6379", - "2657", - "21197", - "10133", - "20792", - "20855", - "2428", - "236", - "28765", - "21440", - "19569", - "2273", - "5832", - "15924", - "1441", - "22764", - "18318", - "7045", - "28480", - "23505", - "17997", - "951", - "30719", - "29673", - "14891", - "25174" - ], - "assets": [] + "id": "774d3a54f375642a122652007276353762a7782cb4124662b51dc257c212e9bd", + "index": 0 }, { "address": "", - "id": "17497df7143a3efb7d566e06136fb16c459e4fefa5a246fe057a9c5993c4d91a", - "index": 8914, + "id": "0c2b726d414171afa1233b7028fea12e1d4d622b5d40392f1b2e7f4164252757", + "index": 21604, "amount": { - "quantity": 237, + "quantity": 156, "unit": "lovelace" }, "derivation_path": [ - "4508", - "17895", - "9749", - "13155", - "17112", - "8416", - "20359", - "29477", - "29565", - "24705", - "523", - "6998", - "3128", - "27637", - "19189", - "9264", - "20311", - "27903", - "29275", - "657", - "21907", - "25891", - "8875", - "28345", - "20864", - "2208", - "23635" + "18725", + "31541", + "6952", + "6529", + "24700", + "21039", + "29464", + "25109", + "15827", + "6851", + "18211", + "27829", + "4062", + "25966", + "19241", + "9505", + "32189", + "25874", + "2981", + "3052", + "22079", + "7715", + "8449", + "13404", + "26833", + "21449" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 4, + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 34, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 40, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 33, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "0179565e6507bf030a4c3349a7620f1815524e51353f3e2c5f4e50052a73e151", + "id": "00643b3f744b4d3625292f6337490b2e1e22961c56267667082e75931f06010f", + "index": 1 + }, + { + "id": "0c2811c90e4e3454ab02490e08727c05fe190bb756350200fe151a59357c644e", + "index": 1 + }, + { + "id": "28225e267b42367b1c11f93330597b18471a64fdafb047481805785c41413836", "index": 0 }, { "address": "", - "id": "3e2e2f2409015c74707969531947620513483c4432566d6613575c141124775a", - "index": 17106, + "id": "2344742e3f0c560a78b96107517e35283c46745d1b2a0c4e3837b55ffee2a538", + "index": 1299, "amount": { - "quantity": 129, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "6039", - "19199", - "25687", - "10757", - "18233", - "21660", - "5644", - "18712", - "14642" + "8972", + "12875", + "31797", + "1228", + "18056", + "29552", + "30689", + "937" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { - "address": "", - "id": "d21a0038010f0215395240721208a264660173304232316f766a7c3e2a5a6559", - "index": 6308, - "amount": { - "quantity": 198, - "unit": "lovelace" - }, - "derivation_path": [ - "11377", - "4092", - "2536", - "27436", - "32636", - "29225", - "684", - "25866", - "19723", - "26344", - "7976", - "20524", - "14309", - "17690", - "13102", - "6007", - "18770", - "31651", - "4947", - "18460", - "18989", - "560", - "28922", - "15882", - "18019" - ], - "assets": [] + "id": "497b71fe2c161630214627465c142fca1240267d2f1d734e4771adf31d4a6a40", + "index": 1 }, { "address": "", - "id": "2f3f2ed151680a7c4065dc686914565a2f46542f0add6d123d203e14ad444410", - "index": 27953, + "id": "293325660e747e13ea6f6076b558316874172302054b44137a3c6a15dbe90c5d", + "index": 10952, "amount": { - "quantity": 119, + "quantity": 8, "unit": "lovelace" }, "derivation_path": [ - "21822", - "15959", - "24241", - "2345", - "21038", - "21584", - "19559", - "3131", - "13570", - "21490", - "15862", - "7748", - "18741", - "18787", - "23283", - "9833", - "17653", - "118", - "748", - "29225", - "9609", - "22911" + "1120", + "31464", + "6820", + "25465" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 9, + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 33, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "address": "", - "id": "e311250f085b5075563b453c411a13446ebd782857792c130b01cc155376367e", - "index": 21229, - "amount": { - "quantity": 144, - "unit": "lovelace" - }, - "derivation_path": [ - "20076", - "28125", - "29799", - "30711", - "27912", - "25385", - "16728", - "310", - "30619", - "24866", - "24641", - "16547", - "19967", - "930", - "5698", - "27579", - "28121", - "28276", - "8083", - "3538", - "10807" - ], - "assets": [] - }, - { - "id": "06576f1a6fc61b2e5a4258553289473d28b76a70525b3d27913e701638163c0a", - "index": 0 - }, - { - "id": "0c5b734f170f396c5b4b647f7a740d115578e5512e20d641161c534912621609", - "index": 1 - }, - { - "id": "a0177d3b41167e64521a2288304cf0d87447186265669118be3567e947877197", - "index": 1 - }, - { - "id": "e7ff7e465879d2277b647c677efc724b635e61583152b228f72c231463534701", + "id": "9c2b561f3a0f410a645b30ca0d3f7e4d456152027c3e2d57d5134f0c23271163", "index": 1 }, { "address": "", - "id": "03395b41742d04627a584f8845ce48290a3a40014c26cb7c5c13387115490c13", - "index": 11543, + "id": "5f66330660665b34ade969085924023d2d613f18087259b43acda953673937d9", + "index": 1759, "amount": { - "quantity": 122, + "quantity": 48, "unit": "lovelace" }, "derivation_path": [ - "8919", - "12965", - "21505", - "29290", - "19917", - "9235", - "22120", - "14341" + "26858", + "24030", + "4388", + "16848", + "21866", + "11036", + "31597", + "10857", + "16112", + "893", + "6497", + "5703", + "22282", + "15108", + "19423", + "17416", + "1927", + "2074", + "26341", + "30102" ], "assets": [] }, { - "id": "0a6851691e64240c32500dd5b875717a1d1114ca263e0a1a41425832282a4c7d", + "id": "00081d614e523a4a214d4b20475d6b6f7422d448036abd6d4f6242206b040f89", "index": 1 }, { - "id": "ec3990289853656a664f16fa0a7e30bb0d0e165a6f40fd6d2d216a7a61651655", + "id": "094d693d5303b6555a06181a6e943307661f73303d6c5211ee7526282c520b39", "index": 1 }, { - "id": "3e1b4e4d063b707e265a42174e3c602a0d524b7b05521044107143403d4d4d15", - "index": 0 - }, - { - "address": "", - "id": "b24f3813430d0c1a6218c911112f5e3f923d6303021701113e986b4d46645534", - "index": 23197, - "amount": { - "quantity": 163, - "unit": "lovelace" - }, - "derivation_path": [ - "23724", - "5102", - "2007", - "17388", - "15070", - "2245", - "24987", - "437", - "7666", - "2323", - "25364", - "22531", - "11089", - "32602", - "31452", - "27209", - "26003", - "12746", - "12326", - "16352", - "32179", - "11298", - "6095" - ], - "assets": [] - }, - { - "id": "3d769b51143d400963232f220f0f0f47642b65210f6b59244a2530490d0b1678", + "id": "065f4e3c4179747916c51d3978261c3d354d55146a281de6aeb86928ca657b69", "index": 1 }, { "address": "", - "id": "1620b64966632f394f20463c4ca10d012b2877c95c6484495d633f6b82207250", - "index": 12151, + "id": "79526c662acb47219f06160c78a27a0e41eb0c4e57416862576151a23215532e", + "index": 7742, "amount": { - "quantity": 196, + "quantity": 55, "unit": "lovelace" }, "derivation_path": [ - "4436", - "779", - "13530" + "28737", + "24128", + "3448", + "8678", + "29965", + "4412", + "29264", + "15617", + "5157", + "13570", + "2510", + "20563", + "2239", + "5735", + "30255", + "7069", + "31625", + "950", + "28246", + "14421", + "1679", + "24111", + "26954", + "24656", + "28226", + "7888", + "18295", + "3099", + "8868", + "3201" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 20, + "quantity": 23, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - ], - "assets_minted": { - "token_map": [ - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 44, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 35, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 42, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "stake_shared_vkh1k6v5a7jlc5agt5wafqq9exqxhxrm3e2advpwfkfw5ruwjyplmkc", - { - "active_from": 100 - } - ] + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "909116085fab0c04e960765253cbfafe26e9e53641a381eff3666448" - } - ], - "wallet_policy_key_hash": "policy_vk12yc3xqftrahzkst7ff0q6t50vflzga6gvfgrg5tdqfyzx2rht54qs4veey" - }, - "outputs": [ - { - "address": "", - "amount": { - "quantity": 149, - "unit": "lovelace" - }, - "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 1, + "asset_name": "546f6b656e41", + "quantity": 24, "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 38, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "41e2521d74075c7d4a75a0bd435704770a204b0976777e0d7b102b5d581fb06f", + "index": 176, "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "derivation_path": [ - "10888", - "26178", - "8437", - "23560" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 204, + "quantity": 71, "unit": "lovelace" }, "derivation_path": [ - "5902", - "15554", - "7622", - "25640", - "16979", - "31590", - "16174", - "32096", - "14171", - "25942", - "23589", - "570", - "11448", - "21216", - "15342", - "25562" + "27873", + "8300", + "5337", + "10934", + "6629", + "4805", + "23037", + "300", + "16227" ], "assets": [ { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e41", + "quantity": 39, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 68, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "230c18785b386b0eea389331d42c4457a32424312063315910623259503d0d21", + "index": 0 + } + ], + "outputs": [ { "address": "", "amount": { - "quantity": 136, + "quantity": 12, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 70, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 118, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 163, + "quantity": 162, "unit": "lovelace" }, - "derivation_path": [ - "31053", - "21451", - "32180", - "13008", - "14105", - "15323", - "574", - "25356", - "1204", - "31974", - "30768", - "11816", - "1154", - "29620", - "16430" - ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 6, + "asset_name": "546f6b656e42", + "quantity": 23, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 120, - "unit": "lovelace" - }, - "derivation_path": [ - "22698", - "1590", - "20279", - "20920", - "23674", - "14072", - "31559" - ], - "assets": [ + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 38, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e41", - "quantity": 9, + "quantity": 47, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e42", - "quantity": 20, + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 33, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -747,875 +620,1207 @@ { "address": "", "amount": { - "quantity": 204, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 147, + "quantity": 248, "unit": "lovelace" }, "derivation_path": [ - "29266", - "18891", - "16186", - "26424", - "16427", - "6323", - "5", - "17964", - "30164", - "20917", - "9595", - "22062", - "5863", - "19633", - "16740", - "23669", - "9738", - "15358", - "23831", - "2054", - "13987", - "11232", - "27509", - "14575", - "17528", - "21808" + "18982", + "24193", + "9966", + "16416", + "355", + "4374", + "14170", + "4563", + "10880", + "4321", + "26262", + "32747", + "31724", + "24005", + "13223", + "15647", + "7535", + "12603", + "15209", + "1559", + "28227", + "9480", + "10305" ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] - }, + } + ], + "script_validity": "valid", + "id": "db3c69336b5834d9633b18176c0d1a1421162b47736c29b6693701031c45747f", + "deposits_taken": [ { - "address": "", - "amount": { - "quantity": 38, - "unit": "lovelace" - }, - "derivation_path": [ - "19904", - "17276", - "24009", - "17344", - "25837", - "13828", - "9800", - "17035", - "17284", - "1133", - "18005", - "26656", - "15421", - "11970", - "20461", - "23001", - "13233", - "14224", - "6398", - "13844" - ], - "assets": [] + "quantity": 156, + "unit": "lovelace" + } + ], + "burn": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1e6z828nkwl9fh5uv2clf92cwcvp4049m6wz52snvahs25tlvxu0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ce84751e7677ca9bd38c563e92ab0ec30357d4bbd38545426cede0aa", + "assets": [ + { + "fingerprint": "asset1zvng3nhhl03n856lrzrv0m333k5xheexaszjc0", + "amount": { + "quantity": 3241, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1fk4c3mzyxsqttum4xcp3g8rgp5kx2jc7fu7ym5", + "amount": { + "quantity": 3329, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset12qzx8lfh4vx9tf8axuhzzskhsek2ul4axtz78s", + "amount": { + "quantity": 4012, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1jawu85n6e9yyx25dp293n7ys3ynm4xyh95rjw7", + "amount": { + "quantity": 8123, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh145f3k9dvf3yhq9n44tk3zs0g8htqfsw9rtcsh7vpvfvrjxhm5ql", + { + "active_from": 100 + } + ] + }, + "policy_id": "ad131b15ac4c49701675aaed1141e83dd604c1c51af10bf981625839", + "assets": [ + { + "fingerprint": "asset1nc9c7p5jd4fdkx9x973hpxx77u8hdlcs9y2usz", + "amount": { + "quantity": 7216, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1fmzsnkgvkn8s33pfxx69smyc3hyu6amdzlchht", + "amount": { + "quantity": 8601, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1dxwhagpu7nwnstufen8rj5r70acpwhkyenz3h6", + "amount": { + "quantity": 4035, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1cgkk2jjhfg3z3uf6m2ygcvhkjd0jxuxxqsnqxl", + "amount": { + "quantity": 7791, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1gpn6gvffsmmpqey8mza00e7ndvfv78dl2ggnpsdj204a75my5m8", + { + "active_from": 100 + } + ] + }, + "policy_id": "4067a4312986f6106487d8baf7e7d36b12cf1dbf521130c1b253ebdf", + "assets": [ + { + "fingerprint": "asset1zylss8pvrz83kk9nwtq8cwdkms72959hu2m5mk", + "amount": { + "quantity": 3326, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1qr9l599wn48e24k0ag6ju5xjeggpsdqpveur6q", + "amount": { + "quantity": 2505, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1xkehqnxvdvam86xgct06tzglpwwrqvh6twp4u3", + "amount": { + "quantity": 5009, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vfw6sgjd2lwar2rxr0hu6kg4zpk6uq8r5g463k5ece762utdk2t", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "625da8224d57ddd1a8661befcd5915106dae00e3a22ba8da99c67da5", + "assets": [ + { + "fingerprint": "asset1uuy30u2zy5m37tv2e57gs0kxd79w5fj4swy5ys", + "amount": { + "quantity": 1872, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1rp7qp0m48tx2yqs0cx5v7vhtmdvnyk4wncgtp9", + "amount": { + "quantity": 8519, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1ytf0xlcfq3s74ln8s4plugt73tm7rq0uj2mcyu", + "amount": { + "quantity": 4310, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fvsswmqc7flqmzw4gzlzjy5t46va3cuw9cawq743877yvpem98z", + { + "active_from": 100 + } + ] + }, + "policy_id": "4b21076c18f27e0d89d540be29128bae99d8e38e2e3ae07ab13fbc46", + "assets": [ + { + "fingerprint": "asset172ls9ywrvepjhddfeyhjecsvq66s3zmmn9rczz", + "amount": { + "quantity": 7960, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1jm0g5wnnm4exwgc2nn6ahuulduel7p8qm8dlzykzwu88kken0k9", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "96de8a3a73dd7267230a9cf5dbf39f6f33ff04e0d9dbf112c2770e7b", + "assets": [ + { + "fingerprint": "asset18lxznqja55456r360gmz5rmkgujkmhez9sknyw", + "amount": { + "quantity": 1421, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": "policy_vkh1rpwn83w4zcnudpnq55gd6a8rxqqqzaugj6uqcsthj6xac7qvyhx", + "policy_id": "185d33c5d51627c68660a510dd74e3300001778896b80c4177968ddc", + "assets": [ + { + "fingerprint": "asset18us3ha5dva4s4svft4yag4mmkfukhuqfdvya2k", + "amount": { + "quantity": 4695, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1ls9tqgruquhc37zaqacejl4xhwqgqgaywngnxk", + "amount": { + "quantity": 5260, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fjpr8efuhhtjfyuud603fyflxz5gtszk04dt8h420uflkykk2tr", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "4c8233e53cbdd724939c6e9f14913f30a885c0567d5ab3deaa7f13fb", + "assets": [ + { + "fingerprint": "asset1vnxneey566m4a9pymgdh3dcucswgawhrdfm93t", + "amount": { + "quantity": 1565, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": "policy_vkh1dk2vw6yutummug2qeuksr5ytqv6amh5ysezygqp4lyawz36z6ck", + "policy_id": "6d94c7689c5f37be2140cf2d01d08b0335ddde848644440035f93ae1", + "assets": [ + { + "fingerprint": "asset1ktyr5zsdtdkjjpx2l6ry8yc25xahg4ddshp5lh", + "amount": { + "quantity": 6368, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1jvh9fjj0l564rdmuerzc485582zndc6nlx7m3a5zgc2z6hyj6fx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "932e54ca4ffd3551b77cc8c58a9e943a8536e353f9bdb8f68246142d", + "assets": [ + { + "fingerprint": "asset1c6zp70f7vweupctxsvckuswd5xf2uvjz2xxcr8", + "amount": { + "quantity": 2478, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset15qpvnmllryj9e878rmfq22gmuq6maaxyguypsy", + "amount": { + "quantity": 6842, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1u9lz4eusa9une8024fp83hyl6tgg70uuqc3hgv", + "amount": { + "quantity": 7471, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1klachmlvga6np42yv6d9qcdeymhxl7cnn88hdt", + "amount": { + "quantity": 4882, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh18rz2dunlrvk84vn95dte7eg02ns8ysjlfq3avxvf9vfesh3ep7g", + { + "active_from": 100 + } + ] + }, + "policy_id": "38c4a6f27f1b2c7ab265a3579f650f54e072425f4823d619892b1398", + "assets": [ + { + "fingerprint": "asset1qxac3lktafstl0cf7gxen00tu9z38qzlqhh3dg", + "amount": { + "quantity": 1081, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset18qgdut7frujw8kc0m80vzcnpf098ya7d82fmhz", + "amount": { + "quantity": 5502, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset15m3sk7rruk36rrfnkc7eqms7cyrc79ulkknp66", + "amount": { + "quantity": 9906, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1g958y0u29cdqcw20fgf4ysnc2c08vwj9zu6pxtrfzfc5x5juzppsr6en8w" + }, + "fee": { + "quantity": 104, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "deregister_pool", + "pool_id": "pool1ekunena6zvfjyku7netn6rdqtxcnkkgpxugupqmcl09svd3mlcq", + "retirement_epoch": 16609 + } + ], + "deposits_returned": [ + { + "quantity": 29, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 39, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "quantity": 223, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 99, - "unit": "lovelace" - }, - "derivation_path": [ - "22195", - "20710", - "10168", - "25657", - "7006", - "15876", - "21971", - "22636", - "9887", - "31154", - "22310", - "6549", - "24627", - "18329", - "29443", - "20024", - "7863", - "2792", - "21263", - "23477", - "20783", - "18350", - "21106", - "18908", - "9451", - "11430", - "29513", - "581", - "3946", - "13819" - ], - "assets": [] + "quantity": 168, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 147, - "unit": "lovelace" - }, - "derivation_path": [ - "23296", - "28067", - "22377", - "11998", - "2054", - "10223", - "21583" - ], - "assets": [] + "quantity": 145, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 123, - "unit": "lovelace" - }, - "assets": [] + "quantity": 66, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 220, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 183, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 119, - "unit": "lovelace" - }, - "derivation_path": [ - "17475", - "22276", - "24278", - "7244", - "669", - "6626" - ], - "assets": [] + "quantity": 28, + "unit": "lovelace" }, { - "address": "", + "quantity": 111, + "unit": "lovelace" + }, + { + "quantity": 152, + "unit": "lovelace" + }, + { + "quantity": 233, + "unit": "lovelace" + }, + { + "quantity": 19, + "unit": "lovelace" + }, + { + "quantity": 243, + "unit": "lovelace" + }, + { + "quantity": 37, + "unit": "lovelace" + }, + { + "quantity": 167, + "unit": "lovelace" + }, + { + "quantity": 17, + "unit": "lovelace" + }, + { + "quantity": 7, + "unit": "lovelace" + }, + { + "quantity": 28, + "unit": "lovelace" + }, + { + "quantity": 38, + "unit": "lovelace" + }, + { + "quantity": 34, + "unit": "lovelace" + }, + { + "quantity": 200, + "unit": "lovelace" + }, + { + "quantity": 223, + "unit": "lovelace" + }, + { + "quantity": 120, + "unit": "lovelace" + }, + { + "quantity": 157, + "unit": "lovelace" + } + ], + "metadata": null, + "collateral": [ + { + "id": "6b56716b50595b58036b1e0032643b23783f526b153757095768ff19336f114b", + "index": 0 + }, + { + "address": "", + "id": "015e0f2e6f726970566a6477464f6fbb001e2e1f2f134b657c92156f8f445949", + "index": 4358, "amount": { - "quantity": 199, + "quantity": 231, "unit": "lovelace" }, "derivation_path": [ - "3507", - "3694", - "28567", - "31762", - "27276", - "10178", - "32766", - "26457", - "3204", - "22050", - "19981", - "17943", - "22084", - "17563", - "17572", - "19081", - "32153", - "6955", - "15668", - "11958", - "27946" + "23170", + "27684", + "21253", + "7278", + "17037", + "20751", + "11116", + "8802", + "16276", + "8228", + "27800", + "17148", + "16375", + "24744", + "12648", + "28483", + "20478", + "29552", + "10571", + "21434" ], "assets": [] }, + { + "id": "063b440901054b04030b285b175c043d86230327603857797c3d065552e98549", + "index": 0 + }, + { + "id": "56ba41397411003e25e94d533cef73065b25222f01522bc75d67567b1a633c27", + "index": 1 + }, + { + "id": "2ec1185ef24eaa3e13133b3512ef6d5a261f674fe25ad7475fd15b7f3f6b4dd1", + "index": 1 + }, { "address": "", + "id": "1e0a6f55444b6785380726055cfb782e631a9f3613713d8d6e2a1f37ef17641f", + "index": 19490, "amount": { - "quantity": 138, + "quantity": 229, "unit": "lovelace" }, "derivation_path": [ - "19909", - "5065", - "16761", - "8681", - "31831", - "21807", - "30275", - "26094", - "23793", - "9532", - "2227", - "14975", - "8953", - "3076", - "32694", - "25975", - "5101" + "13214", + "1290", + "15122", + "19513", + "14571", + "31948", + "21679", + "21282", + "21610", + "15298" ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 212, - "unit": "lovelace" - }, - "derivation_path": [ - "11538", - "30480", - "7056", - "9202", - "8201", - "19839", - "13824", - "13582", - "12717", - "30184", - "1967" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 25, + "asset_name": "546f6b656e42", + "quantity": 16, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 30, + "asset_name": "546f6b656e43", + "quantity": 19, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 75, + "asset_name": "546f6b656e43", + "quantity": 20, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 9, + "asset_name": "546f6b656e41", + "quantity": 17, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", + "id": "265d68115b1d21311b49640c21cb31431a591a154567844f465b078f27691d61", + "index": 8889, "amount": { - "quantity": 66, + "quantity": 93, "unit": "lovelace" }, + "derivation_path": [ + "24081", + "11362", + "12289", + "20954", + "22197", + "2678", + "25144", + "19757", + "6930", + "7101", + "6216", + "25969", + "9324", + "4973", + "18935", + "475", + "10958", + "26300", + "30150", + "28012", + "8560", + "19391", + "9724", + "10365", + "14614" + ], "assets": [] }, { "address": "", + "id": "5f7b4247530003391d5b2e56096b3f78c06761124e0f04d57e020a807c13210d", + "index": 3367, "amount": { - "quantity": 49, + "quantity": 100, "unit": "lovelace" }, - "assets": [] + "derivation_path": [ + "21149", + "4378", + "3739", + "15930", + "27903" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "address": "", + "id": "37663c15a12af9087a77315465de8d38440d774a6e31595c9b4c19620d431a7e", + "index": 20704, "amount": { - "quantity": 187, + "quantity": 113, "unit": "lovelace" }, + "derivation_path": [ + "21505", + "14392", + "12455", + "14697", + "18000", + "9951", + "11970", + "2337", + "11576" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "644b2a4b172a375d6421230614466c734366b5234921327c673a4a4f5d597af7", + "index": 0 + }, { "address": "", + "id": "4a652ba9172a079b7a217d236f4229307b56123522067d42f9693d47762f6b26", + "index": 27796, "amount": { - "quantity": 213, + "quantity": 70, "unit": "lovelace" }, "derivation_path": [ - "10237", - "26549", - "32535", - "12029", - "11878", - "2845", - "11732", - "12817", - "2680", - "12161", - "9440", - "12638", - "4412", - "32517", - "28473", - "5349", - "28082", - "22350", - "20023", - "2149", - "9389", - "9574", - "28712", - "13737", - "31087", - "5097", - "9919", - "18109", - "25512", - "10118" + "28237", + "5868", + "5578", + "1515", + "15895", + "13471", + "31927", + "10068", + "25806" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "id": "3162eae93e787f700966510101221270c41a5069755d095a0b67364f0936c25f", + "index": 1 + }, + { + "id": "cf06302c5a79014e24407114570f602f1d245f20773fa45e3a786e6e4960cd0b", + "index": 1 }, { "address": "", + "id": "3c47f7413243193d490651682e5f287b9eda1e493e274404b65b3b2a5f397d69", + "index": 15333, "amount": { - "quantity": 51, + "quantity": 29, "unit": "lovelace" }, + "derivation_path": [ + "7823", + "21932", + "16248", + "19644" + ], "assets": [] }, { "address": "", + "id": "31025968530874082e2dbe3c4d5f6c273ca352433c53350f6c630c158a2f2405", + "index": 26561, "amount": { - "quantity": 229, + "quantity": 37, "unit": "lovelace" }, + "derivation_path": [ + "24298", + "18177", + "31062", + "22758", + "27738", + "3240", + "9701", + "6499", + "19547", + "26308", + "25805", + "6011", + "8415", + "19029", + "23780", + "1806", + "32059", + "9642", + "5354", + "5066", + "21673", + "22989", + "26500", + "18036", + "18391", + "29327", + "24079", + "17809", + "19585", + "17035" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 2, + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "id": "55273a48016d5e1575680d32696b52427331766c5d654c4c162737273d5e4157", + "index": 5671, + "amount": { + "quantity": 190, + "unit": "lovelace" + }, + "derivation_path": [ + "9893", + "19191", + "2165", + "11458", + "28618", + "22266", + "19643", + "24894", + "14488", + "29638", + "17443", + "6999", + "4595", + "25338", + "10620" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 1, + "quantity": 47, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 145, - "unit": "lovelace" - }, - "assets": [ + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - } - ], - "script_validity": "invalid", - "id": "2f66525900227738758d3e12ef5a337e449c1a713012145c242035a852720269", - "deposits_taken": [ - { - "quantity": 12, - "unit": "lovelace" - }, - { - "quantity": 84, - "unit": "lovelace" - }, - { - "quantity": 160, - "unit": "lovelace" - }, - { - "quantity": 198, - "unit": "lovelace" - }, - { - "quantity": 46, - "unit": "lovelace" - }, - { - "quantity": 1, - "unit": "lovelace" - }, - { - "quantity": 30, - "unit": "lovelace" - }, - { - "quantity": 53, - "unit": "lovelace" - }, - { - "quantity": 14, - "unit": "lovelace" - }, - { - "quantity": 3, - "unit": "lovelace" }, { - "quantity": 104, - "unit": "lovelace" - }, - { - "quantity": 199, - "unit": "lovelace" - }, - { - "quantity": 128, - "unit": "lovelace" - }, - { - "quantity": 76, - "unit": "lovelace" - }, - { - "quantity": 47, - "unit": "lovelace" - }, - { - "quantity": 152, - "unit": "lovelace" + "id": "590c18531e412f21376e0a19d34c282a64261a32634c1f2343575cb442531d05", + "index": 0 }, { - "quantity": 98, - "unit": "lovelace" + "id": "53056e7b761d164d971c171b0365593a0e165fc84d6d29ce4b0629270b7b2b36", + "index": 1 }, { - "quantity": 153, - "unit": "lovelace" + "id": "c2ec00784a7a6153603c40ae080e1e221c3847570063281a7f6357a41b2b7012", + "index": 0 }, { - "quantity": 46, - "unit": "lovelace" + "id": "5c81ff7359f2612050627e567853384c45a85a43f03940722aec001a4d2f385e", + "index": 1 }, { - "quantity": 66, - "unit": "lovelace" + "address": "", + "id": "608039c065131a3c114a6854d35a362776bb3728a35e6e0d272f7c716c384013", + "index": 29141, + "amount": { + "quantity": 174, + "unit": "lovelace" + }, + "derivation_path": [ + "32148", + "25193", + "789", + "5646", + "18727", + "30165", + "13286", + "27219", + "4463", + "32688", + "7721", + "12666", + "13849", + "27975", + "12412", + "16049", + "31275", + "29756", + "13751", + "26633", + "17571", + "21213" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] } ], - "fee": { - "quantity": 106, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "genesis" - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1ylk43sz66ehf947q2324j768p9npyrlvgwrrrqhhulpjjqfsmke", - "retirement_epoch": 13753 - }, - { - "certificate_type": "register_pool", - "pool_owners": [], - "pool_pledge": { - "quantity": 116, - "unit": "lovelace" + "mint": { + "tokens": [ + { + "policy_script": "policy_vkh18t77kc0epwqek4juvptufcl9r7xlrrc8pcqy4a6xl3272au4dg5", + "policy_id": "3afdeb61f90b819b565c6057c4e3e51f8df18f070e004af746fc55e5", + "assets": [ + { + "fingerprint": "asset1xsvzhwlex2586zz5gk8ygl09fsz8qazu7ylw03", + "amount": { + "quantity": 605, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1a4dk40vsct7k7svnkdljdyrfncg0wk59ckwywd", + "amount": { + "quantity": 7567, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset15y4flt4z572vh9zh8u9v0rqd3du9xhqpc2c62q", + "amount": { + "quantity": 8110, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] }, - "pool_cost": { - "quantity": 137, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh109v6rw02l94sp7ksug5ky4q87wdae0s9mkczrc4ydtzy25tk9e4", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7959a1b9eaf96b00fad0e229625407f39bdcbe05ddb021e2a46ac445", + "assets": [ + { + "fingerprint": "asset1re8dam6795f8rq9yu60e5d9m306cm3ngk2qru6", + "amount": { + "quantity": 2784, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1wnwla7z0mwzth7at3pa7k9cgc8zfj97slxneka", + "amount": { + "quantity": 3323, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1aepwds5y89lfwxqvdjcscmcgers0cmcez7z3lp", + "amount": { + "quantity": 7906, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] }, - "pool_id": "pool1qcwaeqv95szfquzvg20mhytw3epq6kw2m5ux4sm9ye2kw0v2s3l", - "pool_margin": { - "quantity": 81.02, - "unit": "percent" - } - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "join_pool", - "pool": "pool1zhu882uygfal2lp7f7cfzem9y0luz47eqnmvd9f6l4tsz9ralp5", - "reward_account_path": [ - "3967", - "13241", - "2979", - "25935", - "13464" - ] - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1c693pyxjeedl5znpzll2c2jhuu7gg624v4mpjmj67zzr5txwrfe", - "retirement_epoch": 24615 - }, - { - "certificate_type": "join_pool", - "pool": "pool1r6l7vg5e884vq87vtkk5h076ydv3d47glraqqf795sp62ev4ltw", - "reward_account_path": [ - "5490", - "7047", - "1945", - "17489", - "17786" - ] - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1w7eptngvy685dp6cglc6f7jh00a0dzhhsfw3uk4y7msfn3fqay3sqnc90p", - "ed25519_pk1phrd5n2gk2pmmyjz633lpxlncenm96946th5sf2gpvvy2x3k0s7qx7l2re", - "ed25519_pk1gwkx0p5szzw26rm97eq483glfu6nj989ek0s5e0jl06s3t4737xq5mxgwa", - "ed25519_pk14dwgkrdnytfeng7ppjz22v8qd8y0wesn0n4tvgkc5p49c2et5kaq655g65", - "ed25519_pk13kal3z8364xtclktns0krav2ugfps7nexq7v9dw2xnfhk02smk8sp5p8ys", - "ed25519_pk1vxlwlq4c0pzn4dv2jg0f543ffm08qytmm4jvm5s6chuc3gq3gzrsvd6t2p", - "ed25519_pk1ev386e5w5rzqd9pj83kqscgf60lh0ywy3r3w6cseje7uprayyunsyyuszz", - "ed25519_pk1f2qrw23fdztpcldkhg0ujaxvldre75uszc5s4e68h32jueav6r7svu8l8y", - "ed25519_pk1gpm9t4wr5lm0sfvzpqv96732nsqlrpezyu7y0daw2aqk9fh67f5stdf9va", - "ed25519_pk1uwa7cvthe4x9xt52ea6guhgtneqqeckdklfx455zp0dqg4hqxh7q3gavs9", - "ed25519_pk1tu9cc8ktdwpgh9ht89s9tzq7nesh3cywvpzlj08xkwadjyf35q6q4j0ekf", - "ed25519_pk1q29nevg54m5tqwek4s5v48mz9ttpuu2vjll9mkxl7sd9l2ufjflq8kyw2l", - "ed25519_pk1s7rhuywhdd9cfgtp4arhg4ccj2m8mva4gy8ejmne76lcc8w453zq0e0wek", - "ed25519_pk14ea93dnh08s7exl436hjzf0j4geext2n06ykex9ml9akgfmfyxuqqzj279", - "ed25519_pk1rcq8pg333tr4t8s6lf0qxfcgjgqsx8rta73crllt4zazqu7mleuq2tdy70", - "ed25519_pk1p8jfykxedhgdzwyl7ra8q88tp2xr5svyvndkjgfshusu6j27rf4sdfw4rg", - "ed25519_pk1khcltufwlenjl4d7tea83ju9e9lt6j95uu6egjgn7p8e7z8xx39s3qa5ap", - "ed25519_pk1lmmx5masywrye7mmpdzexlnsnwskmkpq702melnnsx4rp533nu8skz20r3" - ], - "pool_pledge": { - "quantity": 71, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1z496rz0cq0kefk6d5jvaxltuu5x32tkmd33hmg7utyunq2f8lcx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "154ba189f803ed94db4da499d37d7ce50d152edb6c637da3dc593930", + "assets": [ + { + "fingerprint": "asset1u9snmx86mqm3p4agtshdljvwxp87d3vf7tg3qg", + "amount": { + "quantity": 3571, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1tt73dkcmzvkjxqyukxtrmfgau43g2248355562", + "amount": { + "quantity": 3786, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1dlhnpzcgsxmzhpm5a5sc65kd0zl0zp596dlx5v", + "amount": { + "quantity": 2584, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] }, - "pool_cost": { - "quantity": 200, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1dcflm4l8gnrlpjl92p3cqhrwm6hmea5pkt5jxmt7kg8nkhnxu0x", + { + "active_from": 100 + } + ] + }, + "policy_id": "6e13fdd7e744c7f0cbe55063805c6edeafbcf681b2e9236d7eb20f3b", + "assets": [ + { + "fingerprint": "asset14pldfk94k29ad9fvv7ld5tujr3zxr3hkvnsxjl", + "amount": { + "quantity": 3273, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1mf6tan04ygtwk0datfe465d4kmqe7t3mqjfq5r", + "amount": { + "quantity": 5765, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1w0pn9xepqhnm2e6k3qqaqzx4979zwpz5lxqnmh", + "amount": { + "quantity": 3888, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] }, - "pool_id": "pool1ncnd96ps4ycy3rs6prqx5q3m2kdk588dgysurp57pryajxdn88f", - "pool_margin": { - "quantity": 93.54, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1q8xc3l0xlgnkqa7ys5ewveqf2l8jflrnx4zqveezgf8zz049qwu", - "retirement_epoch": 18008 - }, - { - "certificate_type": "register_reward_account_external", - "reward_account": "" - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1dg40wt3mtgpfes7rx489yxxxj5hje6t36zaf446ztkvnjvrs4sg", - "retirement_epoch": 1329 - }, - { - "certificate_type": "genesis" - } - ], - "deposits_returned": [ - { - "quantity": 219, - "unit": "lovelace" - }, - { - "quantity": 63, - "unit": "lovelace" - }, - { - "quantity": 157, - "unit": "lovelace" - }, - { - "quantity": 127, - "unit": "lovelace" - }, - { - "quantity": 153, - "unit": "lovelace" - }, - { - "quantity": 13, - "unit": "lovelace" - }, - { - "quantity": 40, - "unit": "lovelace" - }, - { - "quantity": 167, - "unit": "lovelace" - }, - { - "quantity": 86, - "unit": "lovelace" - }, - { - "quantity": 76, - "unit": "lovelace" - }, - { - "quantity": 220, - "unit": "lovelace" - }, - { - "quantity": 130, - "unit": "lovelace" - }, - { - "quantity": 147, - "unit": "lovelace" - }, - { - "quantity": 81, - "unit": "lovelace" - }, - { - "quantity": 104, - "unit": "lovelace" - }, - { - "quantity": 2, - "unit": "lovelace" - }, - { - "quantity": 84, - "unit": "lovelace" - }, - { - "quantity": 209, - "unit": "lovelace" - }, - { - "quantity": 90, - "unit": "lovelace" - }, - { - "quantity": 53, - "unit": "lovelace" - }, - { - "quantity": 39, - "unit": "lovelace" - }, - { - "quantity": 206, - "unit": "lovelace" - }, - { - "quantity": 31, - "unit": "lovelace" - } - ], - "metadata": { - "18": { - "list": [ - { - "bytes": "333d7d4f2d6cce6f234b5c45227b57680d857d1a28377ccb3f6943176f39693d2f5a5200bffa92371b1e4d100f29f91610" - }, - { - "string": "" + { + "policy_script": "policy_vkh1ylra8534rl73s4r3h4jn07vhxyqqe3yr06e0uz50vwgrzjwc8ue", + "policy_id": "27c7d3d2351ffd185471bd6537f99731000cc4837eb2fe0a8f639031", + "assets": [ + { + "fingerprint": "asset15l96usgxscqzefn972n4mzf02rv3j5vkajram0", + "amount": { + "quantity": 1556, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset176tq73clck5neg30h3h73t8u9xn8neuvdnv47g", + "amount": { + "quantity": 6304, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1xrvsjvjxr7amrapf9lrykqal5fud2adae3cdal", + "amount": { + "quantity": 948, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1rm6xfrsncwr5gzlpyvt09v2sryemwnx69hxahsvuq3zykzvl3s6", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "string": "󽅧󿿅􃷺" - } - ] - } - }, - "collateral": [ - { - "id": "33485a5f08b01c3538670ae313103769525970652d29add402652722c06e1061", - "index": 0 - }, - { - "address": "", - "id": "874b69d55f2b19bf6372decf426e6d651ac134561107f3235b767e706b077f70", - "index": 21325, - "amount": { - "quantity": 92, - "unit": "lovelace" + "policy_id": "1ef4648e13c387440be12316f2b1501933b74cda2dcddbc19c04444b", + "assets": [ + { + "fingerprint": "asset1jcfux2ehvx3a8kpa6z36ze57ezax8kt7m5xhk3", + "amount": { + "quantity": 5799, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset18ss4veyh8uqzkg6atwwmqdn279amjdqcn45m07", + "amount": { + "quantity": 8631, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1a9pygneg0me50ukz3dml8umazjal43n3vd73gm", + "amount": { + "quantity": 420, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] }, - "derivation_path": [ - "15936", - "1475", - "29179", - "27512", - "11611", - "26887", - "361", - "9946", - "304", - "29146", - "14830", - "6988", - "28980", - "24325", - "9617", - "19330", - "15618", - "18131", - "12470", - "21239", - "27935", - "13468", - "29046", - "28333", - "22797", - "11673", - "7861", - "5477", - "6282", - "580", - "21482" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "id": "f316f96d717ab87a2620d155417f3f1e9b1e4c512c57580e212a12734d880271", - "index": 0 - }, - { - "id": "1a57610e1d5e540230295f79558b5a586254c360537cd0791b5c044e5b637c64", - "index": 1 - }, - { - "id": "660426891e274ec14bdb5b786b0c286524380102d3e055af320ce950237e135c", - "index": 0 - } - ], - "assets_burned": { - "token_map": [ { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "policy_scripts": [ + "policy_script": { + "all": [ + "policy_vkh162zhde7syz8x2flufj30hnhhm245nnw0m2xxw66qayfrcrrdndy", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d28576e7d0208e6527fc4ca2fbcef7daab49cdcfda8c676b40e9123c", + "assets": [ + { + "fingerprint": "asset1gt2y46fz0mapzef5x4hcnctah3ukrlksh0cckz", + "amount": { + "quantity": 8885, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, { "policy_script": { "all": [ - "stake_shared_vkh18fdv6tf0nsk3t4zu55z3de8tl2cmrmzha4jtgrfvvmjhwvw55au", + "policy_vkh1l5dxzqc56u5llhdqq5cczdmpgswvegsvwuxqv2wnnfqkzjxsjrf", { "active_from": 100 }, @@ -1624,1045 +1829,1398 @@ } ] }, - "policy_id": "9a16b9eef8117681e18f619e2c651a901ca303ce9cf94f05809f9d95" - } - ], - "wallet_policy_key_hash": "policy_vk1qpt5vmvv9suuw3eyp3lhmvqxfcprc0pdjajkx8c2d32j7dfxvvfsx5khr3" - } - }, - { - "withdrawals": [ - { - "context": "ours", - "amount": { - "quantity": 136, - "unit": "lovelace" + "policy_id": "fd1a610314d729ffdda00531813761441ccca20c770c0629d39a4161", + "assets": [ + { + "fingerprint": "asset1hx52ttdvwsqyewsxxuaj72wa744lc3c6xjw3tz", + "amount": { + "quantity": 8043, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 246, - "unit": "lovelace" + { + "policy_script": "policy_vkh1eez9s7gdqzph8fcuz6p2n2al0tay5rg6drcc2zc7pa5txwftq0c", + "policy_id": "ce4458790d008373a71c1682a9abbf7afa4a0d1a68f1850b1e0f68b3", + "assets": [ + { + "fingerprint": "asset1wwpepqrt025hdmd82xn5vl68pchlvpkgj0welf", + "amount": { + "quantity": 4966, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset15jpuwfqz0lg2ad4575tmmjvds8wfjsagn3nwar", + "amount": { + "quantity": 1815, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1fu4wfrwtzll8jue8dt2ju6tkv5kp0hvhjrjkgq", + "amount": { + "quantity": 727, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 41, - "unit": "lovelace" + { + "policy_script": "policy_vkh1gr4vvzgkjgwghyfzx0fffmsamgnpakxydl3tzusyw5z4qv9hnrt", + "policy_id": "40eac60916921c8b912233d294ee1dda261ed8c46fe2b17204750550", + "assets": [ + { + "fingerprint": "asset1md43gyldkwdgumtpfwr4k9zvel6rskdvq68z9s", + "amount": { + "quantity": 9301, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset15s757y9lm4luz8wxd026rera2ptxarwscyjfnn", + "amount": { + "quantity": 7379, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset10q2flwzxaq0pry0z6ls8s8235y4fnwwsxqgu78", + "amount": { + "quantity": 8595, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 67, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh19x58wj73n4wjn8xnrmecv96k36xl2f3h2v8raadytuhczz7gemp", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "29a8774bd19d5d299cd31ef38617568e8df52637530e3ef5a45f2f81", + "assets": [ + { + "fingerprint": "asset1ty7qqlm36fzjxdx3yzku79jlksf8tq2a02yure", + "amount": { + "quantity": 8177, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 40, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1dchua8gyx869wtkcy4yudswvml52e09gjudrufaf5487kktjs37", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "6e2fce9d0431f4572ed82549c6c1ccdfe8acbca8971a3e27a9a54feb", + "assets": [ + { + "fingerprint": "asset1t9vcu36vu0sklhfy6pcem04ttv9c9q34f0mah9", + "amount": { + "quantity": 5274, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 123, - "unit": "lovelace" + { + "policy_script": "policy_vkh1aec6p7jhdsv9wta87c8zpmgqzvm62exj3efjctk5j26pv8pjdy8", + "policy_id": "ee71a0fa576c18572fa7f60e20ed001337a564d28e532c2ed492b416", + "assets": [ + { + "fingerprint": "asset1caq8f90vny9mz37jjpcz0sfwjwn0kawtyf58kp", + "amount": { + "quantity": 4316, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1lcrjq8twp02xkuyfszjq3s5gfxyfj3haxyddxu", + "amount": { + "quantity": 6377, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1yazvwpzqlgh6j064xmsturl27mpdzdv5975sum", + "amount": { + "quantity": 2169, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1fens63ul3ak92xupysdurhxajhky7zzxre0h7e", + "amount": { + "quantity": 3040, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] }, - "stake_address": "" - } - ], - "inputs": [ + { + "policy_script": "policy_vkh1rr8lkhj9aptpw3crqg29hazl3te02payej2u4440eae558vaw2g", + "policy_id": "18cffb5e45e85617470302145bf45f8af2f507a4cc95cad6afcf734a", + "assets": [ + { + "fingerprint": "asset1c90yfkffq5473fg5958ylcmg9qftwc8dcsn2ch", + "amount": { + "quantity": 6262, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset17pwzqr52vzqsqedg9ky4cyct6e86hujkqzyntj", + "amount": { + "quantity": 5091, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12vfgf267kykkyj6hlcd7cptjnxgydgce7u72j7my768xynkrj3v", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "531284ab5eb12d624b57fe1bec0572999046a319f73ca97b64f68e62", + "assets": [ + { + "fingerprint": "asset13ugf6k9wvqkrv38d9wmvjm4xj4l60pv4r6mg7e", + "amount": { + "quantity": 2569, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": "policy_vkh1a5lj86j920ccmkywpyvs0ww6kuh362qz2dpqcmsns5r8g59mcyf", + "policy_id": "ed3f23ea4553f18dd88e091907b9dab72f1d280253420c6e13850674", + "assets": [ + { + "fingerprint": "asset1d7pfldw5z2c8x2yc02u4awk4m8dam42h69hhep", + "amount": { + "quantity": 6497, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset13acalm498r7vlsv204dmp7t9nayqjlrwd474hc", + "amount": { + "quantity": 3192, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1numuhv0pw4ucugarckt6wfcm556cqt0ypwj2quzwh42kyt0lwxx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "9f37cbb1e175798e23a3c597a7271ba535802de40ba4a0704ebd5562", + "assets": [ + { + "fingerprint": "asset1yquffgfcfhs2ldlwyfjuzu8fenjc9zt0422mtv", + "amount": { + "quantity": 3025, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset195q3uuupfz2pumu5rhfhcacpspfqt993kh4afk", + "amount": { + "quantity": 405, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16shntpjl0aq95ra2c5zfduaveyl7qwr9r64yedugrjzj59f5373", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d42f35865f7f405a0faac50496f3acc93fe038651eaa4cb7881c852a", + "assets": [ + { + "fingerprint": "asset1z8qh47jkhz3crvazjrmlpryrslgtpjfpdnzw4z", + "amount": { + "quantity": 4511, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1ngcg62wgt2ud9k0294ursft0w5fvnyqqd7jhuv", + "amount": { + "quantity": 1434, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1020y2kff7ghapvf0js83kstyea8vn62nsh8w4074hc92xkfhf50", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7a9e455929f22fd0b12f940f1b4164cf4ec9e95385ceeabfd5be0aa3", + "assets": [ + { + "fingerprint": "asset16c53skshlys34qfrfzr9cm6s8mj0ld3y0axtfd", + "amount": { + "quantity": 460, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": "policy_vkh1uypxsleytpn2tw3nnrlw2wdzdh2y9705ht8zt0dhur2h6d4chns", + "policy_id": "e102687f245866a5ba3398fee539a26dd442f9f4bace25bdb7e0d57d", + "assets": [ + { + "fingerprint": "asset1krmnup9fe65wtaehy62v7rmwc479xc5lg4l26q", + "amount": { + "quantity": 9819, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset17z8s2ue5nzrpnvqudfe9e4qw0d0z6ny0qmuh5y", + "amount": { + "quantity": 9321, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ggnemmxcldwut9s9unqrp2969z805rwkgj9qj9nu6xnpxzmwhw2", + { + "active_from": 100 + } + ] + }, + "policy_id": "42279decd8fb5dc59605e4c030a8ba288efa0dd6448a09167cd1a613", + "assets": [ + { + "fingerprint": "asset15zsrqs3m66tqccjrv465kuy54dhta5jr2d9x9m", + "amount": { + "quantity": 6984, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1cwpjnanck6eky4394h2p5crmg3vzxs8th5wwt9", + "amount": { + "quantity": 4293, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1eufm48xj2cgkjrszxwwwusx0ycewnxwwk8744u2u3ctmzkkw5cv", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "cf13ba9cd25611690e02339cee40cf2632e999ceb1fd5af15c8e17b1", + "assets": [ + { + "fingerprint": "asset1kzfwve9m2fnwrw7wq8haw6vn4lkt2v6kmgh056", + "amount": { + "quantity": 919, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset12ffzap5m732fesn98vaxcmgzq9l4q86ptsa98d", + "amount": { + "quantity": 639, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1nncr9e9xw37rj9tpd557eju84rrzqvaceejmj0", + "amount": { + "quantity": 743, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1vrmshtqx8lacfs3e20rum2tl3s46x2w3nlym8mj3emn7ke3yw8q", + "policy_id": "60f70bac063ffb84c23953c7cda97f8c2ba329d19fc9b3ee51cee7eb", + "assets": [ + { + "fingerprint": "asset1htzfdc5hspydtl40sgeam6sh9ttqnuqdgsxa4p", + "amount": { + "quantity": 2037, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset12u0n976994hhrrqjnmad0ymy9308jlzvqnnd68", + "amount": { + "quantity": 2280, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1d2x6qngrqj4ppvksyf5c6mzc6lup5usvphhu40", + "amount": { + "quantity": 1656, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1vut3zkttuuphzg3gf5fnfqnux3zqkefhzezp5xfemu44s8nhwzjs8wj2lg" + } + }, + { + "withdrawals": [ { - "address": "", - "id": "35182f75728346120e0c3a390f7241603951761803cdd4770c0d737c6f014472", - "index": 5702, "amount": { - "quantity": 138, + "quantity": 240, "unit": "lovelace" }, - "derivation_path": [ - "22685", - "2381", - "27609", - "2993", - "13332", - "14733", - "25548", - "2627", - "11063", - "3098", - "28858", - "17864", - "19061", - "13840", - "14852" - ], - "assets": [] - }, - { - "id": "76177f3f01e54d075b6379320b30544bd549dc3c4029790403995c262761682d", - "index": 0 + "stake_address": "" }, { - "address": "", - "id": "1379f58d657510454e60742d6d14394b6a310a0c625b0129c7515829034a3462", - "index": 22542, + "context": "ours", "amount": { - "quantity": 188, + "quantity": 251, "unit": "lovelace" }, - "derivation_path": [ - "29037", - "26513", - "23565", - "2255", - "20691" - ], - "assets": [] - }, - { - "id": "394e266b6e7c55552d0a554179af29767ce064246515e9143a7f39410f5537bc", - "index": 1 - }, - { - "id": "48384e255e391d5612501d3e59465e0249240c234a7d447e442811608a166824", - "index": 1 + "stake_address": "" }, { - "id": "055d58487d6d7a3427343d2e693c5c2635085af25479195e400f86386d505353", - "index": 0 + "context": "ours", + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "4e339c677eb4447b395c74e548340e2c4777102e3b28582872313c296c2142b7", - "index": 1 - }, + "amount": { + "quantity": 230, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ { "address": "", - "id": "2d3a702e24fea87f52393909783e1d580c3f6f7e4b0d43915d0154737c412ee0", - "index": 25264, + "id": "33181f7d376813603f267ccc375c9e585b60e837772c0644540ba03f432909ef", + "index": 27925, "amount": { - "quantity": 10, + "quantity": 88, "unit": "lovelace" }, "derivation_path": [ - "26674", - "21665", - "16726", - "23887", - "31772", - "21828", - "24657", - "5422", - "14592" + "24311", + "2679", + "12598" ], "assets": [] }, - { - "id": "515dc13b2e23092fab454b3bfed8320751067c355416a0252f592a44d82c5a85", - "index": 1 - }, { "address": "", - "id": "1a657f5390944c5c583c422f520d9544763d3142b64a3600551834592a3a285c", - "index": 9775, + "id": "38151e7168805477183d022a2b0d2d5b613d02407f652730192b2514683d46f5", + "index": 28872, "amount": { - "quantity": 198, + "quantity": 116, "unit": "lovelace" }, "derivation_path": [ - "32239", - "17658", - "2691", - "633", - "27245", - "9190", - "5854", - "32011", - "9966", - "14058", - "22088", - "31607", - "20563", - "9547", - "23516", - "8873", - "22968", - "29340", - "17550" + "15283", + "27327", + "15558", + "19777", + "3373", + "16071", + "26379", + "29969", + "9460", + "32618", + "12195", + "30805", + "16232", + "27117", + "28829", + "26761", + "16113" ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "assets": [] }, { - "id": "4020327d5126087811304e7617926654c5292f402b4b1b5a441729433e7d14ba", - "index": 0 + "id": "0740143b690050755623ac710316412240762a603c56130e2c633e2c593f3147", + "index": 1 }, { "address": "", - "id": "0d28461d05ed6f78347b34e50c6061081f9d36684b5613186d371b6080d11632", - "index": 32304, + "id": "8351380d3cde536651fb7717485d03457e193046632a2f2c661d42685821044a", + "index": 7030, "amount": { - "quantity": 175, + "quantity": 82, "unit": "lovelace" }, "derivation_path": [ - "8551", - "30684", - "19287", - "10993", - "13231", - "31373", - "19753", - "15691", - "30727", - "3570", - "16388", - "98", - "20809", - "5860", - "29069", - "26613", - "27748", - "837", - "2296", - "27642", - "1068", - "3889", - "24400", - "6614", - "22001", - "6236", - "20219", - "6194", - "15604" + "14287", + "6052", + "15878", + "17093", + "26188", + "8686", + "5283", + "16114" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 7, + "asset_name": "546f6b656e41", + "quantity": 48, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "ac440a1e01782234e7113d540b6d3ccd0ecb85ed30bd754265f3782d2c061c28", - "index": 24316, + "id": "1b6428441d0f1815bb8b29e557c32148032a177c1de652eb1a777a2f66be1c6e", + "index": 31353, "amount": { - "quantity": 209, + "quantity": 97, "unit": "lovelace" }, "derivation_path": [ - "23360", - "28003", - "20086", - "6334", - "32662", - "16326", - "28741", - "7652", - "31901", - "1554", - "3993", - "25447", - "16437", - "3157", - "15187", - "6520", - "25619" + "8081", + "9394", + "4943" ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 15, + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 56, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 38, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 20, + "quantity": 9, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, + "quantity": 12, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "12592b387d82584cc03c1b165f6ddf5905096200716c0c0aaea062301fa24ec1", + "index": 0 + }, { "address": "", - "id": "4372333b4b2d4afc6e78780a48143156292b64069a0b4f684f78ae466d425d72", - "index": 30493, + "id": "83701c6d3d5477e1306354462563c51779207a611026e73119d1057e05626769", + "index": 23598, "amount": { - "quantity": 51, + "quantity": 255, "unit": "lovelace" }, "derivation_path": [ - "4884", - "26647", - "19276", - "28184", - "29399", - "25983", - "2363", - "27536", - "25313", - "2891", - "24547", - "6364", - "1602", - "12983", - "4006", - "7674", - "7206", - "20332", - "10865", - "23925", - "2802", - "21823", - "7130" + "30674", + "16704", + "2093", + "2105", + "10942", + "10987", + "276", + "29188", + "27918", + "27342", + "12601", + "10210", + "24606", + "4455", + "11562" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 56, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e43", - "quantity": 41, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "id": "63263a9b571b3b500989701d2f4e5a1c545765ae7f4c641f020e501ebe6e9918", + "index": 17284, + "amount": { + "quantity": 169, + "unit": "lovelace" + }, + "derivation_path": [ + "1131", + "7445", + "10606", + "11461", + "9585", + "21980", + "24804", + "26986", + "1781", + "7638", + "31599", + "10806" + ], + "assets": [ { "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 38, + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "2c39026c002f04ce140d74125c075d2c4033795a421a5129422a57275d521719", - "index": 26919, + "id": "240028217f1fb6332713230865afbf7d743866514979746e044d7c0c477b1464", + "index": 19614, "amount": { - "quantity": 28, + "quantity": 169, "unit": "lovelace" }, "derivation_path": [ - "25842", - "8430", - "11149", - "5553", - "26834", - "18099", - "29309", - "6004", - "7944", - "31569", - "8702", - "937", - "23998", - "3876", - "20497", - "17425", - "16092", - "15300", - "31093", - "24744", - "26586", - "5399" + "30108", + "18859", + "704", + "9657", + "21417", + "20207", + "7123", + "11650", + "19892", + "22058", + "8847", + "17323", + "4825", + "5718", + "26777", + "12695", + "18503", + "13128", + "3425", + "5080", + "6183", + "2059", + "994", + "6874", + "28304", + "31542", + "5036" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", "quantity": 26, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 13, + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 35, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 30, + "asset_name": "546f6b656e44", + "quantity": 14, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 33, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 16, + "asset_name": "546f6b656e41", + "quantity": 21, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 17, + "asset_name": "546f6b656e43", + "quantity": 48, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "address": "", - "id": "73355e243e7a7d1e32b3336d3259060b756e342530363104407c5f3f58381315", - "index": 18349, - "amount": { - "quantity": 212, - "unit": "lovelace" - }, - "derivation_path": [ - "24404", - "5309", - "21585", - "21603", - "32301", - "30400", - "24793", - "29509", - "17637", - "18736", - "10264", - "5334" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "id": "4a3a3b0f76300a1ec3d3698664501a0d13170a54440d0a0ad7721005176f5053", + "index": 0 }, { "address": "", - "id": "3c1ca852470b3de11e4a4632c41b7427f02d7e49233e7c2f2b0bdee55c473a58", - "index": 1814, + "id": "1a5f6c8c6d590218e5f7a03c5205d42d720a59de1e6c174a570b7dfb784f523c", + "index": 9327, "amount": { - "quantity": 35, + "quantity": 50, "unit": "lovelace" }, "derivation_path": [ - "28332", - "17327", - "6247", - "3428", - "5769", - "9798", - "22784", - "3348", - "291", - "17083", - "3293", - "1457", - "752", - "2569", - "16842", - "4799", - "15842", - "18493", - "15986" + "21809", + "4362", + "1088", + "8920", + "30177", + "23333", + "31922", + "15690", + "1176", + "21582" ], "assets": [] }, + { + "id": "51052d302678ff510756600c5243002932036c01155c75276d3a61b7544d2076", + "index": 1 + }, { "address": "", - "id": "7b6937bfb01f0dd307f9a56f12447842295a20230e5bb8115bc2221d14683e6e", - "index": 29592, + "id": "62436b59741cfe152a14462845a057672a5452160e066e091e59958f4ceb4156", + "index": 23897, "amount": { - "quantity": 44, + "quantity": 117, "unit": "lovelace" }, "derivation_path": [ - "19876", - "25159", - "14482", - "2578", - "29377", - "30203", - "24829", - "31869", - "28160", - "22384", - "6700", - "3278", - "16811", - "8611", - "17904", - "6480" + "12150", + "371", + "11077", + "9641", + "23785", + "13965", + "3045", + "27616", + "9220" ], "assets": [] - } - ], - "assets_minted": { - "token_map": [ - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 42, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 40, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "addr_shared_vkh1ccy2mq56zfnkpexy4jgk0fe92gmhhj02wrn4c0z9vf092rwzfx0", - { - "active_from": 100 - } - ] - }, - "policy_id": "986e6cffd390a0e81a508e754d0069ee48f38565a5bb36745de007a2" - } - ], - "wallet_policy_key_hash": "policy_vkh1guaycgtxqsx5pgjggqak2wtkf4qk7s2ffa3jqqq22c99jyscl7r" - }, - "outputs": [ + }, { "address": "", + "id": "d7479c0c5343167bb506211c01026a190e0e1f46073c1113b665ea680e59747e", + "index": 13852, "amount": { - "quantity": 18, + "quantity": 191, "unit": "lovelace" }, "derivation_path": [ - "6184", - "342", - "26918", - "3599", - "6219", - "31140", - "4969", - "25627", - "18069", - "4047", - "3620", - "13269", - "14434", - "32416", - "15372", - "12645", - "16941", - "23754", - "16285", - "17604" + "20803", + "1641", + "30906", + "11131", + "31006", + "32151" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 30, + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 18, + "asset_name": "546f6b656e43", + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 20, + "quantity": 27, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e42", - "quantity": 38, + "quantity": 5, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 19, + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 18, + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 42, + "quantity": 4, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 2, + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "656c765a3a4c57445c20511c428f515847bd7f726f1d1c66cd610349d1de7538", + "index": 14229, "amount": { - "quantity": 51, - "unit": "lovelace" - }, - "derivation_path": [ - "30254", - "20810", - "30014", - "30699", - "18290", - "17732", - "20682", - "25772", - "3582", - "28037", - "20646", - "16898", - "9351", - "23429", - "11976", - "7685", - "27131", - "22884", - "3670", - "31342", - "13674", - "7067" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 84, + "quantity": 52, "unit": "lovelace" }, "derivation_path": [ - "21241", - "24208", - "21236", - "11137", - "32189", - "6568", - "19350", - "24313", - "8785", - "21313", - "22535", - "13731" + "31391", + "24628", + "25644", + "13847", + "9028", + "20333", + "20456", + "6600", + "25083", + "29163", + "25764", + "12061", + "31122", + "20453" ], "assets": [] }, { "address": "", + "id": "63546b5722087d12707211325819050d6e1752c50646405e7151792e1c611863", + "index": 25177, "amount": { - "quantity": 200, + "quantity": 238, "unit": "lovelace" }, "derivation_path": [ - "5082", - "2728", - "25220", - "21807", - "9555", - "11750", - "22612", - "28100", - "32688", - "18427", - "12832", - "8095", - "4608", - "20268", - "28568", - "16522", - "10027", - "4356", - "27513", - "12877", - "23907", - "3378", - "17999", - "3526", - "14489", - "30219", - "5775", - "13370", - "15829", - "547" + "15799", + "24174", + "10952", + "27466", + "4091", + "6892", + "28151", + "11241", + "27147", + "4200", + "20812", + "16825", + "17555", + "25888", + "8566", + "1117", + "26332", + "3903", + "15125", + "7636", + "24333", + "12379", + "26188", + "25741", + "31988", + "19268", + "16943" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 217, - "unit": "lovelace" - }, - "derivation_path": [ - "15526", - "22603", - "12766", - "18475", - "2013", - "3431", - "8605", - "15010", - "1367", - "26760", - "55", - "17279", - "13708", - "28754", - "3542", - "30125", - "24766", - "2363", - "16653" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 14, - "unit": "lovelace" - }, - "assets": [ + "asset_name": "546f6b656e43", + "quantity": 35, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 30, + "asset_name": "546f6b656e43", + "quantity": 13, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 4, + "asset_name": "546f6b656e43", + "quantity": 16, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 10, + "asset_name": "546f6b656e43", + "quantity": 29, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "835ab9441f31072aaceb00596a1b3f6a2a57161f2846c92d511088e9bf1d5046", + "index": 31664, "amount": { - "quantity": 199, + "quantity": 169, "unit": "lovelace" }, "derivation_path": [ - "2745", - "8642", - "19532", - "18", - "814", - "28936", - "16924", - "23840", - "9566", - "20868", - "12256", - "1452" + "25563", + "14459", + "1725", + "22630", + "3438", + "7324" ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 211, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 21, - "unit": "lovelace" - }, "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 24, + "asset_name": "546f6b656e42", + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 26, + "quantity": 29, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 32, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 19, + "asset_name": "546f6b656e43", + "quantity": 55, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 26, + "asset_name": "546f6b656e44", + "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 44, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 10, + "asset_name": "546f6b656e42", + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 26, + "asset_name": "546f6b656e43", + "quantity": 3, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 31, + "quantity": 35, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "77c16a0c1d1b29392e457c2d6127036c7a2c1205272696e201601b5f6f214d96", + "index": 9315, "amount": { - "quantity": 64, + "quantity": 80, "unit": "lovelace" }, "derivation_path": [ - "31687", - "16033", - "12735", - "566", - "28806", - "8526", - "19755", - "15277", - "26826" + "8797", + "3958", + "26364" + ], + "assets": [] + }, + { + "address": "", + "id": "2edeb165587f740f09f32614ce6b4f1f656d245637206a192b0a5fd12427441c", + "index": 5095, + "amount": { + "quantity": 176, + "unit": "lovelace" + }, + "derivation_path": [ + "21238", + "16684", + "24887", + "21077", + "3066", + "7232", + "32353", + "22447", + "12369", + "17745", + "18403", + "28628", + "25296", + "25573", + "26793", + "18906", + "16104", + "11346", + "3417", + "27056", + "29722", + "12518", + "17461", + "5538", + "29723", + "3927" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 25, + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "id": "2e47705d4c371d0865862034780950855f2b5e3d2709e16cda42513a4f2b1f42", + "index": 18867, + "amount": { + "quantity": 168, + "unit": "lovelace" + }, + "derivation_path": [ + "1964", + "2738", + "14696", + "25584", + "25201", + "30795", + "1395", + "9556", + "13152", + "11178", + "26299", + "23542", + "14505", + "32362", + "13896", + "30020", + "18530", + "29800", + "3839", + "20976", + "12508", + "28518", + "27580" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 16, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", + "id": "605d7053405b715b51c57d4d181bc85fbe2c6914c44a49de3e650e53ab36a552", + "index": 8804, + "amount": { + "quantity": 97, + "unit": "lovelace" + }, + "derivation_path": [ + "18865", + "5485", + "17493", + "28556", + "2167" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "5041df5d4b7a7e7f467659957f2be95400748b4914550a7bef504857202e33e6", + "index": 1 + }, + { + "id": "752e38548f100b3e34503498091b6c3707dd201d575307505a5176750b012d83", + "index": 1 + }, + { + "id": "11216427451bf2231391a74b4c747b272f0a855a2e593e0425ce32791e26253d", + "index": 1 + }, + { + "id": "2e2764287e38472f067a21356604520a31667c20016b7a0d4b07c20c4877334c", + "index": 1 + }, + { + "address": "", + "id": "366e44050ed5327e20403c212871402b0855ad616b1219177d255a4e4077c743", + "index": 25364, "amount": { - "quantity": 244, + "quantity": 146, "unit": "lovelace" }, "derivation_path": [ - "14266", - "17390", - "13820", - "22339", - "25823", - "8557", - "15002", - "2992", - "4025" + "9232", + "18854", + "10936", + "14014", + "12069", + "2678", + "20768", + "4045", + "21096", + "23376", + "19434", + "13104", + "1675", + "12087", + "16244", + "19667", + "18160", + "30884", + "3722", + "7498", + "17913", + "27973", + "4752", + "12945", + "9755", + "2502", + "27475" ], "assets": [] }, + { + "id": "ba370c015fcc60546038511d22672d6a1e3c3d145677184d36ea130e424c7faa", + "index": 0 + }, { "address": "", + "id": "3246075f23123f7b4d16553e294270343f093c10192bc335192072181989487f", + "index": 11868, "amount": { - "quantity": 113, + "quantity": 231, "unit": "lovelace" }, "derivation_path": [ - "20535", - "26430", - "26314", - "25028", - "24303", - "7277", - "8571", - "13533", - "19648", - "17127", - "29015", - "16441", - "11437", - "7684", - "14048", - "26160", - "29219", - "5128", - "612", - "24838", - "6039", - "28538", - "28542", - "2951", - "6273", - "21850", - "4772", - "6847", - "16833", - "10009" + "16169", + "23496", + "2624", + "25184", + "30988", + "8736", + "12222", + "20262", + "16234", + "1833", + "8626", + "26637", + "31847", + "25310" ], "assets": [] }, + { + "id": "61782f3145e67331205e0c1f2c4f37081f0bce1f8e3f055c276b5a6e5430e828", + "index": 1 + }, { "address": "", + "id": "064d49f822367859346711311c56184c7f23613d284f63c71e427e2a42272638", + "index": 27696, "amount": { - "quantity": 220, + "quantity": 193, + "unit": "lovelace" + }, + "derivation_path": [ + "28760", + "25861", + "26208", + "10536", + "23562", + "24691", + "6377", + "26758", + "4747" + ], + "assets": [] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 141, + "unit": "lovelace" + }, + "derivation_path": [ + "9334", + "3694", + "32273", + "6887", + "29658", + "13243", + "12660", + "4002", + "10808", + "8559", + "13539", + "20642", + "18202", + "12196", + "28176", + "1376", + "4040", + "13501", + "27147", + "19781", + "2713", + "13815", + "28971", + "15155", + "30357" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 186, "unit": "lovelace" }, + "derivation_path": [ + "16576", + "24011", + "11563", + "2978", + "1182", + "24814", + "20310", + "4810", + "26336", + "28886", + "25580", + "25662", + "18276", + "26656", + "11036", + "3298", + "1986", + "25390", + "19881", + "16610", + "6383", + "3127" + ], "assets": [] }, { @@ -2671,50 +3229,53 @@ "quantity": 169, "unit": "lovelace" }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 39, + "unit": "lovelace" + }, "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 6, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 38, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 31, + "asset_name": "546f6b656e41", + "quantity": 13, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 16, + "quantity": 18, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -2722,48 +3283,120 @@ { "address": "", "amount": { - "quantity": 234, + "quantity": 15, + "unit": "lovelace" + }, + "derivation_path": [ + "4668", + "10123", + "13313", + "26118", + "30841", + "19517", + "32159", + "27888", + "8799", + "25664", + "25704", + "26646", + "4099", + "30596", + "21983", + "26018", + "12304", + "17394", + "22878", + "17380", + "20905", + "909", + "8002", + "6644", + "12415", + "12331", + "8219" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 27, "unit": "lovelace" }, + "derivation_path": [ + "5102", + "28558", + "10991" + ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 25, + "quantity": 7, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 25, + "asset_name": "546f6b656e42", + "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 20, + "asset_name": "546f6b656e44", + "quantity": 13, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 21, + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 31, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -2771,1632 +3404,1624 @@ { "address": "", "amount": { - "quantity": 70, + "quantity": 253, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 125, "unit": "lovelace" }, "derivation_path": [ - "12690", - "1581", - "17234", - "6652", - "10728", - "16864", - "24239", - "31229", - "9930", - "26192", - "5306", - "32297", - "14245" + "4464", + "11602", + "23410", + "19474", + "22966", + "7429", + "11969", + "22452", + "28229", + "8671", + "563", + "31942", + "29391", + "29725", + "25925", + "18430" ], "assets": [ { "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", "quantity": 9, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 21, + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e44", - "quantity": 15, + "quantity": 27, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 71, - "unit": "lovelace" - }, - "assets": [ + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 239, + "quantity": 88, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "derivation_path": [ + "21695", + "21243", + "16239", + "18729", + "27714", + "6804", + "28498", + "12419", + "2007", + "6173", + "27409", + "2954", + "3111", + "749", + "15512", + "11625", + "6054", + "29923", + "9559", + "27921", + "15057", + "30691", + "12382", + "12594", + "6978", + "18246", + "18185" + ], + "assets": [] } ], - "script_validity": "valid", - "id": "79066ed1043c241fce484b033fd53d666b6b41307b8d212b711a3f7c23b4065a", + "script_validity": "invalid", + "id": "efe62a4326264c3536417816c168785679537744583c360173992b5d294e6874", "deposits_taken": [ { - "quantity": 224, + "quantity": 231, "unit": "lovelace" }, { - "quantity": 77, + "quantity": 125, "unit": "lovelace" }, { - "quantity": 154, + "quantity": 238, "unit": "lovelace" }, { - "quantity": 208, + "quantity": 30, "unit": "lovelace" }, { - "quantity": 95, + "quantity": 183, "unit": "lovelace" }, { - "quantity": 72, + "quantity": 252, "unit": "lovelace" }, { - "quantity": 195, + "quantity": 190, "unit": "lovelace" - } - ], - "fee": { - "quantity": 43, - "unit": "lovelace" - }, - "certificates": [], - "deposits_returned": [ + }, + { + "quantity": 204, + "unit": "lovelace" + }, { "quantity": 193, "unit": "lovelace" }, { - "quantity": 20, + "quantity": 112, "unit": "lovelace" }, { - "quantity": 31, + "quantity": 144, "unit": "lovelace" }, { - "quantity": 45, + "quantity": 133, "unit": "lovelace" }, { - "quantity": 191, + "quantity": 131, "unit": "lovelace" }, { - "quantity": 15, + "quantity": 193, "unit": "lovelace" - } - ], - "metadata": { - "25": { - "map": [ - { - "k": { - "string": "󳧉" - }, - "v": { - "list": [] - } - }, - { - "k": { - "string": "𤈈ᱍ" - }, - "v": { - "map": [ - { - "k": { - "string": "𡌠𠅡" - }, - "v": { - "list": [] - } - } - ] - } - }, - { - "k": { - "string": "𮩮㜗" - }, - "v": { - "bytes": "4a515d1635265a5d5c2a41582cc7715f126c9f4eb2ad1022680e85143d31082c4d67441760362b203a476a601e7b3494be4f1d6b28" - } - } - ] - } - }, - "collateral": [ + }, { - "address": "", - "id": "e24fc83ddf4c6fb1765a0b8a717e8247253d7a07381d352ef25ae51f01617668", - "index": 9528, - "amount": { - "quantity": 58, - "unit": "lovelace" - }, - "derivation_path": [ - "27468" - ], - "assets": [] + "quantity": 76, + "unit": "lovelace" }, { - "id": "eb075b3a2167bb644e3c0e024d2c7b7839410973066e7d4c7d50358f1a0d144b", - "index": 1 + "quantity": 216, + "unit": "lovelace" }, { - "id": "7e1e7966491303098b1859b8772d204e7a1e474a174f341a042b344a6441160a", - "index": 0 + "quantity": 51, + "unit": "lovelace" }, { - "address": "", - "id": "2c5c053733411836490922083e0c595765e4b849477021b5721d1b7c21006b73", - "index": 31518, - "amount": { - "quantity": 219, - "unit": "lovelace" - }, - "derivation_path": [ - "11460", - "7255", - "20686", - "9747", - "7607", - "15552", - "20167", - "18898", - "8692", - "6567", - "23753", - "18088", - "27536", - "1710", - "26915", - "11968", - "21874", - "13181" - ], - "assets": [] + "quantity": 224, + "unit": "lovelace" }, { - "id": "7e0b8b740476965ab37f334ab513773c600f83bc662a1b2b4cd72064a87c6a62", - "index": 0 + "quantity": 42, + "unit": "lovelace" }, { - "address": "", - "id": "c87f0085042ec4123b6219503e690a53176e121576306d4b344e385807286a01", - "index": 25065, - "amount": { - "quantity": 231, - "unit": "lovelace" - }, - "derivation_path": [ - "8314", - "32284", - "24144", - "325", - "32357", - "21544", - "11426", - "13211", - "16044", - "27776", - "7113", - "26788", - "11663", - "4268", - "20447", - "18005", - "25657", - "15243", - "21527", - "31866", - "5364", - "28680" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "quantity": 237, + "unit": "lovelace" }, { - "id": "6a52265256307e48c13b5434f94c116d3e12e3256337099184755d30411f185c", - "index": 0 + "quantity": 86, + "unit": "lovelace" }, { - "address": "", - "id": "2b34171d7b176e5e5229784c7e400548ff4a273f3d483e6b14a23117242423a8", - "index": 14623, - "amount": { - "quantity": 67, - "unit": "lovelace" - }, - "derivation_path": [ - "7262", - "20180", - "18720", - "1847", - "24627", - "7012", - "30162", - "9172", - "25273", - "30926", - "2836", - "32705", - "25723", - "28027", - "1918", - "23838", - "15979", - "32689", - "31680", - "15399", - "7621", - "30178", - "32064", - "8717", - "20541", - "22957", - "21983", - "6949", - "19172", - "27601" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "quantity": 174, + "unit": "lovelace" }, { - "address": "", - "id": "5dcb3c5ae41952d31b742bd16f4d8c8f4fa02946227977522b52317733972135", - "index": 5025, - "amount": { - "quantity": 207, - "unit": "lovelace" - }, - "derivation_path": [ - "30444", - "31147", - "9400", - "26877", - "23633", - "31921", - "30830", - "2877", - "9952", - "12520", - "781", - "24250", - "31442", - "1935", - "24850", - "22526", - "11536", - "12237", - "4351", - "5372", - "16637", - "16222", - "20615", - "10150", - "10825" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "quantity": 43, + "unit": "lovelace" } ], - "assets_burned": { - "token_map": [ + "burn": { + "tokens": [ { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "policy_scripts": [ + "policy_script": { + "all": [ + "policy_vkh1qeugqrmw9fempy4w9752vhh3d76y0qrua8c39wdh59l3q96zpye", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "0678800f6e2a73b092ae2fa8a65ef16fb447807ce9f112b9b7a17f10", + "assets": [ + { + "fingerprint": "asset1es4zpm0gydgf8ny08lk8ezwt9mjdx0nypndkzc", + "amount": { + "quantity": 5470, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1tc05nhws7756u04z790apl4ageqnsqc3mkshey", + "amount": { + "quantity": 1470, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1wu52fmuvsugsyw62m76438v3j0wvqk2tx9rx07xw8t68vmyesxd", + { + "active_from": 100 + } + ] + }, + "policy_id": "7728a4ef8c8711023b4adfb5589d9193dcc0594b314667f8ce3af476", + "assets": [ + { + "fingerprint": "asset1tely80fa8nz4xyn6tny4dwjxamw3hu97lxsl2v", + "amount": { + "quantity": 7932, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1uk7gduk0h4azev5at8ax5l0awccdfm7xw0cpm2", + "amount": { + "quantity": 8243, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset13d7n4q9qy2n0lgrjg3hc8e0tg9k92egr838lkl", + "amount": { + "quantity": 3688, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset18cyujsuthltym7gunhsjdwatqanpjzz8pnpe87", + "amount": { + "quantity": 9903, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ccktd2egfmpgd62dj09t6cp5zznscn3ahzh75zxx2djtv7mu0sw", + { + "active_from": 100 + } + ] + }, + "policy_id": "c62cb6ab284ec286e94d93cabd603410a70c4e3db8afea08c65364b6", + "assets": [ + { + "fingerprint": "asset192vshadze06zev8slcpmucl3vv962s8u3jkc7u", + "amount": { + "quantity": 6179, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1m25vv4zwnlg5wac7y4tpklr900ya5zrp9gq07e", + "amount": { + "quantity": 2991, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fdnswu5craa3k99kf6ryq04q9m2la4qh7655a2l0alnm5ypt7m8", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "4b670772981f7b1b14b64e86403ea02ed5fed417f6a94eabefefe7ba", + "assets": [ + { + "fingerprint": "asset18yutytfuugn3wcgd5prnlml3gmgttmcac3c888", + "amount": { + "quantity": 230, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1yjgv84jjkx7y99q59qfclzx9pjdyzq4hdxdgtw", + "amount": { + "quantity": 9522, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cc3xz0rntyvs8q2t2fp4tgmry3qp69ehqv4679mnkza4xr57u2z", + { + "active_from": 100 + } + ] + }, + "policy_id": "c622613c73591903814b524355a36324401d1737032baf1773b0bb53", + "assets": [ + { + "fingerprint": "asset1z5zzmlqtyekel9g7awu3zuqyl57t3z6u0ynmez", + "amount": { + "quantity": 5488, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset176a2zk25fw8ux6qvakr6nq4cgdv3paejm3x93s", + "amount": { + "quantity": 1212, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1k2vjgy2mdl53nahztl22xdatx4x676e6x3fc3r", + "amount": { + "quantity": 2044, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1elm36z6wsjtj9kk8qmqdvpst9qw43cqd6zmwpp", + "amount": { + "quantity": 1820, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": "policy_vkh1czev85xjthhargdy976g7m7g38ced9qpzefu56373svqjp5q604", + "policy_id": "c0b2c3d0d25defd1a1a42fb48f6fc889f19694011653ca6a3e8c1809", + "assets": [ + { + "fingerprint": "asset1elzlnc2v76h05z35m7y4jrksnq69tmj9ppyeex", + "amount": { + "quantity": 8423, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1yax3waddqar6v0a4ec9ukzee4cmhsgk5yaxjpe", + "amount": { + "quantity": 6567, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1ma4u88etyxklu2ta235axn5n8yp6llwm4acpjg", + "amount": { + "quantity": 3799, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, { "policy_script": { "all": [ - "stake_shared_vkh16ggdq8nh4uk83u6hjnq5gd3shrs67uhkpysfehjcgr686j8wy9r", + "policy_vkh1x4uycgnzuh39nc9jt5fyufdwa2tka0zr3rqkwvam97p4xh4f3em", { "active_from": 100 } ] }, - "policy_id": "94b3337dc07d379a3353564be1d091d6fc8ac8d4a5bfe39aad679116" + "policy_id": "35784c2262e5e259e0b25d124e25aeea976ebc4388c16733bb2f8353", + "assets": [ + { + "fingerprint": "asset1lcf6mz47jwjzdl7jqjdwdc0vu52qp3rxj6aplp", + "amount": { + "quantity": 285, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1g77esusa99j2urtv3nfwkqj4kncf3jwxgmepwu", + "amount": { + "quantity": 2175, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": "policy_vkh1fvracdtrype20anuq0tayvxhsfwx6sdcp3lmxw0rant524a8ckl", + "policy_id": "4b07dc35632072a7f67c03d7d230d7825c6d41b80c7fb339e3ecd745", + "assets": [ + { + "fingerprint": "asset10v6pgch60k8xprg3v9wk2m6tgc4esa8ndwm3m5", + "amount": { + "quantity": 6730, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1g790rgy9jvkq76plv6csekd545zks848hcahu6", + "amount": { + "quantity": 5737, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset17squea7m78sflvfxqxvwj557k6janw5rjv3w90", + "amount": { + "quantity": 1440, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1uvfk5fsz2tgvldux3ct87da4txkjaqj705yc2dxnkkjdkgr23nj", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e3136a260252d0cfb7868e167f37b559ad2e825e7d098534d3b5a4db", + "assets": [ + { + "fingerprint": "asset1slrfmu03jxyh4y2arcqr8nhkzqgmalyxsnt6jj", + "amount": { + "quantity": 3886, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1q4yeuzkgm6rkj8drnc0k7k2s7tnzvn9wkmq95z", + "amount": { + "quantity": 773, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": "policy_vkh18jmg9phlksu93yhkcts57teavh62cww0kvfp0y6fm2kjzy7q8em", + "policy_id": "3cb68286ffb4385892f6c2e14f2f3d65f4ac39cfb312179349daad21", + "assets": [ + { + "fingerprint": "asset1g6wpm9x94gzh86squuqphrvkvzc00hgr9yzx30", + "amount": { + "quantity": 4818, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1jfucp8t8w7a9e95xfmmfw7mpjpyha38wssdg56", + "amount": { + "quantity": 3587, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": "policy_vkh1xxe3vusr324vdqlslk9dlnqg8sfl8rhda7gk45h56t4hw9829pz", + "policy_id": "31b31672038aaac683f0fd8adfcc083c13f38eedef916ad2f4d2eb77", + "assets": [ + { + "fingerprint": "asset18c9pursytltsrhdywa3ulp3p2u476c26jau4pj", + "amount": { + "quantity": 4109, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1s2s93425gem73dqphzh9lvvuva2t5zc6z9phfq", + "amount": { + "quantity": 9937, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1alyl95s99dm4r9kllx8vym2ja2annyw5pxyw0f", + "amount": { + "quantity": 2260, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1mj5kywfys298auucj2640rxxdtwmv64e8asf4w", + "amount": { + "quantity": 7816, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ethzq6edc4fzrh7rnmz03fhmzypkvf2mla28zdekffjfwgxrvqv", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "caee206b2dc55221dfc39ec4f8a6fb110366255bff547137364a6497", + "assets": [ + { + "fingerprint": "asset1z23urpr6ztn7k9cagw6takzk6cj4pdetj4m6ar", + "amount": { + "quantity": 6576, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1zhs8wv0p9asuycqpfk9f3lv4rdftrfwuulpqdp", + "amount": { + "quantity": 2901, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qg7jrn88048dfsmeuxwjd382nf66smkm7dpsk0d29kcwxxkava9", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "023d21cce77d4ed4c379e19d26c4ea9a75a86edbf3430b3daa2db0e3", + "assets": [ + { + "fingerprint": "asset12ved3lqagh8kyxt2zsj9p5a2f7l6xft55ecayk", + "amount": { + "quantity": 7296, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1gfh9kwu7kwgty47tukdjalurws0lr3pmetfskf", + "amount": { + "quantity": 9233, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1wczk8f2ryceqhteglkz4543m9acneqqel6scz8", + "amount": { + "quantity": 9244, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset13ymeg6at9nvm4chvwls0t04nejm0d47zx3pmz4", + "amount": { + "quantity": 9435, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] } ], - "wallet_policy_key_hash": "policy_vkh1qdqqznz9gfqpue0hy5w8jtj5f95k7tt0facezmt8qryjc3kzf2w" - } - }, - { - "withdrawals": [ + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh10klxcus7fpx9zr9k83c8zhzgz9ag6xgn9c0rql669s2zygd9e8g" + }, + "fee": { + "quantity": 18, + "unit": "lovelace" + }, + "certificates": [ { - "context": "ours", - "amount": { - "quantity": 231, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk17jrwwy6w3svcdxcglkk2zz2h4l739hunzs4h5yydnfdkxfu0fhzsf078l6", + "ed25519_pk1wrr48yne2cu0tfsukyyrzptmz9au2uv8sc8u6ja3ek8de9n4z7uqrzq3xd", + "ed25519_pk1vl8kvehk0jfdz3765v2yya9muhreee3vlyyu8lcasg8vsw5pu2ys0crz56", + "ed25519_pk1aytdxp9s9gnahdn7xcee9f0l5e4jwn0lsahvju8mutffgsl0c89qat43s9", + "ed25519_pk1jtv80runhzp8pehyg6kqgfyq7d8dayzx6y9x9d78880dgkm3geuqz0ecug", + "ed25519_pk16mu2qs9g4je7qu9armefqp5vz9058wjxu8sxklapen2e2lqxp7pq2gff3l", + "ed25519_pk162w52q84wd4pear5fda2kcwmydnsjad8rk8ta5g2u39rfe0lglnsrynr8p", + "ed25519_pk18hg5vu99zn2k6nagvel3jzlmpcvzxdyessmkzh4dsqhc985ywdysr4wsz0", + "ed25519_pk10j5xuntkjnz3q90c84476lfk0u0jr38pqlyp9pxjw0ayay9epuhqqyua82", + "ed25519_pk18pye66358h6vs3zalv8djtemqssmqjswzlx6qel84wj5jcxhka5sdjqpl2", + "ed25519_pk1y8kzhapt7kc6eeeaeme3d2lsqfzxj4c0763n3jv660u4zslfrd7q68ctel", + "ed25519_pk1a3h6jle0w4z3njkmaravzcmrsvadfnaw3gecdls8ywf3gy6f430q2dctfw", + "ed25519_pk15np7uexhnrk37p95xedvgm9pdqawe6fa9cn46dpmnq6tz0l344kqx02ayv", + "ed25519_pk1tmax9m2xec40u3epwg78f7s9u4u8zkjwsntacn0gfx70743q3y0qxgxw58", + "ed25519_pk1a83v82uzfczs8q7xxqnm8mw9gt0mp4msay2ucnydaxyu6s7wcyrqfajky3", + "ed25519_pk1v2nrprtn63dvsfuetace5nadma8mnft9ptqj7jx7ey96fghc694qq4yc9a", + "ed25519_pk10g4quuxa9prtpnx4ghvsputmhfr6nqtc20kmqe4zd4pjnzhmm2lsukkdzc", + "ed25519_pk1m3nckzsfxpmqknhkvaheq2cmqx9fvzyl0n030crt42nc0hcvkjmqjlh55s", + "ed25519_pk12lnwu0cy6sw3xs08r88y5cg530dmaa8n6gerxjdw33sfe2f907qsj5tazt", + "ed25519_pk164cpmsd5a6hcj6v0xkjc97ldsmgsum7ygdsf52ps3uqmp63tczjsfkkyfy", + "ed25519_pk1fnlddl7ajpd9rdf27yfayl327t3wwnrk0fnepsgmpk0ufha97cuqvzvs73", + "ed25519_pk13qg6tfr4z8zkt8geg80nvujmhezv6csst6cm57h2kl7ugqdcrdnq8sy4l4", + "ed25519_pk1nl833evec29hrjs74h6tdf0xluupy333x9h7zdpxd3pthx9svspq665p3m", + "ed25519_pk1zwm764c660urptcugqa9ah5dcagcwxah2aj0zv0z7hwvvyjkpnesjrkjnp", + "ed25519_pk15w26jqcncc74s2wsu3ctesfcfwtrq5rfz49c45vlfknech6tr9jqyl7fkm" + ], + "pool_pledge": { + "quantity": 108, "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 17, + "pool_cost": { + "quantity": 181, "unit": "lovelace" }, - "stake_address": "" + "pool_id": "pool1ku8xfzts94mrejs2hjkl2ykj9qgkp59605hrhe430krdsrugrlr", + "pool_margin": { + "quantity": 31.84, + "unit": "percent" + } }, { - "context": "ours", - "amount": { - "quantity": 153, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "join_pool", + "pool": "pool19h6tuuljg45uzvc8sgax7as2us0vz8ph7ysgtqw992sdk8dlqfw", + "reward_account_path": [ + "19162", + "5478", + "11794", + "8139", + "28640" + ] }, { - "context": "ours", - "amount": { - "quantity": 46, + "certificate_type": "register_pool", + "pool_owners": [], + "pool_pledge": { + "quantity": 4, "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 156, + "pool_cost": { + "quantity": 205, "unit": "lovelace" }, - "stake_address": "" + "pool_id": "pool1r3lx795jfhl85v493r2vqcpsemmuny397szhkzx0fmfww4flzh8", + "pool_margin": { + "quantity": 92.96, + "unit": "percent" + } }, { - "context": "ours", - "amount": { - "quantity": 117, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "deregister_pool", + "pool_id": "pool183c29m6etx3dm4tld243rttyk5ma7y6mp23d8pt2r3sj6fachuh", + "retirement_epoch": 10490 }, { - "amount": { - "quantity": 169, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "deregister_pool", + "pool_id": "pool122snqhwdp5kpn7k34xdl4fchqtc9ljk5wgxcas8xq37kq0scjs4", + "retirement_epoch": 2115 }, { - "amount": { - "quantity": 179, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "genesis" }, { - "context": "ours", - "amount": { - "quantity": 197, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "deregister_pool", + "pool_id": "pool1gz8u942fd4svvv8f5yjsc6rryshdggrdjxwsa9uzul69za2yz0s", + "retirement_epoch": 1255 + } + ], + "deposits_returned": [ + { + "quantity": 37, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 177, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 95, + "unit": "lovelace" }, { - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 130, + "unit": "lovelace" }, { - "amount": { - "quantity": 251, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 198, + "unit": "lovelace" }, { - "amount": { - "quantity": 134, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 210, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 16, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 151, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 254, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 31, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 72, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 42, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 235, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 74, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 33, - "unit": "lovelace" - }, - "stake_address": "" - } - ], - "inputs": [ + "quantity": 175, + "unit": "lovelace" + }, { - "id": "d008c72f7a5a744c424202784bc732ba8c31614e3a4b33104abf42025848695e", - "index": 0 + "quantity": 151, + "unit": "lovelace" }, { - "id": "0a575713093853556b0c1c1c1c431111542d1a17126c27300d112c0e3e0e5278", - "index": 1 + "quantity": 210, + "unit": "lovelace" }, { - "id": "0b545950605b26bba70e661b1b0d2294730df8112d4051342722007b70ea844f", - "index": 0 + "quantity": 220, + "unit": "lovelace" }, { - "id": "434b4b732f0062415a2c6b7d6b227105535cf5045c4041140ca30c1f03401d6c", - "index": 1 + "quantity": 209, + "unit": "lovelace" }, { - "id": "f830483c710e5814670e0c394e7279397d5d3a7b091f3d14f00e7b669b0d057a", - "index": 1 + "quantity": 108, + "unit": "lovelace" + }, + { + "quantity": 64, + "unit": "lovelace" + }, + { + "quantity": 87, + "unit": "lovelace" + }, + { + "quantity": 207, + "unit": "lovelace" + }, + { + "quantity": 61, + "unit": "lovelace" + }, + { + "quantity": 184, + "unit": "lovelace" + }, + { + "quantity": 199, + "unit": "lovelace" + }, + { + "quantity": 71, + "unit": "lovelace" + }, + { + "quantity": 221, + "unit": "lovelace" + } + ], + "metadata": { + "9": { + "bytes": "3b0d7d96b4486a623f533198780e4c164f44" + } + }, + "collateral": [ + { + "id": "46f6751a485572776e20033803077f64673173b3881662447463316f2f551c30", + "index": 0 }, { "address": "", - "id": "2b20121911414c1763455275700a1e22090e7341773648595d21204e391db2d4", - "index": 5559, + "id": "7f17571f0ba3485e0c210b5476787b66496f5c56366a484d7647152303304153", + "index": 22614, "amount": { - "quantity": 28, + "quantity": 132, "unit": "lovelace" }, "derivation_path": [ - "28673", - "17595", - "11408", - "28190", - "27465", - "6604", - "23502", - "2501", - "6338", - "15054", - "32191", - "30825", - "19047", - "17122", - "13629", - "22654" + "31437", + "26261", + "52", + "17931", + "25420", + "7126", + "8957", + "15722", + "2295", + "18589", + "26948", + "16165", + "29889", + "12406", + "194", + "1890", + "30311" ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", - "id": "4126325c802a429e7b677a69fb1b0c276713733df07d5d33734600dc1f073e70", - "index": 28750, + "id": "1d365a603661b979e52d7c3e4f5b4941231e5b77165f2651ae695a19f269313b", + "index": 14439, "amount": { - "quantity": 159, + "quantity": 29, "unit": "lovelace" }, "derivation_path": [ - "1244", - "19945", - "11595", - "24236", - "26250", - "13301", - "29943", - "9460", - "9346", - "6964", - "5907", - "24792", - "855", - "5218", - "30695", - "8876", - "18909", - "8085", - "26331", - "4715", - "29088" + "6602", + "2517", + "13381", + "9757", + "2565", + "28077", + "25348", + "10178", + "17295", + "31020", + "22513", + "5796", + "30650", + "7342", + "12239", + "24569", + "14802", + "29082", + "31319", + "27820", + "8011", + "12389", + "8478", + "28955", + "9521", + "29880", + "29796", + "20696", + "6853", + "5640" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 39, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "id": "08032d3f45f47f7e4d2a04335642d8ec61002813573d397884297d6aa141271c", + "index": 24445, + "amount": { + "quantity": 123, + "unit": "lovelace" + }, + "derivation_path": [ + "15809", + "28095", + "14888", + "31091", + "30223", + "2052", + "968", + "21139", + "12000", + "29317", + "147", + "22926", + "19581", + "13364", + "2799", + "6561", + "15136", + "20096", + "8328", + "19793", + "32063" + ], + "assets": [ { "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, + "quantity": 1, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "626e922137187b607a4a2c6e35654f7f191b7e1a59373c6c104d2f58012c2a8b", + "index": 0 + }, { "address": "", - "id": "0c7f622304750b716e6d32fc47337f1dba5341680f104a7d4d602ff6791d74dd", - "index": 32105, + "id": "3e552a456e7975a1ec25202f74787bee207f3a5359293216192f7b4f7f215560", + "index": 15234, "amount": { - "quantity": 198, + "quantity": 185, "unit": "lovelace" }, "derivation_path": [ - "27098", - "19152", - "961", - "30557", - "30253", - "27045", - "15007" + "31474", + "12551", + "24962", + "6143", + "24934", + "13651", + "19566", + "18970", + "20210", + "24391", + "236", + "9513", + "9459" ], "assets": [] }, + { + "id": "f9305c4871f271105527fed64d0668792d9d443c201e3cd741e11678771c3c32", + "index": 1 + }, { "address": "", - "id": "9123699857f4590529120b0535006d214b39d554714e3848073668aa3866564e", - "index": 20638, + "id": "50116c134f263c1e5e711a3127315b6c517fafcfa82f324c3d3d3435706c5010", + "index": 23819, "amount": { - "quantity": 17, + "quantity": 85, "unit": "lovelace" }, "derivation_path": [ - "23825", - "23322", - "19933", - "17149", - "14534", - "17919", - "16669", - "17601", - "25369", - "19620", - "31055", - "22299", - "30943", - "22843", - "11569", - "13862", - "14088", - "2141", - "1046", - "16836", - "12115", - "8891", - "30011", - "4712", - "24143", - "24789", - "3706" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - ], - "assets_minted": { - "token_map": [], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "addr_shared_vkh1l7jyu263wad35qlpdjt5ksmvze8s3hq3w6tnylpr3vuqc0uuklg", - { - "active_from": 100 - } - ] - }, - "policy_id": "a9b41660c3f16aff911ed0584683bcdcc941a066506b7116cb285c48" - } - ], - "wallet_policy_key_hash": "policy_vkh1332jkf3mddm8zu2lev9nccrmfa48vupydf2jyhm7waukulggt25" - }, - "outputs": [ - { - "address": "", - "amount": { - "quantity": 189, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 106, - "unit": "lovelace" - }, - "derivation_path": [ - "3589", - "6252", - "1508", - "12694" + "26618", + "522", + "22740", + "23124", + "19061", + "25895", + "7537" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 92, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 65, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 148, - "unit": "lovelace" - }, - "derivation_path": [ - "15263", - "22599", - "21849", - "1161", - "6019", - "11944", - "28346", - "30130", - "16039", - "27636", - "16993", - "23240", - "24129", - "30569", - "14877", - "15215", - "2238", - "21217", - "17092", - "16075", - "7925", - "29475", - "8580", - "10092", - "32763", - "5294" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, + "quantity": 45, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 166, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 124, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 197, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 177, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 20, + "asset_name": "546f6b656e44", + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 45, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 16, + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, + "quantity": 26, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 28, + "asset_name": "546f6b656e43", + "quantity": 11, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 30, + "asset_name": "546f6b656e41", + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 13, + "asset_name": "546f6b656e42", + "quantity": 21, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "540d174f4b141f3c1463283b191a9d01a95f1f12476c314a214f23bb1e01b45e", + "index": 13271, "amount": { - "quantity": 191, + "quantity": 116, "unit": "lovelace" }, "derivation_path": [ - "25366", - "1878", - "11284", - "31674", - "24660", - "22758", - "18698", - "7868", - "4041", - "32034", - "31281", - "28756", - "10378", - "20835", - "10261" + "4131", + "29446", + "28259", + "9579", + "30860", + "15131", + "5210", + "15685", + "5347", + "24504", + "2873", + "2782", + "23743", + "3841", + "19691", + "26004", + "16425", + "15257", + "28806", + "24353", + "29648" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 6, + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] - }, - { - "address": "", - "amount": { - "quantity": 238, - "unit": "lovelace" + } + ], + "mint": { + "tokens": [ + { + "policy_script": "policy_vkh1tux59ac5q6u5xukmzhc3z46256ezkxk275xe9mn60nxqyctrd6t", + "policy_id": "5f0d42f71406b94372db15f111574aa6b22b1acaf50d92ee7a7ccc02", + "assets": [ + { + "fingerprint": "asset1w59470du2ucgp40xmk3k6evtwu4q5cv93kejjj", + "amount": { + "quantity": 9283, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1kpswn7avt6vklrmg3z8k5zcxmez2dykhn2efxa", + "amount": { + "quantity": 5734, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset12ruf3hac2yv67fjwhftwrvf8me6xu30hmgx0xl", + "amount": { + "quantity": 3346, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1fyv6hxx8k0yqzhu8qy64easxl64y8khdyf9syv", + "amount": { + "quantity": 1723, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 224, - "unit": "lovelace" + { + "policy_script": "policy_vkh195ajfdssnd5ggz4w72ytemwpcrlywjzmkehe8hqs4mh9xp5ddz4", + "policy_id": "2d3b24b6109b68840aaef288bcedc1c0fe47485bb66f93dc10aeee53", + "assets": [ + { + "fingerprint": "asset1lahjsutr74equ53untqwzgnxp3u20gnsw20x6n", + "amount": { + "quantity": 4308, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] }, - "derivation_path": [ - "20031", - "25612", - "19086", - "20973", - "21310", - "29112", - "31529", - "5021", - "7554", - "4942", - "24217", - "25918", - "20344", - "7500", - "14792", - "22259", - "24470", - "8714", - "29310", - "18437", - "11954", - "28433", - "24056", - "13786", - "10612", - "8702" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 173, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1hull3tcrepnej2a3x3t6rz6nspzac0uwsfknlk2jvhyfyzu3t24", + { + "active_from": 100 + } + ] + }, + "policy_id": "bf3ff8af03c867992bb13457a18b538045dc3f8e826d3fd95265c892", + "assets": [ + { + "fingerprint": "asset1e98c9wmaazld2r3lt0haczsvrauw3ulr2y336m", + "amount": { + "quantity": 2940, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset150yex8fxytpkqtalvnyd80gfpttezg82fwm20e", + "amount": { + "quantity": 4691, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1fdwyje270tfg7wlcmue93g4u4gm533py4s2vvd", + "amount": { + "quantity": 4248, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] }, - "derivation_path": [ - "30098", - "7756", - "25926", - "7862", - "23468", - "13009", - "11417", - "25930", - "28843", - "20106", - "4336", - "23357", - "20130", - "16886", - "29066" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + { + "policy_script": { + "all": [ + "policy_vkh1c5mva7seh9syan93eg0y7rqhfu44jylq8y3w6hhan8wfc554zzs", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "c536cefa19b9604eccb1ca1e4f0c174f2b5913e03922ed5efd99dc9c", + "assets": [ + { + "fingerprint": "asset1s7pm0vjkacrgtrm8353yc2n4jxsplmt6qmcz24", + "amount": { + "quantity": 9383, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1nluth9s78lxdcmzy5vgsmfsaddhx09l34wed03", + "amount": { + "quantity": 487, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1hl5ueh0p7c5quvlx7vc3cz2wcgjj4ldfxdpha6", + "amount": { + "quantity": 10000, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset18m03e6dlwf453wrxxuel7qfd50s698w6u92tx5", + "amount": { + "quantity": 3901, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh15e5m5wdgesrtqln9n2pty7qx32prx4e4w72yyccqzwpzw657amg", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "a669ba39a8cc06b07e659a82b278068a823357357794426300138227", + "assets": [ + { + "fingerprint": "asset12tz4h49hdhnnt639g6x3y6k9w05atajwgj9hjw", + "amount": { + "quantity": 8061, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1w0z7plgxy7v34jesthvv0km6uv6qkyf78kt0pv", + "amount": { + "quantity": 6708, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1zzut4ll2cylk8krvuh3uzzxtklw8k52uvz68c3", + "amount": { + "quantity": 1874, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1q8tyxfqy5cjlqz3a0gtajjs7m7mj7k5lvja374", + "amount": { + "quantity": 74, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1twcj5rjmpc59ne3u2kfm3ud29awu03a3ezaw5syqa7rszd2q9fc", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "5bb12a0e5b0e2859e63c5593b8f1aa2f5dc7c7b1c8baea4080ef8701", + "assets": [ + { + "fingerprint": "asset1ath4y54unwqhm7g28mwaa760cauh8ytg9dkksj", + "amount": { + "quantity": 558, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1d0x3qvnzfsmr9zu8wd3l73ulgdq0lrseheptpqdlp0wmc3qwgq2", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "6bcd1032624c36328b877363ff479f4340ff8e19be42b081bf0bddbc", + "assets": [ + { + "fingerprint": "asset1eh50nw8c3yslkf7sgqlm5gymx8rvj8c0a0sj7z", + "amount": { + "quantity": 3986, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset14w9sm6s5gvd3lwsz4yp6a836dp7p90ftgfvr8x", + "amount": { + "quantity": 4816, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1r03x3unt58dep8xd65vxme94p4s82cthpkafxu2m6sxt2kwe6k8", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "1be268f26ba1db909ccdd5186de4b50d607561770dba93715bd40cb5", + "assets": [ + { + "fingerprint": "asset1yu3uhfek8wksdptx99pnz5jr9l52tw7g9h8waf", + "amount": { + "quantity": 2021, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset17s662mrazlhmwlf5j9jkspcu4a9ax48qh5hdst", + "amount": { + "quantity": 9021, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset18gh8gez4gg2axv3jlx5f62pmw4d2zgdvzu77zc", + "amount": { + "quantity": 5850, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ex0kfwdgd29ujsp7ntrdjjdx284c38kcpx5flj38eg7j5tnk833", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 210, - "unit": "lovelace" + "policy_id": "c99f64b9a86a8bc9403e9ac6d949a651eb889ed809a89fca27ca3d2a", + "assets": [ + { + "fingerprint": "asset1ssef7ax7aqp84gulh3segzcuawq5t9g4452wye", + "amount": { + "quantity": 3918, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1cvndl49rqhg3e8sutumpvwg3v3ydzj98p0fyzx", + "amount": { + "quantity": 1078, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset17fcwefl6mhv0culdxmku7zeh5g42du0azl2ehv", + "amount": { + "quantity": 8537, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] }, - "derivation_path": [ - "1647", - "12636", - "8716", - "92", - "24074", - "19360", - "3583", - "641", - "25180", - "15609", - "12732", - "11608", - "27578", - "9711", - "14607", - "13036", - "8360", - "18371", - "10022", - "27867", - "23019", - "32501" - ], - "assets": [] - } - ], - "script_validity": "valid", - "id": "609c39341d4b0b2cda6c76611b01287c3d705b66465eda0131225ec6577e5c33", - "deposits_taken": [ - { - "quantity": 108, - "unit": "lovelace" - }, - { - "quantity": 206, - "unit": "lovelace" - }, - { - "quantity": 71, - "unit": "lovelace" - }, - { - "quantity": 53, - "unit": "lovelace" - }, - { - "quantity": 3, - "unit": "lovelace" - }, - { - "quantity": 2, - "unit": "lovelace" - }, - { - "quantity": 189, - "unit": "lovelace" - }, - { - "quantity": 96, - "unit": "lovelace" - }, - { - "quantity": 163, - "unit": "lovelace" - }, - { - "quantity": 59, - "unit": "lovelace" - }, - { - "quantity": 200, - "unit": "lovelace" - }, - { - "quantity": 195, - "unit": "lovelace" - }, - { - "quantity": 22, - "unit": "lovelace" - }, - { - "quantity": 248, - "unit": "lovelace" - }, - { - "quantity": 115, - "unit": "lovelace" - }, - { - "quantity": 57, - "unit": "lovelace" - }, - { - "quantity": 182, - "unit": "lovelace" - }, - { - "quantity": 238, - "unit": "lovelace" - }, - { - "quantity": 238, - "unit": "lovelace" - }, - { - "quantity": 19, - "unit": "lovelace" - }, - { - "quantity": 154, - "unit": "lovelace" - }, - { - "quantity": 52, - "unit": "lovelace" - }, - { - "quantity": 70, - "unit": "lovelace" - }, - { - "quantity": 12, - "unit": "lovelace" - }, - { - "quantity": 163, - "unit": "lovelace" - }, - { - "quantity": 71, - "unit": "lovelace" - }, - { - "quantity": 125, - "unit": "lovelace" - }, - { - "quantity": 10, - "unit": "lovelace" - }, - { - "quantity": 77, - "unit": "lovelace" - } - ], - "fee": { - "quantity": 208, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "genesis" - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool1x4lmzumr9kk7n80q2shet649qh3fs3vhvcryqrg3z5hsxda5du8", - "reward_account": "" - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "register_reward_account_external", - "reward_account": "" - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1lyfprz5t9halv7szx9xnvz5kumve8v4mhkw7ane3zljzapn3huqqgew6uw", - "ed25519_pk1y5929ht85w57wvmr8p52mu2ey9x27f7dn46m3ed7f5arv6aafe4sl22z76", - "ed25519_pk14xt2xhff0f40yjvlzev8lrm4dp5q7vvt4uqn8fzmt87hjn78lzlqprg0xf", - "ed25519_pk1xrp7ta63u8vje8l04s6yx5ff04qrsxzsxn4wmmh89nnlgkdqpk9q2v94p0", - "ed25519_pk16jnk9h8fmdgas6yjmmgqeme4kdvfmdw0z0n80cgamq73f92g743q7v245q", - "ed25519_pk1jlpy9e32l9jp9z4mkszs2kztlpxv4w3pe8rsd7t4aqlrn5khvsms3l9thm", - "ed25519_pk1ezlv7l8zhj6qf4n2gq3tfzm282dsyure3jfs6vk88ktgs3sfrneqcrgnp8", - "ed25519_pk1sn3nawxyn9558nxe5l25e4338f02k544pzelnmlwnsg04xsgn2tqhae5wx", - "ed25519_pk1wcxyqwcn4a7rdr3k953hcxtghvw3mcmkdp7vy2qs45ad58znwgzspchk2p", - "ed25519_pk1ek35dzpzl2zpg5q5cnaa590l94gnw6z68t6sx39mxyf5vflw9rvqyu34mf", - "ed25519_pk1ypfsj0ve747mfzmar558g2tgqa9elxg4ew9pse3fdhsjl8vgvxxsppput4", - "ed25519_pk1a8v72tmr6xz3ujjkfs7y72l7kazzjpgpqv62trxxya2qay4hd4xscka77v", - "ed25519_pk17c2ntvradhl572xcfnc0ut84ggd34sk5sv2wj5lr68yq3urlr78s9z4r4e", - "ed25519_pk1gk6vealvhqfjza7wupt28pum70ye70ll5lztkac0cjs325dh6zmqngq93v", - "ed25519_pk19n3lyx0grsa75hxf3kulw3t5nx4wk9qetm0d3mttuzdw0kx35j3qdg746f", - "ed25519_pk1qux54n84lfpvwqmkmt3dagkgh25ez69chm8ea9ws2xk4xn5zre3qdy5uqx", - "ed25519_pk1sdejx3z2nj36p8w2xjw493qzchym2dyrnue055rgrnr2eupnr54qsx3gpw", - "ed25519_pk102e6r0g4nl6gvzmfd5ynr8vvjc8wvmwrz9usecvej6jfrvjs29sq5jmae7", - "ed25519_pk1uqrdhj4h58ajm4y3ynx3mwdatkgm6szguwvpm7gycyrhvc867v6qu7s397", - "ed25519_pk1qtt3c3rsfknedf6c4v36428w4wsxyfldxmxarp8znhtk8uycx0nqzkh4r3", - "ed25519_pk1kdjxqycfzkxn0u2wzzvt6t3ly3dz6g8648hyle8jmfqv09czglvsd3epfj", - "ed25519_pk1wkdcnrgz7k7fxfqr42yjr42vkl2e5u0cnyy95ma2hlshnwcpfxzss69ale", - "ed25519_pk1dh8tf0w38yqwtdh7hm4f9hzpl8h4sqad2y5ueca7jdae63sj8dcqmvwenm", - "ed25519_pk1m93cwxg3c8rdlthehvwzpckydk6l2yj43v7myqlwtjsswmy4aw5qarr7ak", - "ed25519_pk1vmgwf00ylgz8lxp8kdaeqlxlupdfmz90zh0h9062dmyp2nv650wsch3ay4", - "ed25519_pk19cdp330vx7nsh7tm4jwg8mdvcz7n5meljt3e75y837veqjrh5kaqk6x96u" - ], - "pool_pledge": { - "quantity": 167, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 163, - "unit": "lovelace" - }, - "pool_id": "pool1earkmkkg3klsktch6ckjfnnnnmc4uzhzwf3yrey5kfhwqmvxle8", - "pool_margin": { - "quantity": 4.53, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool109rvz6htute6awafwr453cptvfx9zfl6g9x0478g85m9k5ttp4w", - "retirement_epoch": 25979 - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1awulw2fguzp2m7avtk2fwrrk23xkyh2fyy3d480n4gjxwyjcsn3", - "retirement_epoch": 22134 - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1uu3fplhn4ylq2t5a95gflgafygha2eak98tmgdwctntayr6q2vusgzjnn4", - "ed25519_pk10g5tuu838jpmltcz34374rxswm7wcxda2pnzmpr4jyjqklzr2f9qmxnked", - "ed25519_pk1tk534j6yrcfhfk7q56kdqyt9smtwyf99m7972dxw0x4n3vlttnrsrq3raq", - "ed25519_pk1vtgf9e8sctrnwvceq6rmhmfuyjmlya857ek76n43hexvw7ykl2ss2mnpgy", - "ed25519_pk1ls9mtycc4kqmcxhzcda5pwhyrjzvkwxtvdunrkjq6k0vw0jzq2qq5k50p0", - "ed25519_pk1w60689pl2xle6rq8pq5a5sg4g42zqwqlgghk73xqwrdu5elpdmps8uxnrm", - "ed25519_pk1vscq2mhar4f4z6gxzpjsel2vrphkxm93rmfxw7uj6xjckr8vz8yspdjdyd", - "ed25519_pk1a6gr5nrtunml3kcl0vpmlp53lyh889k65srf2unyxkzrplzrxjhqj3x7ul" - ], - "pool_pledge": { - "quantity": 45, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 252, - "unit": "lovelace" - }, - "pool_id": "pool1tjskp3xxtl3ym4k9jkrrcvk39735aumswr0pw2jdqk37gp9l89t", - "pool_margin": { - "quantity": 50.33, - "unit": "percent" - } - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1ge36zxnemssl7wnd2k684hs7pdjam263q3pevslnslktj4dhpsqqu40ews", - "ed25519_pk1e2u94zpewyytemusqfattzq9yr49d4pd5luxjsl9rgz2s44gdfmqjn67xn", - "ed25519_pk154wdy04802wqzsz7k6uar3mdhn7q2q3npaxqnrz2vck6duklwejs3jvgal" - ], - "pool_pledge": { - "quantity": 235, - "unit": "lovelace" + { + "policy_script": "policy_vkh19ydtjpgsdlx0dvz79rm5tqputxxmmqjp5kpvjltzkuk0yuh6fmh", + "policy_id": "291ab905106fccf6b05e28f745803c598dbd8241a582c97d62b72cf2", + "assets": [ + { + "fingerprint": "asset1nc05nc6e3k0umy0fsamz866dak99kyp37dsmp4", + "amount": { + "quantity": 4879, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1yk22k4az6zcs7g8z5kn26cqtq3h2dc6ywq8pa9", + "amount": { + "quantity": 3628, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1tty83n6ur3ajzrp46tyufmpmc9jwwjwppkgyhh", + "amount": { + "quantity": 6282, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] }, - "pool_cost": { - "quantity": 158, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1s2xzpyylp9dqs9xdvntrfcxen69fg34ydvu4fezz3h0gvesw0z6", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "828c20909f095a0814cd64d634e0d99e8a9446a46b3954e4428dde86", + "assets": [ + { + "fingerprint": "asset198dmsh4f0h3ufav5c69dpfvvzhl2z46jek4jvy", + "amount": { + "quantity": 6684, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] }, - "pool_id": "pool142ujeyn469w9v0e269padr3g6n47enc43ldvna4jallvsaf4gee", - "pool_margin": { - "quantity": 47.66, - "unit": "percent" - } - } - ], - "deposits_returned": [ - { - "quantity": 109, - "unit": "lovelace" - }, - { - "quantity": 126, - "unit": "lovelace" - }, - { - "quantity": 52, - "unit": "lovelace" - }, - { - "quantity": 45, - "unit": "lovelace" - }, - { - "quantity": 144, - "unit": "lovelace" - }, - { - "quantity": 55, - "unit": "lovelace" - }, - { - "quantity": 114, - "unit": "lovelace" - }, - { - "quantity": 136, - "unit": "lovelace" - }, - { - "quantity": 57, - "unit": "lovelace" - }, - { - "quantity": 179, - "unit": "lovelace" - }, - { - "quantity": 59, - "unit": "lovelace" - }, - { - "quantity": 173, - "unit": "lovelace" - } - ], - "metadata": { - "12": { - "map": [ - { - "k": { - "string": "㻊DZ" + { + "policy_script": { + "all": [ + "policy_vkh19cf7n78e5jw67zv372un2zu8fx4uwa763kal2r4jq5kaj9jp2kn", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "2e13e9f8f9a49daf0991f2b9350b8749abc777da8dbbf50eb2052dd9", + "assets": [ + { + "fingerprint": "asset1k2vx9asnxmdkqgdeccf57fyfw30ctwndlux6g7", + "amount": { + "quantity": 4026, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1qw0z6uw0vnuxypf5q6zqlejggh99ks4fj64aaz", + "amount": { + "quantity": 9526, + "unit": "assets" + }, + "asset_name": "546f6b656e50" }, - "v": { - "int": 3 + { + "fingerprint": "asset1dllmy2vzlvf2kzcccgezvfxss7lsq96jdqkl5q", + "amount": { + "quantity": 8045, + "unit": "assets" + }, + "asset_name": "546f6b656e51" } - }, - { - "k": { - "string": "嬑𠏀𨆍􇕧" + ] + }, + { + "policy_script": "policy_vkh10hns22vgkmqn06gzqr08txruxyyv4cs4ltuhnak0tntvx3vm0wn", + "policy_id": "7de7052988b6c137e90200de75987c3108cae215faf979f6cf5cd6c3", + "assets": [ + { + "fingerprint": "asset178h5ahdz058vjlu837p00347mx86c46zqaeges", + "amount": { + "quantity": 7715, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1x2kde62uurl4mlhe3g9j48tvjm79vr63l4x89q", + "amount": { + "quantity": 801, + "unit": "assets" + }, + "asset_name": "546f6b656e55" }, - "v": { - "map": [ - { - "k": { - "string": "𐂾鎖" - }, - "v": { - "map": [ - { - "k": { - "string": "𬇡𫫲" - }, - "v": { - "int": -1 - } - } - ] - } - } - ] + { + "fingerprint": "asset1huatk04g7mkj6aqjnzawg59a53hwqfclk62cud", + "amount": { + "quantity": 5333, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset13ak3jk942xa0t2vaae8rknhrcs7uey2gh3qlwy", + "amount": { + "quantity": 9872, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1wmuh38rcv908m377savm7d7anp69fyjytznfvafgkpvyzhyuamy", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "k": { - "string": "󺮈" + "policy_id": "76f9789c78615e7dc7de8759bf37dd987454924458a6967528b05841", + "assets": [ + { + "fingerprint": "asset1g58c3h72yenyvtwntqh3q9sc75d29k0wcjdlqk", + "amount": { + "quantity": 699, + "unit": "assets" + }, + "asset_name": "546f6b656e52" }, - "v": { - "bytes": "144222270548210223292e3962152630460c610f5368610a602ee5172068797d01010552" + { + "fingerprint": "asset1j2q8syueaz50ehtgemhrt9h0qg4jlg0mt7kruh", + "amount": { + "quantity": 6617, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1q38xwqwfc2cycqxme3kq5t7ln97uzde82p84hc", + "amount": { + "quantity": 8627, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1rzsqjvxlfanl26ek9cn5rr8gnj084rfsutyv24", + "amount": { + "quantity": 8017, + "unit": "assets" + }, + "asset_name": "546f6b656e53" } - } - ] - } - }, - "collateral": [ - { - "address": "", - "id": "7cd90a8caf50f95736711a1932503b7d055b2126c66f69660c3b4e65338a521d", - "index": 6565, - "amount": { - "quantity": 6, - "unit": "lovelace" + ] }, - "derivation_path": [ - "23595", - "10178", - "7282", - "12919", - "30878", - "20800", - "25682", - "18950", - "148", - "25302", - "28984", - "7824", - "8044", - "23321", - "7883", - "5251", - "23614", - "11824", - "22160", - "19081", - "24855", - "1986", - "20053", - "2965", - "14556", - "32573", - "3776", - "13906", - "19848", - "14076" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "assets_burned": { - "token_map": [], - "policy_scripts": [ { "policy_script": { "all": [ - "addr_shared_vkh1yzmy39reafdhl69zkdw5drc0s70n84wgejy0km7sxwdlvnm3e6d", + "policy_vkh17gup3xrft6s6h4uwqamdnn58u3f7zqr9ggsxs6hafyj874fvuzw", { "active_from": 100 }, @@ -4405,45 +5030,422 @@ } ] }, - "policy_id": "13cdc355106a51fd5d0c59460b0123703ee7f260c99c8252d35f2825" - } + "policy_id": "f2381898695ea1abd78e0776d9ce87e453e100654220686afd49247f", + "assets": [ + { + "fingerprint": "asset18xdu7dh2q9lphqdk9jtfy4zh8hnfqecxn98jgj", + "amount": { + "quantity": 2831, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset14x38g9qch079dq2uuakun0zcg80nv3sk2asvd2", + "amount": { + "quantity": 3374, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset155gwccjgeufzpmp2hq7l38una6r2g9kx7kdw7q", + "amount": { + "quantity": 3791, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1pw6g4dzf6cn9m8c27clnrer7wmrevqdqyul9tg", + "amount": { + "quantity": 5518, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vaedfk5kg5d68avx33mrqvn8qegn8tcgyvs27xn7j4jczua0mk5", + { + "active_from": 100 + } + ] + }, + "policy_id": "6772d4da96451ba3f5868c76303267065133af082320af1a7e956581", + "assets": [ + { + "fingerprint": "asset16qrvluaex0k3dtucu5yys35hg0ctw03qtlhyjc", + "amount": { + "quantity": 4131, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13nwgskmdl6909u48r4r7wzz2eu4an2q04z34gwuuqp5swmaxh5x", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "8cdc885b6dfe8af2f2a71d47e7084acf2bd9a80fa8a3543b9c006907", + "assets": [ + { + "fingerprint": "asset12d5p3gpf2pdulreda6whun4expys95ec7pp940", + "amount": { + "quantity": 8244, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset188pu37n38479cgu3u9k930fa6xxehxf9nvjmz0", + "amount": { + "quantity": 5738, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1x4djad0s4ddwjd64q27kfy5khd597xfqt9xzce", + "amount": { + "quantity": 1413, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": "policy_vkh1nujeq6klc4j7hlzg98w4zht8ew9hkjmekmmu827kl99k7jrr5j2", + "policy_id": "9f25906adfc565ebfc4829dd515d67cb8b7b4b79b6f7c3abd6f94b6f", + "assets": [ + { + "fingerprint": "asset12fjelrjpfp453lddm2pv9rsp8uty2er3frwnmz", + "amount": { + "quantity": 3598, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1zsgad6c768fwn20vkelcena3ucqgsrf3vxuf25", + "amount": { + "quantity": 6201, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset19gzesguhp2vdsfwn5dfcecaenrkedegan9rvtw", + "amount": { + "quantity": 9659, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset163d0a3ucm6cgsnucd7xevyz7svqgaxu87g5fg4", + "amount": { + "quantity": 3893, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1kh8mzu78dft3zwv07nxmle96tu70l5lw0dauwdjzumtzg2whw9p", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "b5cfb173c76a5711398ff4cdbfe4ba5f3cffd3ee7b7bc73642e6d624", + "assets": [ + { + "fingerprint": "asset1vd9xyfgh6wqc3zmcf8l4slptunnn3qyt54w8y3", + "amount": { + "quantity": 6349, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cklwwf3hakws7vm8rzg80zps7nz8qf3xznupjsg9f4svk4c93w5", + { + "active_from": 100 + } + ] + }, + "policy_id": "c5bee72637ed9d0f33671890778830f4c470262614f81941054d60cb", + "assets": [ + { + "fingerprint": "asset1vaf44d7aeu52w4xdg3nft4am9x2w5mpk40653n", + "amount": { + "quantity": 1243, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13fdpeppg20qncnwldln2f3z3j9xx7ju724dpe8myde84uv3ygmj", + { + "active_from": 100 + } + ] + }, + "policy_id": "8a5a1c842853c13c4ddf6fe6a4c451914c6f4b9e555a1c9f646e4f5e", + "assets": [ + { + "fingerprint": "asset1ukut0puyue4kr6mjlhtwvfeatrmtwjkl5saa93", + "amount": { + "quantity": 3048, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1jm2m53pk5q0qf84a6xd0ka29g2vrtm3x6j5chh", + "amount": { + "quantity": 861, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1ct548wyghtpj2zuxxg5q3uk85cxaqtye4q6l69", + "amount": { + "quantity": 5774, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1j6khzzck0czz6742gq70rqwy6fnsdmgdn5kkftq0atppjmdsen7", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "96ad710b167e042d7aaa403cf181c4d26706ed0d9d2d64ac0feac219", + "assets": [ + { + "fingerprint": "asset1383d5jzxsqp7qf4zgsp6v4rtvckd39jcmzu66q", + "amount": { + "quantity": 8383, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1g4ymuc3mv9s9jq3yspg7j5t96mfynu8scxwacs", + "amount": { + "quantity": 3079, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": "policy_vkh1dpw5u8g7kvma2388dcz2cvdyvqkw2yyzlmywhg99u7vkcnpxhfa", + "policy_id": "685d4e1d1eb337d544e76e04ac31a4602ce51082fec8eba0a5e7996c", + "assets": [ + { + "fingerprint": "asset1furcxvwjv9agfre54hdf2t0jl3975y4rv8vpx5", + "amount": { + "quantity": 1259, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1pe6etl2sze6ecdcwpp6yzzafcf7x57zl3e9mn4", + "amount": { + "quantity": 8429, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset10pl6sudm0lq86xdgklxvt22h0hj4tk4hep62qm", + "amount": { + "quantity": 1431, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1zs644vkxq7wtxw8sqvevtsv0e00erpjs4z825u", + "amount": { + "quantity": 5720, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1p5n02mngarqfj9vme624mafqure2ht6p5xq6ce6psjgsut35ztf", + "policy_id": "0d26f56e68e8c099159bce955df520e0f2abaf41a181ac674184910e", + "assets": [ + { + "fingerprint": "asset1l46pehlgcwueawtxmys6hpsfmqaluqjnkuvw0s", + "amount": { + "quantity": 9625, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1f0kfhl5ztguhxjpwpcj0ph8kj5fhnq238zvdfm", + "amount": { + "quantity": 4395, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh126gqtqs6p7nkf75ffkzphkdjc2dx006mzk4h9p69l63m5an2ttd", + "policy_id": "569005821a0fa764fa894d841bd9b2c29a67bf5b15ab728745fea3ba", + "assets": [ + { + "fingerprint": "asset1fyrm3n0eaf89xy0k95d3n0fdj2ky3u8ssnk6tv", + "amount": { + "quantity": 33, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1mzmr68yds6wv8ulaf6xt4vqaq5s290ve4fnux6", + "amount": { + "quantity": 9844, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh146vd2a4vy3ncw8tjr5f38nf8uvnz2c0d09r3h0y2en7kzwzywjn", + { + "active_from": 100 + } + ] + }, + "policy_id": "ae98d576ac2467871d721d1313cd27e3262561ed79471bbc8accfd61", + "assets": [ + { + "fingerprint": "asset1gd5dc4e2uvkefnmj7a894eh34vsdqy4qea5qeh", + "amount": { + "quantity": 1983, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1mugu8nppy8f0vrs3m2cuj7cy5aag9t6ev37fes", + "amount": { + "quantity": 4193, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1y3gj988p3kz4x6gy323fcskjktjz54vnuefpfc", + "amount": { + "quantity": 9418, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1zmmscmzs8dnfny6dgy04n4sxqge4df9d95pxtc", + "amount": { + "quantity": 5547, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + } ], - "wallet_policy_key_hash": "policy_vk1893qh3knr4s9l7988qpnpxrjdydnazfqcq2h6xp4ruqy6h3utu7s4qj6ua" + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1dpqy2k26vcl4wntpfp88ct3dv9dsk6rwpgq4jvgxtefsue6tty3qyv47ct" } }, { "withdrawals": [ { + "context": "ours", "amount": { - "quantity": 237, + "quantity": 213, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 9, + "quantity": 192, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 235, + "quantity": 120, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 144, + "quantity": 166, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 113, + "quantity": 97, "unit": "lovelace" }, "stake_address": "" @@ -4451,14 +5453,36 @@ { "context": "ours", "amount": { - "quantity": 74, + "quantity": 11, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 119, + "quantity": 24, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 247, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 203, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 99, "unit": "lovelace" }, "stake_address": "" @@ -4466,7 +5490,7 @@ { "context": "ours", "amount": { - "quantity": 48, + "quantity": 207, "unit": "lovelace" }, "stake_address": "" @@ -4474,7 +5498,7 @@ { "context": "ours", "amount": { - "quantity": 82, + "quantity": 194, "unit": "lovelace" }, "stake_address": "" @@ -4482,7 +5506,7 @@ { "context": "ours", "amount": { - "quantity": 25, + "quantity": 122, "unit": "lovelace" }, "stake_address": "" @@ -4490,29 +5514,28 @@ { "context": "ours", "amount": { - "quantity": 46, + "quantity": 230, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 88, + "quantity": 2, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 218, + "quantity": 65, "unit": "lovelace" }, "stake_address": "" }, { - "context": "ours", "amount": { - "quantity": 192, + "quantity": 158, "unit": "lovelace" }, "stake_address": "" @@ -4520,14 +5543,14 @@ { "context": "ours", "amount": { - "quantity": 27, + "quantity": 240, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 158, + "quantity": 59, "unit": "lovelace" }, "stake_address": "" @@ -4535,7 +5558,7 @@ { "context": "ours", "amount": { - "quantity": 214, + "quantity": 11, "unit": "lovelace" }, "stake_address": "" @@ -4543,518 +5566,501 @@ { "context": "ours", "amount": { - "quantity": 203, + "quantity": 31, "unit": "lovelace" }, "stake_address": "" } ], "inputs": [ + { + "id": "5e3dc1625d7bce40376cb934044a40096b734d0f092b6e631d08102d31235504", + "index": 1 + }, + { + "id": "db8e5c66142a4d0f302315633d78122e46047d1f759e40513f56b42d5dcf5a08", + "index": 1 + }, { "address": "", - "id": "29eab4ca425a41b213231a06437d5d501631660e5bec0c01407c071e320c4617", - "index": 25449, + "id": "5570305f06500a7bb951172e503d5e7f103473334b040d636377360ef2171c10", + "index": 9030, "amount": { - "quantity": 109, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "11429", - "25556", - "29521", - "21038", - "902", - "5419", - "9511", - "2317", - "19312", - "20480", - "6062", - "5035", - "24601", - "27271", - "5958", - "10930", - "9317", - "9066", - "2718", - "30628", - "2664", - "25846", - "25951", - "2762", - "29013", - "14162", - "25355", - "11012", - "3482", - "30285" + "10649", + "27951", + "25348", + "4650", + "27761", + "941", + "25725", + "7734", + "8213", + "7988", + "29722", + "28244" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 22, + "asset_name": "546f6b656e41", + "quantity": 6, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { - "id": "c22b530347789726485420603154247f175e285f351d7a79d52e6dbe3e501d66", - "index": 0 - }, + "address": "", + "id": "635f64416a43173a053c6a10472f20473678683e2b2b1dfe253665422761756b", + "index": 13500, + "amount": { + "quantity": 134, + "unit": "lovelace" + }, + "derivation_path": [ + "14497", + "15883", + "9512", + "6750", + "32476", + "7183", + "7368", + "30516", + "11248", + "31053", + "22575", + "20525", + "12231", + "30801", + "4628", + "30717", + "26659", + "22173", + "4278", + "21207" + ], + "assets": [] + } + ], + "outputs": [ { "address": "", - "id": "001f251f01082b421e72b162e00e5162557d174e9366331468642b69300ca64f", - "index": 21490, "amount": { - "quantity": 61, + "quantity": 33, "unit": "lovelace" }, "derivation_path": [ - "19616", - "4133", - "8741", - "19619", - "6777", - "2003", - "5111", - "12028", - "18081", - "26690" + "13830", + "4928", + "29811", + "26924", + "4139", + "22673", + "9442", + "1864", + "8354", + "10066", + "29775", + "1609", + "4063", + "7236", + "11430", + "28540", + "21877", + "32068", + "29084", + "24325", + "11596", + "17509", + "16599", + "4138", + "7224", + "29569", + "19836", + "23813", + "7767", + "22576", + "13958" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 23, + "asset_name": "546f6b656e41", + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, + "asset_name": "546f6b656e43", + "quantity": 10, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 17, + "quantity": 6, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 23, + "quantity": 24, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, { "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, - { - "id": "5ddef4bb8622286e670865e34859284155ac58037c4c76415e3736545d241f22", - "index": 0 - }, { "address": "", - "id": "7a791311660aec2424385372226d4e2eac204a545d3b503806526a494622ae6c", - "index": 5930, "amount": { - "quantity": 39, + "quantity": 172, "unit": "lovelace" }, - "derivation_path": [ - "7555", - "30351", - "23716", - "20377", - "22013", - "22446", - "7944", - "18806", - "29954", - "1881", - "3676", - "5067", - "15062", - "26990", - "24790", - "4517", - "4413", - "23774", - "5668", - "12538", - "4542", - "6778", - "8697", - "29673", - "27920" - ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 23, + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "71060b7a055c661e9d51150f565a7628967c01682d425f4e5408141572d26042", - "index": 0 - }, - { - "id": "4dfd19023936801a934b0f7a39a9437ee72b3b7f20d433604268740e369f160a", - "index": 1 - }, { "address": "", - "id": "08233aa7c3437d51415b1091221a501d5a466631595b4900234c870a2873cb51", - "index": 22982, "amount": { - "quantity": 103, + "quantity": 200, "unit": "lovelace" }, - "derivation_path": [ - "14047", - "12396", - "25986", - "14476", - "12895", - "17411", - "13539", - "494", - "12963", - "23008", - "1739", - "472", - "16076", - "1809", - "2517", - "19789", - "8503", - "21408", - "19214", - "4867", - "26544", - "6056", - "15349", - "11972", - "7100" - ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 10, + "asset_name": "546f6b656e42", + "quantity": 26, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "id": "4b031106493c4559362c4e053e6f28571833154917517200671ee528434d1f30", - "index": 14110, - "amount": { - "quantity": 41, - "unit": "lovelace" - }, - "derivation_path": [ - "8430", - "16113" - ], - "assets": [ + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e43", - "quantity": 19, + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "2e4c2010250f9b466f420e1e4444360915730c645730298e370a3e6dac776f71", - "index": 3942, "amount": { - "quantity": 43, + "quantity": 158, "unit": "lovelace" }, "derivation_path": [ - "14986", - "6655", - "24046", - "19356", - "7158", - "17777", - "11894", - "323", - "5795", - "32617", - "30248", - "15834", - "21", - "27288", - "7935", - "27104", - "20150", - "9299", - "7658", - "29840", - "150", - "10957", - "30834", - "29292", - "9088", - "31958", - "22447", - "18954", - "20925", - "11538" + "29931", + "32628", + "13596", + "30044", + "17634", + "334", + "16534", + "31767", + "21967", + "27220", + "19780", + "25689", + "20160", + "9181", + "17928", + "20817", + "15101", + "7512", + "26641", + "32183", + "4783", + "15902", + "8340", + "21744" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 24, + "quantity": 19, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, + "asset_name": "546f6b656e43", + "quantity": 19, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 29, + "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 33, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, + "asset_name": "546f6b656e42", + "quantity": 4, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "3d572e27364a7c08657e33143a397f2b23822d72126e34f809736f3058af55f4", - "index": 1 + "address": "", + "amount": { + "quantity": 111, + "unit": "lovelace" + }, + "assets": [] }, { "address": "", - "id": "4cb64041668a5a51566d114d1235b4f35f7dab3d3624064150ed2a036c766f19", - "index": 28212, "amount": { - "quantity": 247, + "quantity": 114, "unit": "lovelace" }, - "derivation_path": [ - "26095", - "25063", - "3991", - "22534", - "10305", - "9909", - "17437", - "30927", - "30879", - "9048" - ], "assets": [] }, { "address": "", - "id": "7a196c2d106a82646cb6565746725254703dc106237e23053e7dad32500e7e12", - "index": 2809, "amount": { - "quantity": 177, + "quantity": 245, "unit": "lovelace" }, - "derivation_path": [ - "7284", - "15932", - "13632", - "5732", - "1505", - "32359", - "6508", - "1134", - "18224", - "14710", - "12157", - "27494", - "31045", - "15735", - "11618", - "19672", - "6777", - "20375", - "11937", - "15446", - "31340", - "10518", - "29769", - "8894", - "18100", - "6433", - "9910", - "24549" - ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 52, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + } + ] + }, + { + "address": "", + "amount": { + "quantity": 232, + "unit": "lovelace" + }, + "derivation_path": [ + "24559", + "13040", + "27136", + "29528", + "14479", + "8173", + "22575", + "28658", + "17507", + "3375", + "7021", + "2686", + "31039", + "1125" + ], + "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 27, + "asset_name": "546f6b656e42", + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 19, + "quantity": 18, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 36, + "asset_name": "546f6b656e45", + "quantity": 17, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 17, + "quantity": 8, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 30, + "asset_name": "546f6b656e42", + "quantity": 44, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 12, + "asset_name": "546f6b656e42", + "quantity": 28, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] + } + ], + "script_validity": "valid", + "id": "2f8555e64c6d182f4a7d6a5d2b290e4525205f1774266a122d3a72633d5f237b", + "deposits_taken": [ + { + "quantity": 168, + "unit": "lovelace" }, { - "address": "", - "id": "241a4c7e59690c750c5334183369ad0b185371646b7e14300d2d17360930758f", - "index": 8188, - "amount": { - "quantity": 73, - "unit": "lovelace" - }, - "derivation_path": [ - "30313", - "20374" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "quantity": 210, + "unit": "lovelace" }, { - "id": "6aecb731673000d1586b72126feb470532436a501b68685d3f7e017429184141", - "index": 0 + "quantity": 236, + "unit": "lovelace" + }, + { + "quantity": 36, + "unit": "lovelace" + }, + { + "quantity": 160, + "unit": "lovelace" + }, + { + "quantity": 138, + "unit": "lovelace" + }, + { + "quantity": 31, + "unit": "lovelace" + }, + { + "quantity": 88, + "unit": "lovelace" + }, + { + "quantity": 21, + "unit": "lovelace" + }, + { + "quantity": 49, + "unit": "lovelace" + }, + { + "quantity": 16, + "unit": "lovelace" + }, + { + "quantity": 47, + "unit": "lovelace" + }, + { + "quantity": 211, + "unit": "lovelace" + }, + { + "quantity": 41, + "unit": "lovelace" + }, + { + "quantity": 47, + "unit": "lovelace" } ], - "assets_minted": { - "token_map": [], - "policy_scripts": [ + "burn": { + "tokens": [ + { + "policy_script": "policy_vkh14xwzwf4a468hn22k8pdflwfx8thd28jxezhe9mcmu6lcs29adza", + "policy_id": "a99c2726bdae8f79a956385a9fb9263aeed51e46c8af92ef1be6bf88", + "assets": [ + { + "fingerprint": "asset1yjgspygz97mlr6jrtew6sjdtw8pfqztl0h8x7g", + "amount": { + "quantity": 6814, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1a3dmep098fxy4ug67366ayyz4aluhnejamlurk", + "amount": { + "quantity": 716, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1h6cv7cqpn6mxaxeqjrs6y9ddypjt5938955ep8", + "amount": { + "quantity": 4176, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, { "policy_script": { "all": [ - "addr_shared_vkh12g6u8mmcxgqgrp6gmq0ysxa82nt4rwglgmz3a47cwrt0vspjh7u", + "policy_vkh1g4ghcapwn52pu7zufktcfwj9rg2dx6x55he23zj6xzxuv32xcq2", { "active_from": 100 }, @@ -5063,2286 +6069,3006 @@ } ] }, - "policy_id": "b05d9de8d219afe1e4d92c0320cd9c96abc2fb7d5a7697b8ff45ff10" - } - ], - "wallet_policy_key_hash": "policy_vk1jun5jznnlg85yzrmtfqgwv3j2ggplm2mxpt47ahpq9wqwcjgqpjsz8wmm8" - }, - "outputs": [ - { - "address": "", - "amount": { - "quantity": 158, - "unit": "lovelace" + "policy_id": "45517c742e9d141e785c4d9784ba451a14d368d4a5f2a88a5a308dc6", + "assets": [ + { + "fingerprint": "asset15ae23nh50r3c4r2u4xt3726vntpk68u7d9ylj0", + "amount": { + "quantity": 2383, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] }, - "derivation_path": [ - "5074", - "21414", - "7922", - "28250", - "29199", - "31910", - "14683", - "22553", - "15596", - "15937", - "16633", - "30175", - "13024", - "23753", - "31305", - "14377", - "30774", - "10929", - "27523", - "6061", - "3294", - "23973", - "26109", - "8324", - "19047", - "18999", - "2861", - "16367", - "10497" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 211, - "unit": "lovelace" + { + "policy_script": "policy_vkh13qltzefm24hv657qjwpfzn4mkt6r4wnzyk48k9p9sl707mwajrf", + "policy_id": "883eb1653b556ecd53c09382914ebbb2f43aba6225aa7b142587fcff", + "assets": [ + { + "fingerprint": "asset1pyvrgla758q9scm9uzvl8hs70l7e2zz4zglhsz", + "amount": { + "quantity": 6277, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1cynqyj6tzzpve88ezkcelx5z6zw3xls0r9f05r", + "amount": { + "quantity": 3080, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + { + "policy_script": { + "all": [ + "policy_vkh1uxsrjqj58ya4aw76axqug6pmfxs7t2k62t8calfu500n7gh0w92", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "e1a0390254393b5ebbdae981c4683b49a1e5aada52cf8efd3ca3df3f", + "assets": [ + { + "fingerprint": "asset1nzar23kcxehpyywmeuj3gq7v4ltkng9vqjy7wd", + "amount": { + "quantity": 7583, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1aanl0f3dvnvll9a5cfpt560x3kr6tvcrkrq7du", + "amount": { + "quantity": 6076, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": "policy_vkh1fc02dn853sn0yrpn8z3uxyxf0kp9svx7nxzhpslfv0whyauflep", + "policy_id": "4e1ea6ccf48c26f20c3338a3c310c97d825830de998570c3e963dd72", + "assets": [ + { + "fingerprint": "asset14y5lpzjvuq8dyu29uw7dv4jtq80u4kklshgx8h", + "amount": { + "quantity": 805, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1u0u6yr75gs9xcryg7tyf8jhzaud8swlar8lxx0", + "amount": { + "quantity": 4825, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1j2cdg3uz7rnh9fn8dhce57rdn2c9gxzdj39zwu", + "amount": { + "quantity": 6682, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1dg0djl069gux92frw64ha8pc4mcvnmv42ltf06aspvtpuxc9fwc", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "6a1ed97dfa2a3862a92376ab7e9c38aef0c9ed9557d697ebb00b161e", + "assets": [ + { + "fingerprint": "asset10c2cnllkq8z25720ljuhesnmzqjl8ptsxh5vjh", + "amount": { + "quantity": 2769, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1843cjhxzfkkq6q5fkyekvwtgcrzrjjghv5lnle", + "amount": { + "quantity": 7348, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh1wrhdvparahwngrqwf47pas8f8qgtlztpkxjjs7f8qm9y77dztf0", + "policy_id": "70eed607a3eddd340c0e4d7c1ec0e93810bf8961b1a528792706ca4f", + "assets": [ + { + "fingerprint": "asset1fgq0l73pfgl6ky8jewtrgdrkusucw3q33pp7er", + "amount": { + "quantity": 998, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1kna82dve0y90z90vk7ryg888gc90rsgspxnj3x", + "amount": { + "quantity": 7268, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1dkkjedt4wht37xc7yrdyl3ynmkmhxzveax3lu25kwx5wq7vauyt", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "6dad2cb57575d71f1b1e20da4fc493ddb7730999e9a3fe2a9671a8e0", + "assets": [ + { + "fingerprint": "asset16twtvwg2pyejlpny7apwwnp9k5qxeacjy88rz3", + "amount": { + "quantity": 2582, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1p8ujtpxkxkjzd60qnesh3pxp5c2ej9h3ttgmkvd5vrgtqyrw8kd", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "09f92584d635a426e9e09e617884c1a6159916f15ad1bb31b460d0b0", + "assets": [ + { + "fingerprint": "asset1x8fmyya3uxs5wst6z5ss3j607e0shrte679qkj", + "amount": { + "quantity": 5562, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1mwv6qre66jgatxnwhn3zqpqdqh8qkw2cydna04", + "amount": { + "quantity": 1325, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1k9spyw2jvgckmwcnl9xjv8g2tqlk0er0a4xtqx4xgh02sfyctn4", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "b16012395262316dbb13f94d261d0a583f67e46fed4cb01aa645dea8", + "assets": [ + { + "fingerprint": "asset1mupe75nv2stredcjjxtyvul62aysz2lewf75wx", + "amount": { + "quantity": 7140, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1qt0a30325nletl0g355r4tdaaqqr752z0gaxz0", + "amount": { + "quantity": 4013, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1gfhds4rpvmpkv55c7lacs342xfk833c4yweemx", + "amount": { + "quantity": 6796, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": "policy_vkh1q6m8043njysv2073r7ac4xv30q87n66254d4tntj4dma6vk8vsn", + "policy_id": "06b677d6339120c53fd11fbb8a9991780fe9eb4aa55b55cd72ab77dd", + "assets": [ + { + "fingerprint": "asset1y8ttrtzy84xnc779h780elfutwqxcu48z32apj", + "amount": { + "quantity": 9103, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1rgnnhushc9x549mhqm2jz84hnc23unetv9q7vezxm3m0gtfptw6", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } + "policy_id": "1a273bf217c14d4a977706d5211eb79e151e4f2b6141e66446dc76f4", + "assets": [ + { + "fingerprint": "asset1aq0c4dtdh5m6h0zp9354apqnamgtk9lqpqnqj5", + "amount": { + "quantity": 9827, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": "policy_vkh10jpjt45sycgk2fcva7ttgg7vrdqj6fcwukt5qg346dfgjyejvqx", + "policy_id": "7c8325d690261165270cef96b423cc1b412d270ee597402235d35289", + "assets": [ + { + "fingerprint": "asset1elrajndq3yxptgmgfmzrj74mflq05fu8j8gxtg", + "amount": { + "quantity": 8990, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1rh8d6jsmc36g26rrrknzcmvfclz2lnekfnhtry", + "amount": { + "quantity": 1863, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1szpxjwyqxkasnz9fs77meklx05n7mq6k9z6gq9", + "amount": { + "quantity": 5597, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1aqtakt2ajtfjus7qa968rswjlkc8ccavz4fsgm", + "amount": { + "quantity": 7725, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + } + ], + "wallet_policy_key_index": "0H" + }, + "fee": { + "quantity": 199, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "31256", + "40", + "26881", + "562", + "27790" ] }, { - "address": "", - "amount": { - "quantity": 174, - "unit": "lovelace" - }, - "derivation_path": [ - "22917", - "4756", - "29966", - "4640", - "18170", - "8702", - "14152", - "27005", - "26114", - "21514" + "certificate_type": "register_reward_account", + "reward_account_path": [ + "7691", + "30613", + "28351", + "25521", + "14887" + ] + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1uvvnw9gh72tzgfcn94a0588zegzx37mqwx5lktwq5frky5u9xyh", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1aqd4drrral3hrpc4yww59x8v5vkq3shplgkydkz2s7jmx4s6a68suajh9x", + "ed25519_pk1v4ppd738amdy9230wpel4d62cm09kvh632tpwhspkgjhv0aauj5suz2ant", + "ed25519_pk1kyftq3j2srqn7ws0kszxjrvzs670e23pwwtzhu7s8gf249ne8pmq2ntkey", + "ed25519_pk1asnsce9tm778nm3twv49jlzhgccd40nqpafuv5e5lr8j730556pqa3wggl", + "ed25519_pk14d5rqgl4wquq76msnr8zrn0qjdvdxzjytdhr8yxvvug8tdvf6kpqmpwxq2", + "ed25519_pk1l47eu0ldfeydg0ckl4g9yanxjutquuumzuzxpnmjanqxqm25v5aqh3cvxw", + "ed25519_pk1mn8ufz383glt4dpswkpqnfvpwj084yle9ldxr42xspch0dzkc7rsqz5eeh", + "ed25519_pk1qq39l34nujsjtq39mhenclacawpwcq6yl47p8vwdkre9uyz5xeqsln9gxm", + "ed25519_pk1kmnt2zx4535yqr7zn0mfmryew67t6pjuuvpu68afauu58qmt6c0q58wqf4", + "ed25519_pk1agu578shvfqu02clmc5clt87s37a2kdgqu3mtyec7ppzxuuejm5swvrhrx", + "ed25519_pk1d6h2ksnty2044xqawq8x9jw2m9srm98gy7e9lan00mnz4j4sryksqvncu3", + "ed25519_pk1d8ex6m0n3c3gffx0ua4l0y0gxg7mp6p7zpcxxqmrukptd7fnefsq5upg6a", + "ed25519_pk1fmgg56kutw0make8ta22hhzrufq57qgtzy9d0xr6zf4qhjj9vdlspl2qhy", + "ed25519_pk18efhrfhn52p24lpn2nsc458ud8ymv99dr6k7yysggktqujmm7kys72d2w9", + "ed25519_pk14ynf6ctvxy6wxlv0dqyql2nc80jjegfw4axnej7ez47weezx2mtsnnm4sm", + "ed25519_pk1dkwrqd063w72e726kqe5tupapadvnq2kf0dxshe6n6aduce4j4lsgrgc9v", + "ed25519_pk1nakar8eus7ywunc4yjprk2u6rxvrnhhfujskl9d4hmrx5vt5zmuqn6z8dl", + "ed25519_pk1xqjh6svyvsapf5mghgkw9qnc6sns0c2nzxhfwfpu3qat0ffvu5rss2qxk3", + "ed25519_pk1hhcekfp76lnv2mqr8uxmw9l2q3uyzcdxntammnz5upln33qr4geqs2py45" + ], + "pool_pledge": { + "quantity": 172, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 143, + "unit": "lovelace" + }, + "pool_id": "pool178gysfnx658wlkv9llclyc2500kxp7wezg6c4kv5aewqzvlkzth", + "pool_margin": { + "quantity": 74.82, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1urf2ft9cwwva33zc89rw0d0vjh0nrrzaapnmmu4esnm0svc7laa", + "retirement_epoch": 16652 + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "quit_pool_external", + "reward_account": "" + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1rlg9dud4xfjd3ldlc865gz4xvy7he6jtqdvclzvxukv0l94akknsmpgqc6", + "ed25519_pk1ync2gly69ftlkpufmgly2ursrzfumuuc8vxyevxnu4zwnw9hqhls8lgdgm", + "ed25519_pk1fdkz0l7yvnndr8acn7acxhymy5j22p67fz0uddqc88errq9drmlqpw3age", + "ed25519_pk1jcuvw37c37ljmdw7gplzj8tpa50kvu486f9escpgt6unsdrwl2sschwcmw", + "ed25519_pk1vm3u9ujx05tqgpfv5qrvrtl9858qvrezgdvqtugvcmhm3d9835asdwv9xh", + "ed25519_pk1wxjyd2y298lu6sygqmjw0q7g95uknm5qd8q34lkhpw9kr9cz7wgqn2kuh4", + "ed25519_pk1fmaha5vefypyl3wgk24vy3ghsncc20r5z6w07kylv6ydumnqvnfs277z0d", + "ed25519_pk10y3qmskk0fmv7sfsz8288n05l3fjmnjg5g0gxhzp3xs9kxssenhs75xwg7", + "ed25519_pk12y22xndnayqh8lznlvraeu705alvm5c4cdgzye4al55m90v8gpuqavxajc", + "ed25519_pk18zwjntcjzqvhhv0lhnl9qj4nnq49femukhtx2dztlfe29jytrd9q8geg9d", + "ed25519_pk1um4g425dcru9ywxwvq6adz2lnn4h479rsu28t7372s3yd9htdr8qe6tvkt", + "ed25519_pk15hpfapaxt8gg6undl7pnkm4md7gm635ypjt3qls9amcz7vkg0hasn3agx4", + "ed25519_pk1wlllv6slcv55t98m8hcvaeu3pkhq0h8gq063464rdasjr2mlvkdsc0m4a3", + "ed25519_pk1lfnr04hwv4kf20hj3mf35qq3klalg5xwrdhs6upvza8rdjr7pgzsw6au6t", + "ed25519_pk1np82keq5s38v0r7y2rmkln0gtkwveac5hmzv285w42wtz3pvsdksr74l9j", + "ed25519_pk15zcz32qml93f3mfg6tx7ty5pm6emxleqva349w460z9ftyrmqqgq5h8scu", + "ed25519_pk14uleml72dfprkd564tx2zkyslk4lprja9d04xcayh8r6ahh68dsq673fqa" + ], + "pool_pledge": { + "quantity": 55, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 135, + "unit": "lovelace" + }, + "pool_id": "pool1c2a0ln0n7rekltkgtjfztea709pm98shjn93su9vv03mschua5h", + "pool_margin": { + "quantity": 33.55, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1f8q34hrx6mzhe83v3ku9f9dg20nwgmk3fzzp3394qvg3t8y72tzqxqdweg", + "ed25519_pk1gsjq0ntec6t8fscsdnt2g9ram2f2lw8rkfrv5csnp7lg5ql8f0fq2jzgzr", + "ed25519_pk1d4jjrz88qgw6qqg62mv8cwl6dfnd8le5v5kjumm6ytakle7vjspqn47uep", + "ed25519_pk15e5qct9fxde3duqdcdpz358uycfwcywrcfvzwzsaqugnwusv9adss60rw7", + "ed25519_pk1uwtskh6at0nhkjprw8cds8j04nd5mfwphuustxh2n24rk2tncsuqujzk2q", + "ed25519_pk1w54q2ejh07vvtmr5gupq4lucca2zjdjaf5f54nxl00nlcp9vggksyjge4w", + "ed25519_pk1athgz9szexm77auy476flgqk9arqm7atsk5g0rv4t77xzgz69rrqzdghz3", + "ed25519_pk18vlhe6dke3andgpkfz4kzkmqjh72rfzhw90vxg9epmc34lgeplvqv7mrpa", + "ed25519_pk10afgduqlvg8pzhfh8azn750yasex9haakp7d4cwv0lmzagp60rvq2adfqn", + "ed25519_pk1dq5n5weqmnfyrk8s88hv9ese45sngjr95mzmpq2m0n2es5la5dnswsl734", + "ed25519_pk1rtql9uujgulndsflx4sdx2wkl3fqfsaactgzg22evply42dyu6dsz8tpm3", + "ed25519_pk1hjz958dt5q895xds8hpzmv52pmd73r6th4nl2puax980khcnc89qxcp43l", + "ed25519_pk1mwx8qh95rssk5mgavxm0wmydtlev33cqrp2a4trksncm3ma9uagstzjdd4", + "ed25519_pk16f0wgmhhnu6vkczjwvdmf2kkzkhypa5kjx59akagxhrcc3dwvn5q2tewd6", + "ed25519_pk1awmg3ulu2nes6xfapz7nz4652370j0vd7cey2fsvq4k70q8mqq9qltnx85", + "ed25519_pk1c4q45s3pz5jtq804t9cdu6hplfqq7ytwml8l2uzxjqurt805wgcstpmwmc", + "ed25519_pk1n76ch7duyvgnvaq89997lvennckycpz9h8jtnmzjlgxzrj55vcgsajsg80", + "ed25519_pk199u92cln25alejqwgxjs82fdns56qc8uwgt4dve5t95hpuht52as6jp3md", + "ed25519_pk1eyfg96k4j5dhc895n9zlazzhylpdj6p6nr7678qrmfr29cnrujsqrdhrxd", + "ed25519_pk1n8ug9w2cqr8sdnupghfnqp9rwrryezu5jsh4tpzj29ntw0rqz9tqgl5j5z", + "ed25519_pk1z9yd3as0w4c6d9z2g3gj9agpkw9tlg9hj6n4jpvm5djtgcrnq8nsjtsqtq", + "ed25519_pk1uhx0mewj43dwc83ulpjn4cy5kwhvhudlydyqhu93seyfp9nj3wtqx8jc3f", + "ed25519_pk10sey94n73epmj4rprjwajfq2zacp9f6gpr8c3zzxm3zhwjvztdwsjjgg0z", + "ed25519_pk1j7c7kfym5t39q8s257gxyk52enc62wxyapfkmsjkfaekzysswr3scsylay", + "ed25519_pk1ywvkgkrmsylw5yragqxjgyga75fm6qt4tjcvuy56w0r2ggul702s94hj0r", + "ed25519_pk1s67r69x70266zsf05pf6llmvuegll90lym36jdu4w0n7t8ywv6aq0duv2k", + "ed25519_pk1jja2yqr0jcrnjtp4888q3u5w470qxcuj674c07mhr0hzjjjenpcstddydn", + "ed25519_pk15x3r069xydwn8wzpaz7rsx87pz22phthnff9xhjfwcwjhx9nhq8sfyhn8y", + "ed25519_pk1tmxdjyf7uhhaht5zk9ypl9d878wzsphmdg3rgu577wr50c3gd7gq3h9l2l" + ], + "pool_pledge": { + "quantity": 160, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 250, + "unit": "lovelace" + }, + "pool_id": "pool1scv8hcavf0hw9z2yncd4san7249yq7la3gyvfpwkuj3y74vlj2w", + "pool_margin": { + "quantity": 53.57, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1qljkfmafxe5w06uzn308u92acfutfh3gll6suf3c4le6kk6h4py", + "retirement_epoch": 22487 + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "18934", + "12674", + "12403", + "23548", + "21224" + ] + }, + { + "certificate_type": "join_pool", + "pool": "pool1s7fl2wtvf9qcksfja828qq03ruqx3sfkmekr3y36p4ynqh88py6", + "reward_account_path": [ + "15086", + "11326", + "14607", + "1766", + "27483" + ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "18583", + "22309", + "23111", + "21495", + "4724" + ] + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1rc38k95jnmy803ttuwpqd7687vmcqryefaqk07rr00e5nn0p0qaq7v6dek", + "ed25519_pk1mz2996eqmngwm23evya6ratm5rxywlem7d97xxtfgu05f0hfvr5sxz76kl", + "ed25519_pk1aaes4kl46g5x6cukqygx8ee793t0hv7583qr9ha62kjah94s4d5qe8lweq", + "ed25519_pk1zv05nl8ex4tqdhgwkl5senvc90gg0q0k78933z8vmw55ugxlmavqc8u4hw" + ], + "pool_pledge": { + "quantity": 201, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 185, + "unit": "lovelace" + }, + "pool_id": "pool13rjxqsyllca8ufqc44wm76wdl4kg05dr23g5cfjp6hq9sw3acxk", + "pool_margin": { + "quantity": 64.98, + "unit": "percent" + } + } + ], + "deposits_returned": [ + { + "quantity": 198, + "unit": "lovelace" + }, + { + "quantity": 88, + "unit": "lovelace" + }, + { + "quantity": 88, + "unit": "lovelace" + }, + { + "quantity": 30, + "unit": "lovelace" + } + ], + "metadata": null, + "collateral": [ + { + "address": "", + "id": "6122757423677f2e0b6708586e00735889e3684723986747ca3620ca33785c64", + "index": 17106, + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "derivation_path": [ + "16588", + "22677", + "26781", + "833", + "18056", + "13110", + "1676", + "24324", + "23278", + "28271", + "23794", + "30872", + "11139", + "24869", + "20040", + "10839", + "16425", + "22301", + "20348", + "9142", + "29443", + "32160", + "10636", + "3871", + "31455" + ], + "assets": [] + }, + { + "address": "", + "id": "4441570769ad3d5e6f1f74174a6b6c856416d357640139255f1f6c2c121d0134", + "index": 12794, + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "derivation_path": [ + "24335", + "19335", + "30530", + "28125", + "27385", + "27947", + "32606", + "14805", + "3359", + "32612", + "7072", + "21173", + "2672", + "16059", + "23242", + "1417", + "7951", + "19116", + "24860", + "1945", + "25563" + ], + "assets": [] + }, + { + "address": "", + "id": "5200aa3d3b7ebbd0227968113017253f0c1a19503ded041d2f6082391c264b40", + "index": 655, + "amount": { + "quantity": 126, + "unit": "lovelace" + }, + "derivation_path": [ + "20214", + "3052", + "11830", + "12473", + "7506", + "18673", + "16037", + "6629", + "27303", + "23712", + "4977", + "18197", + "4202", + "20583", + "181", + "16116", + "24000" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, + { + "id": "34607da42f3a6f19106f0f47387a68344038d62170075c3a1b3042044c283e31", + "index": 1 + }, + { + "id": "7d2a084e353242283629751a960e657390fea37213010d3d7b711237600f1c4d", + "index": 0 + }, { "address": "", + "id": "013dd2e664330027201562274a144f652207493e735c71350d36254c7a7116bb", + "index": 19777, "amount": { - "quantity": 255, + "quantity": 82, "unit": "lovelace" }, "derivation_path": [ + "23159", + "16803", + "21463", + "30816", + "11293", + "8973", "19163", - "16086", - "27387", - "26365", - "1090", - "32214", - "26740", - "12633", - "29894", - "12224" + "29986", + "9783", + "32062", + "24644", + "11955", + "23819", + "20745", + "28111", + "16660", + "13317", + "1849", + "17810", + "1167", + "18593", + "19157", + "28545", + "23433", + "1675", + "773", + "2007", + "19176" ], "assets": [] }, + { + "id": "3003299075330732667097402d4596762f5a54037b397558c019647e5a158a2c", + "index": 0 + }, + { + "id": "5d1f110a5f1a372d0b146273220a5db542340c421ce2ae0c4f60688e50185b5d", + "index": 0 + }, + { + "id": "e838660404651dfa713a1c6c44380f125b4184225a474415433171708e156957", + "index": 1 + }, { "address": "", + "id": "038a4719210c4a4f9718782f6d52be005a3932003e3c45d8f81c0d5211493067", + "index": 5116, "amount": { - "quantity": 110, + "quantity": 148, "unit": "lovelace" }, "derivation_path": [ - "31875", - "28554", - "13216", - "223", - "4569", - "31803", - "23323", - "18212", - "25695", - "19836", - "26214", - "18679", - "12145", - "18785", - "3874", - "15527", - "20442" + "23275", + "16402", + "5853", + "13598", + "7604", + "11717", + "405", + "11615", + "7821", + "29342", + "2738", + "23952", + "21186", + "21468", + "4702", + "16733", + "28868", + "17034", + "26222", + "15075", + "19866", + "2911", + "19878", + "18648", + "1938" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", + "id": "dae10d1415197c68055a6d142f576e741b0ace219e9cb67d2f6d356dcf3c6c26", + "index": 21841, "amount": { - "quantity": 70, + "quantity": 95, "unit": "lovelace" }, "derivation_path": [ - "22805", - "60", - "11444", - "21741", - "12150", - "13370", - "19239", - "7851", - "4852", - "3332", - "5378", - "199", - "12360" + "16872", + "3883", + "26927" ], "assets": [] }, { "address": "", + "id": "6862205c0c6254606c4c023c66033a217b36052f26737db4360f55297151767d", + "index": 28751, "amount": { - "quantity": 222, + "quantity": 76, "unit": "lovelace" }, "derivation_path": [ - "31881", - "9816", - "14019", - "26791", - "16549", - "25687", - "15377", - "28771", - "2987", - "22801", - "501" + "23746", + "27872", + "2577", + "3286", + "19914", + "11553", + "19950", + "18692", + "22421", + "25227", + "27965", + "5732", + "3681", + "26561", + "27369", + "9763", + "30797", + "4538", + "23787", + "10577", + "9626", + "23697", + "19653", + "30999", + "17693", + "22976", + "29742", + "8424", + "31239", + "7413" ], "assets": [] }, { "address": "", + "id": "80a3040b5e3995014f1c77041d3b077a01666aea544b2c7f134e3e14223a0b94", + "index": 8198, "amount": { - "quantity": 102, + "quantity": 145, "unit": "lovelace" }, "derivation_path": [ - "13485", - "22218", - "8208", - "29077", - "7721", - "21763", - "18211", - "22733", - "6133", - "1683", - "20931", - "16772", - "11088", - "15659", - "16125", - "4241", - "9959", - "21862", - "12197", - "1880", - "4757", - "22532", - "10486", - "759", - "20373", - "8995", - "687", - "11866" + "4245", + "23139", + "21865", + "25126", + "16725", + "23978", + "3970", + "24445", + "2293", + "20146", + "24169", + "17945", + "23111", + "4976", + "20692", + "19020", + "30851" + ], + "assets": [] + }, + { + "id": "512fd33325ef5b1cf9103e72703075570e58594fbe6c203d3f2d7e5f06671058", + "index": 0 + }, + { + "id": "355a0f9855725a100622054177584f42be53520f4d384f34742f7c9f44b97000", + "index": 0 + }, + { + "id": "470f500b2e2e66095b1498757c357e145674554d013166620a6528515a766849", + "index": 1 + }, + { + "address": "", + "id": "67509729197b82e43e2a1e353e977346380a268c3193ee38223a37763f1f7836", + "index": 21173, + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "derivation_path": [ + "10684" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, + "quantity": 21, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "263b4d7827aa3e3930563100555b7353b54e222ef85b3632354a2e4c7f8d52c1", + "index": 22785, "amount": { - "quantity": 179, + "quantity": 96, "unit": "lovelace" }, "derivation_path": [ - "8338", - "13710", - "6735", - "27930", - "3409", - "25387", - "2173", - "32621", - "16878", - "3955", - "1656", - "7526", - "9477", - "15844", - "31730", - "9982", - "30441", - "25986", - "18922", - "17461", - "19393", - "626", - "21463", - "257", - "7763", - "27231", - "27504", - "25844", - "27647", - "18168" + "5098", + "18788", + "23245", + "12385", + "25427", + "13833", + "31349", + "27167", + "13035" ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", + "id": "b55ab678fd6a6365a8025f28742e04955551496d78107a376a76496802772e17", + "index": 23846, "amount": { - "quantity": 84, + "quantity": 82, "unit": "lovelace" }, + "derivation_path": [ + "16223", + "23911", + "664", + "6721", + "29664", + "30978", + "1604", + "6840", + "6183", + "16722", + "13725", + "2916", + "31481", + "21235", + "30529", + "32526", + "454", + "2028", + "16695", + "31518", + "7578" + ], "assets": [] }, { - "address": "", - "amount": { - "quantity": 35, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "id": "47beda69663d055b5bbb5b0a0210324d385e01250d2f6535f626cc2d0215666c", + "index": 1 }, { - "address": "", - "amount": { - "quantity": 16, - "unit": "lovelace" - }, - "derivation_path": [ - "22495", - "16380", - "18322" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "id": "264a456b7239780d292a0d4a81574447515a79262710096e7722056d3735e752", + "index": 0 }, { - "address": "", - "amount": { - "quantity": 12, - "unit": "lovelace" - }, - "derivation_path": [ - "9127", - "26699", - "2209", - "27701", - "26291" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "id": "2d472e642801c761507e60756f576cf8432d5d6f33358f63eb6b3a7a295d0432", + "index": 0 }, { - "address": "", - "amount": { - "quantity": 236, - "unit": "lovelace" - }, - "derivation_path": [ - "21260", - "23193", - "20149", - "2186", - "9191", - "18431", - "9020", - "30685", - "2518", - "5184", - "3769", - "13918", - "21909", - "3814", - "2577", - "29118" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 35, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 31, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "id": "621f2e5d624ac62b5fca4e9204137962494a0d4d5516d13d3a1c431d13631967", + "index": 1 }, { - "address": "", - "amount": { - "quantity": 184, - "unit": "lovelace" - }, - "derivation_path": [ - "31073", - "32078", - "21668", - "17230", - "1648", - "8791", - "14010", - "32299", - "1847", - "18353", - "317", - "7001", - "20773", - "3668", - "20600", - "8115", - "15224", - "24547", - "5182", - "20197" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "id": "670b213870508d750e1a4a24301476d41eaf6165085f2e2567337f3c76517d12", + "index": 1 + } + ], + "mint": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh13x3472dy4y54za0x8ll6gnl67evglr2923n7m4cypd0fu3wtv7a", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "89a35f29a4a9295175e63fffa44ffaf6588f8d455467edd7040b5e9e", + "assets": [ + { + "fingerprint": "asset1m97sstna062wmhva0wslnu22tznwwcy3vda86r", + "amount": { + "quantity": 9565, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset16j7s7luq9tameremk0lfwd3se73dez0xfkt60s", + "amount": { + "quantity": 653, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1u8p40urgq0u2swlqyh83hl7p8fw26zlqcjrntm", + "amount": { + "quantity": 9147, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh14nha7mct9vj5m70vrg3ukd6v954tzn9m2ydpqq328psz27agg50", + "policy_id": "acefdf6f0b2b254df9ec1a23cb374c2d2ab14cbb511a10022a386025", + "assets": [ + { + "fingerprint": "asset1ak8vr2wy6wls38zaseshq7kpj6pehv3n4kyfya", + "amount": { + "quantity": 6674, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1afgd7652egxzm806x4c08j8w4sapf706cf5v4k", + "amount": { + "quantity": 9181, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1pg9tk6qt7wh57lvs2qhlsxd385slvr0ev94zgx", + "amount": { + "quantity": 4963, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cakexyk8tfgf9gdu0qkmww3xg889sgf3daxpzkaynrk65ep2g5v", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "c76d9312c75a5092a1bc782db73a2641ce5821316f4c115ba498edaa", + "assets": [ + { + "fingerprint": "asset1fqausfxcd5gtcp3guz668rxfqd3e9w789fhn63", + "amount": { + "quantity": 888, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16pdneqwr72pnc25kwge2ukn6j05myns98es53xmtq8mu72pw4r5", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "d05b3c81c3f2833c2a967232ae5a7a93e9b24e053e61489b6b01f7cf", + "assets": [ + { + "fingerprint": "asset1auqde4905fag7p26vzc35f2pug32t3333aqe9w", + "amount": { + "quantity": 9796, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": "policy_vkh1z0qp9w2arnxsfupzpmmy628ffm7pk5rm5k7gt2f54y48jp0ny6n", + "policy_id": "13c012b95d1ccd04f0220ef64d28e94efc1b507ba5bc85a934a92a79", + "assets": [ + { + "fingerprint": "asset1wzf85f8rhm0chxtrcl9k6gjsj4vumzz2gargzt", + "amount": { + "quantity": 3380, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1w848a6x69k6z5ghy03kx0vrhr49a5esk33df7pmjquf3kh482sv", + "policy_id": "71ea7ee8da2db42a22e47c6c67b0771d4bda66168c5a9f077207131b", + "assets": [ + { + "fingerprint": "asset1qy780u2y90rpgaquslvl4qu2nh2zcm6uw8th7a", + "amount": { + "quantity": 8883, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1aplyx7qqyemw9qu6ey2dsjwzfvutss74mfcdlm", + "amount": { + "quantity": 4805, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1z0qlzj8tczj5395xgvr2k59530qy7n57un2w8r3ux7ak6u7gxw5", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "13c1f148ebc0a54896864306ab50b48bc04f4e9ee4d4e38e3c37bb6d", + "assets": [ + { + "fingerprint": "asset1mf068vdznajp5mh8273jsefshd54wehsll2xxj", + "amount": { + "quantity": 3413, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1exp8x8snlpee9he8lsr3rtq8hy6emqj48teywr", + "amount": { + "quantity": 4595, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1luna2n4mrngngy0dtyxfg3puunj8xh665rxf4xc5qxj3g3p09w9", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "ff27d54ebb1cd13411ed590c94443ce4e4735f5aa0cc9a9b1401a514", + "assets": [ + { + "fingerprint": "asset1njhcnv0lkvy2gtzhll2d9udkzte2xkqzppyjpr", + "amount": { + "quantity": 1062, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1l2ky2570krzm08w5aklefq3sv08ljwqs34zm24", + "amount": { + "quantity": 4625, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset17serwgclf0f542m7n2qlapy8lmzw59dcvhlg8x", + "amount": { + "quantity": 8614, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1st9hv08nhsyludunrhz2dp6uwlcwpr45nademv", + "amount": { + "quantity": 4929, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qndm9v478pkr6aawsjrrc5kd9wy0w2x5ekz28aqqesu6wd3sskd", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "04dbb2b2be386c3d77ae84863c52cd2b88f728d4cd84a3f400cc39a7", + "assets": [ + { + "fingerprint": "asset1me2z35as3sdy422qs2dvnhphvraxujlvkywwme", + "amount": { + "quantity": 5052, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1x8604vl2amg5j446f0jxcl45435gp36qpc3kt9", + "amount": { + "quantity": 1204, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1f9833r6evu78z3nnvuy8mwmzteysk4r8z702hl", + "amount": { + "quantity": 4987, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vx8m349q60x8k5u63y2wxt0vry9mme36av9zmy8cpp0yj9jpec6", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "618fb8d4a0d3cc7b539a8914e32dec190bbde63aeb0a2d90f8085e49", + "assets": [ + { + "fingerprint": "asset1afjthmv24f75wczcey2nppmnxncqa3hac320dj", + "amount": { + "quantity": 4285, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1krkarx5p6lvwkql3ydmjl7yze0cy779tnsqtsqyxvfmpu9p3tj9", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "b0edd19a81d7d8eb03f123772ff882cbf04f78ab9c00b8008662761e", + "assets": [ + { + "fingerprint": "asset1cqlfml6pdgjtw3yn4x49nqj0wfrfdk6erpzp5p", + "amount": { + "quantity": 9094, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1xfszyjvn5ryghkp74rgqcn47tt0arnmm738kvq", + "amount": { + "quantity": 4069, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset16e2zpnxfhf4rx0lp3rptptn7pr3wkdyg2d8sak", + "amount": { + "quantity": 8118, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh184cnawr92yvfv8mkjc8wglawxn66fx69aru6genj490vz2smvun", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 211, - "unit": "lovelace" + "policy_id": "3d713eb8655118961f76960ee47fae34f5a49b45e8f9a46672a95ec1", + "assets": [ + { + "fingerprint": "asset13cmvn35sqfhanfpm4m6dpzpkl08nhyr6vjcn6g", + "amount": { + "quantity": 9436, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1fq0lwkg8u7x4h7y7v0jf054xaxse9vet3fj5xn", + "amount": { + "quantity": 8590, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1fkheyxl4hl4puk27czsrckjd49s3ra2dh2krta", + "amount": { + "quantity": 8039, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 183, - "unit": "lovelace" + { + "policy_script": "policy_vkh1qxs99qhsmdfd36qudsfy9qynp6qucafxa8juwseclqly2tezytm", + "policy_id": "01a05282f0db52d8e81c6c124280930e81cc7526e9e5c74338f83e45", + "assets": [ + { + "fingerprint": "asset18nsr25m4kaesvj8qpxmun9e5n9f7ap20ejtkw4", + "amount": { + "quantity": 6395, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1vhmc83p5j78hsht98yl89vfcgmqrrkkl5f4ymv", + "amount": { + "quantity": 409, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1a4wz60anprev42tq3eq54gqqd747k585xlz5v3", + "amount": { + "quantity": 620, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, - "derivation_path": [ - "3341", - "14812", - "481", - "6013", - "13162", - "27162", - "27251", - "6261", - "8921", - "18784", - "30545", - "21382", - "22197", - "8116", - "13959", - "12512", - "23676", - "25830", - "4401", - "32529", - "3605", - "17392", - "8370", - "7865", - "14845" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 144, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh19kx7gz6xphgcgsr9nc08qnggfeguau2xmd2j8u8r266878m37ug", + { + "active_from": 100 + } + ] + }, + "policy_id": "2d8de40b460dd18440659e1e704d084e51cef146db5523f0e356b47f", + "assets": [ + { + "fingerprint": "asset176mz6hshwvtcnq90fl6syslht2ryrdcjqwwtss", + "amount": { + "quantity": 6223, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset19x3844lxg0pueheqkxhlfusf224vyt060k2mv3", + "amount": { + "quantity": 4656, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] }, - "derivation_path": [ - "1484", - "29969", - "29027", - "32264", - "4459", - "14149", - "6992", - "27978", - "16118", - "9209", - "16826", - "19406", - "1073", - "26781", - "6062", - "917", - "23568", - "13776", - "22671", - "28202", - "26505", - "21111", - "30818", - "7054", - "25997", - "18330", - "10", - "26884", - "2070", - "31833", - "1065" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 126, - "unit": "lovelace" + { + "policy_script": "policy_vkh1t5shftyzmqwkzakvu7z4teu56g0ayxycnn69wx2heqpfx43uec7", + "policy_id": "5d2174ac82d81d6176cce78555e794d21fd218989cf4571957c80293", + "assets": [ + { + "fingerprint": "asset1m2r0tzht6zkqhdcemls2nsx829n44auwkdl8hf", + "amount": { + "quantity": 1843, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1ssw7pxcqr297ky3qu5ts5nva2zsmt6k8q5mzg6", + "amount": { + "quantity": 1366, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] }, - "derivation_path": [ - "22", - "5966", - "12853", - "6967", - "17888", - "24971", - "14302", - "21080", - "20636", - "5033", - "8525", - "9694", - "2194", - "28585", - "2832", - "14475", - "30142" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + { + "policy_script": { + "all": [ + "policy_vkh1a7uteky6cm2nn5des0aqsuh6wke5zppwytw3y9cun73dxylfr8q", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 68, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "efb8bcd89ac6d539d1b983fa0872fa75b341042e22dd12171c9fa2d3", + "assets": [ + { + "fingerprint": "asset1f8yj4w26ya2g3ttrs7dw0tdkqn9q5w23mc0xcx", + "amount": { + "quantity": 2436, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1txsmyj4qlxrn2u6mlys73hkt9lrjd3a23kfrsxa0kymf6v4rp32", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "59a1b24aa0f98735735bf921e8decb2fc726c7aa8d92381bafb1369d", + "assets": [ + { + "fingerprint": "asset1a5659jddaqpdpqqgx4en6jvrrs47wjzgrv73dp", + "amount": { + "quantity": 6920, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1knfw8zu6cj8xxewlpxsrxch6dwxnca6ujxppqc", + "amount": { + "quantity": 3540, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fkw0ud8wnkxgn58mlknkmpmdkkyezlectt2a2pn3ppuv26fyapg", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 42, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "4d9cfe34ee9d8c89d0fbfda76d876db589917f385ad5d506710878c5", + "assets": [ + { + "fingerprint": "asset16ynnjkh0808zjf5ayy4d88gy0mcvem5kuwr3yy", + "amount": { + "quantity": 1387, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fxp8nandewawg7ha9k8y4gjmkjs2ye99eh75kg8hcqpzx2uxngw", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "498279f66dcbbae47afd2d8e4aa25bb4a0a264a5cdfd4b20f7c00223", + "assets": [ + { + "fingerprint": "asset1ecc2q8qm2zr9sc7dp4me28aluvtj4tck8ff36z", + "amount": { + "quantity": 7424, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1qkzkjpur2wtx5u2wgldj09dz7mptq4ary2scpl", + "amount": { + "quantity": 1190, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1syeseh59y2k5z02yyfdy7jgt02cqgf6k5akm0y", + "amount": { + "quantity": 4216, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset184w40wqxfpslnmaxdk8nzgwzrjk897hpea0y9y", + "amount": { + "quantity": 2504, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1quldf89c5xdauc2rjen2apkaaczlslj73e300seezs8csuejny4", + "policy_id": "073ed49cb8a19bde61439666ae86ddee05f87e5e8e62f7c339140f88", + "assets": [ + { + "fingerprint": "asset1k7nkmzwpaz5s6gwyrr9l3t2z7vf5ctfnkh0cpy", + "amount": { + "quantity": 8447, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1wmpsj24lj8e3xx98la0wc2032y4mj636jg3d8m", + "amount": { + "quantity": 1398, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": "policy_vkh12d2pse0salkwwecqw9vqa5quusr0cttn0muk5uf0ekrz2qzxkkl", + "policy_id": "53541865f0efece7670071580ed01ce406fc2d737ef96a712fcd8625", + "assets": [ + { + "fingerprint": "asset1e0pt39nwy8l40ulwu2tmtty69qkvtkcl5zyvwk", + "amount": { + "quantity": 2116, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1smmw2gj3vhshva35z77ey6zqmwpquvn2fex2fj", + "amount": { + "quantity": 1553, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset14c7lvpz76d7hym9kcmw39ruse95zz98kcjhcvy", + "amount": { + "quantity": 5896, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1ufufdmt6awsv90jrmlrv7850zp8c0p45t9naa0", + "amount": { + "quantity": 1451, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13rvg0e26g6qh9hm92ufr82k47k4ttvl6zd5gnlkc3gfhyy7n28u", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, + "policy_id": "88d887e55a468172df65571233aad5f5aab5b3fa136889fed88a1372", + "assets": [ + { + "fingerprint": "asset1r6fskzkgwxrfcn6nyfnnccm2fhnmxl4ut7j92q", + "amount": { + "quantity": 5283, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset136gedew82r9fnk3llp0hu5vgz43mxeze4j5edt", + "amount": { + "quantity": 6538, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1jcp7tum4s07ane70tga9642zfd9w2ur4a6urqm", + "amount": { + "quantity": 6695, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cn0yp4qkcv3lz55clk6p7l8gwkw3mc4s6he3dcxse5vvudl52g8", + { + "active_from": 100 + } + ] + }, + "policy_id": "c4de40d416c323f15298fdb41f7ce8759d1de2b0d5f316e0d0cd18ce", + "assets": [ + { + "fingerprint": "asset1a4ml2w8p7p9r9zf9qm6th08wecrqrj5cja3kup", + "amount": { + "quantity": 3715, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1y6yf9c8xmmt349vqxvtztmtef2pq5595v65ezd", + "amount": { + "quantity": 3216, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1v26nhat8wk8mup4mejf6j2udz7qqkmdcuush8u", + "amount": { + "quantity": 1653, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh1psvgs6rawerjqmngp4f9p60as7xhjg7akcdxj3p2xflt7r0dgr9", + "policy_id": "0c1888687d7647206e680d5250e9fd878d7923ddb61a69442a327ebf", + "assets": [ + { + "fingerprint": "asset1863f0z6nkkpptwusmfhhx89a5q3eug2y9e73hf", + "amount": { + "quantity": 1680, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1yh6re6dv7tvuzjzdv7hn0mrl3qf9hhj75c94rd", + "amount": { + "quantity": 9517, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1pgr2avfy6rd9fs9qulecktfs78g9ahwp0qp5kn", + "amount": { + "quantity": 8777, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": "policy_vkh12l5k2ae69nvw209zxkrpy0rcwqpdu4kjmt3qm2fdghj4zses6tf", + "policy_id": "57e965773a2cd8e53ca23586123c787002de56d2dae20da92d45e551", + "assets": [ + { + "fingerprint": "asset1fc7dp9cgj3ylnaxwekuf79ge69lvhqpc48huka", + "amount": { + "quantity": 7595, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset19fkxuj2358pj8g47nuanf2gfr7ll302h58683j", + "amount": { + "quantity": 9543, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + } + ], + "wallet_policy_key_index": "0H" + } + }, + { + "withdrawals": [ { - "address": "", + "context": "ours", "amount": { - "quantity": 248, + "quantity": 107, "unit": "lovelace" }, - "derivation_path": [ - "3012", - "3019", - "31031", - "2849", - "1106", - "14083", - "15480", - "1567", - "24848", - "14015", - "31436", - "28899", - "27045", - "19162", - "223", - "15246", - "19826", - "29970", - "15033", - "29440", - "5625", - "6902", - "17426", - "5406", - "1363", - "26764", - "2982", - "5198", - "22898" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 142, + "quantity": 5, "unit": "lovelace" }, - "derivation_path": [ - "30597", - "14990", - "4187", - "6916", - "5060", - "5183", - "23975", - "3582", - "7888", - "24415", - "21769" - ], - "assets": [] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 86, + "quantity": 250, "unit": "lovelace" }, - "derivation_path": [ - "29278", - "36", - "26464", - "32541", - "25348", - "4138", - "11303", - "27599", - "29604", - "26884", - "32749", - "121", - "28397", - "23340", - "10550", - "22070", - "18787", - "22155", - "24470", - "29026", - "11025", - "29431", - "1689", - "9290", - "1322", - "22965", - "2527", - "24356", - "28183", - "32398", - "14223" - ], - "assets": [] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 105, + "quantity": 180, "unit": "lovelace" }, - "assets": [] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 55, + "quantity": 173, "unit": "lovelace" }, - "derivation_path": [ - "13543", - "27632", - "5514", - "31843", - "31386", - "21942", - "11494", - "8943", - "15784", - "9490", - "29461", - "30406", - "15355", - "2409", - "5895", - "28214", - "19822", - "2336", - "16824", - "31099", - "27650", - "23101", - "393" - ], - "assets": [] - } - ], - "script_validity": "valid", - "id": "6897551f770a7034034ca257782e223119573e82154837ab6f7c463e5d582812", - "deposits_taken": [ - { - "quantity": 3, - "unit": "lovelace" + "stake_address": "" }, { - "quantity": 41, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 9, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 1, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 173, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 38, - "unit": "lovelace" - } - ], - "fee": { - "quantity": 45, - "unit": "lovelace" - }, - "certificates": [ + "context": "ours", + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "stake_address": "" + }, { - "certificate_type": "join_pool_external", - "pool": "pool1jprsree5p94qc4aa8xlkqm6a9n48k46mskzaucn3rz4pyfryk0u", - "reward_account": "" + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "stake_address": "" }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk128yu2366zmp7mw8usg8s0hhnm6r20su48zljrqmvwwj8eyrqcmrq8ny52w", - "ed25519_pk1j4ypeun6scnmk6w2hftvjnz6a4m54lhp5grlh7gttjrdl5pr69usj3x9fd", - "ed25519_pk1r9jw9wmzxu8ygzegdhkj8sh6dtd6ukq5udttkqsr66n5wg9elnss7w0r5s", - "ed25519_pk1ljs8ejy3qg865cp7mky9wx0v3pm6qky82x9492du7ta9fwtysqus6nyxx2", - "ed25519_pk1693ap8lxjlydcm7mxwl9enu44jmedkwcl3pqws466twy4jdfum5s7rv0l6", - "ed25519_pk1udhhhyfdca5jwcgfl9e09u0us0tsduvvu7whaqxph6yqtnsgl6eqk7cyg7", - "ed25519_pk1pra9cagq2lczhw00rwwusp0lqz009p7caqa96yl2xenfdc6a3ycspwz78f", - "ed25519_pk1zy50kw78l5xwynlatahe9mt5jk5tvmytrat5wpg6wzccxfyrtmpqgpujjd", - "ed25519_pk1rl495na90gcq7ccxe3ts96mn7xskq0fraval7esap8xv4rzy26jqmjxaw6", - "ed25519_pk166dv2c0ejd3a8yfv0nsw8tk5nrkxw7jxts83sgeg34pu7n0szsnql352sm", - "ed25519_pk1vq83q9mf45u4nn39kp7lw7nq32vua8nugmemk4aceyhjkaefzkeqc2wqwf" - ], - "pool_pledge": { - "quantity": 53, + "context": "ours", + "amount": { + "quantity": 51, "unit": "lovelace" }, - "pool_cost": { - "quantity": 77, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 208, "unit": "lovelace" }, - "pool_id": "pool18rxp0pmh0qdqptltxxpaj6khcm349anz5kxgc38u6sq85hs7jsk", - "pool_margin": { - "quantity": 20.78, - "unit": "percent" - } + "stake_address": "" }, { - "certificate_type": "mir" + "context": "ours", + "amount": { + "quantity": 173, + "unit": "lovelace" + }, + "stake_address": "" } ], - "deposits_returned": [ + "inputs": [ { - "quantity": 43, - "unit": "lovelace" + "id": "67c12e6f3f62a3405782f1024a6e4100401a1f226613744b221f701f175923e6", + "index": 0 }, { - "quantity": 232, - "unit": "lovelace" + "id": "4c631a7080237c774fac0e4747687e334691127f4f0b2d72ca677e22335b4d62", + "index": 1 }, { - "quantity": 37, - "unit": "lovelace" + "id": "7f2d4c603a526609001c562416791622735f0a201d310a20130bb1007733a97b", + "index": 0 }, { - "quantity": 182, - "unit": "lovelace" + "id": "415254025e5000252d084c5e122805452814784a64bb1d5864b044490f555e3b", + "index": 0 }, { - "quantity": 178, - "unit": "lovelace" + "id": "4969452d40423933531e510254491d880b2155466951680461762464fb434545", + "index": 0 }, { - "quantity": 190, - "unit": "lovelace" + "address": "", + "id": "234486687b243a107871dab1480dbf2e7b1ffff9783c04585da73d384d3e2e85", + "index": 15597, + "amount": { + "quantity": 181, + "unit": "lovelace" + }, + "derivation_path": [ + "12016", + "9442", + "16241", + "6900", + "9447", + "1124", + "23836", + "28816", + "31479", + "2164", + "15347", + "15568", + "6340", + "20720", + "16422", + "11766", + "15458", + "17655", + "10611", + "32643", + "208" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { - "quantity": 112, - "unit": "lovelace" - }, - { - "quantity": 171, - "unit": "lovelace" - }, - { - "quantity": 6, - "unit": "lovelace" - }, - { - "quantity": 43, - "unit": "lovelace" - }, - { - "quantity": 89, - "unit": "lovelace" - }, - { - "quantity": 9, - "unit": "lovelace" - }, - { - "quantity": 223, - "unit": "lovelace" - }, - { - "quantity": 30, - "unit": "lovelace" - }, - { - "quantity": 217, - "unit": "lovelace" - }, - { - "quantity": 224, - "unit": "lovelace" - }, - { - "quantity": 3, - "unit": "lovelace" - }, - { - "quantity": 137, - "unit": "lovelace" - }, - { - "quantity": 51, - "unit": "lovelace" - }, - { - "quantity": 247, - "unit": "lovelace" - }, - { - "quantity": 42, - "unit": "lovelace" + "id": "d3ab5a54092d6f3c06545b2033233857213869760bc30f04210e79676471774f", + "index": 1 }, { - "quantity": 107, - "unit": "lovelace" + "id": "215701d4b2434b310f3645116927191f11b4136edd780f73ad2e0047aa114b6c", + "index": 0 }, { - "quantity": 28, - "unit": "lovelace" + "address": "", + "id": "050e0169175210cb212260090c79135d2218302e283a7b5e676c821e08aa53f4", + "index": 7314, + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "derivation_path": [ + "28305", + "17107", + "13539", + "13831", + "2236", + "13272", + "18249", + "6193", + "13197", + "22885", + "27533", + "14694", + "28634", + "5512", + "14559", + "5480", + "31411", + "10829", + "9878", + "19432", + "17495", + "23059", + "20820", + "7283", + "56" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { - "quantity": 244, - "unit": "lovelace" + "address": "", + "id": "7231052529aefae2f10ee838080f40e9bd51450f3a6a48ff1293f10b3ffc6651", + "index": 942, + "amount": { + "quantity": 127, + "unit": "lovelace" + }, + "derivation_path": [ + "27491", + "479", + "28211", + "10061", + "8860", + "24854", + "8524", + "27585", + "19187", + "30672", + "13301", + "17576" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "quantity": 147, - "unit": "lovelace" + "id": "0e0759462679104ae9274e7edb14661a5a36ef1d35766c3e51d23f32503d135b", + "index": 1 }, { - "quantity": 244, - "unit": "lovelace" + "id": "3a2f32650d623820a0266b4074590d416f3f5b697476bb37e1440b731daa0e36", + "index": 0 }, - { - "quantity": 146, - "unit": "lovelace" - } - ], - "metadata": { - "7": { - "int": 0 - } - }, - "collateral": [ { "address": "", - "id": "093e10475b740879661864a2b8692359392f344d5557547e3d1c18312d2a9e58", - "index": 15954, + "id": "3e15db27bab90e54374d23498a1768066f2118127d4f7802e817012412220c0a", + "index": 19905, "amount": { - "quantity": 49, + "quantity": 101, "unit": "lovelace" }, "derivation_path": [ - "30421", - "32225", - "2881", - "4228", - "16577", - "29607", - "4491", - "2165", - "26456", - "28486", - "16046", - "6759", - "583", - "32492", - "10802", - "24469" + "28831", + "14695", + "11770", + "4971", + "32309", + "9542", + "2318", + "8481", + "12845", + "25223", + "14342", + "13649" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 49, + "quantity": 24, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 14, + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 21, + "quantity": 3, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 14, + "asset_name": "546f6b656e44", + "quantity": 8, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 28, + "asset_name": "546f6b656e43", + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, { "asset_name": "546f6b656e41", - "quantity": 33, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 35, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "id": "34401f20bf29082f203e74727a2bdc24a5916e78711c3a443020202b8fc02a7d", + "index": 0 + }, + { + "address": "", + "id": "917d1b6dbb7c160e631c8c4c2c610f7b561c3fc75d437326140813610a47236b", + "index": 25626, + "amount": { + "quantity": 16, + "unit": "lovelace" + }, + "derivation_path": [ + "22735", + "25515", + "6549", + "28740", + "24860", + "23119", + "12833", + "6461", + "1604", + "11814", + "23143", + "5245", + "28454", + "5635", + "6359", + "2782", + "19367", + "15584", + "16494", + "9769", + "4140", + "27452", + "26019", + "12707", + "6295", + "20033", + "6488", + "32054", + "27935" + ], + "assets": [ { "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { - "id": "5840b61824095040e83d551f6427444f1e5e545a0658623049361d6b1d771a2e", + "id": "790956cb623cb363e6291a42ae255f103d0860387ab462dec4270d895e976f43", "index": 1 }, { - "id": "1c5f67ba54523a7876d31e7b0b1e2d4d4033371e22de05fa226f08a5dc59740a", + "id": "c707314760776d1fbf04017502771a1a0f4c045d0361000b724aea33426dbb3d", "index": 0 }, { "address": "", - "id": "0c1a657e2c536b275d1a4d66433f5510569875d1391d4d010916617375466b56", - "index": 24500, + "id": "3a153e7ab0682c146641345a052931253f71640d275539788a7f1b9dad7c347d", + "index": 18160, "amount": { - "quantity": 173, + "quantity": 219, "unit": "lovelace" }, "derivation_path": [ - "2181", - "19278", - "24826" + "7522", + "23650", + "15532", + "14864", + "10094", + "12820", + "17742", + "558", + "26927", + "30052", + "31048", + "2035", + "29112", + "30050", + "26613", + "7097", + "19794", + "15174", + "10578", + "24652", + "29140", + "7188", + "12144", + "12456", + "5628", + "14585", + "31727" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 24, + "asset_name": "546f6b656e44", + "quantity": 13, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, + "asset_name": "546f6b656e45", + "quantity": 15, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 14, + "asset_name": "546f6b656e42", + "quantity": 17, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, + "quantity": 14, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 25, + "asset_name": "546f6b656e42", + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 56, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 20, + "quantity": 29, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "1b3e324b2340172c7df935dceed22d3a383ff5f615f89b52b1b34b763557624f", + "index": 1 + }, { "address": "", - "id": "34f34fa6467c2e3b2478407fc77335494755bc6831472de85c33170b905d6710", - "index": 11553, + "id": "032d702c5d00153c63106d3f89c65605e945561b7622263908707f3e2d45373c", + "index": 27497, "amount": { - "quantity": 160, + "quantity": 238, + "unit": "lovelace" + }, + "derivation_path": [ + "32031", + "5602", + "13074", + "7220", + "3571", + "31743", + "7605", + "31845", + "27710", + "9137", + "12573", + "6161", + "1003", + "12088", + "28963", + "2063", + "13320", + "26584", + "9729", + "11778", + "24588", + "24474", + "23382", + "22286", + "20759" + ], + "assets": [] + }, + { + "id": "4c2f05302d39567ac1522f0320155c473109544223287671655c390e1f93091b", + "index": 1 + }, + { + "address": "", + "id": "2e7e1e466744444e390929237ab298463ca2d4523038757a6e65f5472beee447", + "index": 21587, + "amount": { + "quantity": 34, + "unit": "lovelace" + }, + "derivation_path": [ + "7422", + "11187", + "10511", + "26969", + "11744", + "6992", + "24331", + "20325" + ], + "assets": [] + }, + { + "address": "", + "id": "446ae8372f5f315708781eac430f582d013a9f9a179d3d98270379733bb84e36", + "index": 19752, + "amount": { + "quantity": 169, "unit": "lovelace" }, "derivation_path": [ - "3453", - "25134", - "30629" + "14750", + "21159", + "12592", + "31483", + "17456", + "14131", + "22919", + "19603", + "22749", + "1678", + "8367", + "18834", + "12416", + "31398", + "11231" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 48, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "id": "791e2a1f0d1c037f043d36134c4a3a40607961bd707b3a1d736257e66c2c823e", + "index": 0 + }, + { + "id": "3b767b371d0e2c18266f04312308523b224d1b143b084a360344200a7e4f0d06", + "index": 1 + }, + { + "address": "", + "id": "1c7459781849465778680c3d161e0137040573334c67881b7c293e2833283869", + "index": 8596, + "amount": { + "quantity": 164, + "unit": "lovelace" + }, + "derivation_path": [ + "1157", + "26757", + "6519", + "20830", + "24022", + "14195", + "13952", + "12155", + "20179", + "16404", + "27300", + "25562", + "10338", + "4381", + "28082", + "32593", + "11668", + "27649", + "21539", + "10940", + "13629", + "4090" + ], + "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 19, + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 14, + "asset_name": "546f6b656e44", + "quantity": 34, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 30, + "quantity": 28, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 25, + "asset_name": "546f6b656e43", + "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 4, + "asset_name": "546f6b656e44", + "quantity": 19, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 8, + "asset_name": "546f6b656e42", + "quantity": 54, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "70654204514f5774386b19126549345b3a3f181f582c504b7a3d5168ff9b6342", - "index": 1 - }, - { - "id": "4f0b75411a45285e6172493f483a415b03210033ff0538f32126e46066340a54", - "index": 0 - } - ], - "assets_burned": { - "token_map": [], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "stake_shared_vkh1d909grpqketqgx3rvsuxewypjc2um7uzdtcju643vl2zztwg3ed", - { - "active_from": 100 - } - ] - }, - "policy_id": "0ecb286169d8bc66e5dc3f065d4f445f5c943530fd98245f2bb56896" - } - ], - "wallet_policy_key_hash": "policy_vkh1vywxc96et29rw98tr39ksgj389ssjwmntc2x7apdx3cy7830h4g" - } - }, - { - "withdrawals": [ - { - "context": "ours", - "amount": { - "quantity": 149, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", + "address": "", + "id": "e97d26611a2e072272036a334c591c31074d39415d5f673d00026e02a250096c", + "index": 17748, "amount": { - "quantity": 210, + "quantity": 34, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "15278", + "21041", + "18207", + "4577", + "5349", + "21751", + "21188", + "21628", + "2971", + "2725", + "11545", + "29985", + "23144", + "24409", + "22784", + "28588", + "11731", + "8031", + "24986" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "amount": { - "quantity": 58, - "unit": "lovelace" - }, - "stake_address": "" - }, + "id": "45026c1c0000ac34507fae69494f3b847e5c4a1d15603f764df42edb45166143", + "index": 0 + } + ], + "outputs": [ { + "address": "", "amount": { - "quantity": 114, + "quantity": 234, "unit": "lovelace" }, - "stake_address": "" + "assets": [] }, { + "address": "", "amount": { - "quantity": 171, + "quantity": 188, "unit": "lovelace" }, - "stake_address": "" + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { + "address": "", "amount": { - "quantity": 93, + "quantity": 210, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "8789", + "7460", + "7195", + "891", + "1050", + "24764", + "6083", + "20520", + "20560", + "22363", + "26623", + "16313", + "20507", + "15826", + "8660", + "23055", + "4894", + "15934", + "27584", + "12796", + "15493" + ], + "assets": [] }, { - "context": "ours", + "address": "", "amount": { - "quantity": 152, + "quantity": 189, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "20435", + "14701", + "22118", + "21354", + "10300", + "26700", + "28092", + "12961", + "7759", + "24451", + "18250", + "16904", + "17754", + "16247", + "4852" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { + "address": "", "amount": { - "quantity": 140, + "quantity": 127, "unit": "lovelace" }, - "stake_address": "" + "assets": [] }, { + "address": "", "amount": { - "quantity": 113, + "quantity": 202, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "8657", + "26103", + "32286", + "30505", + "17381", + "21348", + "32390", + "25471", + "16379", + "2339", + "6910", + "23982", + "14695", + "30428", + "10165" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 40, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { + "address": "", "amount": { - "quantity": 182, + "quantity": 62, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "31180", + "5947", + "6098", + "27242", + "24819", + "6243", + "32625", + "5061", + "24290", + "31107", + "19075", + "9659", + "2476", + "26031", + "14401", + "15550", + "7586", + "24720", + "30402", + "7061", + "26820", + "13043", + "3804", + "8375", + "20094", + "10761", + "4435", + "16167", + "31232" + ], + "assets": [] }, { - "context": "ours", + "address": "", "amount": { - "quantity": 176, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 180, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 220, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 74, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 153, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 113, - "unit": "lovelace" - }, - "stake_address": "" - } - ], - "inputs": [ - { - "address": "", - "id": "150d08635f519f437438147b832568952b333e2312256771d5729b386ec6af2e", - "index": 5763, - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "derivation_path": [ - "2264", - "24037", - "30354", - "20214", - "5148", - "28668", - "466", - "32167", - "30729", - "7338", - "12607", - "31862", - "7423", - "11909", - "10013", - "27581" - ], - "assets": [] - }, - { - "address": "", - "id": "5f683b337f2615f569b3431707070d5c230174076e7327656f7e686b9d7c323e", - "index": 25385, - "amount": { - "quantity": 152, - "unit": "lovelace" - }, - "derivation_path": [ - "5053", - "11031", - "18741", - "26316" - ], - "assets": [] - }, - { - "id": "12241bb53100185c174532612f1a2d361f1f41eb0b27397eee6e3f6580502024", - "index": 0 - }, - { - "id": "56ce4018328f23355b942ee6742902410b2b2854297b263058145a293279b681", - "index": 0 - }, - { - "address": "", - "id": "453d1db68709522e534168004dbb906a5e4341641d03285c4b5a09cb486d2776", - "index": 15507, - "amount": { - "quantity": 246, + "quantity": 11, "unit": "lovelace" }, "derivation_path": [ - "25492", - "10315", - "7329", - "14448", - "13584", - "9831", - "29660", - "6008", - "24447", - "25519", - "352", - "30862", - "21801", - "16444", - "8108", - "27014", - "27138", - "11208", - "25576", - "2908", - "4121" + "19071", + "1250", + "23667", + "4594", + "23095", + "6942", + "2991", + "15654", + "25413", + "10248", + "19550", + "12432", + "30392", + "28323", + "24510", + "26569", + "749", + "30725", + "30022", + "8786", + "16600", + "29371", + "17999", + "21600", + "21851", + "12222" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "id": "72221254c7331b6c847e08752c3c6c494a426f068c612c1c0b1162471e4b2b7d", - "index": 0 - }, - { - "address": "", - "id": "f06955b31a41348f54504d4e7fda2469074c60d24e365a06196a04da555e6478", - "index": 17518, - "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "derivation_path": [ - "23679", - "12944", - "25351", - "24453", - "12516", - "25384", - "25700", - "21161", - "23226", - "11772", - "6814", - "28739", - "12563", - "3196", - "20534" - ], - "assets": [ + "quantity": 42, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 3, + "quantity": 13, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 23, + "asset_name": "546f6b656e42", + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 18, + "asset_name": "546f6b656e42", + "quantity": 36, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 1, + "asset_name": "546f6b656e44", + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "7f3b1240295065fb0a4d2f1c3fb8751d5c78430d011334e926db2c0f0321409f", - "index": 10064, "amount": { - "quantity": 120, + "quantity": 205, "unit": "lovelace" }, "derivation_path": [ - "32009", - "1402", - "21852", - "12701", - "32243", - "20699", - "27310", - "29306", - "10381", - "16117", - "17570", - "26759", - "27657", - "20647", - "24623", - "8507" + "4583", + "19308", + "32261", + "23522", + "18513", + "3309", + "32012", + "11672", + "25400", + "1823", + "7336", + "24369", + "8328", + "23652" ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 13, + "quantity": 25, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 13, + "quantity": 21, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 36, + "quantity": 18, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 5, + "quantity": 10, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 17, + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 5, + "quantity": 35, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "4a053d043b37f202435e737400403570c317202675405502756cb60b1768114a", - "index": 1 - }, - { - "address": "", - "id": "411e243e6e607c6739137f6b6d47d8043f4ae70c25c15000386440701b311e1a", - "index": 3068, - "amount": { - "quantity": 73, - "unit": "lovelace" - }, - "derivation_path": [ - "31741", - "16614", - "18115", - "25481", - "6805", - "26857", - "30096", - "4847", - "30435", - "22771", - "7680", - "30979", - "28397", - "12176", - "24310", - "31800", - "32474", - "16871", - "14534", - "13988", - "5623", - "28600", - "17452", - "20666", - "12143", - "19663", - "11828", - "18134", - "7449", - "6705" - ], - "assets": [] - }, { "address": "", - "id": "601e400684e49a3c5c455322754a0427362b1b207190ab6f132c1918022e3be6", - "index": 12356, "amount": { - "quantity": 83, + "quantity": 105, "unit": "lovelace" }, - "derivation_path": [ - "15299", - "18524", - "9165", - "9145", - "1574", - "22687", - "1024", - "6227", - "20965", - "23511", - "31238", - "23561", - "8", - "19654", - "2535", - "9990", - "22402", - "6359", - "14949" - ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 2, + "asset_name": "546f6b656e44", + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 47, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 15, + "asset_name": "546f6b656e45", + "quantity": 14, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e41", - "quantity": 19, + "asset_name": "546f6b656e43", + "quantity": 21, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 17, + "asset_name": "546f6b656e45", + "quantity": 35, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "030a3d225a0179c4446e116315111c422e38e2100a301766e566605d791f9d0d", - "index": 1 - }, { "address": "", - "id": "0f04174c237d7e0460180a873365704272261527327f7f6a56685e1b9e292b55", - "index": 29447, "amount": { - "quantity": 16, + "quantity": 59, "unit": "lovelace" }, - "derivation_path": [ - "13468", - "31111", - "14149", - "21818", - "2879", - "16881", - "12337", - "2186", - "13461", - "2444", - "19441", - "22372", - "20064", - "7519", - "15927", - "25952", - "8163", - "27132", - "12720", - "11788", - "4728", - "29186", - "25139", - "16890" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "id": "5563305cda6545162a6039569c137a584335a9424b809802a2ba35186073066d", - "index": 54, - "amount": { - "quantity": 125, - "unit": "lovelace" - }, - "derivation_path": [ - "5136", - "27062", - "29011", - "10472", - "30791", - "17612", - "18455", - "10616", - "18182", - "1316", - "13045", - "13851", - "22554", - "27551", - "17835", - "286", - "12693", - "21518", - "4109", - "28323" - ], - "assets": [] - }, - { - "id": "050755b70d3e457b793a6082791d254e1221353a5547584d7ffbe0312313e60f", - "index": 1 - }, - { - "id": "8068462d21465c5b65741c725f3e181739dd3251012b364475c7539473273327", - "index": 0 - }, - { - "address": "", - "id": "40d5174e025f367063793836746072080e3c770873300020a539443473541105", - "index": 32745, - "amount": { - "quantity": 138, - "unit": "lovelace" - }, - "derivation_path": [ - "17128", - "23866", - "27971", - "19561", - "14961", - "29444", - "16067", - "16819", - "8364", - "12158", - "27952", - "10929", - "31596", - "14055", - "2500", - "9971", - "1013", - "23148", - "27868", - "25205", - "2090", - "31701", - "9959", - "4247", - "13629" - ], "assets": [] }, - { - "id": "5043734f5aed94244a4b367a28072ddb50166997255958771d694e2830b46e1d", - "index": 0 - }, - { - "id": "674e343861f63519800129593d1c51ab4428ba0181872e41403bcc291e520c45", - "index": 0 - }, - { - "id": "783acc393f796e3b0572824b7e2da54760233a7c0e4f720f517fbf4d6932221e", - "index": 1 - }, { "address": "", - "id": "1522b14a4c3c007125045139026a930c5a3f2263bf1d36162d295f787c037e1a", - "index": 25757, "amount": { - "quantity": 20, + "quantity": 181, "unit": "lovelace" }, - "derivation_path": [ - "18118", - "18403", - "9890", - "24198", - "10683", - "30759", - "10390", - "7485", - "3995", - "10445", - "2531", - "6206", - "2255", - "3204", - "1621", - "15436", - "435", - "22867", - "29040", - "12844", - "11114", - "26683", - "17761", - "30504", - "28611", - "16285", - "9530" - ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 12, + "asset_name": "546f6b656e44", + "quantity": 34, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 10, + "quantity": 12, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 25, + "quantity": 3, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 12, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 28, + "asset_name": "546f6b656e43", + "quantity": 25, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 27, + "asset_name": "546f6b656e41", + "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "id": "b568f977fd5d4a714a521c33533525754ab93429dc7124870f62574973b87177", - "index": 1 - }, - { - "address": "", - "id": "321b5fdeec4eef2fe37b411a5d92036e2c2f98001e68186960213d4a281d0053", - "index": 18434, - "amount": { - "quantity": 90, - "unit": "lovelace" - }, - "derivation_path": [ - "8612", - "27690", - "31037", - "28827", - "1139", - "30205", - "8834", - "21033", - "11866" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 25, + "quantity": 5, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "3d4c0a49667d365c1382f8f44d00326246767b5c382703e923627d1225081a07", - "index": 1 - }, - { - "id": "1709528259efb46d29c6ea6b30032c15462e673203791a03536d721075565067", - "index": 0 - }, { "address": "", - "id": "e92170155d612f536e34006c227a23150e30185d52e96d611b7d413e155c5e01", - "index": 28829, "amount": { - "quantity": 55, + "quantity": 254, "unit": "lovelace" }, - "derivation_path": [ - "15399", - "29340", - "2253", - "20572" - ], "assets": [] }, { "address": "", - "id": "2ce01e631b6f3502374e2b6e4b004752032b343d3d77c95126613355d40c6958", - "index": 6546, "amount": { - "quantity": 38, + "quantity": 106, "unit": "lovelace" }, - "derivation_path": [ - "15216", - "14427", - "499", - "27549", - "13094", - "27663", - "10937" - ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 21, + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "3b3e28646e53d226196d13402c2619148d681971535a4228637c3403237ede61", - "index": 0 - }, - { - "id": "234910604c20113915052d470c6e5e326bf81273ba473638415e5b2a677e2c05", - "index": 1 - } - ], - "assets_minted": { - "token_map": [ - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "addr_shared_vkh1uzwt4es0mgujkhlx2hlpz2xl78um66m5eawdyw9xqw8qvj60e8q", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "policy_id": "1773a649d46d7cd5156afb55671741547e17121607ececee3d719b75" - } - ], - "wallet_policy_key_hash": "policy_vkh1y625kfs4cv2pzftdvv3eg8ncfqgk6ng32mrrqvcmqy4juwfj6xm" - }, - "outputs": [ - { - "address": "", - "amount": { - "quantity": 76, - "unit": "lovelace" - }, - "assets": [] - }, { "address": "", "amount": { - "quantity": 33, + "quantity": 29, "unit": "lovelace" }, + "derivation_path": [ + "4632", + "27074", + "30237", + "22809", + "11840", + "30370", + "21650", + "11795", + "27808", + "26638" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 1, + "asset_name": "546f6b656e41", + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 22, + "asset_name": "546f6b656e44", + "quantity": 18, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 40, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 4, + "asset_name": "546f6b656e44", + "quantity": 26, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 9, + "asset_name": "546f6b656e43", + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 29, + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 22, + "asset_name": "546f6b656e45", + "quantity": 53, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -7350,89 +9076,113 @@ { "address": "", "amount": { - "quantity": 184, + "quantity": 98, "unit": "lovelace" }, - "derivation_path": [ - "14751", - "15408", - "31354", - "18487", - "24765", - "5516", - "30734", - "25294", - "30567", - "32453", - "8103", - "22588", - "2546", - "18621", - "1627", - "10231", - "6509", - "10245", - "21660", - "24945", - "2218", - "17208", - "27034", - "28075" - ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 6, + "asset_name": "546f6b656e42", + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 24, + "asset_name": "546f6b656e44", + "quantity": 19, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 39, + "asset_name": "546f6b656e42", + "quantity": 25, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 46, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 13, + "quantity": 18, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 51, + "asset_name": "546f6b656e41", + "quantity": 22, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 9, + "asset_name": "546f6b656e44", + "quantity": 16, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "derivation_path": [ + "14044", + "9608", + "14703", + "21424", + "3171", + "14881", + "18985", + "32068", + "30614", + "5829", + "7011", + "23152", + "6399", + "9896" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 27, + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -7440,63 +9190,48 @@ { "address": "", "amount": { - "quantity": 196, + "quantity": 189, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 33, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e42", - "quantity": 26, + "quantity": 30, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 29, + "asset_name": "546f6b656e45", + "quantity": 26, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e42", - "quantity": 22, + "quantity": 23, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 16, + "quantity": 1, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 27, + "asset_name": "546f6b656e41", + "quantity": 12, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 36, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 4, + "asset_name": "546f6b656e42", + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -7504,31 +9239,44 @@ { "address": "", "amount": { - "quantity": 8, + "quantity": 160, "unit": "lovelace" }, "derivation_path": [ - "19653", - "5165", - "733", - "31675", - "31475", - "17233" + "26512", + "30913", + "18821", + "27043", + "19840", + "19295", + "10302", + "31026", + "17292", + "21246", + "12573", + "24865", + "25163", + "9058", + "16475", + "19312", + "17678", + "15497", + "5746", + "14497", + "22109", + "27183", + "8622", + "22740", + "246", + "29257", + "18766", + "3195", + "1649" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -7536,63 +9284,29 @@ { "address": "", "amount": { - "quantity": 130, + "quantity": 34, "unit": "lovelace" }, - "derivation_path": [ - "8203", - "3648", - "5339", - "8524", - "10475", - "891", - "31715", - "25298", - "30873", - "19505", - "9190", - "6378", - "16974", - "23951", - "13145", - "24755", - "26845", - "16824" - ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "address": "", "amount": { - "quantity": 138, + "quantity": 58, "unit": "lovelace" }, - "derivation_path": [ - "24984", - "26168", - "11588", - "26089", - "27628", - "2821", - "28313", - "110", - "5133", - "11292", - "15706", - "24579", - "14103", - "30830", - "27411", - "5931", - "10042", - "16778" - ], "assets": [] }, { "address": "", "amount": { - "quantity": 1, + "quantity": 247, "unit": "lovelace" }, "assets": [] @@ -7600,7 +9314,7 @@ { "address": "", "amount": { - "quantity": 108, + "quantity": 232, "unit": "lovelace" }, "assets": [] @@ -7608,63 +9322,13 @@ { "address": "", "amount": { - "quantity": 236, + "quantity": 245, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -7672,53 +9336,33 @@ { "address": "", "amount": { - "quantity": 167, + "quantity": 232, "unit": "lovelace" }, "derivation_path": [ - "23850", - "18312", - "29788", - "5723", - "24676", - "6282", - "18664", - "8563", - "22390", - "15516", - "7621", - "29101", - "20205", - "28884", - "22158", - "28485", - "6427", - "24613", - "17150", - "705", - "7958", - "24195" + "27390" ], "assets": [] }, { "address": "", "amount": { - "quantity": 173, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 103, + "quantity": 142, "unit": "lovelace" }, + "derivation_path": [ + "1208", + "21499", + "3727", + "15334", + "6479", + "15966", + "4480" + ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 10, + "asset_name": "546f6b656e45", + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] @@ -7726,13 +9370,13 @@ { "address": "", "amount": { - "quantity": 201, + "quantity": 218, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 15, + "asset_name": "546f6b656e45", + "quantity": 23, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] @@ -7740,1974 +9384,2668 @@ { "address": "", "amount": { - "quantity": 209, + "quantity": 148, "unit": "lovelace" }, + "derivation_path": [ + "8148", + "10474", + "1331", + "12657", + "9279", + "21355", + "6480", + "26002", + "22462", + "32541", + "25706", + "20613", + "18232", + "27966", + "16803", + "2507", + "32399", + "2310", + "25706", + "27973", + "24860" + ], "assets": [] }, { "address": "", "amount": { - "quantity": 253, + "quantity": 25, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 51, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 168, - "unit": "lovelace" - }, - "derivation_path": [ - "20056", - "10763", - "28192", - "15292", - "16717", - "32357", - "27246", - "25292", - "15818" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 38, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 74, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, + "quantity": 5, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] - }, - { - "address": "", - "amount": { - "quantity": 90, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 6, - "unit": "lovelace" - }, - "derivation_path": [ - "20502", - "20549", - "16021", - "21222", - "29338", - "22807", - "23739", - "23339", - "21409", - "22958", - "7937", - "28264", - "32022", - "27961", - "1022", - "7400", - "22398", - "13978", - "19724", - "17224", - "16113", - "2689", - "7175", - "15993", - "6613" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 11, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 127, - "unit": "lovelace" - }, - "derivation_path": [ - "4609", - "8032", - "25147", - "23128", - "12428", - "14726", - "9357", - "20513", - "420", - "4302", - "2160", - "28031", - "17649", - "21827", - "28338", - "15016", - "9817", - "6105", - "26070", - "7796", - "4856", - "6655", - "20091", - "16928", - "30972", - "2323", - "23862", - "31053", - "21895" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 58, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 253, - "unit": "lovelace" - }, - "assets": [] } ], - "script_validity": "invalid", - "id": "4d404f22199d59591bf12c0044594130481544ffd6f47f0fac450f9e12146927", + "script_validity": "valid", + "id": "ccf31e2b6da32e6578c958f1414166d2000b206e0937630b05515c5f2d480023", "deposits_taken": [ { - "quantity": 164, - "unit": "lovelace" - }, - { - "quantity": 130, - "unit": "lovelace" - }, - { - "quantity": 160, + "quantity": 85, "unit": "lovelace" }, { - "quantity": 153, + "quantity": 136, "unit": "lovelace" }, { - "quantity": 7, + "quantity": 193, "unit": "lovelace" }, { - "quantity": 242, + "quantity": 113, "unit": "lovelace" }, { - "quantity": 65, + "quantity": 28, "unit": "lovelace" }, { - "quantity": 10, + "quantity": 158, "unit": "lovelace" }, { - "quantity": 166, + "quantity": 18, "unit": "lovelace" }, { - "quantity": 61, + "quantity": 216, "unit": "lovelace" }, { - "quantity": 232, + "quantity": 150, "unit": "lovelace" }, { - "quantity": 209, + "quantity": 16, "unit": "lovelace" }, { - "quantity": 141, + "quantity": 128, "unit": "lovelace" }, { - "quantity": 161, + "quantity": 200, "unit": "lovelace" }, { - "quantity": 223, + "quantity": 134, "unit": "lovelace" }, { - "quantity": 130, + "quantity": 227, "unit": "lovelace" }, { - "quantity": 175, + "quantity": 94, "unit": "lovelace" }, { - "quantity": 56, + "quantity": 229, "unit": "lovelace" }, { - "quantity": 241, + "quantity": 98, "unit": "lovelace" }, { - "quantity": 227, + "quantity": 27, "unit": "lovelace" }, { - "quantity": 0, + "quantity": 78, "unit": "lovelace" }, { - "quantity": 246, + "quantity": 98, "unit": "lovelace" }, { - "quantity": 39, + "quantity": 135, "unit": "lovelace" }, { - "quantity": 7, + "quantity": 240, "unit": "lovelace" }, { - "quantity": 190, + "quantity": 178, "unit": "lovelace" }, { - "quantity": 137, + "quantity": 161, "unit": "lovelace" }, { - "quantity": 42, + "quantity": 1, "unit": "lovelace" }, { - "quantity": 219, + "quantity": 250, "unit": "lovelace" }, { - "quantity": 36, + "quantity": 37, "unit": "lovelace" } ], - "fee": { - "quantity": 193, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1f26tcyygxq4dz4ezrtzenxwg5y292e6my9q47u0zmvj6z0etvzzqwjahsu", - "ed25519_pk1l4djmfhlq366xr8g6f63z7x4f20cd3zhnvs8xdu4h5q5tkmgtz4qs73y43", - "ed25519_pk1hl99fh6lzhyh3xscza3n0tmxu2fn4ncsf5du6u3ue5aaude5gqhqt9g24j", - "ed25519_pk1mxfrg0j3uth3n0tuwy7jhpnqahemyraqfd0sxzajyutt7mlqtqmq8z4r85", - "ed25519_pk1d8clfmh45mzrjs3rxwlq4mw2jea6wt2zhz5rmuvzx6zvk55w4s7qgpcctt", - "ed25519_pk1rx64qh8q243f49l9atgwh6qgdvgzqg0xuwgna6wg443z35tc3tys6yeah3", - "ed25519_pk1l0px7k44krfkxqj0azae2ep0eqdl94948remmc9cwzdpj9xqjumspnk3v4", - "ed25519_pk1lr4ujlnkkuyz27vqm6jmyy0d9cqtz4dtwguvghm4vn5szg8tfsrqgra3ex", - "ed25519_pk1tydx0cudh3jhlgm843l6043cn4w3yg0uhlztk3gs94rqdfpxm63sj3vg3z", - "ed25519_pk1rg4zwkye50vu3fcxwpldf459xdvmtj0r2zgwkajy7w944dlunp8sltsnpq", - "ed25519_pk1ft6snkqpskze5z5ynq648n84t84szg96v04xrs7egwdz08cvpq4sz3mkq0", - "ed25519_pk1ny834ucd9dpsna552c8p7djhg9uf4yxuwwu98cwc4kcd9vaxzdhq5gq8ee", - "ed25519_pk1h7mn4sr4yzze8w2m2a0matn49msgevk6zh93vpxjnc94ffal8ydq32wzmj", - "ed25519_pk1497g4h7qcfgp4tzrhv25a4f4fdwcxnpnqxp4e9unlzvuwg38ydrqyqc9we", - "ed25519_pk12w60t4lhnsssfp76ez77q89rd9havqgdcnn0u9wfjy3hrus0qvpqnkvfq8", - "ed25519_pk1fy7597tenvupdd2zu76lux8n6aeustejgkcsw9exauhved9cywqqhvx2m2", - "ed25519_pk172py35dcxpudv7y7j43l5fyjg3hrrwuq0p42mpgmp7a02fdqzslsy9l709", - "ed25519_pk1hgvvtvv08x5dfaevhqfd62mzfxq3tdxx63yu32epu459ckn7z4pqyrlxvu", - "ed25519_pk1dq6mxr0xcgc9jhjnq6vj7098yfjtc68ss7z8d4v9x5xhsr8s6ysq2p3tcz", - "ed25519_pk1cgmd67r2fhqt68wcj06aw8d60my84td5wzha0asxkfd7atc2fj9sz3754g", - "ed25519_pk166z8chmkpghr280avr8e7c4u58lhcxe3dysd58f7j7nafkakf7dqwg7h5k", - "ed25519_pk1w4uxxe0w9rfs5kdaxm4aj9ehm2jhh0fd0wc4d3ha0pvwvspcvx5sxw3p4s", - "ed25519_pk17n7nhp4dxmkl2whtges3r2cj7jtlqk7aenmjvwswwgpy6nql5k4s4syqhk", - "ed25519_pk1yrahfutewks3zxh0a4yd0x0v5ujdlsmq0pww3efvv522rgrdncwqz823ae", - "ed25519_pk1jgqfw425dmu3hs7cfr3wfgcar7exsuy4v234z9m8z0ulqghkls0qk8rgqu", - "ed25519_pk1sc7kku00uegp2ylmr90d9mxmxxkewg52vk966mayyy6rvza66pgqwdsyh7", - "ed25519_pk1zmheychkwuluxeh6p3q5580vey29fkafpl6rs2r420wpx9xelm2s4v6w8r", - "ed25519_pk1ct7cwclzjqjd8zxfw6eyq0fsy334tayj7jr28ae8g8mxvk5864msc260lz", - "ed25519_pk1hq8zr6wz5a4eme0e76a9eydmagt2cnuugmjmgm2hv7lzvc88tukqfm3ltq" - ], - "pool_pledge": { - "quantity": 152, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 178, - "unit": "lovelace" - }, - "pool_id": "pool1g9w59m8gzx75sfx93g5lfz4vmf54s477k32xs4uknfh2qhdnefn", - "pool_margin": { - "quantity": 26.68, - "unit": "percent" - } - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1elyzy6jkfqpm8rt3echn546fjnf0lpn6ykfg8ng3q095j39dgr0q4lqsnf", - "ed25519_pk1duczt7alck829209y007w7v5k0jsfwv9m7nxvh336q2p5w72e59st9r90v", - "ed25519_pk1kqumnlzndkknruh27w9wpqrgr0zg99nzs99wd0ahauh924y62adqzzw2dr", - "ed25519_pk13yc9jgcfe44pfp407wa87t7mqlcstqwagu7gcyskgvcun5v3aams35ptlp", - "ed25519_pk1psg8hddtkfzgztknu90c6g94v9y6e645ew8cj59t8zq0ukhwztgsvduyrn", - "ed25519_pk1p73e7pnp9p3s5xvrt54k4q70wr0ufygymw280k2d0gmq3fk7p2psngwdx0", - "ed25519_pk1qe7cczp3mcm0lhrx7s4nld9tvmn7vkkqjnddx3dcym7zg8sdkdaq6hretu", - "ed25519_pk154q3jmxm3c30s0agr0x9lt0eygtweys7q6vp4hjts2zlgmc04wqsldeluv", - "ed25519_pk1twtaznx5eaclsshaywc9zjjd5lzesv8dww8z79gq3z0hr0sn76jq5nh8zz", - "ed25519_pk1d5kcxynr6wrpvwj0hmenpvynfuqymne8rvnlxfmyq9d5a5w469lsulattd", - "ed25519_pk1g8wqm4cv7wy6zww2dt09u6ueffljxly05h2t8hqmejngjmstsu9qpl3mhp", - "ed25519_pk196fzsyfvajvuy5a73shymle90xw5d6ku0k8chff0pgnx2tuq7ays6y6fxe", - "ed25519_pk1tvpwdtd8tsycccsck8fyhdynjpld353q9znnlamar6lymj85pv6sneghg8" - ], - "pool_pledge": { - "quantity": 211, - "unit": "lovelace" + "burn": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh13gz8dtg8yr3pfj8xc3du6fujwz0nmtjg4r7ew6hlqwmqs7l7r9n", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "8a0476ad0720e214c8e6c45bcd2792709f3dae48a8fd976aff03b608", + "assets": [ + { + "fingerprint": "asset16k2m58vupkcmwxlmt33mymcycxzvrlw6g07hwy", + "amount": { + "quantity": 8093, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset10duac5k0g9ge5fv8pjdm9x8qj0p3ax9q27hs20", + "amount": { + "quantity": 1345, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset18z3q7sp6jptmc7tcx795grt743fmfuuar8ltdy", + "amount": { + "quantity": 8811, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1kgcqm6fahj4twn37e6ltm2d79h5cqqsdlzx0cp", + "amount": { + "quantity": 2431, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] }, - "pool_cost": { - "quantity": 217, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1uycwkf97lf26m4farx5ukdjgymgqsd40jx03traq8s8hx80phnh", + { + "active_from": 100 + } + ] + }, + "policy_id": "e130eb24befa55add53d19a9cb364826d00836af919f158fa03c0f73", + "assets": [ + { + "fingerprint": "asset1ez4j36la7xpsrq5780q8dx863ylxyamqx8svag", + "amount": { + "quantity": 7639, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] }, - "pool_id": "pool1gytfdxctvz0rxtvv47mn7gfdx8pwz9fc54h4e422p9wmz2t75ul", - "pool_margin": { - "quantity": 44.75, - "unit": "percent" - } - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1aju4eglkd7n9sh0n2cmje5ceklvu7rzu9e24xsfq95xydpkgjs4qqgu4ex", - "ed25519_pk19pwv687vcy8nmcpc4nehx83yyf97mr4p54rsrg3lllkj3xl5yjrs5h4j79", - "ed25519_pk1q5xh3jw7fm7fwn7x06dux8wusgy5r67gtrdejw7wqxjmekul7rcsm47lql", - "ed25519_pk1p0eqvyf4fhmlprc36pseev2clfdhdtldw88m3etn8mj6pkr0w0xq7slld8", - "ed25519_pk1x4jlamxrezec22xfwg4rhdg97j8g2wj6z2c9wl3e8309cg8l7u6sfy4fu6", - "ed25519_pk17pvdfu2hs04vhga8z2q973hh9d83akhs858l20h8x6dvwvhvtumqqd3ecg", - "ed25519_pk1r5hglyf0efd9xzrq6x4jh2nr38hx9mqy5y7cfrg7dkmazlr74ulql8kfpw", - "ed25519_pk18ddf8258sggj45rv34z9nyavsaa429qkjhhm2ruaxwvmjd6fqc0sr26vf0", - "ed25519_pk10s38058crruytkfz7t9hd22xyw0zt97jk4tp0dmwd059f2ap9hssrw80nw", - "ed25519_pk1crfznxx7drz0qz9zuvunfyzls5l3gkrreryrd8vpqhad6e0jps8qfp5v2l", - "ed25519_pk14kq2jwrftfy2rnv3m6n30jr3wnddcmt6cuxjnhm2vn9g6uf6eh8svmkmkj", - "ed25519_pk1z0v3zy8m42djjh3v4zyzns9g897xnravx095que3wu3d4jxwuqlqg92nt8", - "ed25519_pk1q3ya4qf83j6ufwkj4kppc4cf3ew58cfkd0gnkq5l5ut3ye3lns2qkdnyp0" - ], - "pool_pledge": { - "quantity": 65, - "unit": "lovelace" + { + "policy_script": "policy_vkh1gusjd5fafnvrp5cv0uae0usgjn5c5zstfqqmc57n7u6zvjdqmqp", + "policy_id": "472126d13d4cd830d30c7f3b97f20894e98a0a0b4801bc53d3f73426", + "assets": [ + { + "fingerprint": "asset1vrff9przv562ejnn6any08pks6upf0n2mexw9t", + "amount": { + "quantity": 4920, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] }, - "pool_cost": { - "quantity": 82, - "unit": "lovelace" + { + "policy_script": "policy_vkh1ywhxcgml4kup2utjugcyc3kzut0rpgzru8qjnuh27ssmqxks7xp", + "policy_id": "23ae6c237fadb8157172e2304c46c2e2de30a043e1c129f2eaf421b0", + "assets": [ + { + "fingerprint": "asset10zw6cxau4czf0vjqykyqk3py8l9f2znsp4tglc", + "amount": { + "quantity": 1950, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1nluad62ald0l5hvxmnz2qdn7m3qmfmqngpfr9n", + "amount": { + "quantity": 8249, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1nnnsn2qqpurj2v56s5u8lst58qdzyc2qstjuy9", + "amount": { + "quantity": 1791, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] }, - "pool_id": "pool1l9wc0fjls3ejd76ape965t44cwht4wqhj6mmetgjd78lw4heall", - "pool_margin": { - "quantity": 78.84, - "unit": "percent" - } - }, - { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "12121", - "1681", - "13856", - "29659", - "29149" - ] - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1qlxl6ulnxlyw7kuuvdl8r50p9s82vj6t39q85eweyd92m5h4yacq7e5457", - "ed25519_pk1n4rnj3gg842mj72q5crtad08reu0mkklzldt933j838ydk69kewsr7xtxc", - "ed25519_pk1n8xp8ljgl2qcdekdynq95kusnlta5ywluw3kq64ttncwknx5x52qjxn80a", - "ed25519_pk1yux6xxnrxmpqger4n73udwwlzvves53nayk7zwva8utfm5lvd87sl9zdnm", - "ed25519_pk1hnx3c8sne2k6sk9xzkvu2qa2ugyfgj094q48gmeq2h9pmj0yq7gse62t2r", - "ed25519_pk1vwg0gpvk7xndam8aw9nlwfg92k85n6w8z8yqd7u5jsz9exak5gesfm0meg", - "ed25519_pk1ss4gh2fl0scfl7lfwcfk8kwwzmuc42ncdnw7l2z0gh72y0v9rkash5wewp", - "ed25519_pk1pacjrmra7fxchugz2whjhrar7qezfp69xwl2exx6efywr24f97zsf8xnrh", - "ed25519_pk1ygktjst4m4zd2srw75snllhe3gd2un7k6ykhahl9dlglhp3cxs4q0ghchq", - "ed25519_pk1gj002dvztxq9y5j573gjr0nqc4dhz575q3vt0r5ekdd5vuanh3hsgevt6n", - "ed25519_pk1y2z7dwcu0usaeqztg9jr9vhp7a3r3scwtqwkv5pmxr22346a08sq6fghaw", - "ed25519_pk17yp89tzg9ymrqkhgu9mvy629r4gts7sptyp69tp8u0lardlfxjuqajp669", - "ed25519_pk1hpdl2pxnn5vjsjuans994l8catc75cq09gfrmexsp9hv7se3uygqvsy4nl", - "ed25519_pk1j4w2x27lxuz9ltxfqx7qekafge63zvkua3z8zan4ve2d5zqwskgsprx84w", - "ed25519_pk13g3lv87xqex5w5gv34vant62tkww8khdcfu05swndqsx3gwpdxwqf9gdek", - "ed25519_pk1yw26kgyr8vdmgv809tdehku4f4hekghhu2vphu9t86ajulkhuhxsypgx5u", - "ed25519_pk152764mqh54w8xj7zcmq0pq4c5pzkgxgadfkw8c3d4tahyc7za8zqk5e3xr", - "ed25519_pk1fheh937cc7fehnwn8y90eg47c56fhr7s4kmz4wu0mhcz786yjcjqa3a5ae", - "ed25519_pk1smwkep9y03vse9mxd937fd8p5u30cuj4t778kmt7n5tkgrt3z75sc7u0zy", - "ed25519_pk1as3stjalj8smxn3tdw52yzurhfcnq0tenm8578dkpeeatfr0npeqrwrvlh", - "ed25519_pk1jq3zs7lydqkdvykc4yymgsm2e8l3ttw3fqqkumxth4ktutdttmmqqfs0qa", - "ed25519_pk1cn2n8v2lhn5vz7f44k2utg4p4mudxrz9v20nrqdt2rkwfg3npkrs6ey063", - "ed25519_pk10ysz6pcnf0sqekmfqyel048enzt5ugdz8eyx6y7klh5y94u72mtsdnh236", - "ed25519_pk18dtpfufel4rdgg7jpg4ud7zfv8klmum96hs7hk4macq3khmnkqqsqqt8sm", - "ed25519_pk1zpl0vx5t38260e3x4zeudl2u5czsy98l8d4zdqwec6ew2kafzp0shhdys3", - "ed25519_pk1wpj0ma06gmnjmv2ctsqca46g4ezjax0qzgnwptgj2wkaem8ypa0szv6d4p", - "ed25519_pk13fhc39sw5zdxrv32cua4y6hrhjgv5s69kgnhkpy498yg33f0jqrqq7e5g9" - ], - "pool_pledge": { - "quantity": 67, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh10ef79fc5y7qqjqhyyssrpqjlxj432ffle6xx4wapr8d4xvrcrdy", + { + "active_from": 100 + } + ] + }, + "policy_id": "7e53e2a71427800902e4242030825f34ab15253fce8c6abba119db53", + "assets": [ + { + "fingerprint": "asset1ardtze4zn8ywuyu6s7e88pelc2e3g2k6ervq2l", + "amount": { + "quantity": 9445, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] }, - "pool_cost": { - "quantity": 224, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1rw8gt6xdmfxjcvn0knunwm7dap9p5gshndpgvm0t77fvqyfw0qg", + { + "active_from": 100 + } + ] + }, + "policy_id": "1b8e85e8cdda4d2c326fb4f9376fcde84a1a22179b42866debf792c0", + "assets": [ + { + "fingerprint": "asset1mja4tncpfrwvqj8p6uj3uaassd0ylz5ezr0g0u", + "amount": { + "quantity": 9730, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset130d2rmu492cschelpall5aa8jrqns2yrllfkyp", + "amount": { + "quantity": 4852, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1d9jamvfaa86gehwa6cgw3c90mgr7dju86jxu65", + "amount": { + "quantity": 224, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] }, - "pool_id": "pool1utsxn4enmdt3ltqzpe7ggn5hmfq20xm6gvj7ckuvm8q8j3l4qx5", - "pool_margin": { - "quantity": 14.35, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1ajn2y2gfff6des5sdh4wrp8a9legmgrma2rtg9gg4vxjvywqqtg", - "retirement_epoch": 12698 - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool1nwqrs7jk2ls7zmynxhvfyjch92ztjvzu2grs8pag4y8j5ttmvjy", - "reward_account": "" - }, - { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "22159", - "773", - "27546", - "21224", - "27565" - ] - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk16w4c3ykmqjex3s66452xchjgm4cf8lt7dlkkkd57zts7h2w8htlsfru7en", - "ed25519_pk17p7ge827x9gkxhvk4cccerz4kzul4rsxcqy0fu3l9eaw7t802f4sapa89c", - "ed25519_pk19kywjrwjwscqtmg6svuk3dwf3glen8ry6xyrufclvsvywu9la68sfrcsjt", - "ed25519_pk1gs5qj07l5qr6rq30hhekg0drqhthml07lgyhrlv7hwwlfm4lu6mq4qp78j", - "ed25519_pk1kmwgm8622qda4wrpll8jwkthtx3hk96vwqk9y46qpp5yyep95qvs52x8h4", - "ed25519_pk1paqwlz0q0uk3vr6yz4jwjg3haq3dr80dg98uhm36smg5667m5l7qk08d2x", - "ed25519_pk1hw2gjjp6nselhlfzcujxcyupdpr00s6vyw0dfu7nfr67n25528gqpvzp79", - "ed25519_pk1rs0sjqlt56k8u6kpxuna345k8vc656l3lg9lf9lj8jcyxrslddxqpark9c", - "ed25519_pk1vpv6adtk5l0w4qgw2kf9wmupv68253png0x7g2elnf2cdzd03ces0qyuvc", - "ed25519_pk1mjp95j7rrv5mq2cenj58rrnu0m9p0cmntzvdvw2egly0rw7q9z7sdxcyv4" - ], - "pool_pledge": { - "quantity": 189, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1w9plvcgwmxr7cv7dxvsjt75ft22yrt0fqj82gjfn9g46szurxtu", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7143f6610ed987ec33cd332125fa895a9441ade9048ea449332a2ba8", + "assets": [ + { + "fingerprint": "asset1xu0rv3dhgtlv6v837j4t24wnul2x5k6kgzfc7z", + "amount": { + "quantity": 4489, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1cahlcgn6xnk4lykp25qwycce78de5gdvslp4et", + "amount": { + "quantity": 5176, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] }, - "pool_cost": { - "quantity": 95, - "unit": "lovelace" + { + "policy_script": "policy_vkh1yqpjkh8khcyjv40yujy3vwkyzfnezg0zlp5gpwwqzxjuyq4da0f", + "policy_id": "20032b5cf6be092655e4e489163ac412679121e2f86880b9c011a5c2", + "assets": [ + { + "fingerprint": "asset1eavc7mfuzwhpps7k0vuewqqeal5c2dlx7kp99c", + "amount": { + "quantity": 4089, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1vf30lqhr2tj26retf75teqgzryf2a8lmwhc06u", + "amount": { + "quantity": 1295, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1x3vfmywnlyky92zk5rgtcwtr0cm95pz2kuwm3q", + "amount": { + "quantity": 6288, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] }, - "pool_id": "pool17ctrsev4gtlc3w2284x6wdpc67ytnlwxal35w3ums2tac5kjc5k", - "pool_margin": { - "quantity": 70.26, - "unit": "percent" - } - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk19qgpf7jfn8a5rmc6jsyva0ee2j2tfavy9xw6lf5rs833jat46uvqhcdmf2", - "ed25519_pk1l0985km3pvtmu642xkrd2vdgnx06k5ehqptvpahtdecv30h3xd4szp4wx0", - "ed25519_pk1dps65d0a4hjcqd0vrx5dyapqzx9r30ayjcfu22gqwlj2wrlh5jrqlchl2y", - "ed25519_pk1snmvxns948f9c38epdk4zakdjzm6958qwa3pq2u7zevxuamc9vsqrvwhmw", - "ed25519_pk177zzw3hr6q7njf4wfmv9fqrafkdjq3a9tgxmpesgafc4wcfuwp0qe7kxr8" - ], - "pool_pledge": { - "quantity": 6, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1snx9pyljcp8m65k3d492u0sx6gdpja3ysv32mtqkh9e3vjyj7q5", + { + "active_from": 100 + } + ] + }, + "policy_id": "84cc5093f2c04fbd52d16d4aae3e06d21a1976248322adac16b97316", + "assets": [ + { + "fingerprint": "asset1xe8h9lx6208l2hr546vuh77nyms22a02sqjkzd", + "amount": { + "quantity": 4671, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1yh3mcfr6sekdu8suvtded3lsssrr24pataytty", + "amount": { + "quantity": 477, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, - "pool_cost": { - "quantity": 104, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1fgfdfuyw2qzp8tyhqwewdhp27zltr7r9pj3868l3sdkvkgnu32p", + { + "active_from": 100 + } + ] + }, + "policy_id": "4a12d4f08e500413ac9703b2e6dc2af0beb1f8650ca27d1ff1836ccb", + "assets": [ + { + "fingerprint": "asset1c66ktj3kq4rj2mz2g4y5l9wcjryssvaagz9n6m", + "amount": { + "quantity": 2810, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset10avsy89r32ghlwm7w7udalvk3szha2sp80fggw", + "amount": { + "quantity": 4170, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] }, - "pool_id": "pool1wc5u804u8k03cqrmn8ksudt3s8nld3ukvfh0vr8s658lgrhnqdc", - "pool_margin": { - "quantity": 82.5, - "unit": "percent" - } - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1s3htvzh22rux8qrejqlp0e37e3lxm838mr2w4d6565pzkvmy907qwe95vc" - ], - "pool_pledge": { - "quantity": 104, - "unit": "lovelace" + { + "policy_script": "policy_vkh1j6whr37l7p5uqu5rdvg8ckdy656ztvc5ehwtndn8rmsluh4ka84", + "policy_id": "969d71c7dff069c072836b107c59a4d53425b314cddcb9b6671ee1fe", + "assets": [ + { + "fingerprint": "asset188mtsse550hu4hfm04546ywtgry2eg7u5rrmkd", + "amount": { + "quantity": 931, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1mv0qy69svcrud99zwrgh5ree7yshrmqtk7dwx4", + "amount": { + "quantity": 5875, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1zkrsq72lhm2tmx6xpmcyp2gu2xg2yz5cq9w2g8", + "amount": { + "quantity": 616, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] }, - "pool_cost": { - "quantity": 106, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1u6d5rmw6jgslssushcetv9t6q7al4wz4k0slc8wwcz9h66cusav", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e69b41edda9221f84390be32b6157a07bbfab855b3e1fc1dcec08b7d", + "assets": [ + { + "fingerprint": "asset1q047g9l5082ud6nthtdc498darqtrxqdkhw56c", + "amount": { + "quantity": 1474, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1557v53an2tqs60c2whrlhdsakmueffz97pn75k", + "amount": { + "quantity": 7919, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1cyjk00ws9728hpn36w0p429eml2kp4r845zydx", + "amount": { + "quantity": 4828, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1vytyzphv5vvgn6a4td06ktwl8dmerdtjxacpn5", + "amount": { + "quantity": 2777, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] }, - "pool_id": "pool1ksd7zdeqerr6jnewsj0pt56c7h73a6yvz6qlekwll58hkvew0wx", - "pool_margin": { - "quantity": 30.2, - "unit": "percent" - } - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1rf6nv547r7whemxv4cdjwd63789kd2hp98j362ahj498s9p9vruqzm7p50", - "ed25519_pk1lmc5n5efd2f4e2utjthzhkwlt3pxj5aksmjm6rawpjyuvv88kucsk642a5", - "ed25519_pk1dy7xd25gh8d3gxt0mped9ptw33ulfrn5g6then2cg9vl0647mf5snup9ua", - "ed25519_pk12a7wln5dxc9l4yu5s2llv66sdpqkrzvvpvkhyn5m06sefrrnhghqtup0fj", - "ed25519_pk1fvh0gq9kp8m70khmz6t3r7yr5rc5lycv9823uhygaxa7a884yyjsw8he2a", - "ed25519_pk12zc4yuekcwnk0ey73m0kldecjyecf3flukxflmjxj4q4vgwyu78spfxycs", - "ed25519_pk1jnqzjqf80569xuhfl2u8gnltwg8u8azcduk3rhmqj4mrmyljqgdsu7pqmf", - "ed25519_pk162lwcujx4phn4wvsqnv557lcd4k6cwx35swaxumrelhdk53hcwqqrqrnv4", - "ed25519_pk14x89f9a4ql3lal68r0pv3yyc5d3jwkdlrqh06ukt0ye9kz3r3uhq0v0cc7", - "ed25519_pk14226a3qsdjvful3z7c03es39zsl5myptmadgee54acszz8ry525q99esj0", - "ed25519_pk1cd6r3rmnaevpkjejd8da5xp8wdzcg4g292lu8t7p85zuj0ky38xqnyk0sq" - ], - "pool_pledge": { - "quantity": 43, - "unit": "lovelace" + { + "policy_script": "policy_vkh15c8weyemjpxpm9kaasfq3szkzuww5pe7w68xsrzzkj3fxh86kmw", + "policy_id": "a60eec933b904c1d96ddec1208c056171cea073e768e680c42b4a293", + "assets": [ + { + "fingerprint": "asset16j568ymk5t3q5cgsll6758glcs33nhamg0gvpa", + "amount": { + "quantity": 9558, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12fwwxqxdythq4l4mmtmn0uheafzkppd5cn5f9syq4j6yxggg0jz", + { + "active_from": 100 + } + ] + }, + "policy_id": "525ce300cd22ee0afebbdaf737f2f9ea456085b4c4e892c080acb443", + "assets": [ + { + "fingerprint": "asset1prq4g4t2qhukcwrkcvxt6sugy7mp2htd5tdxhf", + "amount": { + "quantity": 5187, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset12fxyrwc3g6xz5f24ss49f0qskmrnqsrnsr2wz4", + "amount": { + "quantity": 9863, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1p3gcuurj7eeawhjpkg3gr5l3whvweqx2k222nj", + "amount": { + "quantity": 1489, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1w666clh9rgrq7zzzwm5u7r6xx423xt958a54s5", + "amount": { + "quantity": 6872, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1veku30ah0eq59t2fz7nnqw9k3zwxcy9ltwrns3lq0evlscexlrg", + { + "active_from": 100 + } + ] + }, + "policy_id": "666dc8bfb77e4142ad4917a73038b6889c6c10bf5b873847e07e59f8", + "assets": [ + { + "fingerprint": "asset17288turafk446wta9zveg5plg9p0m6yd9kpjxh", + "amount": { + "quantity": 7975, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1c4f2elyyvp6fhm9n8p2zha3f58r2mk5u67w472", + "amount": { + "quantity": 2534, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh19009x7ez4t3q590eu264sf7w0xxev0s0r9h9kpz87dq75df0x3j", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "2bde537b22aae20a15f9e2b55827ce798d963e0f196e5b0447f341ea", + "assets": [ + { + "fingerprint": "asset18erzr9953tr8rrjv576zdl0cken85s5xrer5d8", + "amount": { + "quantity": 7166, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1dsazn069ca530wa008w8vghng99fd3hjcqhzml", + "amount": { + "quantity": 6082, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": "policy_vkh126txjm30vc25rj8aha2x7kt7aw4qtvclp4dq0x3k6ff9gn6h4sf", + "policy_id": "5696696e2f661541c8fdbf546f597eebaa05b31f0d5a079a36d25254", + "assets": [ + { + "fingerprint": "asset18r9vmx37u40me8dypgnt0d5vxdvecxh3f3q79l", + "amount": { + "quantity": 7630, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset17lxvcmut5gnuk8kg9gpd40cst4pvmgrjy8e8em", + "amount": { + "quantity": 7517, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1hzj0qhpu3a9enmywjal96v87qy7qljzl84nv92", + "amount": { + "quantity": 3863, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ld8vvgu7y370x0nhj7q7vmu582p5wvpm46yn00ymz8xdz203jd9", + { + "active_from": 100 + } + ] + }, + "policy_id": "fb4ec6239e247cf33e779781e66f943a8347303bae8937bc9b11ccd1", + "assets": [ + { + "fingerprint": "asset1vchf56q7wr3gkyge2fkjlnm0ewxsyp52q44z8d", + "amount": { + "quantity": 7571, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1jrp4mpk6nf8hg0af9732qhp92jg5jpzfdhdtsy", + "amount": { + "quantity": 9884, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10g2r5xk0u5pwltz7k5x23nj4gtw7j0vntz7xjctuekawv9hrgd2", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7a143a1acfe502efac5eb50ca8ce5542dde93d9358bc69617ccdbae6", + "assets": [ + { + "fingerprint": "asset1zjux4pcndsd69r39nt7f8szqtyev3uck4n3dl2", + "amount": { + "quantity": 9711, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1p5x9vdk8pen7yktg0v5ej6rfxcj2qc5h9e28ahukt8yzxrlwg85", + { + "active_from": 100 + } + ] + }, + "policy_id": "0d0c5636c70e67e259687b299968693624a062972e547edf9659c823", + "assets": [ + { + "fingerprint": "asset1n0utz4zsw5mm78m7qeamgfsgx5pc83eq3mmp6w", + "amount": { + "quantity": 2208, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1q96tv84nnczycdplx2jjpxanxv8wtx3hzz8ffk", + "amount": { + "quantity": 5449, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1myxhyhg9w3duz0k3tpan6jnuljnkx6v3m45ffda5vzfe2es5pdl", + { + "active_from": 100 + } + ] + }, + "policy_id": "d90d725d05745bc13ed1587b3d4a7cfca7636991dd6894b7b4609395", + "assets": [ + { + "fingerprint": "asset1e5yj6dkryyvg2x83tqhflkufx4p9xaflq6u78z", + "amount": { + "quantity": 8088, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset16nrmtwlu94apg60du7mq29sn3gmjsqwvquqj2y", + "amount": { + "quantity": 9288, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1v86k8aftumd7hhpzcjaw9lpsk4twha90ukmcyg", + "amount": { + "quantity": 8092, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset165cn3h0fm03wgk249auyts3u2spkhha5nrq852", + "amount": { + "quantity": 9123, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1t5crfwjp7pj6u4dcgeju3ephezd3ujgdtqek8memkqjqxdztrl4", + { + "active_from": 100 + } + ] + }, + "policy_id": "5d3034ba41f065ae55b84665c8e437c89b1e490d583363ef3bb02403", + "assets": [ + { + "fingerprint": "asset1zx3df56qpvp9arzwmayxuzm9uct5fqx9e070ac", + "amount": { + "quantity": 6981, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1lsqzt2zakh4jgeffmgwwkqpeyrmlfgnk6fvhup", + "amount": { + "quantity": 1824, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1qjfjfta9ewwn9sxj0p68p0c9v628q0c2ez25cd", + "amount": { + "quantity": 7621, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh14z8a3asd7kasapgmmqg7ftdasu9q9x2cvs45lxr7a29zyr3x0xg", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "a88fd8f60df5bb0e851bd811e4adbd870a029958642b4f987eea8a22", + "assets": [ + { + "fingerprint": "asset1hss52h2r5ajaqndt733vkcay4a4jga2tyae65j", + "amount": { + "quantity": 1477, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1ukzuggae35qcdem0l0y5504tzcpd03g70ktvfh", + "amount": { + "quantity": 1485, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1qqzumjhuwmylmcjw35pnjm6wldex29rr9y7aeu", + "amount": { + "quantity": 1409, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1xhcty5s5kl4ynpcuk3zz6f84lnw6xvfkx6ztyzv7k0jqvwahhvp", + { + "active_from": 100 + } + ] + }, + "policy_id": "35f0b25214b7ea49871cb4442d24f5fcdda331363684b2099eb3e406", + "assets": [ + { + "fingerprint": "asset1f4lge7uf2v6nsvtele3d2kd50d89ellrkxzela", + "amount": { + "quantity": 9962, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset17cdwngkjdukcwg4nc6cyk83c36w53ecezglnta", + "amount": { + "quantity": 9592, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset103rdl8j0wdwxrqan2vfayku6s0w6qupr53kadc", + "amount": { + "quantity": 5480, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1z83y7kxx4wf597dhvmlxjamtm2y04yqfl46n8a", + "amount": { + "quantity": 5311, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ppfdcc6qxkse2mx6ckdn7t8m6fvtwq0hufqawekymfnzwys8t69", + { + "active_from": 100 + } + ] + }, + "policy_id": "0852dc634035a1956cdac59b3f2cfbd258b701f7e241d766c4da6627", + "assets": [ + { + "fingerprint": "asset1s8wy7yq6h0at27wv3zun3jtv6vyqfk836ej3wr", + "amount": { + "quantity": 543, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1ws603ugec8mdj8spuf4aklccynn8ck29x7nkjn", + "amount": { + "quantity": 6062, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1lvx8l0sd9rk60f40q466hxukv4ey3xzkaehcpc", + "amount": { + "quantity": 7080, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1pywy3mt4qqzdml05wge80ne93tn5k7mlhjd7nd", + "amount": { + "quantity": 6800, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1wgq7c3d80kzrc90k4m80zspsjrzrrjcknz5w68v9k8enuqleupk", + { + "active_from": 100 + } + ] + }, + "policy_id": "7201ec45a77d843c15f6aecef1403090c431cb1698a8ed1d85b1f33e", + "assets": [ + { + "fingerprint": "asset1h99tavtysrpsz5vna33r0vz95dhgdcdrkj9haa", + "amount": { + "quantity": 9170, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1dcmnz9mc0fk9jk6kzcxrscg89quhuzhhfctmva28pcp7k4acuyy" + }, + "fee": { + "quantity": 17, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "deregister_pool", + "pool_id": "pool1c9ulwyug5g9hu6axjgw9s72u9anvkjwwjexssc9kddd0q8rssje", + "retirement_epoch": 9996 + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk16tq555ud7czey7w2qrxmth80zmerpmj9njqk0pxxz9djdr5wlldqmvgc9u", + "ed25519_pk1alvm98wzujkr3cykn2dnma5ntf3nmhlgdj9m7pved63uqkrn3eeq68ymns", + "ed25519_pk18dne62chvmllmgcfkj6d2shcadps38d4pgc86h9vgr0h6umkrdps0eq72q", + "ed25519_pk176wux3xg7x4w596qgvjf62c6sm4wmw9spd70wxrtaa5n9r2um7wscn6grx" + ], + "pool_pledge": { + "quantity": 106, + "unit": "lovelace" }, "pool_cost": { - "quantity": 97, + "quantity": 187, "unit": "lovelace" }, - "pool_id": "pool19j0cerck8j5fjpk39cdswmhuglqnxastl4uvxpqjcvauyg8qrcs", + "pool_id": "pool12uar4pldcv24fws4594j8a8l2qukvgd35e6ryjye3sxdksgafvd", "pool_margin": { - "quantity": 45.37, + "quantity": 33.55, "unit": "percent" } }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "3701", + "25027", + "12629", + "27881", + "27828" + ] + }, + { + "certificate_type": "quit_pool_external", + "reward_account": "" + }, { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1pve2cnm8kjanpmjkq3pu73em7dprqgwedxjmgecs0nhnzejerw2srasvgy", - "ed25519_pk1z7vk445dvt6yw2d65yt70l6t899rdc2dufet4t72lc02rssvvy9s84cujv", - "ed25519_pk1rdt55jyy3nj6w84d2l8r9uulxph6rsdl5ra8qj8nvf8wvqg0ml4qktm5h5", - "ed25519_pk1x7sf8se4pelq3nyej066p6lr4c67hvt6rh6fjx4wzh5pduuj5h6q2yazln", - "ed25519_pk10waz3zfa0v7t6vgmlsz9u9vevs0jt30jwum2ycsptcw7fn34v8ns6ykm75", - "ed25519_pk1vae2gwln8kfmmma3ylawawdu8d876f7369d5cfll64fh648fqgtqq520v3", - "ed25519_pk1hngyfajm9adcek4hkm24fv0hfk8gdwx4degzzj87322trsj3l6wsayxh4a", - "ed25519_pk1af7fe9yv2kut8qwl2y9mvts7gtzwcmluwaunfwgt4gfz54gewztqjzapch", - "ed25519_pk1qrkt6j9vfudpdk89dkjj0g540nmak4zrxt0d9kafygdhw3efrywshfvttl", - "ed25519_pk1h9n22m9j2zverqmrqgzgwsnzkem34zng7k8mt7g2tacmvu7pya3q58s65d", - "ed25519_pk1k4xxzjmaa0x9vucncp2qdcqgqmrfywuhusr657e3w9r64jzppk9s9d69kw", - "ed25519_pk1ta4jgv70qfr5d2ej7uct44yr9pksn3spuwepe3lfdw8jpa58j4kqm3x90v", - "ed25519_pk1dqzsq3acxw8kzyvmsluxesyjekmejfpqydqzk8dx4ht50se4n3est6e3nl", - "ed25519_pk1njs3v26z857dkwf838ua6frp99l57av5870g9fn82jajpq5lj8cs6kcc4x", - "ed25519_pk1n2x0zewwnlvvs7j8tud643dg7nk6afg93p5dmz4p7zxtz2hvvwys6gxsrq", - "ed25519_pk1ecpr8d2arap69fw72w6ucj02c9vae4qgy37x202j90lc2y9m5eqqmgyapy", - "ed25519_pk1j0p840pjkwdknldp0tjg7zc4suuf7c2jlunf5sdslqwm2dg5vz6st9l5vv", - "ed25519_pk1p4fzuqrgvctgljfwk286h5zxyh9mwd7vm43phm30ggsh2kdnu8sq7kxgqt", - "ed25519_pk1l2vn88wfjwqzw0mp9g6jfwk4p3vqx6tzszg67vd2uhhqxsk2krzqm4hfu0", - "ed25519_pk1tf75yz8s9gx5tktlr5vvndhhl25f50xjmvnpp27ce2rfpd3jh3gqxuq0q5", - "ed25519_pk12nt2r7rcyj4prlzesa5fplekpc5ls309vptpmfx75lz76z95enqsywxn4f", - "ed25519_pk1h9nu0w5e7haw7gc633rgsxf3sgvskzmx7e9v7a5huwk3337pt5esyv8llk", - "ed25519_pk178lkds9mpdwzw59sw6zh37kkgfrt0p2jsd97xka896rl8v5jf7uswps2gm", - "ed25519_pk1dajkmshkdmw984cgw8ma7yrm74m7lvnptz94nkqsysu6823n4tfstphwsx", - "ed25519_pk16dpr8lctxzwh4cavpalh0qr9rgxf0ueehsvmrs8vh6cen8vkqnrqg5md5v" + "ed25519_pk16pxz8u9y0rwk2h7j7xqsyr2ns8895wds9m96eaztz9jhlzwyjwfq8qcetd", + "ed25519_pk1lflcfa93rrjetygkpvncwee29s54qy4gnlqa2zdx5wzl2ke9qhwsrv44rj", + "ed25519_pk1kl3mh9scaulxtz40lje80kwxfevs32kq7c7un8ftz9va5cz7ulsskjm4te", + "ed25519_pk1j4t8fdajrhtfp6t6ep7rygfkjav6fqkx6auwsu2c7y323redrsgs42v3fn", + "ed25519_pk1x2z9m7u6xa8f54jtjeq6u9u5ft32mr2jlah37y8fknwjukdusxwqr6dp02", + "ed25519_pk1t4yuzhfncv6xtzph7dr57fg6tur5wd5n95crr49v4pnyh73trcrqeeg5ew", + "ed25519_pk1xsw77xm0rcly2ylfsrq5efeg75hjca3ld8vkun56mjaextex3jmsg2ywv0", + "ed25519_pk1scggujthuakjvngd2sqpeu2n4rav6kyl4kw5klm8559p2cuy4j7sg0rwxe", + "ed25519_pk1s5q73s43n5vkr6zjjwul9ykcv2m9dux3ztwgxse448y3qw5ddzvsz4ag35", + "ed25519_pk1aepfkpwf2qw99my4rx28wua4kgpgkr4wd25jjss027qdvpfcx32s6hx0ct", + "ed25519_pk1q56x68ynjwt286k0c0nxpcazja2v95g6akzdfks2j4mgn269t86s9jv7h4", + "ed25519_pk1crwe5p5cggnvu7v9fztzhx6dek855sktrgne30rzs6qyaa0vdrqsdu9p4c", + "ed25519_pk1ytk28h7sh08ende7l9ejpr967cuxwvhy86hytgqhkxhy9zcx4mrqjaqs9h", + "ed25519_pk17qw2q6vvf4qxrt7g7lxcfk72er85840yd86w5fdk9qa03r0gvz7s20syhq", + "ed25519_pk1g8camqj37akjxaehznseysqhwvpeetcvatlcn06c7sf3a0kkj34q4w57rz", + "ed25519_pk1kc00dmdh0gj4czhgmku3wvyhzk9m7r0zhjhzqd6mzhftz7e9xhase5dsyr", + "ed25519_pk1we2d4h2xyldcervunyguexfuzjluu2qfy6v9pe7h7klwn59x47xs96yrcd", + "ed25519_pk1x7k4lhq0vx98kzppsp207sj4qq9yu4mpnwr99m5334nkk26navrs3mxhy4", + "ed25519_pk18u976d2rx36ge8nuuj94gldtl8cysvhne0l24kcpruzanygrp7jstg9dx0", + "ed25519_pk1ylufg9n8sf6glxxze4sv3lp93e6hz807xkcqk9azf6j93juugwzsqevdy6", + "ed25519_pk14hlxxjsyn5q3znk26z0hyq3dephhk8yadgs59dl3l2fjxjthda6s9fudl2", + "ed25519_pk1fgpzzvhuy2chq4xuscc668re6v7dyaae57wsws384p64jwmead8qghtzff", + "ed25519_pk1p46azdyhxqdalptgeu4wyw5hyznsdfn9fa444mjs0mdgqflw0wyq7xdrw7", + "ed25519_pk15n385dfm5xfwxplx9dup7aymkf7cl8cw5nd5j5rpjmcrxmhursdqlm4pve", + "ed25519_pk1ycuus7lepkhur3n0nfxxsr0hz5rq0ygf09r5vjy2k5cclan9jzcq2ceaye", + "ed25519_pk1wwvc4ge389tkf8lr6lclhe2wc7jaqcypwqnx3hxgfx46akgnfk0qye46zh", + "ed25519_pk1y72wzddyep9lz4gu4cuj75979j2uvqhn7lleu5vuk3npr7qt5dssluu9sg" ], "pool_pledge": { - "quantity": 196, + "quantity": 26, "unit": "lovelace" }, "pool_cost": { - "quantity": 59, + "quantity": 186, "unit": "lovelace" }, - "pool_id": "pool16z85c0yn5dhr8lp8ymlasyf7vd66s4ycssnl6pvt0unz5zveenz", + "pool_id": "pool1276rsxtf3w2325l3w65adpur52wmax9vyclcd6zw9hvcwm2uh7j", "pool_margin": { - "quantity": 23.4, + "quantity": 64.8, "unit": "percent" } }, { - "certificate_type": "join_pool_external", - "pool": "pool1vmgujmdn04rmmym8h07l8uulllr899n6dtt5xwfmxck9xuxgjy8", - "reward_account": "" + "certificate_type": "quit_pool", + "reward_account_path": [ + "21", + "12400", + "12352", + "21406", + "15250" + ] + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1zs4rsa7a66rsp27khrwsv9tyr6llpxz2gelzhujvkuapkw3wjq2qphqw34", + "ed25519_pk1u4e5huxml8ufda2s8kqmg47g3vm58g2rvnt36jmgngl09lerczcq6uug88", + "ed25519_pk1nul4lle2xruaqnf35ecgra0gp7fl09t7w0qg96nlz9g7y7cl49asfk8yca", + "ed25519_pk1nf23w8n7y3rr3e893k2hxajrsecjpudap20zu9ygyu5pahdagazsg8yq93", + "ed25519_pk1l2kzhvjp2u3wxxt6s3kzgvtz3d96rx6jn4x3455j5jpn6uprcazs7gq2qf", + "ed25519_pk13xx88j53ep726x03xvn602g6tlw8ggv78ppd6edxd47ulmfwqlqq5k8a43", + "ed25519_pk1k3we368h4k6674hz3xpdzv578dsqtfg25mx0xfldwhf2s7aqhfhqw6ez2g", + "ed25519_pk1c95dwwu3laqjqpx96mvmhuuzk9x9prhr6u9evnfgugr2efuc0jkskdem58", + "ed25519_pk189vzcfhs0saynhk6m60knyy8f5fy4yyx6hex5w4qyljx2vd67xxsjjluvr", + "ed25519_pk195g8cr3m533rt2pa9fn35p5sju274kk9aeevpu9y6jlnt2mjrvrqzug6ey", + "ed25519_pk1jxsmygauys57yecl6zk45eyjj7wnp7868uyg2frjn6ex5zcdg70ql5sq8w", + "ed25519_pk1vr84gyngvwej8x8de6q9rwc57t0ck5fkfa89tg93lncu7u85vt8q4q3yu5", + "ed25519_pk1fp0yg4cw3tycwf6h55d8e5rxngnq979z7ms2jc72ll0x8l6clt3sdcg03z", + "ed25519_pk12qr5m5umgg8chn3c0q03s2dwp4ld5nhadysce533hv68hgc6wlhswgq6yc", + "ed25519_pk16xjjj8w4xl6wgpghj8n0hj4wrzxxrxmggxdamgks2wepg2x6m79qzlk96g", + "ed25519_pk1hpcxe99vhveuqum99maavmaupcwc7yal592yxuxe63ya9efj9mkslkmtd5", + "ed25519_pk12g0v2tne3pxgvpvld07ynazqrn87e5x4yftadnn572z86tnhjppsz54zr2", + "ed25519_pk10pvxyneuy262kstk8rpyf6hdc4re3fjzfgqkfkfqrwcsgnmqsv4sszqa36" + ], + "pool_pledge": { + "quantity": 148, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 156, + "unit": "lovelace" + }, + "pool_id": "pool1lq6gq3x27vrw984qeylcf4ke6xfhz4n36hg5pnvh37a6zr7n5c6", + "pool_margin": { + "quantity": 99.91, + "unit": "percent" + } }, { "certificate_type": "register_reward_account_external", "reward_account": "" }, { - "certificate_type": "join_pool_external", - "pool": "pool1y7lgr6hpgf93ktudzcklpxxkt8dt882f0yck78euwsvqg5ppcmy", + "certificate_type": "register_reward_account_external", "reward_account": "" }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1t867rds0a73ku9yl4k4wy9lzg2ef3l7pf47g0ykujjm42gz6lya", - "retirement_epoch": 16384 + "certificate_type": "register_reward_account", + "reward_account_path": [ + "27196", + "31264", + "30480", + "10346", + "11336" + ] }, { - "certificate_type": "genesis" - } + "certificate_type": "join_pool_external", + "pool": "pool1gvfpymy6jw2qvrj3906w4c5c3qfrlpvpg8s92aju0umrslpaf6g", + "reward_account": "" + }, + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "32087", + "13357", + "24826", + "9527", + "29430" + ] + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1499x6jrsucluxl86vr3gcv5d5slphmc4h6htgl739qahkjky6e8", + "retirement_epoch": 13558 + } ], "deposits_returned": [ { - "quantity": 131, + "quantity": 244, "unit": "lovelace" }, { - "quantity": 131, + "quantity": 72, "unit": "lovelace" }, { - "quantity": 142, + "quantity": 48, "unit": "lovelace" }, { - "quantity": 138, + "quantity": 56, "unit": "lovelace" }, { - "quantity": 126, + "quantity": 163, "unit": "lovelace" }, { - "quantity": 116, + "quantity": 129, "unit": "lovelace" }, { - "quantity": 58, + "quantity": 93, "unit": "lovelace" }, { - "quantity": 152, + "quantity": 103, "unit": "lovelace" }, { - "quantity": 22, + "quantity": 199, "unit": "lovelace" }, { - "quantity": 5, + "quantity": 219, "unit": "lovelace" }, { - "quantity": 41, + "quantity": 15, "unit": "lovelace" }, { - "quantity": 56, + "quantity": 199, "unit": "lovelace" }, { - "quantity": 193, + "quantity": 104, "unit": "lovelace" }, { - "quantity": 201, + "quantity": 16, "unit": "lovelace" - } - ], - "metadata": { - "14": { - "map": [ - { - "k": { - "string": "󶷛麿" - }, - "v": { - "int": 1 - } - }, - { - "k": { - "string": "􄛳𦾯" - }, - "v": { - "list": [ - { - "int": 2 - }, - { - "int": -1 - } - ] - } - }, - { - "k": { - "string": "􌗐𢄧" - }, - "v": { - "map": [ - { - "k": { - "string": "𥚌" - }, - "v": { - "int": 0 - } - } - ] - } - } - ] - } - }, - "collateral": [], - "assets_burned": { - "token_map": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "addr_shared_vkh1xfat30y9u446wwatvay9n7kqgqgrqwvn2srja39k6sr92fztc6p", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "policy_id": "4214ca20a2d0fc9b063d8bb10d052ca8f89b21a23bd6799a8fce1346" - } - ], - "wallet_policy_key_hash": "policy_vkh18g6qkdm0gqmys8g60uwz2pqxlu6gz6trr4j8zr8ptpm4kjhtmld" - } - }, - { - "withdrawals": [ - { - "context": "ours", - "amount": { - "quantity": 233, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 211, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 96, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 96, - "unit": "lovelace" - }, - "stake_address": "" }, { - "amount": { - "quantity": 232, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 118, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 13, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 240, + "unit": "lovelace" }, { - "amount": { - "quantity": 222, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 248, + "unit": "lovelace" }, { - "amount": { - "quantity": 162, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 219, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 204, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 136, + "unit": "lovelace" }, { - "amount": { - "quantity": 194, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 165, + "unit": "lovelace" }, { - "amount": { - "quantity": 148, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 213, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 157, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 162, + "unit": "lovelace" }, { - "amount": { - "quantity": 133, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 196, + "unit": "lovelace" }, { - "amount": { - "quantity": 246, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 15, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 54, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 37, + "unit": "lovelace" }, { - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 237, + "unit": "lovelace" }, { - "amount": { - "quantity": 84, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 212, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 51, - "unit": "lovelace" - }, - "stake_address": "" - }, + "quantity": 35, + "unit": "lovelace" + } + ], + "metadata": { + "7": { + "string": "讠" + } + }, + "collateral": [ { - "context": "ours", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "stake_address": "" + "id": "4b650c7d35023a64063d4d6b022e78483153330823430a0cc77c215c6d597b1c", + "index": 0 }, { - "context": "ours", + "address": "", + "id": "19433969ee762a255e681de22c75515a2c6886bb41293e601f6a41310d1f6616", + "index": 22868, "amount": { - "quantity": 237, + "quantity": 69, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "13931", + "11881", + "351", + "20933", + "17239", + "30897", + "22750", + "6169", + "21180", + "13584", + "6985" + ], + "assets": [] }, { - "context": "ours", + "address": "", + "id": "2e6807782658477709695436715e2d472c476b856c7146486e4a6728090b2e32", + "index": 21562, "amount": { - "quantity": 181, + "quantity": 2, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "18711", + "23640", + "4401", + "24477", + "24805", + "5106", + "18272", + "28590" + ], + "assets": [] }, { - "context": "ours", - "amount": { - "quantity": 247, - "unit": "lovelace" - }, - "stake_address": "" + "id": "10231c4d0c090a11119f7b4a4e0055ed6d59b301696e6b1b7d7c4f661c6a9f77", + "index": 1 }, { - "amount": { - "quantity": 48, - "unit": "lovelace" - }, - "stake_address": "" + "id": "2e0b2d095ab942135ff429115728122239575c1e19d43854382e7879d1301e6f", + "index": 0 }, { + "address": "", + "id": "ab5c4f26187a88ac434a481202782b171a5b5a291e030e645b054822c1465237", + "index": 23011, "amount": { - "quantity": 239, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 128, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 113, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 133, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 15, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 138, - "unit": "lovelace" - }, - "stake_address": "" - } - ], - "inputs": [ - { - "address": "", - "id": "4f4270ee5d4a5a5c222c115113256e276433307f1b32677e3a32f0581d5f4a7f", - "index": 13446, - "amount": { - "quantity": 19, + "quantity": 167, "unit": "lovelace" }, "derivation_path": [ - "21615", - "4687", - "32092", - "16149", - "31618", - "1220", - "4909", - "10433", - "12816", - "8416", - "22153", - "18134", - "6816", - "8091", - "18155", - "6385", - "7163", - "23727", - "22151", - "11590", - "22808", - "8853" + "3158", + "17590", + "26993" ], "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 35, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "47615c481a1c872c1d631a3a58be595cf7531d0ca64daf77643aa6485d2b5048", + "index": 0 + }, + { + "id": "1e1163371233325f60701662496a3a2919053d681e73425d29554538257d1535", + "index": 0 + }, + { + "id": "4a1b0604e94e05317f7121624225026d0225c4076111790d4d4d45d976266348", + "index": 0 + }, { "address": "", - "id": "261b27624f7b125a5b3f2c17ee013723477f8174f23757283c642024456038e1", - "index": 31439, + "id": "0a7425f6367a0a4469042d38010878301413c5321c69615411867214743b067f", + "index": 5280, "amount": { - "quantity": 157, + "quantity": 103, "unit": "lovelace" }, "derivation_path": [ - "1277", - "29296" + "12275", + "14252", + "1109", + "9603", + "22375", + "12152", + "27729", + "4315", + "1655", + "9560", + "30998", + "4857", + "18963" ], "assets": [] }, { - "address": "", - "id": "5407742544c4462217cd0f192c6311010a5edf586edf24de7c036a5a057d8dc3", - "index": 22908, - "amount": { - "quantity": 174, - "unit": "lovelace" - }, - "derivation_path": [ - "1614", - "5237", - "784", - "6150", - "25279", - "4062", - "16089", - "19396", - "18475", - "21227", - "13185", - "14856", - "18266", - "23111", - "7991", - "32194", - "14162", - "27707", - "18914", - "14929", - "8464", - "24040", - "31707", - "11126", - "11969", - "8405", - "27721", - "2414", - "12679", - "2009" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "id": "2b1f032c701005d1016b22b73282656e3cbaf44c486b38d91d0a340fbd496634", + "index": 1 + }, + { + "id": "245b51613f1d513d0e11651e5a4e2a222e3e0a0d7f104c326653e2f1630d3b9c", + "index": 0 }, { "address": "", - "id": "29276b3b2e2c0b107b71424acd0d377018082a4919b0a961150c6d367f2b03e1", - "index": 2707, + "id": "1c3e2210455d79ef022341002d134f1f5652785e662f1907ea0cb37d0e556471", + "index": 13658, "amount": { - "quantity": 155, + "quantity": 70, "unit": "lovelace" }, "derivation_path": [ - "10508", - "17105", - "14230", - "2873", - "5086", - "31163", - "9906", - "2769", - "2858", - "30860", - "28659", - "11186", - "26289", - "10344", - "31472", - "19183", - "30930", - "19838", - "11135", - "10852", - "11151", - "27372", - "30823", - "14007", - "14591", - "11930", - "21196", - "14639", - "15972" + "28421", + "24043", + "9728", + "451", + "14172", + "27924", + "22790", + "28470", + "1170", + "16136", + "32525", + "9334", + "12611", + "3642", + "27613", + "28953", + "11559", + "20238", + "19586", + "4714", + "13441" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e42", - "quantity": 20, + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 45, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, + "quantity": 20, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 26, + "quantity": 8, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, + "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 46, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "7041e22a5ade300f334a44185801052915cc6454402a555e7766660a627f6c6f", + "id": "4a6f2b17534b547f79047a0544271a0f6d5b083e7b5e058f1e29057a4b51201a", + "index": 0 + }, + { + "id": "64657c0472152b458705242d7117617f633e40d7810d4792315a9915597e8747", + "index": 1 + }, + { + "id": "754d2d1b5617280216277f321269234e7da12a22266b480b2a06283f014d6c4b", + "index": 1 + }, + { + "id": "52294e087f37202a7a515252757624123c17350e34bc76b1270a5c1e567f1518", + "index": 0 + }, + { + "id": "367d2440de2e3b333c35013c0a4475805e1c7c7c533f72166d4d62754708537e", "index": 1 }, { "address": "", - "id": "42db202c712c0f3d565f3218411801355b4e40130553c859040c6f77742b165d", - "index": 15190, + "id": "0c2b365320191641177f8553195c2c7bb44a67df313f560a26543b082beb3510", + "index": 22595, "amount": { - "quantity": 159, + "quantity": 153, "unit": "lovelace" }, "derivation_path": [ - "8321", - "7277", - "9243", - "10081", - "21134", - "13132", - "12966", - "6970", - "25196" + "23460", + "13082" + ], + "assets": [] + }, + { + "id": "3e39f538724d1d447a7e8f970521494b681a0e62636f3b06306a3d205d727308", + "index": 1 + }, + { + "address": "", + "id": "28217b4da84e416565006b194f8d281077a3181528136e1812745afb0a6b162a", + "index": 25523, + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "derivation_path": [ + "13287", + "4508", + "28495", + "6632", + "16135", + "32680", + "1976", + "4296", + "159", + "23518", + "10530", + "11630", + "19415", + "22742", + "32172", + "10426", + "702", + "11446", + "24240", + "31018", + "21456", + "10364", + "7345", + "16859", + "5163", + "11476", + "21833", + "17806", + "5947" + ], + "assets": [] + }, + { + "address": "", + "id": "b74f04b96d14c929671b335801230a90181c6e237e476a2b4008326804082111", + "index": 7960, + "amount": { + "quantity": 90, + "unit": "lovelace" + }, + "derivation_path": [ + "10156", + "19451", + "26417", + "32381", + "26692", + "17222", + "14757", + "24525", + "12897", + "26189", + "26138", + "10465", + "27185", + "17768", + "329", + "4267", + "2809", + "9976", + "25389", + "18778", + "13761", + "12365", + "13041", + "4328", + "23402", + "27822", + "11693", + "632", + "186", + "1311" ], "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e44", - "quantity": 34, + "quantity": 22, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e41", - "quantity": 34, + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 24, + "asset_name": "546f6b656e42", + "quantity": 11, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 13, + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 26, + "asset_name": "546f6b656e41", + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 3, + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "5126b91d37d71b32e2177f5c5a3739224009632c1d462f237c095469603c9177", - "index": 20856, + "id": "5e361532b86a4e775d3f179bc057ce367a6e203018042efa0f2c29641a1f575f", + "index": 6915, "amount": { - "quantity": 195, + "quantity": 60, "unit": "lovelace" }, "derivation_path": [ - "9975", - "11119", - "14708", - "25996", - "16998", - "9772", - "32342", - "28991", - "12404", - "24253", - "30422", - "20186", - "24751" + "2428", + "20113", + "1123", + "29558", + "17003", + "17966", + "7061", + "22646", + "4007", + "22401", + "16522", + "25262", + "25461", + "32563", + "25473", + "11241", + "5603", + "22591", + "2342", + "11397", + "29232", + "10135", + "685", + "14486" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] }, { "address": "", - "id": "36fc1766c2056f2d45ff2d3e3f4b3551d6742bc555330c3b4185f658342a1803", - "index": 25454, + "id": "3546ee45a91234427105691102670515353f5a08894c68792a31503c761e2e80", + "index": 9063, "amount": { "quantity": 208, "unit": "lovelace" }, "derivation_path": [ - "18394", - "20287", - "13043", - "20097", - "16421", - "24612" + "30534", + "10991", + "1182", + "304", + "492", + "10013", + "1295", + "24128", + "6707", + "21275", + "3629", + "2926", + "21391", + "23735", + "6506" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 17, + "asset_name": "546f6b656e43", + "quantity": 4, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] - }, - { - "address": "", - "id": "62ac161b226804460a453a631b165a060072860a4248213a6505f11e452e69d0", - "index": 27966, - "amount": { - "quantity": 80, - "unit": "lovelace" - }, - "derivation_path": [ - "30586", - "22266", - "3283", - "11075", - "1511", - "1318", - "24350", - "18037", - "20853", - "27274", - "17500", - "664", - "23657" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "id": "687e027e1cef184443746963391b4e27c12006142a4df14c762d3f444a372533", - "index": 1 - }, - { - "id": "0c106c0a20590c5e9c3a5465446c7905016ba22537650e235c0f390941220c31", - "index": 0 - }, - { - "address": "", - "id": "375fdb0452f8297c0b15745f275b4a153510727d0f606e351c667359753a220c", - "index": 23150, - "amount": { - "quantity": 129, - "unit": "lovelace" + } + ], + "mint": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1hsp6u7lfqygskkda75k2numa99y4ul5jpyk4lawsdkkawx3xkj2", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "bc03ae7be901110b59bdf52ca9f37d29495e7e92092d5ff5d06dadd7", + "assets": [ + { + "fingerprint": "asset15pyc2g7turhctk23zthhzujc2g9l6dtxxsgf5u", + "amount": { + "quantity": 3306, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1gx4c7ppzrgjw2qdu2r2x3kny0pmj3f3p2885e9", + "amount": { + "quantity": 2445, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1nxcsk2upu8y9zdj5crtpty20caqrcf2vhnkwf8", + "amount": { + "quantity": 429, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset17pj9z904l7srlxtdjmeckq74qryqcexn5h5txr", + "amount": { + "quantity": 1912, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] }, - "derivation_path": [ - "6800", - "22060", - "30577", - "1686", - "8644", - "159", - "2753", - "11087", - "29186" - ], - "assets": [] - }, - { - "id": "773c0c44524c397a59775002012927430b60787f6a7e1723426969310954376c", - "index": 1 - }, - { - "address": "", - "id": "42e2742395801a3d3d182c305b1c482d71244d6f28190a251f020e6d31470f68", - "index": 3822, - "amount": { - "quantity": 91, - "unit": "lovelace" + { + "policy_script": "policy_vkh12taflauk5pww3hu9a8g4e24k4t2d6p3ml7mafu749zx5sx687hh", + "policy_id": "52fa9ff796a05ce8df85e9d15caab6aad4dd063bffb7d4f3d5288d48", + "assets": [ + { + "fingerprint": "asset1hvjrs0jz38whlwtpsud4ew60halju24nacuqyx", + "amount": { + "quantity": 2660, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] }, - "derivation_path": [ - "16709", - "18833", - "1897", - "24045", - "10117", - "9405", - "11889", - "11949", - "7723", - "25135", - "27230", - "4055", - "2600", - "3906", - "10315", - "29530", - "6189", - "1225", - "20063", - "12579", - "16065", - "20415", - "12475", - "4634", - "11832", - "25306" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + { + "policy_script": { + "all": [ + "policy_vkh1pxkvczwmzr40xku8dhsysdj7yxp0u4k8ayl3qalln7tf2kas58w", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "id": "c3743932556f372a668855535d0d71294c3b304a5b1355575a1a6a0265f07550", - "index": 0 - }, - { - "id": "7a902a44179a71277ab0507b3b6a797a023c3c28fae631455c7d5e090b577b37", - "index": 0 - }, - { - "address": "", - "id": "04ac73262244305a0dc1420439476f637c197013253e13403758202f206e496b", - "index": 15477, - "amount": { - "quantity": 230, - "unit": "lovelace" + "policy_id": "09accc09db10eaf35b876de048365e2182fe56c7e93f1077ff9f9695", + "assets": [ + { + "fingerprint": "asset1r0lw00lt9njqcfgm7mg9rhytn2gfynrqed4dkg", + "amount": { + "quantity": 8391, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, - "derivation_path": [ - "15625" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "id": "4b645de30073205110714f601c4244a1865c3a1fd300b9b0772d49415a28722f", - "index": 20786, - "amount": { - "quantity": 172, - "unit": "lovelace" + { + "policy_script": "policy_vkh12rfunxcgju8hd0y3pnj5ca52hy7zw9x050revwuuftzvxe2cj36", + "policy_id": "50d3c99b08970f76bc910ce54c768ab93c2714cfa3c7963b9c4ac4c3", + "assets": [ + { + "fingerprint": "asset1auuha5vrv54tv6xdr7exje966xru37kdu9675x", + "amount": { + "quantity": 7296, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1y947adxqw59f50cn4pd97r4kedpwhp8xnuj4qe", + "amount": { + "quantity": 8934, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset16aw9653dvguyrjsgfp9yztdrdcx6934qgrt4q8", + "amount": { + "quantity": 7416, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset12gjz48nd9tgzwctlgl67eg38qh3w6xm98jvgcn", + "amount": { + "quantity": 4021, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] }, - "derivation_path": [ - "19100", - "13507", - "500", - "26737", - "31080", - "16785", - "20661", - "29993", - "19183", - "5047", - "2950", - "21049", - "10511", - "12328", - "9500", - "25050", - "1654", - "29859", - "8414", - "15897", - "30677", - "17270", - "16683", - "19113", - "13475", - "13863", - "12641", - "17520", - "18176", - "3526" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "id": "172d0a0a797033056c0f061c52390a79016d0d055b7b93402e77912c676714e2", - "index": 25046, - "amount": { - "quantity": 113, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1rkvcnaesp9tm4wtsjjh5j6nw8dhgde2mj4qfe7y62ypq7955vrf", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "1d9989f7300957bab97094af496a6e3b6e86e55b95409cf89a51020f", + "assets": [ + { + "fingerprint": "asset10n7hxatp9va5ryujs73vm6chz8n48tekah6un5", + "amount": { + "quantity": 2750, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1emxpxmyn0xhkptl987h6uptwm6t828yulfuv76", + "amount": { + "quantity": 9166, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] }, - "derivation_path": [ - "31624", - "8701", - "1976", - "18936", - "19674", - "31510", - "27420", - "13600", - "26170" - ], - "assets": [] - }, - { - "address": "", - "id": "1ecc339f735a0b5e4d120e681a6e6dd7160b3b72781e512b4a124c4e0d62404f", - "index": 24316, - "amount": { - "quantity": 177, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1y60kvjv5xg40mf82glgrmrdue22ldqdj7lree7rah43hy2rh5fd", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "269f664994322afda4ea47d03d8dbcca95f681b2f7c79cf87dbd6372", + "assets": [ + { + "fingerprint": "asset1zd8660exy9szu2hsg6gsu46yaz5cghldk5yqlu", + "amount": { + "quantity": 4436, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset12dup45eka65fzwl8nvp7npa4xk8njq85u4re4y", + "amount": { + "quantity": 7156, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] }, - "derivation_path": [ - "30927", - "26410", - "7975", - "16904", - "11899", - "20741", - "7602", - "12018", - "14459", - "26934", - "13570", - "14549", - "18432", - "14126", - "32494", - "2734", - "27708", - "5713", - "6424", - "24506", - "3898", - "23708", - "11107", - "24432", - "31360" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + { + "policy_script": { + "all": [ + "policy_vkh132vgjmm0xgvxkxlv49faj4fxv5lt0vzcpgskssn9udx45ddtwpx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "policy_id": "8a98896f6f32186b1beca953d95526653eb7b0580a21684265e34d5a", + "assets": [ + { + "fingerprint": "asset1rcg87aqgttt7nppgrpnrn2rp5pv80vuhau242n", + "amount": { + "quantity": 6361, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1rrkenrg35unsyp28ts2cpufzty4p8qupe6xyew", + "amount": { + "quantity": 951, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1uj3rlzhedkxfj4l0h8c8wdsxxafhaeygxaa28j75cfza2ldtx69", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e4a23f8af96d8c9957efb9f077360637537ee488377aa3cbd4c245d5", + "assets": [ + { + "fingerprint": "asset1llunffcnnhcy2za2yhgrs8g5vfjgufaxhmmdcn", + "amount": { + "quantity": 9870, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1tpq9n6asq658vc30n6lqsl63r3ej9d8e8clxhm", + "amount": { + "quantity": 8271, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1z37r8upcujg8j8ww76pahdp66fapa3cm0r4qm4", + "amount": { + "quantity": 6012, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh14fv22wrsnzgufy4psckk77qh95attmze20d9v98jlmkk74vvwjw", + "policy_id": "aa58a538709891c492a1862d6f78172d3ab5ec5953da5614f2feed6f", + "assets": [ + { + "fingerprint": "asset1qt2clusamrv8sgtdsfkk4dxc66u8guzz5dpak6", + "amount": { + "quantity": 5113, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset10htaj8093dl2yq5ndxgkw0af2m7qe2twncsw0z", + "amount": { + "quantity": 5110, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": "policy_vkh1qd30ngkf2tfsh2qy4k0xrffxhh83v6gccpluyvgpnjfrvk7ss2t", + "policy_id": "0362f9a2c952d30ba804ad9e61a526bdcf166918c07fc231019c9236", + "assets": [ + { + "fingerprint": "asset13zg9mljjn3yrfq5eek03uvpdwhphjqywxel7a9", + "amount": { + "quantity": 962, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1h3x4j8jug5tw93tvhkv6hquryrgcrju08mh072j3n2muqmuxzvs", + { + "active_from": 100 + } + ] + }, + "policy_id": "bc4d591e5c4516e2c56cbd99ab838320d181cb8f3eeeff2a519ab7c0", + "assets": [ + { + "fingerprint": "asset1pmnaxt57hwwk6nmr78wg86uahrwqmhfc8jsgrf", + "amount": { + "quantity": 8813, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset19af2j4as0s9wf2mdmxm0zm5nlvtj6s8324h98z", + "amount": { + "quantity": 2099, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset18hy9wxnk08yd0fgcjk20659d2davpt4rugel7t", + "amount": { + "quantity": 2071, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": "policy_vkh10hxlyf0cttutfry9peh4nw9t0yc8gwj9t4gcfkrc2n0tucl4zp8", + "policy_id": "7dcdf225f85af8b48c850e6f59b8ab7930743a455d5184d87854debe", + "assets": [ + { + "fingerprint": "asset1lmeq6pgjv742208y37z8l82gp2d705x8m3czud", + "amount": { + "quantity": 722, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1l3jch3c8hg4pk79q09767xlvk20r4t6fcfvepe", + "amount": { + "quantity": 148, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset14wplz38njf5wg2hers03y6sm8vk95va2vyl2t2", + "amount": { + "quantity": 6112, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1wfkv8c9nhquf5v553k2ksx23jmdz8wv0pxyds2", + "amount": { + "quantity": 7154, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1r5sqhz4ehdvrsjm48t8zgxscs2avevuk5vqf5xunddexu6lj8fr", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "1d200b8ab9bb58384b753ace241a1882baccb396a3009a1b936b726e", + "assets": [ + { + "fingerprint": "asset16w6kksmfkzkaks4cm2g53gkcgxry7453ndjzsm", + "amount": { + "quantity": 8156, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset16l3f6z6wyssz0cfj70qk93esu72k3l0yh5sksx", + "amount": { + "quantity": 882, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1y4pwunxfd02zj0zje4cx5hzc35yj3cnjtf0d4u", + "amount": { + "quantity": 2553, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1k9dcmxag4uhcj63j4c5gndhla0zll960yk3fe890kcl8v9sff5a", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "b15b8d9ba8af2f896a32ae2889b6ffebc5ff974f25a29c9cafb63e76", + "assets": [ + { + "fingerprint": "asset13783jy0cjc3ym4q2yrmh5k252acrnyn76c5xz2", + "amount": { + "quantity": 3264, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1262407nv6jdrc6t43w9e4fe3ddg7tx52v2erq9", + "amount": { + "quantity": 8449, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset19hgf0wkp4cm48p2frgfxn56peajkr86j4pdxx0", + "amount": { + "quantity": 5835, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1n70ky8x2m0ma9yhkr2944vxl6k9ssdttjfrdjwtfd9kgqsgz86w", + { + "active_from": 100 + } + ] + }, + "policy_id": "9f9f621ccadbf7d292f61a8b5ab0dfd58b08356b9246d93969696c80", + "assets": [ + { + "fingerprint": "asset1fgvnz29chvtanax4rup24aqp4sdqg7evhdr942", + "amount": { + "quantity": 594, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset19dwu9fte6yjjl38qvxurjmufzjs27s84fvucgj", + "amount": { + "quantity": 6032, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": "policy_vkh1p3tsqe7msyafk0meuuejkfvd350fkppethk029xsq5ce2zfyzcc", + "policy_id": "0c570067db813a9b3f79e7332b258d8d1e9b04395decf514d0053195", + "assets": [ + { + "fingerprint": "asset1jx66g0gdy5gu9p3en5l4ts60arps2c6vt9fxfl", + "amount": { + "quantity": 2104, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh15ztq02wslldnvd7nn5fexnp34c77knuvn9mavvjkk7x4uuwzqy6", + { + "active_from": 100 + } + ] + }, + "policy_id": "a09607a9d0ffdb3637d39d13934c31ae3deb4f8c9977d63256b78d5e", + "assets": [ + { + "fingerprint": "asset1g0mpqk8k5j7qkh6aw5fz3e2kgczlv2rryekr9g", + "amount": { + "quantity": 5167, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c9wvnvt8lkk0wfcks5vdmn3g6a0karmgh4pcylcmsufvxfskphh", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "c15cc9b167fdacf727168518ddce28d75f6e8f68bd43827f1b8712c3", + "assets": [ + { + "fingerprint": "asset1kc2ckp4f5d0wec7hgmtclrfamrkjppld49utw5", + "amount": { + "quantity": 9254, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1qt4s86sp4ygshmffnejfcsu29cu8kev0rfzxuy", + "amount": { + "quantity": 1144, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1n8ta0syj2wqkzqf899mxv7p0jjkdh7fr9q9250v2uhp8urcux3x", + { + "active_from": 100 + } + ] + }, + "policy_id": "99d7d7c0925381610127297666782f94acdbf923280aaa3d8ae5c27e", + "assets": [ + { + "fingerprint": "asset1uws687tmwh7xy2jk49325ngg0yks6cjul0wqzr", + "amount": { + "quantity": 2617, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mluqwj6lmtx0esy62s7xhd6pdv0h8nt5dv9rycj03ndww653qcz", + { + "active_from": 100 + } + ] + }, + "policy_id": "dff8074b5fdaccfcc09a543c6bb7416b1f73cd746b0a32624f8cdae7", + "assets": [ + { + "fingerprint": "asset1usmmjham9mg5uxfx84hhdk78ez6v2wf0dd0hs8", + "amount": { + "quantity": 2483, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16fepey5s6eu3z4v6xjemhuk27fm3tfjj39rrk0k4srwhqnpjggh", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d2721c9290d67911559a34b3bbf2caf27715a65289463b3ed580dd70", + "assets": [ + { + "fingerprint": "asset1pu2xjqlv3j7536e7mkncxc5hvq57n09xwtv457", + "amount": { + "quantity": 4017, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1xfj0x7q3hzqy85efljqwc88tguygqv92xu450x", + "amount": { + "quantity": 4613, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset163a8nf3ph5sscq8lj02zyt2qsga5hy4yea0fd2", + "amount": { + "quantity": 6987, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1zcwqpgsf88d3zh2uu9sj3ujxwrtkd72kgtc8mmf3z2thcegv6dk", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "161c00a20939db115d5ce16128f24670d766f95642f07ded3112977c", + "assets": [ + { + "fingerprint": "asset12vmrzf682tj334xwmcgmmrlpcsusfpuxgmvwfz", + "amount": { + "quantity": 3643, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + } + ], + "wallet_policy_key_index": "0H" + } + }, + { + "withdrawals": [ + { + "context": "ours", + "amount": { + "quantity": 161, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "284104ec4857d33df622464440454d4a752d2c89047107b600af3f1e4d0ada4f", - "index": 1 + "context": "ours", + "amount": { + "quantity": 86, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "dd2b251e3eb0399c1b22150b306b504a2017931c6153642939cf10494015f152", - "index": 28417, + "context": "ours", "amount": { - "quantity": 73, + "quantity": 216, "unit": "lovelace" }, - "derivation_path": [ - "25470", - "1028", - "8984", - "169", - "15510", - "31725", - "18924", - "13299", - "6071", - "3729", - "16959", - "23140", - "23032", - "4658", - "13821", - "30944", - "26423", - "11817", - "29157", - "12136", - "10138", - "24716", - "10163" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "stake_address": "" }, { - "id": "534f4f387f0335154ff53b47350c5754301b7d5056226da8b3704d9053074b5d", - "index": 0 + "amount": { + "quantity": 6, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "751b42182d4cff312e56411336457f590be22b84090c2b0d253a27223347734d", - "index": 28991, + "context": "ours", "amount": { - "quantity": 187, + "quantity": 221, "unit": "lovelace" }, - "derivation_path": [ - "5931", - "27155", - "15462", - "9818", - "26297", - "7933", - "28895", - "31045", - "11695", - "31635", - "1336", - "20205", - "14658", - "20444", - "14638", - "22469", - "29156" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "stake_address": "" }, { - "address": "", - "id": "7d5d2b69487da4771e55030c7b2c4d3c037d1112742b73498b11d230281f5434", - "index": 16758, "amount": { - "quantity": 249, + "quantity": 178, "unit": "lovelace" }, - "derivation_path": [ - "15632", - "3474", - "13724", - "17516", - "21437", - "27142", - "26506", - "12196", - "12523", - "15795", - "6064", - "13233", - "31257", - "9640", - "1393", - "23230", - "7277", - "22901", - "17988" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" + }, + { + "amount": { + "quantity": 143, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 58, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 15, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 39, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 76, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 120, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 107, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 148, + "unit": "lovelace" + }, + "stake_address": "" }, + { + "context": "ours", + "amount": { + "quantity": 199, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ { "address": "", - "id": "676933586b6a5162453776e82f51525c72749d3b233b5c50372d1102564f0010", - "index": 30641, + "id": "3b4a53163c6563552d591106d72b4c617e7f0c48089121427f2744781513aa2d", + "index": 30360, "amount": { - "quantity": 208, + "quantity": 110, "unit": "lovelace" }, "derivation_path": [ - "32355", - "28616", - "19484", - "24382", - "31954", - "19975", - "31858", - "8551", - "28190", - "17234", - "25420", - "29933", - "23381", - "18778", - "8095" + "29131", + "12056", + "31492", + "4960" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 7, + "asset_name": "546f6b656e45", + "quantity": 40, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", "quantity": 18, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "id": "5115273b7c1a1bcc682110ad226653944768102a2352378663782b792f5a3221", + "index": 7186, + "amount": { + "quantity": 56, + "unit": "lovelace" + }, + "derivation_path": [ + "12911" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", "quantity": 27, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 23, + "asset_name": "546f6b656e41", + "quantity": 37, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 1, + "asset_name": "546f6b656e42", + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 26, + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 11, + "quantity": 10, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] } ], - "assets_minted": { - "token_map": [ - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "policy_scripts": [ - { - "policy_script": "addr_shared_vkh1alngwfey0wd7y7uejzw4gpsmvhutzxnegrwm7n60778xu64me6x", - "policy_id": "1dc9794753f48e179f65e7abe2b1a63c2b4e06a635be7f8582005d0c" - } - ], - "wallet_policy_key_hash": "policy_vkh1tu532kvz85axwzxmzvqxztt9yvnsvhd589rd7jqwwaq3qk04juv" - }, "outputs": [ { "address": "", "amount": { - "quantity": 221, + "quantity": 223, "unit": "lovelace" }, "assets": [] @@ -9715,61 +12053,57 @@ { "address": "", "amount": { - "quantity": 114, + "quantity": 236, "unit": "lovelace" }, "derivation_path": [ - "26210", - "29476", - "28607", - "21361", - "5884", - "10891", - "7247", - "2220", - "13138", - "13283", - "29945", - "32057", - "30815", - "3757", - "5767", - "8862", - "31955", - "6475", - "23264", - "2259", - "32280", - "7174", - "1693", - "21972", - "9277", - "11947", - "4884" + "10051", + "4241", + "30203", + "5259", + "18623", + "5305", + "14561", + "8245", + "8625", + "16428", + "11424", + "8362", + "27344", + "15861", + "4998", + "20781", + "22091", + "24372", + "30483", + "21697" ], "assets": [] }, { "address": "", "amount": { - "quantity": 132, + "quantity": 173, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 182, "unit": "lovelace" }, - "derivation_path": [ - "18568", - "31149", - "26172", - "4959", - "17632", - "22769", - "17685", - "6605", - "9899" - ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 26, + "quantity": 28, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -9777,72 +12111,97 @@ { "address": "", "amount": { - "quantity": 152, + "quantity": 214, "unit": "lovelace" }, - "derivation_path": [ - "18398", - "1051", - "18141", - "7463", - "16247", - "12238", - "17778", - "31960", - "3090", - "16567", - "3752", - "14450", - "25922", - "13942", - "31151", - "3472", - "13866" - ], "assets": [] }, { "address": "", "amount": { - "quantity": 105, + "quantity": 206, "unit": "lovelace" }, "derivation_path": [ - "5973", - "11294", - "18600", - "7734", - "30693", - "10590", - "7150", - "6725", - "11914", - "22005" + "22359", + "32448", + "17403", + "10692", + "21231", + "29676", + "18916", + "14442", + "15360", + "4620", + "7789", + "20984", + "10658", + "29259", + "25678", + "1035", + "18086", + "10047", + "22583", + "11728", + "15470", + "25319", + "10781", + "1235", + "10613", + "15734", + "7768", + "30925", + "18343" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 15, + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 39, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 37, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 30, + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 47, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -9850,122 +12209,128 @@ { "address": "", "amount": { - "quantity": 181, + "quantity": 61, "unit": "lovelace" }, "derivation_path": [ - "9644", - "6237", - "8069", - "16159" + "23871", + "28373" ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 9, + "unit": "lovelace" + }, "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e45", - "quantity": 13, + "quantity": 43, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, + "asset_name": "546f6b656e43", + "quantity": 19, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 14, + "asset_name": "546f6b656e44", + "quantity": 29, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 39, + "asset_name": "546f6b656e43", + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, { "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", "amount": { - "quantity": 110, + "quantity": 61, "unit": "lovelace" }, + "derivation_path": [ + "11912", + "12788", + "14230", + "15750", + "28710", + "10362", + "28575", + "11278", + "25717", + "12049", + "2798", + "15743", + "15623", + "5328", + "2707", + "7404", + "13566", + "14670" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 19, + "asset_name": "546f6b656e43", + "quantity": 9, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 4, + "asset_name": "546f6b656e44", + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 43, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 56, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e43", + "quantity": 58, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", "quantity": 15, "policy_id": "44444444444444444444444444444444444444444444444444444444" } @@ -9974,21 +12339,7 @@ { "address": "", "amount": { - "quantity": 196, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 135, + "quantity": 140, "unit": "lovelace" }, "assets": [] @@ -9996,188 +12347,264 @@ { "address": "", "amount": { - "quantity": 65, + "quantity": 248, "unit": "lovelace" }, "derivation_path": [ - "14791", - "24302", - "8093", - "5354", - "12623", - "21469", - "23563", - "8255", - "27071", - "19719", - "4103" + "14575", + "20885", + "3298", + "3060", + "3699", + "425", + "629", + "17870", + "14221", + "17322", + "10508", + "6301", + "12669", + "18403", + "14278", + "3366" ], "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 174, + "quantity": 246, "unit": "lovelace" }, "derivation_path": [ - "24650", - "31425", - "23766", - "3648", - "6833", - "21686", - "20844", - "11028", - "8228", - "20014", - "16364", - "30929", - "28707", - "6308", - "19498", - "8359", - "13307", - "29297", - "14594", - "4220", - "2812", - "22804", - "16039", - "22387", - "20539", - "26809" + "21364", + "6742", + "15942", + "4292", + "26611", + "15930", + "15042", + "27022", + "31241", + "31282", + "8695", + "10525", + "21833", + "27968", + "6455", + "28534", + "31416", + "29064", + "4912", + "25386", + "29623", + "28975", + "615", + "32062", + "20530", + "27981", + "496", + "5461", + "28205", + "3342" ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 214, + "quantity": 174, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e45", - "quantity": 12, + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", "amount": { - "quantity": 36, + "quantity": 75, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "address": "", "amount": { - "quantity": 109, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 79, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 135, + "quantity": 204, "unit": "lovelace" }, "derivation_path": [ - "22930", - "10965", - "7868", - "28224", - "11828", - "28937", - "19618", - "2345", - "22636", - "15658", - "1221", - "24589", - "15726", - "10536", - "5909", - "5581", - "4510", - "27975", - "14388", - "21321", - "22433", - "16925", - "27137", - "5218", - "17545", - "22548", - "26427", - "1312", - "9244", - "16222" + "30902", + "13207", + "9952", + "19731", + "25346", + "6411", + "14419", + "6905", + "12163", + "25766", + "9502", + "20397", + "9275", + "29317", + "24564", + "13031", + "27181", + "11358", + "31715", + "26647", + "18975", + "32094", + "12225", + "17149" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 53, + "asset_name": "546f6b656e42", + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 28, + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 28, + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -10185,13 +12612,41 @@ { "address": "", "amount": { - "quantity": 27, + "quantity": 245, + "unit": "lovelace" + }, + "derivation_path": [ + "8720", + "8000", + "17601", + "25927", + "31199", + "2428", + "20111", + "4742", + "29906", + "16863", + "28316", + "4139", + "13018", + "4382", + "2623", + "25568", + "32744", + "25018" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 58, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 8, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] @@ -10199,655 +12654,968 @@ { "address": "", "amount": { - "quantity": 92, + "quantity": 128, "unit": "lovelace" }, - "derivation_path": [ - "26090", - "18925" - ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "address": "", "amount": { - "quantity": 77, + "quantity": 158, "unit": "lovelace" }, "derivation_path": [ - "27488", - "22564", - "23254", - "6458", - "12730", - "32179", - "14123", - "615", - "16983", - "7053", - "16641", - "10600", - "1830", - "30069", - "3881", - "14238", - "1221", - "14292" + "32193", + "30265", + "2065", + "18406", + "12803", + "6657", + "21233", + "545", + "28656", + "31388", + "10818", + "28308", + "22850", + "17844", + "29133", + "31852", + "17658", + "1893", + "4344", + "26531", + "27364", + "12738" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 48, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, + "asset_name": "546f6b656e43", + "quantity": 9, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 34, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 20, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 29, + "quantity": 22, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 9, + "quantity": 6, "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] } ], - "id": "5828637db32f4d5f31416fc51e731d061d757e79397521b574066f19a96c5a36", + "script_validity": "invalid", + "id": "bf7c6c76699a3b0716de0c5b11662c0879406d577a722889774d49b58a66048f", "deposits_taken": [ { - "quantity": 58, - "unit": "lovelace" - }, - { - "quantity": 98, - "unit": "lovelace" - }, - { - "quantity": 168, - "unit": "lovelace" - }, - { - "quantity": 229, - "unit": "lovelace" - }, - { - "quantity": 99, - "unit": "lovelace" - }, - { - "quantity": 50, - "unit": "lovelace" - }, - { - "quantity": 132, - "unit": "lovelace" - }, - { - "quantity": 103, - "unit": "lovelace" - }, - { - "quantity": 88, - "unit": "lovelace" - }, - { - "quantity": 217, - "unit": "lovelace" - }, - { - "quantity": 144, - "unit": "lovelace" - }, - { - "quantity": 50, - "unit": "lovelace" - }, - { - "quantity": 98, - "unit": "lovelace" - }, - { - "quantity": 226, - "unit": "lovelace" - }, - { - "quantity": 207, - "unit": "lovelace" - }, - { - "quantity": 172, - "unit": "lovelace" - }, - { - "quantity": 225, - "unit": "lovelace" - }, - { - "quantity": 85, - "unit": "lovelace" - }, - { - "quantity": 66, - "unit": "lovelace" - }, - { - "quantity": 72, - "unit": "lovelace" - }, - { - "quantity": 217, - "unit": "lovelace" - }, - { - "quantity": 63, + "quantity": 219, "unit": "lovelace" }, { - "quantity": 122, + "quantity": 111, "unit": "lovelace" }, { - "quantity": 169, + "quantity": 13, "unit": "lovelace" }, { - "quantity": 116, + "quantity": 94, "unit": "lovelace" }, { - "quantity": 172, + "quantity": 229, "unit": "lovelace" }, { - "quantity": 116, + "quantity": 159, "unit": "lovelace" }, { - "quantity": 187, + "quantity": 45, "unit": "lovelace" }, { - "quantity": 35, - "unit": "lovelace" - }, - { - "quantity": 79, + "quantity": 38, "unit": "lovelace" } ], + "burn": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1qgz678pj400cdngelv0z4h4puatl9vzwtduv5lkanjcgs942ma7", + { + "active_from": 100 + } + ] + }, + "policy_id": "0205af1c32abdf86cd19fb1e2adea1e757f2b04e5b78ca7edd9cb088", + "assets": [ + { + "fingerprint": "asset1wkrnr273sg58l7u5ucjjp0dw4e8p3vdccu6xp8", + "amount": { + "quantity": 3113, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": "policy_vkh1zhxaea2lz73l0jttr8ns929nc85vd8qr4f00as7q0myd2704gu4", + "policy_id": "15cddcf55f17a3f7c96b19e702a8b3c1e8c69c03aa5efec3c07ec8d5", + "assets": [ + { + "fingerprint": "asset1ywz8l8jyvyn6x80pm99nxrhr5fjr3fjzw4gtk7", + "amount": { + "quantity": 9699, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1rqnu37xpr7e3m5k4jlw4rx9hdqvkugdmrp4xc2kpfl8kun0924f", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "1827c8f8c11fb31dd2d597dd5198b768196e21bb186a6c2ac14fcf6e", + "assets": [ + { + "fingerprint": "asset1836775yjgflma4efc4r7rvrn9xgshpcjphg3yz", + "amount": { + "quantity": 1850, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1atl8f5stmdxuhxctdfr5cj6qvexr0us4036rjd", + "amount": { + "quantity": 8701, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1xdu2lk2sqwvrvvg3qextmm8jsf52qudhzppwac", + "amount": { + "quantity": 2107, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1ueuuhh055fw0ewm5as7hcqm5edclcnv2mg4nxj", + "amount": { + "quantity": 9048, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": "policy_vkh1kxfhaqx506d3pj23yjpn70u8y9vghkk3gvax78z8qpjejh95ydw", + "policy_id": "b1937e80d47e9b10c95124833f3f8721588bdad1433a6f1c47006599", + "assets": [ + { + "fingerprint": "asset17rtkdwp4q7pk8dp5fuheacemhcya2la5wgrjmf", + "amount": { + "quantity": 5334, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1c23l05rwpa0y7yenprssuuseyzptngfzu0nsh9", + "amount": { + "quantity": 9670, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1r9ugyeuheqph4dj92q282nar8t5pxw5xpja5p5cm6xx3wgmakfq", + "policy_id": "1978826797c8037ab6455014754fa33ae8133a860cbb40d31bd18d17", + "assets": [ + { + "fingerprint": "asset1hqm7tg0072tk6t25e0zhfwhfuv4qak7vaphmtq", + "amount": { + "quantity": 1215, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1geyj5lslz8g6flkmq47jzd6k52psr9vsumvkl0", + "amount": { + "quantity": 245, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1ktca4spesjwhgny4k7a29d8ur8r8ff4x3fmj5z", + "amount": { + "quantity": 8930, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1l5cp8vcfewzn57sp4ntu0en3kzdusn8md4nv2vajje6a77n80hn", + { + "active_from": 100 + } + ] + }, + "policy_id": "fd3013b309cb853a7a01acd7c7e671b09bc84cfb6d66c533b29675df", + "assets": [ + { + "fingerprint": "asset1qj3g2lauuez6580s7a6nx3mvdfqcum3xfuh7ry", + "amount": { + "quantity": 2888, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1pu3va8wckwp7lgka784n7hntvx8wvdhnkendxn783lzpqjvwc8j", + "policy_id": "0f22ce9dd8b383efa2ddf1eb3f5e6b618ee636f3b666d34fc78fc410", + "assets": [ + { + "fingerprint": "asset1qq9q4lcm76v03pdmks56ft9ukh5nm8a93m6vhf", + "amount": { + "quantity": 9150, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1xuvdlmgczms432ywr8s8z2mm5u74huekydxj5l", + "amount": { + "quantity": 9690, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1jf8venqrfsryd498hd3s2hl3gd7mx2hsjlfczg", + "amount": { + "quantity": 3358, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1jmfj64qwvr5ck8ykzr4pc2r807anv3nu5exq95", + "amount": { + "quantity": 2492, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh17czp03skvprvwdpkeaycfyzvmhf3u7vck0zvpy5syda0v22jtp0", + { + "active_from": 100 + } + ] + }, + "policy_id": "f60417c6166046c73436cf4984904cddd31e7998b3c4c09290237af6", + "assets": [ + { + "fingerprint": "asset1cgp8zsdxtnxgzhj7ulkda7d7ms430dnhexajr7", + "amount": { + "quantity": 6741, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1hy6wwytgqdlq04vz7ephwx2p4fel788s7vnnm0", + "amount": { + "quantity": 2401, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1g5wqjkw3kzc2kvxxxngj75kn0wkec39fcd9y45", + "amount": { + "quantity": 8978, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1kjekk7y605tf633kl9hzwlxg8ryxvffqlg6n8zzj7y4zgvcrd46", + { + "active_from": 100 + } + ] + }, + "policy_id": "b4b36b789a7d169d4636f96e277cc838c8662520fa35338852f12a24", + "assets": [ + { + "fingerprint": "asset1j334h5f4d5897zje33gxk9emlj97h285a75dgj", + "amount": { + "quantity": 1449, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1dvm9hxrn4fd3hmjgm3zgcl038k8y2jparagukh", + "amount": { + "quantity": 6888, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1hed9fqvnelrjkhl07lrzeh2ee2ueq5fezvkgfc", + "amount": { + "quantity": 4435, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset14d7pkvqepsa06gqgeqqxtfrdc058jxtn2r2yck", + "amount": { + "quantity": 9200, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh140ggwxtyawqfhcrch9ymjxwltxyfmjvt5lngc0wlvmpz7c6700j", + { + "active_from": 100 + } + ] + }, + "policy_id": "abd0871964eb809be078b949b919df59889dc98ba7e68c3ddf66c22f", + "assets": [ + { + "fingerprint": "asset17u4ut7jvk4rhyvasxtlz6dlqmgfhg7s26rruft", + "amount": { + "quantity": 1300, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset16zcu4n5mg9km4c845pj4htpdzy5nqawgu8t6y0", + "amount": { + "quantity": 4129, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1mj57wrm685nvtc620xs0qmhvt5znv44hj3dh60", + "amount": { + "quantity": 9514, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh137pt62h0yvspds3x6g6xjd6sjnegj8aw62l8wemag4m9skl02fv", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "8f82bd2aef232016c226d23469375094f2891faed2be77677d457658", + "assets": [ + { + "fingerprint": "asset13cdanj8kkzjs5lqdf8nmt88pkvg980kela5q38", + "amount": { + "quantity": 640, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1l93yd896dpf49x63sham55lkducskgngkgl2j7", + "amount": { + "quantity": 6913, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset14jhzll4y9rz04x2yu5hu2c6ykma3d0fglhr2qj", + "amount": { + "quantity": 2530, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1zv7pe3g3g2h2dpunc0y3zcskrhy3lvqaq379plcu6f7hxtpqr0l", + { + "active_from": 100 + } + ] + }, + "policy_id": "133c1cc51142aea68793c3c91162161dc91fb01d047c50ff1cd27d73", + "assets": [ + { + "fingerprint": "asset1fc554c0c7xzzuzddsyc9vur5wc92uzmjcvsmxs", + "amount": { + "quantity": 5366, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qel9550d7x2x2cr9j8fjlu6gmr3m2440cme92zsg4gme72rqrmy", + { + "active_from": 100 + } + ] + }, + "policy_id": "067e5a51edf19465606591d32ff348d8e3b556afc6f2550a08aa379f", + "assets": [ + { + "fingerprint": "asset1ytunpk8e2jjw0vnsc50vrev4xlm85lzzfq46nr", + "amount": { + "quantity": 9263, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1rrkuz9quhmp3az4e5xdy6wq49hah55gvkueumm", + "amount": { + "quantity": 1987, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1qcp50cgwees67akpt3uaukjc5p4jge4k7f5t7f", + "amount": { + "quantity": 5128, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": "policy_vkh1w8ljashpyxpflhrfjx6unqnsggvu3aadxq0nx6cjlne32ze6raa", + "policy_id": "71ff2ec2e121829fdc6991b5c982704219c8f7ad301f336b12fcf315", + "assets": [ + { + "fingerprint": "asset1yrj4gpxth7ule3e8wkk076tyen4e5q9r4zx29c", + "amount": { + "quantity": 597, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset15hsy74jtjsj7efatc009pqg6ljdsz6s4u63scw", + "amount": { + "quantity": 9909, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": "policy_vkh13mpw9cxz2uxy29rhv2aeqtqqf3rtssh0v673yf8s68fv7sfu72e", + "policy_id": "8ec2e2e0c2570c45147762bb902c004c46b842ef66bd1224f0d1d2cf", + "assets": [ + { + "fingerprint": "asset1mu90jtyxes3qgus84nqz5wq8vdq4cxwj5l9vrw", + "amount": { + "quantity": 7047, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1cv07uc8gfnh47q8s5h5euhmz5tj54yk44my07q", + "amount": { + "quantity": 1804, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh126dyhc45dlt94yelzxl2uaeqsjnrqyeehlkjw7p8ldw9gm87y89", + { + "active_from": 100 + } + ] + }, + "policy_id": "569a4be2b46fd65a933f11beae772084a6301339bfed277827fb5c54", + "assets": [ + { + "fingerprint": "asset1pzdel6ft2thd3qq8sfuwwtpe0c2el7n4xlm4pm", + "amount": { + "quantity": 6183, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1l6y4w5z9xzx2l47kyqhc5fvpx2pxw0tv7sp9lz", + "amount": { + "quantity": 1724, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1678xcrzzvyf4yanlnat5lr9g7d7lcccan65hv2atmy7vgyr7c0q", + { + "active_from": 100 + } + ] + }, + "policy_id": "d78e6c0c42611352767f9f574f8ca8f37dfc631d9ea9762babd93cc4", + "assets": [ + { + "fingerprint": "asset1lpjh0z2ng9x7cdsjn0qhknqe5ae9qsnq6uj8w0", + "amount": { + "quantity": 560, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1vcjerumxq53kkx0hlawpaah2pjayul3rpdy9uc", + "amount": { + "quantity": 5448, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1cdg2kxu4jh57sclwmy7mdn2e9ywm68e7swhpnq", + "amount": { + "quantity": 3266, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10uadc37fy8pj2flm3rkgnrah7r00aed8ansz5y7tk9wjxdrey96", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7f3adc47c921c32527fb88ec898fb7f0defee5a7ece02a13cbb15d23", + "assets": [ + { + "fingerprint": "asset1zw5q2esw0vlyd7rpj5cuvk0cmrpfq4358stnkc", + "amount": { + "quantity": 3443, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1rxhnadcn8ytc8yt8r4vczp46dl9ffnqpm8ps5t", + "amount": { + "quantity": 1463, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1kte4q4dagau39akfcgh2g3yn4uv9qd5fmrzeek", + "amount": { + "quantity": 5432, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + } + ], + "wallet_policy_key_index": "0H" + }, "fee": { - "quantity": 69, + "quantity": 68, "unit": "lovelace" }, - "certificates": [ + "certificates": [], + "deposits_returned": [ { - "certificate_type": "genesis" + "quantity": 72, + "unit": "lovelace" }, { - "certificate_type": "mir" + "quantity": 163, + "unit": "lovelace" }, { - "certificate_type": "mir" + "quantity": 71, + "unit": "lovelace" }, { - "certificate_type": "deregister_pool", - "pool_id": "pool16hge0pdyck8q2awpdhkgt7zd3ma4s3k8r5nkvvsk5x3ky4m0z64", - "retirement_epoch": 30506 + "quantity": 160, + "unit": "lovelace" }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1jxnz9ptf9lyzsnnhr0236fqx5mktf3c537d77hsdee0t4satau7snqdufl", - "ed25519_pk1qlp4f0zsc54tw4tpar02yedknk825jmgj3va8zvqx52szwyznwzq06p6hg", - "ed25519_pk1y9tydtwkceyqfcahas04jkrlqep8p2mm6mf87t9wrdpr2ywsgeesx6ts96", - "ed25519_pk1jssax9lj9n96dhf0qvjvsh0usf77qtaakfqv9jwja5pcuz5pva7sjw64u5", - "ed25519_pk12tq2tedp8vldapy0w2dutdwej0gqavdnsrkq25k3s9p4ggazvyksh65gtk", - "ed25519_pk16shul2fz0f64s56wns73cflzu7nktlw95umkxthcuyjukrdsytes3nzjw2", - "ed25519_pk18ru9ezxl72vhhw4e66u7c56y2wakj739yrj9utzvttg3au48l8ss79sjjw" - ], - "pool_pledge": { - "quantity": 8, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 30, - "unit": "lovelace" - }, - "pool_id": "pool19zqg6695tcfeqhx38vwlqfxdp8r8nkzhejhc09xgsx0q2ddkgg6", - "pool_margin": { - "quantity": 37.52, - "unit": "percent" - } + "quantity": 22, + "unit": "lovelace" }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk13y4m5yd3l2j9e5xsy6ac93et2gf5mutfym0uwfv8raj6pgeyx0xqy4gk8e", - "ed25519_pk13mdfz0nvq856nyzm5sr4gey6relgvt3f08uv4ulp3fdtv6d8xvaq4vzwgw", - "ed25519_pk1kzs5stmwq8s90kue3tvm76nrtvkhss785uwnxhm940e3x47zxxlse9ckwz", - "ed25519_pk1eeu5mh69ym092w2tkpwx0m85dxjn3hc6q2kkk63lpf73y7ll3vrsa3754z", - "ed25519_pk1hzxtg4x5acjdznkejungjf49v8q5d378vae5z5mfhghgv23vzdvsh5d5pv", - "ed25519_pk1cuvjz7plkrqpdfch0r5y8c8gzvmm4aktxklrk6c3f7xe4urfjexqkw58jh", - "ed25519_pk1u0r0gc4t8mmv8acgy2fu0nyst6tw4wn6q9fmx4dyqtxventkqa4q2l5qk2", - "ed25519_pk1rgh2g24kfhp2kyvsu8l2cgcr07uyxqme2pzzgg8c8fs9ya6pc24s4yq0n6", - "ed25519_pk1fsv4haqkgsckhq6lady3l05h0zanzy7j2n029sfmju2vn7anqe0qykhhv2", - "ed25519_pk1xrrlgdhe9yu4xrtqrp4wxsyzm8uwpe3jhv9ke7r28gxc3jll347qq425ct", - "ed25519_pk1qwh8sqr4mzqj9eg5fhtsdq6kwj8fcggys4akh4tss2ngm3yxwvsqh20qwf", - "ed25519_pk1weu98d4wn3wjaks9w8f76jkjq24ydm9ryfwxv9nxvz3trzs79hus70tmx7", - "ed25519_pk1tstsjqu6rt7sfs8uupt9dk8a59pc4l2nr77fp99yq6py5ce3uf2sjsf0jm", - "ed25519_pk1g047992p3dnekszlagu3l8ah60k3lv0ls8jr6hrzfk68ne0dm0jss7ad8m", - "ed25519_pk1ss7e0tj82y2ujdsle8n8s94xs7sg423ql63el6tzcnya4pgzmthqar4y3z", - "ed25519_pk1xpujl32erxz0j7gu06t5qtundv0z9hut0c48zvxuf5qgzpgas6yqstsywh", - "ed25519_pk148jul7c9a63z7awzkcsq5ug6n6ynsavwnt9k5hetymakrlee75zs8lfug4", - "ed25519_pk1a2fyxgeph74z07dd0tdwya5g2za5ugydxfr2lddd4zp2glcu277s0z33jf", - "ed25519_pk1kqnnvw9wk0f45tmw32h7fs0znyy4z852mqgqzdc80nsk4lx08e2sm5pwcc", - "ed25519_pk109uwvshta3jrgs0wkfxp395rl97akskwjj67k2r544hktjqaeyysdal4cc", - "ed25519_pk1s3rtdzkrd6x8sjmksg0zaeyudh93nc6zjnfkvxyx4k5wtqs4dm2s8g64fx", - "ed25519_pk17j5yhhn96pacml6yjkq92xu2jwcyje5q4mv0tt6fzfp95j9q3kmsq47ael", - "ed25519_pk1043c84dwju5ly2u00rvfe3y9lhp56snwk7qn8xzteakqj3xgwpgqz8hnt7", - "ed25519_pk135uhxxx6sg4v9p3wrk6ch5m8c569gvvlg04fc89qappyqrscprqsjv9jgr", - "ed25519_pk12teshdmwj46yl2gf6trtv438mksd07lqg0e43d7mrzkya63upz5qagctkf", - "ed25519_pk14j7mlas30ajjqlpyn98a43jcychkzdtf9ggqegelx9vn6ppvkrhqv0kd5x", - "ed25519_pk15mu2rktcg6nytrkfnchcu4rz2nqaf0te3g3wrtzngthz4jx30ytqpj0r5k" - ], - "pool_pledge": { - "quantity": 35, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 43, - "unit": "lovelace" - }, - "pool_id": "pool1hxne2v7q9hymp534wncjzwfgnxqtdn89snhja4kmerkmgzst50s", - "pool_margin": { - "quantity": 34.11, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1evgjq72yjz9epfz8m784muhnd27d5tyqnahel9zuxsyqkt3g448", - "retirement_epoch": 8707 - } - ], - "deposits_returned": [ - { - "quantity": 54, - "unit": "lovelace" - }, - { - "quantity": 46, - "unit": "lovelace" - }, - { - "quantity": 46, - "unit": "lovelace" - }, - { - "quantity": 24, - "unit": "lovelace" - }, - { - "quantity": 55, - "unit": "lovelace" - }, - { - "quantity": 6, - "unit": "lovelace" - }, - { - "quantity": 205, - "unit": "lovelace" - }, - { - "quantity": 246, - "unit": "lovelace" - }, - { - "quantity": 49, - "unit": "lovelace" - }, - { - "quantity": 178, - "unit": "lovelace" - }, - { - "quantity": 115, - "unit": "lovelace" - }, - { - "quantity": 202, - "unit": "lovelace" - }, - { - "quantity": 79, + "quantity": 185, "unit": "lovelace" }, { - "quantity": 115, + "quantity": 116, "unit": "lovelace" }, { - "quantity": 48, + "quantity": 97, "unit": "lovelace" }, { - "quantity": 205, + "quantity": 243, "unit": "lovelace" }, { - "quantity": 150, + "quantity": 71, "unit": "lovelace" }, { - "quantity": 119, + "quantity": 244, "unit": "lovelace" } ], - "metadata": { - "14": { - "int": 0 - } - }, + "metadata": null, "collateral": [ - { - "id": "2618164d2d6c41680bc91d6e73062a299e2c531727eb5a0d0048722b220b2c10", - "index": 0 - }, - { - "id": "257a4d3a2c0b055f2b2fd1621536136d75486e2017781a606b514e46ee5c4c1f", - "index": 0 - }, - { - "id": "7d0d085522416525633a424227c34696504c254001505e551a58083f08545e4b", - "index": 0 - }, { "address": "", - "id": "55949e28082b1d3d31670243491f161946547b321c0662158d6179645723d861", - "index": 5642, + "id": "5f6c5a6b4bf5c6101a470769bf7ad43753c87e2704ef34e24d3c445b524d5f5a", + "index": 18768, "amount": { - "quantity": 68, + "quantity": 149, "unit": "lovelace" }, "derivation_path": [ - "17473", - "31349", - "19110", - "15542", - "32270", - "28283", - "11882", - "17910", - "3325", - "4094", - "16855", - "16130", - "19409", - "27498", - "8074", - "16133", - "28657", - "26372", - "914", - "29711", - "15088", - "21927", - "7610", - "3239", - "11002", - "18482", - "16854", - "18445", - "7411", - "5963", - "32764" + "5225", + "28273", + "23260", + "13851", + "24007", + "8784", + "25227", + "20451", + "25085", + "14975", + "9955", + "862", + "14768", + "7424", + "12863", + "10152", + "12718", + "31309", + "5923", + "1244", + "12023", + "21300", + "4079", + "14654", + "9947", + "2563", + "22550", + "4068", + "27720" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, - { - "id": "f05456653f03651d6838e26c5c4c735bf004025f21436c011a465372c7306b16", - "index": 1 - }, { "address": "", - "id": "086583578e4dc8456a31e278156b36524196a00e745c42594615442c54162d13", - "index": 29121, + "id": "20185c532f8746a26d7745de475e45431a764d29ba2edead6a665f2da8ed462b", + "index": 9151, "amount": { - "quantity": 39, + "quantity": 191, "unit": "lovelace" }, "derivation_path": [ - "16340", - "3478", - "13988", - "1411", - "1573", - "19742", - "7279", - "8904", - "25092", - "27127", - "19831", - "17081", - "21808", - "23715", - "14306", - "9316", - "3559", - "7304", - "32687", - "32378", - "19767", - "10562", - "11686", - "23314", - "32195", - "7551" + "14914", + "19907", + "5095", + "8677" ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 31, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 35, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 41, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 47, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 36, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "721a281c7c31140d45383b37183d01ef0739001529757036573b0eca3b20410b", + "id": "804de7704089687f5b80107b405797d03b3b433e5b666f4d481e7c16883e5cf8", "index": 0 }, { "address": "", - "id": "c614600420ef06557766d37039030d7549b8130966610fae602d70230872660f", - "index": 23497, + "id": "1c11187942695d6c1b3611085c557b837331742a5b4c745910684f5f760c5262", + "index": 15233, "amount": { - "quantity": 253, + "quantity": 248, "unit": "lovelace" }, "derivation_path": [ - "3301", - "14733", - "4500", - "2109", - "8540", - "25973", - "23227", - "4639", - "21116", - "25738", - "31140", - "1217", - "19092", - "19558", - "24066", - "11101", - "25228", - "16803", - "13715", - "15867", - "14006", - "16199", - "19433", - "17513", - "23354", - "4175", - "14670", - "4468", - "28065" + "25486", + "4072", + "6188", + "19145", + "28917", + "22362", + "21201", + "19799", + "19284", + "30647", + "27664", + "29562", + "11146", + "31239", + "15953", + "26253" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "id": "cd03442d6f02cf73e6614a7bc9483a30206b4df697b35d3966414291536c5d38", + "index": 12396, + "amount": { + "quantity": 245, + "unit": "lovelace" + }, + "derivation_path": [ + "17427", + "31066", + "29235", + "31557", + "20973", + "30090", + "15536", + "26286", + "18809", + "29547", + "15310", + "28702", + "12384" + ], + "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 3, + "asset_name": "546f6b656e45", + "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - }, - { - "id": "7f620312b71e346234708eaa20109e046b124231f25977d2320d554d1d5c3732", - "index": 0 - }, - { - "id": "22442b664ffa218b487947544e8531532156654e4970517cc7451b6d77143d05", - "index": 0 } ], - "assets_burned": { - "token_map": [ + "mint": { + "tokens": [ { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ + "policy_script": { + "all": [ + "policy_vkh1f7cv5zqv3jruvqaxche50z4tu5efy7f7av8xuvkpvksc66h7v68", + { + "active_from": 100 + } + ] + }, + "policy_id": "4fb0ca080c8c87c603a6c5f3478aabe53292793eeb0e6e32c165a18d", + "assets": [ + { + "fingerprint": "asset1adgk3l3s7vhsaje9nsjsmk4lugmq3njv6egat9", + "amount": { + "quantity": 3974, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1t7fh2j7nrmvwm492sq409ze6rjajpye5qf6zf0", + "amount": { + "quantity": 1966, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1msyj3u3m6cq3xfqv8v6g4xt5wc539vu2dmljer", + "amount": { + "quantity": 7669, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1uczlhw5aapk2jk6dz3fswwvpwxm4jh9z7a7ty2", + "amount": { + "quantity": 6244, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": "policy_vkh1ujy3zq29jm77re8qryj8qef2wkdm6zxmyczue80428eyx5x7855", + "policy_id": "e48911014596fde1e4e0192470652a759bbd08db2605cc9df551f243", + "assets": [ + { + "fingerprint": "asset1m2f3cfr85qzeukm6nn7lu6w2e6frpzcazf2d42", + "amount": { + "quantity": 7423, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1w9s3jhty9myf8w6efhglpz4vq80mx9442ne3hu", + "amount": { + "quantity": 8757, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, { "policy_script": { "all": [ - "addr_shared_vkh1dgffghucxcqw2a3z5g98855waqk99r9jp9jfu2xheva9j87azhr", + "policy_vkh1kqw5yx29dppjpw4ga2rukdn77eny7kh3yfz5tykks95ux7h0z5w", { "active_from": 100 }, @@ -10856,24 +13624,427 @@ } ] }, - "policy_id": "ffdcf09ae8b577c72af74a7340cf30f6a598c1a79ac1d185bbe57997" - } - ], - "wallet_policy_key_hash": "policy_vk19dwyyaqk434xjfs5wqmnqaq6p36pxw3mye9y7q34qd88yssvgdmsu3gstf" - } - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 195, - "unit": "lovelace" + "policy_id": "b01d421945684320baa8ea87cb367ef6664f5af122454592d68169c3", + "assets": [ + { + "fingerprint": "asset1lc76537acz5mg8axv98kp8wdpyf6jsuh0ryq3m", + "amount": { + "quantity": 7881, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1sm6dhdzw8wgzsvfn7wtqevnfy29dqjknnpu9ja", + "amount": { + "quantity": 4335, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1zq22aqzevwz9hhuaus9zll4nzlljvzqlg6d462", + "amount": { + "quantity": 2282, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1eyhysgq5c4rampg3nvl0nhdmx20gywlk03cj8n", + "amount": { + "quantity": 5699, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] }, - "stake_address": "" - }, + { + "policy_script": "policy_vkh1hlmmsacdtelu07ps3a0jaz50g4ftv7dp90394ena3sar2thv239", + "policy_id": "bff7b8770d5e7fc7f8308f5f2e8a8f4552b679a12be25ae67d8c3a35", + "assets": [ + { + "fingerprint": "asset18e8n8erj20zmr4ynhgfful24cj9u52h3a8vau7", + "amount": { + "quantity": 7503, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset124ldlw8076m3rsux8rgn35fs7gkktuy3axg9pj", + "amount": { + "quantity": 4038, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ec8h8yz9y697ek2w4c6nszdsqalj7x09dk87cl9gtr4sczrqrx5", + { + "active_from": 100 + } + ] + }, + "policy_id": "ce0f739045268becd94eae353809b0077f2f19e56d8fec7ca858eb0c", + "assets": [ + { + "fingerprint": "asset1mtsalpnzxusk3e50jls92uhgh6yk8nzppkaj3k", + "amount": { + "quantity": 1557, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1mclp6ucec3vaznzhj3hmgpjxwzuh4qdxc6t444", + "amount": { + "quantity": 8775, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1775cp68h0kklvz9l0aqrfn5yqejuy3a356fulm9e7qydya6vzef", + { + "active_from": 100 + } + ] + }, + "policy_id": "f7a980e8f77dadf608bf7f4034ce840665c247b1a693cfecb9f008d2", + "assets": [ + { + "fingerprint": "asset1uh0m0avj8pgr4u9qtk5rp3tuwyhlsv70m00muy", + "amount": { + "quantity": 90, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1wku6r8kw6lu300475j328txwqff0fek2erqr4x", + "amount": { + "quantity": 7398, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vesyx5cx6nz3y8v8m935gkjnmeq9975kvth4ac9qtl5agq6h4ks", + { + "active_from": 100 + } + ] + }, + "policy_id": "6660435306d4c5121d87d963445a53de4052fa9662ef5ee0a05fe9d4", + "assets": [ + { + "fingerprint": "asset1xg20tkh9rhjzkdmlkarwjsq0gzyn8x82au4y26", + "amount": { + "quantity": 6412, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1xpgnzvzmajapuay5rkm8utq9mxxgyxfgwyd2ky", + "amount": { + "quantity": 5506, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": "policy_vkh1tkkt0at44rml265fxcpgyygph9epzn6ct6htkvqxw76zuar4dcx", + "policy_id": "5dacb7f575a8f7f56a893602821101b972114f585eaebb300677b42e", + "assets": [ + { + "fingerprint": "asset18pwhe4q5uppjz64lvspyvj9kg0fyxh7aaxledv", + "amount": { + "quantity": 5744, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1h56v5lgh0en25xwphp0d2tw3yuusvr0xnxy36u", + "amount": { + "quantity": 7785, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1xrgcju8x4ntsu20f3xf722kh8mnukv89u0y6e8", + "amount": { + "quantity": 2961, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1ycsj234xj6alvu7w79scedqs7xey02w5xdsp7z", + "amount": { + "quantity": 2932, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1sfhqry2jwwnhvrf3t45c65u9l9g3qtrpnjj35mz2md4rgqu8dna", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "826e01915273a7760d315d698d5385f951102c619ca51a6c4adb6a34", + "assets": [ + { + "fingerprint": "asset1krl5mr4tgwhh7u4v96rcx8m4vjjtpxcyesdtq0", + "amount": { + "quantity": 3775, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1cxurq7eyex0k3re3v9z03k25kp88amut6m85lq", + "amount": { + "quantity": 1340, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh1ywhytc7lgygvzdynj673ux3j3ef4zsz5yn2ftp3a9mx7v0nnl9x", + "policy_id": "23ae45e3df4110c1349396bd1e1a328e5351405424d495863d2ecde6", + "assets": [ + { + "fingerprint": "asset100p6ey6x3cefgch9ykv7tndqam5q7anvwgxccd", + "amount": { + "quantity": 7290, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1lruqtpu02yemd9vfx40ncaszpqr2ru9ek0ujhtkd649v5ektfgh", + { + "active_from": 100 + } + ] + }, + "policy_id": "f8f805878f5133b69589355f3c76020806a1f0b9b3f92baecdd54aca", + "assets": [ + { + "fingerprint": "asset1zjfwxyfnpwqpaz7ex4e96zg8fjlhs0kpz68zcd", + "amount": { + "quantity": 6138, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1ctynrps5ahhf4zanmtxmkfecx2gvchxhd4kalc", + "amount": { + "quantity": 7376, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1q0zyw9l977dw3zgc0j9t636wyldmuamsyrhmj6", + "amount": { + "quantity": 304, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1ekqv8yxtgwldzuajlhnq6dqqng25yw55ag2f886979mnjwwch50", + "policy_id": "cd80c390cb43bed173b2fde60d34009a15423a94ea14939f45f17739", + "assets": [ + { + "fingerprint": "asset1f499s8uvhtfay4qszs75z67p5dzzr504sdqy7r", + "amount": { + "quantity": 6110, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1sxg42l8jzwtwe7y45kgc3yd9nuq7a3czpag98d", + "amount": { + "quantity": 5736, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": "policy_vkh1vutpj6d8kmvj5trj873aer6ua7qj86vck2v4ss64rm70zqhathj", + "policy_id": "67161969a7b6d92a2c723fa3dc8f5cef8123e998b2995843551efcf1", + "assets": [ + { + "fingerprint": "asset1g5aw5xxcdgshpjy5xsppzr5048kcmlwmersjcu", + "amount": { + "quantity": 4109, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1q28ugagf9ttx4p7g27teunqvtnxtqah4kpt276dap32966wd02g", + { + "active_from": 100 + } + ] + }, + "policy_id": "028fc475092ad66a87c857979e4c0c5cccb076f5b056af69bd0c545d", + "assets": [ + { + "fingerprint": "asset1gxuk52advzu66yxy2x9lcktdv55gz8wm6c2chr", + "amount": { + "quantity": 3652, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1umzdkqlck3vs82jzkk5uwqvy4xzf5g4tvcjvh8p3ewmr5v2e4u3", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e6c4db03f8b45903aa42b5a9c70184a9849a22ab6624cb9c31cbb63a", + "assets": [ + { + "fingerprint": "asset1en8077ma7eg2efztxtk9gypa67kmps9s56ju3p", + "amount": { + "quantity": 1909, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1lchzvvfwhddkd3vjx8jz2r5my0vn7w5jkfdyuk", + "amount": { + "quantity": 447, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1r3qm9qhxs7lvju6a446glfac5djuh30hlza4ru", + "amount": { + "quantity": 9198, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1n40ylwk9dr3pj77y9hatq54lp9hcy5qjkkhtvd", + "amount": { + "quantity": 6825, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12yvdtxstm82ag0ns8uhffrrdh3hd8k7y8yxttkc32zleve5h2zv", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "5118d59a0bd9d5d43e703f2e948c6dbc6ed3dbc4390cb5db1150bf96", + "assets": [ + { + "fingerprint": "asset10n9jx35ry8vluq4qxpmndz45jyy7493zqfd2wd", + "amount": { + "quantity": 2908, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1wapgm2j2xjrmqm574eul90pvk9h7xnvjsmukdk", + "amount": { + "quantity": 7518, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1eg69yk7fyv8464f5pdsg5j25sal00r2995uxys", + "amount": { + "quantity": 1907, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1pa4nedp59y7xve05jckq7gntqe2sxtdy85vrqdc2vvenla3dpvhsxvz792" + } + }, + { + "withdrawals": [ { "amount": { - "quantity": 133, + "quantity": 73, "unit": "lovelace" }, "stake_address": "" @@ -10881,29 +14052,29 @@ { "context": "ours", "amount": { - "quantity": 76, + "quantity": 21, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 52, + "quantity": 81, "unit": "lovelace" }, "stake_address": "" }, { - "context": "ours", "amount": { - "quantity": 229, + "quantity": 230, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 247, + "quantity": 80, "unit": "lovelace" }, "stake_address": "" @@ -10911,600 +14082,713 @@ { "context": "ours", "amount": { - "quantity": 12, + "quantity": 222, "unit": "lovelace" }, "stake_address": "" - } - ], - "inputs": [ + }, { - "address": "", - "id": "161e1b464d697f0b264d137fdbc103031c05235802f734223377582c56f14234", - "index": 4460, + "context": "ours", "amount": { - "quantity": 63, + "quantity": 139, "unit": "lovelace" }, - "derivation_path": [ - "7358", - "13460", - "3335", - "12914", - "9296", - "24418", - "29056", - "30814", - "22770" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "id": "7842564646aa7459a218697d60746428090c552d681727524e69771fb9654963", - "index": 1 + "amount": { + "quantity": 173, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "fd04ce7279287755eb006d6049394f3f3366d17a791e510a3ee01d64d880fe08", - "index": 1 + "context": "ours", + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "542500644da30e680f583436397978694a4e6c57d4729316632244295009137d", - "index": 0 + "context": "ours", + "amount": { + "quantity": 224, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "b94b4e692012013e72546a1d2b71cb16384d050d374c1dc24b541f662b5e3902", - "index": 0 + "context": "ours", + "amount": { + "quantity": 78, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "1d7614c9701d35d76674577b132024381a447c349f2463303423cb604f5126e2", - "index": 1 + "context": "ours", + "amount": { + "quantity": 81, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "07461f42277a50e70102375a5a3f520956951f6a5147044f0c614949d9515328", - "index": 0 + "amount": { + "quantity": 14, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "22756a0e00796a7214293b6d21331d5141547c29063857672341594d5e320b38", - "index": 11231, "amount": { - "quantity": 196, + "quantity": 220, "unit": "lovelace" }, - "derivation_path": [ - "30056", - "10399", - "30161", - "9343", - "9128", - "31391", - "3890" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "stake_address": "" }, { - "address": "", - "id": "7439295c133462141250197a39731066a3185b006a12427fe855716c3c53336d", - "index": 11753, + "context": "ours", "amount": { - "quantity": 125, + "quantity": 151, "unit": "lovelace" }, - "derivation_path": [ - "15048", - "5811", - "17517", - "16818", - "909", - "11600", - "4524", - "25439", + "stake_address": "" + } + ], + "inputs": [ + { + "address": "", + "id": "89423c397b260c161c600b1472563e8472024f233cb06765262159b7775e4543", + "index": 20245, + "amount": { + "quantity": 62, + "unit": "lovelace" + }, + "derivation_path": [ "27135", - "16501", - "14298", - "3371", - "21940", - "6262", - "7542", - "6413" + "11510", + "29806", + "25124", + "24072", + "28429", + "7327", + "31232", + "30079", + "14521", + "28210", + "9477", + "21692", + "10310", + "11353", + "21745", + "17238", + "18460", + "24603", + "18044", + "31441", + "417", + "11689", + "21906", + "31088", + "19288", + "10074", + "27869", + "28801", + "26587" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 16, + "asset_name": "546f6b656e41", + "quantity": 24, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 10, + "asset_name": "546f6b656e45", + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 38, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e42", - "quantity": 23, + "asset_name": "546f6b656e44", + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 29, + "asset_name": "546f6b656e45", + "quantity": 3, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "c322501b035b035a2500454c48771160696c26f81a6b035e5b3d7934cf453b14", + "index": 1 + }, { "address": "", - "id": "7b6b60225b066f4e42422b66534f2e6123521ade5166564d660a62d23d642f0f", - "index": 11237, + "id": "376c4624892d3397a7422a6530554b2cba8401047d4054095051242c5d1fc67f", + "index": 26884, "amount": { - "quantity": 178, + "quantity": 82, "unit": "lovelace" }, "derivation_path": [ - "17093", - "24868", - "26384", - "24265", - "18347", - "2425", - "20371" + "7432", + "21813", + "4409", + "18761", + "9088", + "11799", + "16028", + "19267", + "14346", + "8139", + "19761", + "25386", + "3906", + "7282", + "29807", + "520", + "29511", + "11433", + "11956", + "5689" ], - "assets": [] - }, - { - "id": "402328db225e2044106f53502225f1110dac9c54c121564e775c694316715956", - "index": 0 - }, - { - "id": "09a92486f79c766015780553301f4e323666190019e514003d91744ce06c0625", - "index": 1 + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "id": "fd355a3f6ce435623b6b03aa8712e05b320d2246485b095da1bb59571b251253", + "id": "6b7d1327305c2f015b007bd70415806c4c983c1a0d472a6501675a7373445759", "index": 0 }, { - "id": "61425b6a78856632323c301f075a580a7e7a38af764111681e4421303e323630", + "id": "007a796d7d5f48c63c3a1c093121210620772f1d0e5f734e0c6f610e445068f3", "index": 1 }, { "address": "", - "id": "241911081b92781469866c520001772c7714dfa21906473e3f7a63606304be30", - "index": 1514, + "id": "4f77ee7b372a44647475d7996f709b6f54460a03bf6f9d5c7466454021361700", + "index": 18325, "amount": { - "quantity": 222, + "quantity": 53, "unit": "lovelace" }, "derivation_path": [ - "28552", - "21906", - "30349", - "19480", - "31566", - "32607", - "14439", - "19261" + "6871", + "9224", + "2961" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 25, + "asset_name": "546f6b656e42", + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 2, + "asset_name": "546f6b656e43", + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 37, + "asset_name": "546f6b656e44", + "quantity": 53, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 19, + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 40, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e41", - "quantity": 10, + "quantity": 22, "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - ], - "assets_minted": { - "token_map": [ - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 42, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": "stake_shared_vkh1syprakaenda3p47uddhrv8t34nj7mqg55vjuacx2xnwgxdyxedc", - "policy_id": "725c0c3b7132c3d61f2d0d58bd29570a486aa318d36708f42209e40c" - } - ], - "wallet_policy_key_hash": "policy_vk1yzf3gwpvnjpkjyjza42rzrx4aglxjc78wp5hcwzdfg3zv7ptygequj92qu" - }, - "outputs": [ - { - "address": "", - "amount": { - "quantity": 40, - "unit": "lovelace" - }, - "assets": [ + }, { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "032c8a691cfd326a3a17315168105a52af00750e11610003233324136d681358", + "index": 4326, "amount": { - "quantity": 75, - "unit": "lovelace" - }, - "derivation_path": [ - "3397", - "23188", - "29261", - "11235", - "20102", - "28301", - "17678", - "30467", - "24368", - "23843", - "28840", - "17762", - "31647", - "8785", - "22702", - "5193", - "32582", - "19163", - "3367", - "32386", - "21020", - "25359", - "1914", - "13488", - "31012", - "23295" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 152, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 175, + "quantity": 183, "unit": "lovelace" }, "derivation_path": [ - "29959", - "18767", - "4919", - "11330", - "30304", - "9760", - "8676", - "23649", - "14744", - "866", - "17692", - "13544", - "25463", - "29772", - "788", - "22055", - "24633", - "26544", - "19568", - "29090", - "13948", - "3485", - "11271" + "32589", + "24117", + "25436", + "25831", + "1774", + "16290", + "9374", + "25108", + "9421" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 30, + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 32, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 22, + "quantity": 21, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 27, + "quantity": 37, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 22, + "quantity": 35, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 34, - "unit": "lovelace" - }, - "assets": [ + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e41", - "quantity": 22, + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "c04f5a299b6e8b1c181c471f441203198479505d5b7b7d587e0fe45b77e0672e", + "index": 31121, "amount": { - "quantity": 67, + "quantity": 39, "unit": "lovelace" }, "derivation_path": [ - "15471", - "25038", - "10112", - "5524", - "27365", - "5809", - "12680", - "30885", - "12016", - "30142", - "12093", - "18461" + "16157", + "16133", + "2687", + "18939", + "31799", + "7690", + "18029", + "28033", + "31642", + "11247", + "11027", + "3537" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 8, + "quantity": 29, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "id": "c51e374077351c9a4127a03745462a34be4378363135679a64500ade123a071e", + "index": 1 + }, + { + "id": "6b2d2f525ca38049e2e2be22771d3267222202207726453a662de02702116032", + "index": 0 + }, + { + "address": "", + "id": "d20d0b77b62b123611705db8227763337c29485854a1feb21e2024241a4e6250", + "index": 20932, "amount": { - "quantity": 114, + "quantity": 186, "unit": "lovelace" }, + "derivation_path": [ + "3109", + "4901", + "9754", + "6379", + "12258", + "19102", + "5450", + "5037", + "14681", + "15830", + "15408", + "17630", + "2615", + "31514", + "9398", + "21365", + "22984" + ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 2, + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 37, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "37b1093e7b5e67ec7d04460f6e7328fa1d2b6266363d0a1e7f675a706d6a087c", + "index": 0 + }, { "address": "", + "id": "4717973d242478627d2b1bd60813a536565942b5166e533548b744135f7d4f48", + "index": 17369, "amount": { - "quantity": 153, + "quantity": 40, "unit": "lovelace" }, + "derivation_path": [ + "12229", + "3197", + "11833", + "24241", + "16381", + "15055", + "26498", + "18030", + "29737", + "9156", + "13944", + "26305", + "5829", + "25302", + "3914" + ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, + { + "id": "2b404e43215608465b566f17729b2143308c2a6a5651290e01340517291906fa", + "index": 1 + }, { "address": "", + "id": "775154600f2d0a5469413c0d58256176068c2d084a5735641a2b06254b5f4bb7", + "index": 7335, "amount": { - "quantity": 108, + "quantity": 204, "unit": "lovelace" }, + "derivation_path": [ + "3895", + "25088" + ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 12, + "asset_name": "546f6b656e41", + "quantity": 16, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 8, + "asset_name": "546f6b656e42", + "quantity": 14, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 18, + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "id": "60433797b2001a09395c7955056c055e40274a783f55086839b30b460c617b6a", + "index": 1 + }, + { + "address": "", + "id": "3a14326948424bd112520c76746b9c3d4e248c7057052f49210031037012660e", + "index": 27148, + "amount": { + "quantity": 207, + "unit": "lovelace" + }, + "derivation_path": [ + "22540", + "31350", + "20191", + "2883", + "15663", + "19217", + "27044", + "14612", + "23986", + "25372", + "3100", + "5163", + "5602", + "17983", + "21280", + "5175", + "2205", + "840", + "5699", + "28484", + "10360", + "22736", + "24279" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 81, + "unit": "lovelace" + }, + "assets": [] }, { "address": "", "amount": { - "quantity": 86, + "quantity": 71, "unit": "lovelace" }, "derivation_path": [ - "15761", - "1644", - "2140", - "23718", - "28942", - "2995", - "29000", - "6122", - "24998", - "25615", - "3268", - "23423", - "18310", - "16362", - "562" + "22745", + "4683", + "12777", + "15038", + "26296", + "620", + "7739", + "590", + "18354", + "420", + "9494", + "2881", + "14411", + "18602", + "4033", + "222", + "30616", + "1151", + "709", + "21125", + "21452", + "25079" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 18, + "asset_name": "546f6b656e45", + "quantity": 6, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + } + ] + }, + { + "address": "", + "amount": { + "quantity": 50, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 253, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 1, + "asset_name": "546f6b656e41", + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 22, + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "quantity": 19, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e43", + "quantity": 32, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 36, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 11, + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -11512,1171 +14796,754 @@ { "address": "", "amount": { - "quantity": 1, + "quantity": 72, "unit": "lovelace" }, + "derivation_path": [ + "13648", + "31635", + "22625", + "2619", + "14536", + "30556", + "15390", + "25425", + "28878", + "1371", + "2099", + "907", + "29905", + "1701", + "29100", + "19155", + "572", + "5798", + "8953", + "15983", + "2075", + "22530", + "17081", + "25864", + "29855", + "9071", + "26150", + "14408", + "30877", + "6741", + "27025" + ], "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 33, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 236, + "quantity": 212, "unit": "lovelace" }, "derivation_path": [ - "20900", - "24953", - "6777", - "32408", - "21366", - "1228", - "11155", - "344", - "23043", - "22962", - "3601" + "29482", + "8250", + "4991" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { "address": "", "amount": { - "quantity": 27, + "quantity": 191, "unit": "lovelace" }, - "derivation_path": [ - "10935", - "8771", - "12046" - ], - "assets": [] - } - ], - "script_validity": "invalid", - "id": "760951e92961d243482e091d1256ce1a71e037135514755073575261695a0304", - "deposits_taken": [ - { - "quantity": 243, - "unit": "lovelace" - }, - { - "quantity": 221, - "unit": "lovelace" - }, - { - "quantity": 162, - "unit": "lovelace" - }, - { - "quantity": 76, - "unit": "lovelace" - } - ], - "fee": { - "quantity": 7, - "unit": "lovelace" - }, - "certificates": [], - "deposits_returned": [ - { - "quantity": 11, - "unit": "lovelace" - }, - { - "quantity": 236, - "unit": "lovelace" - }, - { - "quantity": 234, - "unit": "lovelace" - }, - { - "quantity": 254, - "unit": "lovelace" - }, - { - "quantity": 203, - "unit": "lovelace" - }, - { - "quantity": 62, - "unit": "lovelace" - }, - { - "quantity": 11, - "unit": "lovelace" - }, - { - "quantity": 115, - "unit": "lovelace" - }, - { - "quantity": 199, - "unit": "lovelace" - }, - { - "quantity": 243, - "unit": "lovelace" - }, - { - "quantity": 91, - "unit": "lovelace" - }, - { - "quantity": 121, - "unit": "lovelace" - }, - { - "quantity": 215, - "unit": "lovelace" - }, - { - "quantity": 136, - "unit": "lovelace" - }, - { - "quantity": 79, - "unit": "lovelace" - }, - { - "quantity": 54, - "unit": "lovelace" - }, - { - "quantity": 231, - "unit": "lovelace" - }, - { - "quantity": 147, - "unit": "lovelace" - }, - { - "quantity": 165, - "unit": "lovelace" - }, - { - "quantity": 241, - "unit": "lovelace" - }, - { - "quantity": 16, - "unit": "lovelace" - }, - { - "quantity": 255, - "unit": "lovelace" - }, - { - "quantity": 139, - "unit": "lovelace" - }, - { - "quantity": 236, - "unit": "lovelace" - }, - { - "quantity": 52, - "unit": "lovelace" - }, - { - "quantity": 213, - "unit": "lovelace" - }, - { - "quantity": 193, - "unit": "lovelace" - }, - { - "quantity": 182, - "unit": "lovelace" - }, - { - "quantity": 26, - "unit": "lovelace" - } - ], - "metadata": { - "22": { - "bytes": "3e07636e2b1026e37e848d5e3a6823262430f33e476bfd747e386b25165d30550776184765d14c6e442516" - } - }, - "collateral": [ - { - "address": "", - "id": "5e7a4f331b4c325571b749162a9e29424c6d445a680e13130d431b5d506259c2", - "index": 301, - "amount": { - "quantity": 234, - "unit": "lovelace" - }, - "derivation_path": [ - "31066", - "5678", - "16445", - "2083", - "29451", - "25244", - "11976", - "21955", - "23220", - "21337", - "8389", - "3451", - "5796", - "8747", - "7182", - "2881" - ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 25, + "asset_name": "546f6b656e41", + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 16, + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 42, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 7, + "asset_name": "546f6b656e41", + "quantity": 20, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 17, + "asset_name": "546f6b656e42", + "quantity": 4, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "72729e4ae1f94e57a72d0e00710fab9d1973303cfa012c2e510c777d28301bc3", - "index": 19019, "amount": { - "quantity": 123, - "unit": "lovelace" - }, - "derivation_path": [ - "14235", - "26768", - "26831", - "5401", - "17494", - "9272", - "10926", - "22559", - "28685", - "10822", - "13726", - "17371", - "25559", - "25271", - "31577", - "1185", - "14375", - "24600", - "21336", - "22919", - "29164", - "3693", - "3803", - "3246", - "32238", - "13059", - "27632", - "15482", - "22173", - "15127", - "10611" - ], - "assets": [] - }, - { - "id": "5c231702931a041e6813708451344b3d32667605ed412a4de743393366017c3d", - "index": 1 - }, - { - "address": "", - "id": "281d474f2d737d5b585bb500961bcd054e6b0450d7991b3f33366b316a401b08", - "index": 7582, - "amount": { - "quantity": 239, + "quantity": 153, "unit": "lovelace" }, "derivation_path": [ - "18863", - "11363", - "26705", - "4435", - "16474", - "12325", - "15205", - "5194", - "9813", - "9235", - "20804", - "29268", - "10242", - "21212", - "7820", - "21092" + "10651", + "6193", + "2259", + "31548", + "12995", + "17542", + "4349", + "30110", + "28748", + "31252", + "1178", + "19857", + "21507", + "28559", + "13406", + "9728", + "17704", + "11856", + "7539", + "15474", + "24815" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, + "quantity": 10, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "0904e8400c89184a3b4759790546664122175f474b1c7026e8f33b71485a4e13", - "index": 31196, "amount": { - "quantity": 89, + "quantity": 73, "unit": "lovelace" }, "derivation_path": [ - "11669", - "1680", - "24601", - "30291", - "3852", - "29068", - "13020", - "6745", - "8470", - "283", - "20272", - "22958", - "5590", - "26248", - "21234", - "15964", - "7185", - "20637", - "7882", - "29015", - "7469", - "4727", - "827" + "6256", + "246", + "17567", + "21325", + "28681", + "31239", + "23527", + "22930", + "16925", + "13416", + "20117", + "14463", + "13023", + "8049", + "16931", + "19905", + "12427", + "19221", + "4722", + "9708", + "32024", + "1818", + "5169", + "32641", + "12691", + "802", + "30944", + "27091", + "21836", + "26335", + "4699" ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 19, + "quantity": 14, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "address": "", - "id": "21bd316511ce406d670d2453407645161a875f0ef1c16b2c7e26415906955d7e", - "index": 31340, "amount": { - "quantity": 223, + "quantity": 154, "unit": "lovelace" }, "derivation_path": [ - "29822", - "2905", - "1801", - "5417", - "13849", - "2365", - "27515", - "11094", - "14726", - "27666", - "4083", - "9470", - "10579", - "21191", - "31203", - "5269", - "10641", - "24953", - "22687", - "12433", - "28094", - "27296", - "21894", - "29660", - "23901", - "30298" + "9257", + "22633", + "14777", + "29297", + "22253", + "25495", + "24732", + "21716", + "30790" ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 36, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 96, + "unit": "lovelace" + }, + "assets": [ { "asset_name": "546f6b656e41", - "quantity": 14, + "quantity": 6, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 9, + "asset_name": "546f6b656e42", + "quantity": 23, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 15, + "quantity": 18, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 25, + "quantity": 8, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 10, + "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 40, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 19, + "quantity": 29, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 26, + "quantity": 33, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "0531456b634848370729094e21747617690325676b2222d8524869ce722f5c17", - "index": 0 - }, - { - "id": "a81341aa1848235117135e4502974e44600756c75e482a0156114a1b463b664d", - "index": 0 - } - ], - "assets_burned": { - "token_map": [], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "stake_shared_vkh1e3aqxr3fqgcmtejfp5p5jy8d9yyznvcfpltt4kzxdrpe5v72r2a", - { - "active_from": 100 - } - ] - }, - "policy_id": "e68ef564f96033381b1862ed5c8d6d224387b0be11c04a384364d58d" - } - ], - "wallet_policy_key_hash": "policy_vk1j3u7mpjcnspxyg3aw5rxyue8nf44c933phjzytcdza5s2m38wauqzjfduu" - } - }, - { - "withdrawals": [ - { - "context": "ours", - "amount": { - "quantity": 113, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 206, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 21, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 208, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 223, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 187, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", + "address": "", "amount": { - "quantity": 87, + "quantity": 200, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "46", + "17473", + "17603", + "2626", + "22924", + "26563", + "24941", + "32040", + "25712", + "13607", + "14849", + "14514", + "24145", + "5356", + "25125", + "262", + "15589", + "27186", + "24094", + "21263", + "6505", + "10747", + "18212", + "8396" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "context": "ours", + "address": "", "amount": { - "quantity": 217, + "quantity": 218, "unit": "lovelace" }, - "stake_address": "" - } - ], - "inputs": [ - { - "id": "0fa63153410a420b402249059a3051cc6b2c4e69920b331a1b471a637e73d616", - "index": 1 + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "address": "", - "id": "287a7a3432373f4729492e439b60705c95586c2e2bbf7e451c25636932a09b27", - "index": 32443, "amount": { - "quantity": 255, + "quantity": 132, "unit": "lovelace" }, - "derivation_path": [ - "29618", - "29183", - "11878", - "10195", - "28550", - "14127", - "14640", - "14407", - "19116", - "7003", - "1356", - "14232", - "22795", - "24573", - "26236", - "11038", - "12658", - "4168", - "29119", - "4438", - "1689", - "17783", - "17829" - ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 12, + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 4, + "asset_name": "546f6b656e43", + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 9, + "quantity": 2, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 2, + "quantity": 8, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, { "asset_name": "546f6b656e44", - "quantity": 26, + "quantity": 30, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, + "asset_name": "546f6b656e45", + "quantity": 28, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "c1778d195465bd4f0a7f354c2278187a796f48482a105a28ad3358f1465f0d3d", - "index": 5195, "amount": { - "quantity": 33, + "quantity": 149, "unit": "lovelace" }, "derivation_path": [ - "11037", - "2924", - "6603", - "13536", - "22238", - "23213" + "18944", + "22369", + "13104", + "8025", + "18293", + "22588", + "15121", + "19541", + "21492", + "5891", + "25531", + "13520", + "27073", + "7151", + "23914", + "19529", + "3845", + "16082", + "94", + "10081", + "30613", + "12990", + "24387", + "21937", + "22925", + "27259", + "25509" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "address": "", - "id": "0f0c335378251d176f5a39bd0d77391e4601c8199c643422456c7dc11a332d08", - "index": 16404, "amount": { - "quantity": 223, + "quantity": 194, "unit": "lovelace" }, - "derivation_path": [ - "25210", - "31091", - "3547", - "1831", - "11443", - "12927", - "3545", - "3508", - "31154", - "26697", - "7476", - "2869", - "16555", - "5602", - "17092", - "30700" - ], "assets": [] }, - { - "id": "5152329636256023793678637512263428e753117120397b4548ca284322534d", - "index": 0 - }, { "address": "", - "id": "02443c440429c409340d3d55175d5816d45f0600565329b17c5beb655d546105", - "index": 7384, "amount": { - "quantity": 105, + "quantity": 158, "unit": "lovelace" }, - "derivation_path": [ - "28989", - "25639", - "4051", - "3149", - "18012", - "16861", - "24689", - "10515", - "10905", - "4371", - "11209", - "15883", - "18767", - "22120", - "17824", - "25256", - "8398", - "32063", - "8903" - ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, - { - "id": "52bdc0686a696308536a64e32a58081816371d064474f5242d1465712834299d", - "index": 0 - }, - { - "id": "51771f416d781b277bfa0f166071301914fc383b5769736767635d4348211117", - "index": 0 - }, { "address": "", - "id": "3b4b782d061817230a620d364058be7a11216e0572585308891c157823531e29", - "index": 16420, "amount": { - "quantity": 53, + "quantity": 200, "unit": "lovelace" }, "derivation_path": [ - "17719", - "28751", - "20316", - "25217", - "16215", - "28415", - "103", - "23132", - "19518", - "24930", - "22040", - "17023", - "433", - "29691", - "14746", - "17698", - "13672", - "19961", - "24591", - "9757", - "7153", - "29030", - "11623", - "29859", - "18366", - "13829", - "15107", - "1396", - "19773", - "18536", - "3847" + "3987", + "25602", + "32534", + "4585", + "25549", + "21280", + "7867", + "15742", + "28834" ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { - "id": "007ef18e9d6b0283bd2456b7b7286825762226203a6856487aa0d6eb0b5f2123", - "index": 0 + "address": "", + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "assets": [] }, { "address": "", - "id": "6c295a111723d828a06e280c1e370711e3206f2636213ba31f4fe827f2230632", - "index": 25009, "amount": { - "quantity": 118, + "quantity": 48, "unit": "lovelace" }, "derivation_path": [ - "17509", - "6754", - "29034", - "32285", - "6631", - "18331", - "22500", - "20020", - "10644", - "22376", - "15408", - "1715", - "24229", - "21452", - "22462", - "3321", - "28108", - "3268", - "14846", - "22692", - "30199", - "31983", - "14416", - "16354", - "12819", - "17661", - "18180", - "23141", - "32596", - "152" + "13204", + "27862", + "29818", + "21478", + "9236", + "545", + "8456", + "24852", + "4822", + "29615", + "18872", + "18099", + "28958", + "18347", + "61", + "13387", + "22318", + "19437", + "1004", + "22767", + "12393", + "12723", + "20644", + "2006" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, { "asset_name": "546f6b656e44", "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] + } + ], + "script_validity": "invalid", + "id": "4176031244170f24253e096177022733702d02555024635ac21a23ed497c3c58", + "deposits_taken": [ + { + "quantity": 139, + "unit": "lovelace" }, { - "id": "027616090350732d6f63e24b4a282370134c3286d67b57d0391e5f1554f2253d", - "index": 1 + "quantity": 201, + "unit": "lovelace" }, { - "address": "", - "id": "89633165261b0fed2a53726297101e2ad651434921b63d3a31437a6c7a22790c", - "index": 14428, - "amount": { - "quantity": 167, - "unit": "lovelace" - }, - "derivation_path": [ - "22693" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 50, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 16, + "unit": "lovelace" }, { - "address": "", - "id": "253a32364a19174fd15cf49bf64c6c851fbf0c2db5507922215d7a705a11724d", - "index": 13596, - "amount": { - "quantity": 144, - "unit": "lovelace" - }, - "derivation_path": [ - "20682", - "23903", - "18141", - "16463", - "28200", - "8116", - "7672", - "12341", - "7779", - "4231", - "13294", - "2452", - "1925", - "4262", - "20835", - "16134", - "9479", - "23750", - "9795", - "9724", - "21073", - "20581", - "11618", - "30279", - "25819", - "4706", - "23031", - "26841" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "quantity": 11, + "unit": "lovelace" }, { - "id": "2e66eb0728ca5c23372d45302db62a1d2b224a3911046a0c1a1f4c78367b13df", - "index": 0 + "quantity": 217, + "unit": "lovelace" }, { - "address": "", - "id": "0c5b062c054f3f671f688857a20fc1655b6001227a78635f6802264e717c3226", - "index": 2127, - "amount": { - "quantity": 28, - "unit": "lovelace" - }, - "derivation_path": [ - "20228", - "5320", - "13500", - "24402", - "20163", - "5836", - "6474", - "14610", - "16340" - ], - "assets": [] + "quantity": 172, + "unit": "lovelace" }, { - "address": "", - "id": "3b207f665931736b6421ff115473405e73293b410f575f161f7f477d6314137b", - "index": 26291, - "amount": { - "quantity": 86, - "unit": "lovelace" - }, - "derivation_path": [ - "3495", - "20730", - "11962", - "2379", - "23603", - "2421", - "27723", - "12286" - ], - "assets": [] + "quantity": 138, + "unit": "lovelace" }, { - "id": "0b1267299e3057641f2151660949283c4805313121439070270b1a087ff50344", - "index": 0 + "quantity": 171, + "unit": "lovelace" + }, + { + "quantity": 146, + "unit": "lovelace" + }, + { + "quantity": 66, + "unit": "lovelace" + }, + { + "quantity": 134, + "unit": "lovelace" + }, + { + "quantity": 44, + "unit": "lovelace" } ], - "assets_minted": { - "token_map": [ + "burn": { + "tokens": [ { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script": { + "all": [ + "policy_vkh1p8m4kv66fu20w0dqqnctx8s99m8pgymdhf8hzw9lfpkvz9g7nqg", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "09f75b335a4f14f73da004f0b31e052ece14136dba4f7138bf486cc1", + "assets": [ + { + "fingerprint": "asset1narfksnm78apckq0kyjgss7cuuhyp49vxxr87c", + "amount": { + "quantity": 5226, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1p2ujnhpnrdjhsxuqq0n7z2wxg94cse27fs087n", + "amount": { + "quantity": 4244, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1fp9lrute4nlycs2z79vjy6m863ydvkjxxg808z", + "amount": { + "quantity": 4827, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1gnlaetjy8exf7t7qz3at38dvh2rp0cm8z2lr29", + "amount": { + "quantity": 787, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] }, { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": { + "all": [ + "policy_vkh1nwvl792ungggt4q4u5cgr8sv9x94nfd6mes74v0tl8kh2yv7h98", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "9b99ff155c9a1085d415e530819e0c298b59a5bade61eab1ebf9ed75", + "assets": [ + { + "fingerprint": "asset1783wtww8txvvqxy8685rh0lfpts00wd2kk7us4", + "amount": { + "quantity": 6483, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] }, { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_script": { + "all": [ + "policy_vkh18ymhuds0ntyhd4u7z2v8uagl3szzvdq72g4ctujspr52k475p5h", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "39377e360f9ac976d79e12987e751f8c0426341e522b85f25008e8ab", + "assets": [ + { + "fingerprint": "asset1u7aalgtacvh42vcxtw7wpxaxsrrn05e72y46lh", + "amount": { + "quantity": 8877, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] }, { - "asset_name": "546f6b656e45", - "quantity": 32, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script": { + "all": [ + "policy_vkh1hamp36llhcjxqtdf62f09alfszq22shlh3ghf5qp6520gsk9mpn", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "bf7618ebffbe24602da9d292f2f7e98080a542ffbc5174d001d514f4", + "assets": [ + { + "fingerprint": "asset1ujjs9yxmv4na3fkpsvt70hztwfvlmm9veqgn0k", + "amount": { + "quantity": 950, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset170esy85lvtvgjjvrwmf3sylrgfjuwg4spfusmd", + "amount": { + "quantity": 1816, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1mw0j5pc0pznx0ecghg7eydurz9v880e5t84hpw", + "amount": { + "quantity": 2684, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1e5kpp4tk50ry0jv0pe0nuwamdz2dd5yjm270l0", + "amount": { + "quantity": 5329, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ { "policy_script": { "all": [ - "stake_shared_vkh148z5wlrr5z7zk3uj0syrpkgpg7gkwwuav48mgtuugtwhuytrk3d", + "policy_vkh1y2jzgsghn33d26dfgflza72wgp7ndx86hnczum4axkwgu6zwtuc", { "active_from": 100 }, @@ -12685,493 +15552,989 @@ } ] }, - "policy_id": "6c0ab9248d23f483dfc9b724d183a7b21e5fe45dc46c8d344a46cb66" - } - ], - "wallet_policy_key_hash": "policy_vkh10g74zl3lgnypjpjmfdusq4pr6qy66dza3av9gm5n29z4xf7d582" - }, - "outputs": [ - { - "address": "", - "amount": { - "quantity": 84, - "unit": "lovelace" + "policy_id": "22a42441179c62d569a9427e2ef94e407d3698fabcf02e6ebd359c8e", + "assets": [ + { + "fingerprint": "asset1t5kg37udz7ank6v957uuqh7f0dhkgrpr6ja2mx", + "amount": { + "quantity": 9720, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset14z9a38vtkj9gqgecjm35lp5aarqyu2vh2ywn2a", + "amount": { + "quantity": 32, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 78, - "unit": "lovelace" + { + "policy_script": "policy_vkh19964hjjtms7yynwv2tj9s8cw7ecfqsqvpspgcaglxvykgpsnmdv", + "policy_id": "29755bca4bdc3c424dcc52e4581f0ef67090400c0c028c751f330964", + "assets": [ + { + "fingerprint": "asset1kzmc8xcpt3uh25u6e3jkux33ljk9fc2ea07epk", + "amount": { + "quantity": 5843, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + { + "policy_script": { + "all": [ + "policy_vkh1v7m5pxzwhydnxzyrvdsrdywclvq9uvnyrtcxlga2l0vlsn4nq4f", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "67b740984eb91b33088363603691d8fb005e32641af06fa3aafbd9f8", + "assets": [ + { + "fingerprint": "asset1xnnkd4fjtanpuxh2l55d8gzq88r7gfn4m5um94", + "amount": { + "quantity": 6391, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1560eyy57kgkl94j0ntf4vknpx993wl7gllktynl2qrh7kt4m7d0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "a69f92129eb22df2d64f9ad3565a61314b177fc8ffecb24fea00efeb", + "assets": [ + { + "fingerprint": "asset18jna88ataxdwmymtqlxakfzvc79qrxkqp24muy", + "amount": { + "quantity": 1265, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset12slml29dns4fuqfjc0hzvwszq7jjf5w9glwlkz", + "amount": { + "quantity": 2982, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset12jl9768ehkl23dm8l7makn38u64fakh6hck58w", + "amount": { + "quantity": 2541, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1lq0046x7cg0w632yp4qtcrlwvuuxyjycd4cdp4", + "amount": { + "quantity": 7118, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": "policy_vkh1yjrkplzq7gp5ellpfhkzs5xj2lujt0ygpdr53z4ffty0gwuvsqs", + "policy_id": "248760fc40f2034cffe14dec2850d257f925bc880b47488aa94ac8f4", + "assets": [ + { + "fingerprint": "asset107wefl0nvrm2v5fg5rdavmc9m03cknpgtm32s3", + "amount": { + "quantity": 5642, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13n8ywr7tyg62f5yu3w2up29egqnss6unhl9tyjd00xjjjlf305s", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "8cce470fcb2234a4d09c8b95c0a8b94027086b93bfcab249af79a529", + "assets": [ + { + "fingerprint": "asset17jm00vg62lfh3a5c0avth6pnlec7nnga09pepv", + "amount": { + "quantity": 6762, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1t40rw3q8tw8p4a3qq6gy5kmv294lmkqq46k7uz", + "amount": { + "quantity": 1382, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset19jgpteguczsyd9lcyuufext4pgswzlw39hsrmu", + "amount": { + "quantity": 3590, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1haxnc89my5um792mw00fnemtru4uq25sfzcyw0", + "amount": { + "quantity": 6246, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh17xxwfe2r555aczewmlpppa80tz8learcffckyrfj88yu2cc6aux", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "f18ce4e543a529dc0b2edfc210f4ef588ffcf4784a71620d3239c9c5", + "assets": [ + { + "fingerprint": "asset1kcn58m7tju7htyg0fflkfv6z3qqeql7d86zv6q", + "amount": { + "quantity": 3219, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1spmxgwczctly2ur9qgmvpeyw6q49mwqyk587h4", + "amount": { + "quantity": 2595, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1njmschkwnm5ne3596t4fp4watsnnzvpgtvd5fe", + "amount": { + "quantity": 306, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ycl2meya9hv5f0tesfzafvxl657ldd6frqetafl6rkqkzgn3qju", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "263eade49d2dd944bd798245d4b0dfd53df6b7491832bea7fa1d8161", + "assets": [ + { + "fingerprint": "asset1q8gcljtvzt60ptwku768ms04dkk6vz6kdmkkur", + "amount": { + "quantity": 363, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset10t0326k330l3kty5ut8m522nqwj2tq2wjgs2rd", + "amount": { + "quantity": 9014, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1mxn67wqxk3y8c0dk37qufdjjaccjycn84lvg3j", + "amount": { + "quantity": 3053, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10dh9jpepgyuhxer3vc5lpacs96spqmxkzfsjtgeqgh8zxn5t8l8", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "7b6e59072141397364716629f0f7102ea0106cd6126125a32045ce23", + "assets": [ + { + "fingerprint": "asset14ek2ep0tss5ul6q59vufyk49e32k72e4zl2utv", + "amount": { + "quantity": 4953, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mefqc3vdfdngnumtsn7gnswpa6sphauk6jvlpcptvms9vrwrj4s", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "de520c458d4b6689f36b84fc89c1c1eea01bf796d499f0e02b66e056", + "assets": [ + { + "fingerprint": "asset10dre2zrpl6dp2u4w4ag28n9460r2ae59hvrhjs", + "amount": { + "quantity": 6958, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1mev77zwwlzuwz2cugauxcl8yfm95h456fyx5gt", + "amount": { + "quantity": 2167, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1z24npf397g6rfm5js9dm86mkn6x4re5zthh95p", + "amount": { + "quantity": 9178, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c2stfa7v9xh05g5chndlcmnvtysm9pdtmxrz8sw7255px2pxjcx", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "c2a0b4f7cc29aefa2298bcdbfc6e6c5921b285abd98623c1de552813", + "assets": [ + { + "fingerprint": "asset1x53s9sm76wk6ye8fcuy2g36aj3x66qr4754nhn", + "amount": { + "quantity": 9920, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": "policy_vkh145tu7v7y7pnedzlxq6fpskrqr44520avq66qdswh90dkupwhy94", + "policy_id": "ad17cf33c4f067968be606921858601d6b453fac06b406c1d72bdb6e", + "assets": [ + { + "fingerprint": "asset1aymxzzhw6hm3mrwhq7e0tw37fjdc5qqvn3f58x", + "amount": { + "quantity": 594, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1mqatanxm62ja0xmjqj3zykv48nq59ze2gcd8m3", + "amount": { + "quantity": 1021, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1nhvged4f28xktu95qrztsdw4n075fvklp9w604", + "amount": { + "quantity": 6265, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset16jpsw3jysargfnu5q6zjfdywchy0yqn4t2n4xz", + "amount": { + "quantity": 1536, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16mrrv7ka6txf8g855dqesur48tz9wx6wtvuv6l30qc28vdmszaf", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "d6c6367addd2cc93a0f4a3419870753ac4571b4e5b38cd7e2f061476", + "assets": [ + { + "fingerprint": "asset1pskltlxfw2c56rqn2tjmjrmllm5xpn3nvj6u54", + "amount": { + "quantity": 5165, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1x9yd85azccv52mddqayf0q49xk6vj34gy5z2pp", + "amount": { + "quantity": 4916, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1epdksm2z95h3apryc7847xkyq38n65yxdqavxzh6gj2t5fzsfqn", + "policy_id": "c85b686d422d2f1e8464c78f5f1ac4044f3d5086683ac30afa4494ba", + "assets": [ + { + "fingerprint": "asset16qzdqlm3fvqpntwg8uyxahvf28hw3u8rdzw4ku", + "amount": { + "quantity": 9013, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1467pek5halqpcq2d5ayxkj9njuesk6jlwz6r74", + "amount": { + "quantity": 4533, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1jyml78r0ql8kse4nt6ma99qds0nxnjvs3au999shsqjpxn9vcp9", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "9137ff1c6f07cf6866b35eb7d2940d83e669c9908f78529617802413", + "assets": [ + { + "fingerprint": "asset1ap49ejpnhdtnw67asra850wltmhmxa9desgz4s", + "amount": { + "quantity": 8722, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1q4kk263dpf2jva04tp3xn2eql8hk942g26t4u0", + "amount": { + "quantity": 3350, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1rnjp3z96efa5qnag7xwglwhawfhwshnn3r2ltz", + "amount": { + "quantity": 5478, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vjt07alj9g6ntupha6hruaatkpkt69fg0hvqemgzjjx6jqgysvh", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 75, - "unit": "lovelace" + "policy_id": "6496ff77f22a3535f037eeae3e77abb06cbd15287dd80ced02948da9", + "assets": [ + { + "fingerprint": "asset1wfngy25altggatwauxdxnpxmt4aqjc2msj2g7u", + "amount": { + "quantity": 2751, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + { + "policy_script": { + "all": [ + "policy_vkh1waasfg7z0cg8wlvxnftyvj7e563fvqemyfv380wkj2yu7d59rwf", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "policy_id": "777b04a3c27e10777d869a56464bd9a6a296033b225913bdd69289cf", + "assets": [ + { + "fingerprint": "asset1fret70uh7rp94e2plrcv5y67pwcgdecvqhfz9m", + "amount": { + "quantity": 5279, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1qhcxkyfdyd3jy4xjnve35se7f7ww0awj0nsugq", + "amount": { + "quantity": 8769, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1t9vftlayxnqzt2xw2qfm5qw8fal337g9kh0dc2", + "amount": { + "quantity": 1977, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1q24s7962ttv56vt6d3mntpq5t9vrz96ud9d5663w0ds9yarsl3a" + }, + "fee": { + "quantity": 14, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "deregister_pool", + "pool_id": "pool1m5yx24ufu5fmv3ke79q50gfuvvffvns0k3syctymja8gja79usk", + "retirement_epoch": 6607 }, { - "address": "", - "amount": { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1p35jadtg2vccjzxtssgqr4yjpy02x6rwq42g3yh75kmh8cuxxn0q8l5kup", + "ed25519_pk1jfq8a6cw56zry0wxmwd075dskgm2xuu4xav95z7g87yznjrdg7sq0n8zdh", + "ed25519_pk1zjl8hdlrkfx7s3yagczmjdfxts3ra3qrg7t4yjcj066rmf7y2rjqmtp0r8", + "ed25519_pk17xh8v6myuvn4x4frmfedaktrg9snwuyleeav3ca8pumfnyhwtfeq04lxkz", + "ed25519_pk14rmlknvhxn924mjuxvq2eskv6h70cqafptass4phu309s8qg96yqjy9x8d", + "ed25519_pk13psdtftxfqata9afsja4v70d4s0pfp9lml2jjlqcldzxr0uwpnjsangle6", + "ed25519_pk1dlh0lszcfqks6289nf6zwyzxtm4dh57uuzz0djdx6ztck9g9pwns5reque", + "ed25519_pk1rnq6t2j4mh4dk5dujvuup0jachuqeqr6k0nk39gmkjz7fd05p5zsvnhsd6", + "ed25519_pk1qws5mudjcw5tdq2f9pqrq7qexr8lu06jzsh974cddjr385a3rl7s3sclgj", + "ed25519_pk16e0yxg5923vm2mhww2gm43adjdn5lgr77k802624g9cmnepzqtzqgmj73s", + "ed25519_pk16davn896z5axjx2vu58wl28cm32njxuq2k0yys75e508fg56yzeq5nslps", + "ed25519_pk1csdtyjd4khvn4yy8xjd62t7auvdjt85xflwk3l4rkuc27y0v2gcs4x9ytn", + "ed25519_pk1lqawu4nrwyr0mj6paf6f70tac8ytsfvpewuy9m7pl8g6hws5lj3q03uuq2", + "ed25519_pk1zk45fj9wn8md3kh4c5n790rds3j4sprmn7v4uhk2pxgkfzrehedqk7thdn", + "ed25519_pk1z0sn4u8y6xh0ynksnfs948r88ml3j2x0hex0mga5qkyup8vtph2q9dspp2", + "ed25519_pk16n0847yqels092027pad7euqjzdqkr5vlc9qvz47epjgfwmxfd0q936e5f", + "ed25519_pk17p9heruxrmprzh4ykwcl7we75w5s7mmtuq6cr0gq7hkx222ddqws7wlp5h", + "ed25519_pk1sxfyd8vzdclq6etq0evclpyx0r23wgdcrqxvcsdxahx08f2c7mdq66h6eh", + "ed25519_pk1ff9etl8jhpf3eum5xz7vf54ktescntmmtzelmzt5u995jpe3mjwq3ztpk5", + "ed25519_pk1e0yuhfex52d3yqnvsw37vlwv0my3axl9a8tur0qtanqd7jefp83s9uvp38" + ], + "pool_pledge": { "quantity": 61, "unit": "lovelace" }, - "assets": [] - } - ], - "script_validity": "valid", - "id": "1f6c4414b6e0200e10466a57078b7b9e31630f479324839d5621c88443799e00", - "deposits_taken": [ + "pool_cost": { + "quantity": 91, + "unit": "lovelace" + }, + "pool_id": "pool17e4kn4znf54cmzhg4u0sdtulyt6qd7m830upywj884xs5dsvtpy", + "pool_margin": { + "quantity": 76.7, + "unit": "percent" + } + }, { - "quantity": 22, - "unit": "lovelace" + "certificate_type": "register_reward_account", + "reward_account_path": [ + "12166", + "9811", + "5671", + "8429", + "5371" + ] }, { - "quantity": 229, - "unit": "lovelace" + "certificate_type": "quit_pool_external", + "reward_account": "" }, { - "quantity": 41, - "unit": "lovelace" + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1srp858tgmqveknfrtvxuq7s7h2zywgdnht0lx70qgm5f0h29ftaq80a62j", + "ed25519_pk19ga6ke6pxy4kcwnqyc80uxf3yklgmahafw2a9zlzazma598l5yzsftl4ap", + "ed25519_pk12txa6j2xeraq3ep5v54td9gfy5eexyk7jmsp7qwmld2wnll37qks7dhfjw", + "ed25519_pk175vdxj7dxfwcdm2n4f7eue60ccdq8j3rkuveh2e8jn8jh3rxf27qnjktdl", + "ed25519_pk1v528a5uc79pp68dnkazuepc8a8p9yrvlhp24vf6kjchkygq2d3rs0lt7j9", + "ed25519_pk1wkcuddkgqlvz557txlwnpcsenrje4maccsupdrchrv5algv2ckfq2ufr00", + "ed25519_pk12qfaz5dksh2ur2kywvfq6njx3v4j7d08pd73ehu6fpnjma7vx59s932fjc", + "ed25519_pk1m4nwkknn8uxyumuuajxn2sz80ss9dmaqzzvhrvwkpcjsm5sdasmsk5d3t2", + "ed25519_pk1a6axjz74crlznafun3luvx95fgryfcf0d3yprxz4s7d9h4ec5lhscpfp3q", + "ed25519_pk1ku4qv6s87wdsrx7z4dtlh3rlgc5fk7hv40fzj5hml6ypmgnrmhsss833yp", + "ed25519_pk1t9aysezr2laf0t0mlmmzudzsmfaw6dsy8vlxz6vsasvaergs3xuswc294t", + "ed25519_pk17ytfu8cqw8asdvvr0qrl2kgcme3hafufe9g4zrmsm4trt98qwrcqtdw9uc", + "ed25519_pk10037t8kwn62t02j6jstrd23ermc9pajesaaf42ttm7j7tghu7m6s8rfmnc", + "ed25519_pk1x906r7raqq5dsu9qpn9qltxeaa8nn7tpmrmd9mzdh0pcrlwe0w0qqwlrmu", + "ed25519_pk1cck47s4qh66fekunv66sqgg47f5t2pl3tpcm2py3s9wpnm8j8k2sgsaf0u", + "ed25519_pk1z2jgncyfamcyfnevg2w7475n0fhkelhp5c3wsdzkes50d9ft4lts09glzm", + "ed25519_pk1d7r2ks42eu80mtqtpqjrt0lyap5r8tdd8ehh5sw0j7g2sc0wdf8qe0sstf", + "ed25519_pk1wkncau8cre3wvm0emkts4pnzzgf95w48q62jmhmkkc3832zsrvnsyyp46u", + "ed25519_pk1wnwdw9xjsmfqtvr9adr7d5lsl9tzqm2uzv3d8e5ym0etjw9vkqks4smmz8", + "ed25519_pk10xrhgdsdpay596ynpkf7as6hxktpxas9ndu2k8qeskndhzjlmewsmn0xfa" + ], + "pool_pledge": { + "quantity": 212, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 18, + "unit": "lovelace" + }, + "pool_id": "pool148gc72drjxpeu9p3jktzlhw0yr5hdgg0dt0ze6tmwy3h6tx0qrl", + "pool_margin": { + "quantity": 26.55, + "unit": "percent" + } }, { - "quantity": 117, - "unit": "lovelace" + "certificate_type": "mir" }, { - "quantity": 224, - "unit": "lovelace" + "certificate_type": "register_reward_account_external", + "reward_account": "" }, { - "quantity": 254, - "unit": "lovelace" + "certificate_type": "genesis" }, { - "quantity": 115, - "unit": "lovelace" + "certificate_type": "register_reward_account", + "reward_account_path": [ + "27714", + "9268", + "15824", + "6396", + "26194" + ] }, { - "quantity": 161, - "unit": "lovelace" + "certificate_type": "join_pool", + "pool": "pool1pf6egd8kj7zzwz74hmwt44r6tmqqq9m6dm4q4yduxq8m5dq7jk5", + "reward_account_path": [ + "24205", + "7054", + "3274", + "31505", + "12474" + ] }, { - "quantity": 92, - "unit": "lovelace" + "certificate_type": "register_reward_account_external", + "reward_account": "" }, { - "quantity": 186, - "unit": "lovelace" + "certificate_type": "register_reward_account_external", + "reward_account": "" }, { - "quantity": 88, - "unit": "lovelace" + "certificate_type": "mir" }, { - "quantity": 121, - "unit": "lovelace" + "certificate_type": "quit_pool_external", + "reward_account": "" }, { - "quantity": 160, - "unit": "lovelace" + "certificate_type": "quit_pool", + "reward_account_path": [ + "28938", + "11713", + "24698", + "15575", + "15716" + ] }, { - "quantity": 190, - "unit": "lovelace" + "certificate_type": "genesis" }, { - "quantity": 186, - "unit": "lovelace" + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1yk0uw0hpv58hj4psvsusej74h6k3j60gyc884dd583eskysq7r5s7sv7tw", + "ed25519_pk17k36y4klvkl0x6n6jenx55xn5wxypmsn88geuyhknd2zwqkxwzxqhz8awd", + "ed25519_pk1vzhlwy0zhu5ps65h0jzyappsfskaxt4yve9vtg6htnvcpklfh38qze94y0", + "ed25519_pk16el2lgaa2uhfss89fn4lst3j798w0n83g305putrug70l8crhe9sly0zxh", + "ed25519_pk17pnfvukt9qqzekqkcycjw97r0wr3ldcug95tw6fdem4z9z5dxu8qccydpl", + "ed25519_pk1xad9azyzggpk6a8rpu2raf4n0vz4ktnc5e7nymdkamgxsm03emjsr8svk9", + "ed25519_pk153ajvlg6k4ftua444zehmwfhza222m3g496xsywz7jjtpm9te0cs4hkh2d", + "ed25519_pk1n5qrkqqfsa8hay3m82q7jl797x2yyg2szwmvw0gucd8zh9lzxauqtexvhd", + "ed25519_pk1f4q9mfc7dmvzu7jslwhae4lyupkv6uh9m3nfxys7l97n39ajvktqhc20er", + "ed25519_pk17m7ea3aevl86thsx064jkh82esmukqcwjh4cymd2gaawks23x48quu9s0w", + "ed25519_pk1hujgcxhqulvlka3flnp0d8sal0rgd5yzfnlulfnn7lqpkad8qa7q6fuq6m", + "ed25519_pk12xc4dxckqhdqze84w5u73xqykpjjzevp95ugc2gl5h67tfkve0rql84str", + "ed25519_pk1fdudhdw22yj0pg96aehl2u69quyk4yduhljhepexacjgpmdejrsq3z5f0y", + "ed25519_pk1ky3ern5l9qa6vus77x4g6f7y8rx0ltnp9flyzx3h3pr4hfkpxu4qyuwnaf", + "ed25519_pk1lnxynkftfvxeplu00py976y62ja6w2tlxrxr3l4mlq4ewekzq74qxt07ds", + "ed25519_pk1ra74pu4v8wvz3pzwnrlkjfs762q609qlmvfwkj6shs9kgwpvejeqqz8da3", + "ed25519_pk1fcm5myrvzdrdnzz3shxuunuvjxtqf8v4v0h2jjv04924s8l7tj8q9gv92q", + "ed25519_pk1t5ewfy4cmq8700pydsqud7m3vr3lwc3cqw25t57r0t8x2g35n8jsnzdkvr", + "ed25519_pk13020nalllj7pye90qmn5z4fjnxwhxqualjwhj7kwvcc6nkldmelsedfqhg", + "ed25519_pk1txfuhdux60wh709ncyv9cmtfnltnje3g33wy23nmdudsqlg3qfzq0d0usn", + "ed25519_pk1jqf0z3tgjf64zrtk5dcug2cplf4c9uj8utfw0ylzkkw6dfm7v5qqhrsa02", + "ed25519_pk1ny9d6evsreszdpyn2yrt9gn9v7xkqpk5f3qukgn76lmcpmv7r2eqdqkrzp", + "ed25519_pk1duus5s32aljhmnjmdl4jjj0t2t7kf6t29vqx4nkapj8szqwqaftsdy00ay", + "ed25519_pk1nvmarfqrcxws7dxxhhrjej5e6rnulkrzjzuqtq3c5zs3w9624uasvuw68j", + "ed25519_pk1ltguqlhjp0p2j7x9pdpnq7sweld8chvgryxlpldpafuhucaqht9sr4n490", + "ed25519_pk12plze9gyxe7as205julz3ppgrgwlcmk6xm5d32jh82dskq6qe3yqv6tejz", + "ed25519_pk1gfwtv5vnrfqf4yns5m5cxs9p20y9vallvs678kqzte0wqnfhefps04s980", + "ed25519_pk1tnl9fdks0sxa7j2uk5nxlev6nvljldj6n20h5fs77sj4p9mtcj8ssh0gja", + "ed25519_pk19mtkgk63tlzndjh8vnen0pxlkthcr9h92xewfgpugx9y3fyjhnhqpk8uw4" + ], + "pool_pledge": { + "quantity": 125, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 235, + "unit": "lovelace" + }, + "pool_id": "pool14k8h9gcrtwpenclyvfuasxq835ve8y7ux3d5jyqmr0ec5muerev", + "pool_margin": { + "quantity": 57.39, + "unit": "percent" + } }, { - "quantity": 19, - "unit": "lovelace" + "certificate_type": "genesis" }, { - "quantity": 173, - "unit": "lovelace" + "certificate_type": "mir" }, { - "quantity": 164, - "unit": "lovelace" + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk133f6ezuatnffvpas76tqdnjtc4dets5g9hhfg3zcp5mc35n76phqtp5n27", + "ed25519_pk17g0mapf8mgdn5wjrk883e3tdm53guk82md2nvdeu7m47whx4zr0sq2m3wt", + "ed25519_pk1g8m00pfwsyn74ugryqqaua3rrqnl7jvfah7mppema3pzmng4xq6saaxw9v", + "ed25519_pk1l4s8jtxt03el572t7s0w6fta9s5w9dw9kxmwmza2kpq5vcdtswkspsxxyv", + "ed25519_pk1rnsvpfha3pxzwv7ztv3xgpzy38jr2qww747vczpvfglgandx9zdsuhpdkx", + "ed25519_pk135a0c7k6h2u8xvh7jr2ndhle3p2gr9egs8znp3apxp9w2n06khuquv696x", + "ed25519_pk1jrz7vmemvh4kldtaqveaurgjhda8skfh9farskdflpyqxwajsxxsrqf3kc", + "ed25519_pk1qhd50hxxjqm7anfpcetu3vqw8krfzpdkc9rttr93wy6guz453vasl9rwc0", + "ed25519_pk1dak53q988n7396hcscmuue089cnljrq94ukulpqag8tlcjz6hhdqzxtgsd" + ], + "pool_pledge": { + "quantity": 68, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 101, + "unit": "lovelace" + }, + "pool_id": "pool1mz9vszs93httvhpz040cdfj63s9e8a4wmsz9usc5m60rw7rajsr", + "pool_margin": { + "quantity": 94.07, + "unit": "percent" + } }, { - "quantity": 9, - "unit": "lovelace" - } - ], - "fee": { - "quantity": 234, - "unit": "lovelace" - }, - "certificates": [ + "certificate_type": "genesis" + }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1tf7k54fr0upsd9x50c9wd9h2kkevhralumevfykvgdvg24gfnft", - "retirement_epoch": 24260 + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1tq3u0ak3ggyvp3rwz8grltlx64wa6uhgnnsgt982ecj0p2d2w7ksdknpup", + "ed25519_pk1852c49ged8muddz57s7vjw225jhwgxv4y3yrt9zmwqq7fhky5n8q9y6ycc", + "ed25519_pk1xjn60utj2dged8mx73yuns20kjvqzan797qens44mfy8lf0x3kmq3y067c", + "ed25519_pk1dwszlpt27kedtvf34ef6x5gu8sq3yzulgl08r4xf2fjlp8372n2qdt4vue", + "ed25519_pk1u5auwe72fyvp5nqrcr23qcqj73e5287cejf4s3ntvnqwdfvz8p5ssl3z5g", + "ed25519_pk1cchjg24p78ys36xxd4uddxexkgemau3jchtdu9zstpkm6ducaczsafjqaa", + "ed25519_pk1jezzv5d74a0q83vd4gjd3kgg4rpqm8n3ccfuycadvwn3nmf0p4lsel6dz9", + "ed25519_pk1zfcjtm9t0p9nfuq8eacc0x7rexse2m6tw87ec7sflf5upuvvqmpss70gml", + "ed25519_pk1muxw4dp8qlxyc6pqq02vaamzmdfxr900ejl2fmg29lpf325q8m0qwaj8rl", + "ed25519_pk1tsqhtr9a6tqpprxm8af6qygpkuk8hulacyqv07m36524fxsn8c7qrqugnc", + "ed25519_pk132y7jrel7k2d8z9ju3kgm8qu54qldgrw33qh8wvqr33ktl52eqpscmwllc", + "ed25519_pk1a8qrsnq8p27ugf5psxxej3zlfy0he22c8887qf3qst29eped77rqfd2yj3", + "ed25519_pk19h5zf5wj7a3hreq4xjvtraep09jzlazr7n9mn6c0mxkc0hrxhr7s0aqj4y", + "ed25519_pk16geesdxn52d00pnelgk57n600pscm7l8vl6v07vmeuut9vdwu7gq3aqpzz", + "ed25519_pk156wqk0muxep6tnr83yw4lpkjq0ptvnzms929g4kyesw2ng4klf4s9l0mac", + "ed25519_pk18ry4h3h4qjy9nmqdk542mywfh6wad2eaq2pthnzn6vawc2ln2tdsl00vfc", + "ed25519_pk1uuseuulneadkeuxyz798f0c0rnc76sme8v4nutdgz4vf8rpvppdsdzmlvy", + "ed25519_pk1xyewr8n3sxx6axnv3veezrckeqkpxvd2sls6zfkhjvtya9ht44qs0dxje3", + "ed25519_pk14tx6vavguqpapvmk2rltvx76rayrllyts483rstke9uzzf0333sqk0krjw", + "ed25519_pk106sy8e06wh9cmc8kzwgc8njrxvddkvqdmzzafpxhfnne5znduecqjsry5f", + "ed25519_pk1nyy564r2cnvcnlu2as92grdl55w280jerrwl5e04s4lsrt5dm7pqg3t0wa", + "ed25519_pk102uth93985efd2ew7e9mu3dvk8uckx4u5a3v0mw4f7upurcw6jcspjlpjr", + "ed25519_pk176tlxmvtessnhkdkcrmhqgz2exh56kazy2tdgmn20729et8kmrkq02m3jp" + ], + "pool_pledge": { + "quantity": 177, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 139, + "unit": "lovelace" + }, + "pool_id": "pool1zhnp2k68h4dq4tm4ldrnxk7jz9v3j924z8merjvnca6ev0zs0w3", + "pool_margin": { + "quantity": 9.08, + "unit": "percent" + } }, { - "certificate_type": "join_pool_external", - "pool": "pool1awd3wa50ez3kd6qks8wh9n9euh25s2cws4dv8hrpjd936lje7gc", - "reward_account": "" + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1tqpus92243e2wlmu3c9ry9d9mpwf8fzjsnttg8knw2yc5wfczunq07zuqw", + "ed25519_pk1vyg4tzprfuktszgkrc7gc6hwhyh4l5sk8axaykrzc73ks8gc3twsc0jdnl", + "ed25519_pk1kmhq88kvkj2ncgz55khuxewsxycxupsr72wz79r6qdzh4m67l48sg3t037", + "ed25519_pk16xnttm0zmlnz36s5aaascpgaffey9xwjxuhemff80zgkhsmk59kqq2q99w", + "ed25519_pk1sedvjlvs9c8t5rmrwqv67jkaqfulmre8dehtr8va0w4z8nqpw83qyjwzyy", + "ed25519_pk153lgt354pgkzu5hd27568wghs7qjgeu90zvjwk6tj2gy3x3pczksqe509s", + "ed25519_pk1fzjp2en9vs3jxr38mdxp5d6fcrxvjhnmpmc63m805qy3u4lnrx9qn6u75j", + "ed25519_pk1e2n5ra32wujeq7ejzmpcsehqwf8ezq8usdadq3tvqdcr8436rtfspyldwx" + ], + "pool_pledge": { + "quantity": 143, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 237, + "unit": "lovelace" + }, + "pool_id": "pool1u3syqntlt49dp3rhdx5jewux2lwt5a8ffnrktm3xr7nf67uxt0g", + "pool_margin": { + "quantity": 56.84, + "unit": "percent" + } }, { - "certificate_type": "join_pool_external", - "pool": "pool172m8zpdc6t7dxm638rdmhl675dvs5rwu3wu2uptm34h3wp2zvd6", + "certificate_type": "quit_pool_external", "reward_account": "" }, { "certificate_type": "deregister_pool", - "pool_id": "pool1q8nxytpl5nv39jgrs7564envnmmsadklly9w6zs3ujy46du4mqq", - "retirement_epoch": 23747 + "pool_id": "pool1tnjvjnr0df285vpzs7ufnuvcsr24wk97ya3ddlcdpzgp5x2rzdl", + "retirement_epoch": 13058 }, { - "certificate_type": "quit_pool_external", - "reward_account": "" + "certificate_type": "mir" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1kdkacg2xltjg0awj5uwwh4ammm68zuc9u29ma9ns9z238eg4wc9qudmplt", + "ed25519_pk1hrqu2vht7rv6l39x5k6zdaxlk3vfz35ph3nmzu7d6n837j2kek9s0etpxk" + ], + "pool_pledge": { + "quantity": 9, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 119, + "unit": "lovelace" + }, + "pool_id": "pool19q2qje5qnwljjgnk6q7xnvtfkyxh2ckce7ggergzc4c5zykv5fp", + "pool_margin": { + "quantity": 40.05, + "unit": "percent" + } } ], "deposits_returned": [ { - "quantity": 62, + "quantity": 49, "unit": "lovelace" }, { - "quantity": 155, + "quantity": 227, "unit": "lovelace" }, { - "quantity": 232, + "quantity": 60, "unit": "lovelace" }, { - "quantity": 119, + "quantity": 24, "unit": "lovelace" }, { - "quantity": 114, + "quantity": 63, "unit": "lovelace" }, { - "quantity": 242, + "quantity": 163, "unit": "lovelace" }, { - "quantity": 230, + "quantity": 120, "unit": "lovelace" }, { - "quantity": 217, + "quantity": 38, "unit": "lovelace" }, { - "quantity": 177, + "quantity": 74, "unit": "lovelace" }, { - "quantity": 71, - "unit": "lovelace" - }, - { - "quantity": 129, - "unit": "lovelace" - }, - { - "quantity": 229, - "unit": "lovelace" - }, - { - "quantity": 43, - "unit": "lovelace" - }, - { - "quantity": 248, - "unit": "lovelace" - }, - { - "quantity": 145, + "quantity": 93, "unit": "lovelace" } ], - "metadata": null, + "metadata": { + "2": { + "int": 0 + } + }, "collateral": [ { - "id": "1839df3b712c31041e5c92763829271e795d65548e0a510526387e2d6e37565c", + "id": "322a59ed0f7951277e073475061a788f3754a2194e69073c026a1e151649e82d", "index": 0 }, { - "id": "3522404d7f750cfb0f464356513e1028d145260174144c0a6958369669605481", - "index": 1 - }, - { - "id": "780992754d614c450054681c5040276453a369831b265c4c776500722e2a5d1e", + "id": "5512c534674a5e6e051c601c460350076173a5501b206d4e0d3a14700e923451", "index": 1 }, { - "id": "1e620e0545667f19446c1a7a17064b2b4e1d325aa7f8315ffd6420471d1f2d6a", + "id": "031922727f0c1f376573341878533508782630577d2d312037380064f77ee340", "index": 1 }, { "address": "", - "id": "02543cd4222e4369001c450850002507ca795429324a774a7d130c182a5a2837", - "index": 27338, + "id": "776c265e5a7aca664a1a130c04155343047a64093d5635626426fa7313015f34", + "index": 15828, "amount": { - "quantity": 100, + "quantity": 48, "unit": "lovelace" }, "derivation_path": [ - "10526", - "8727", - "3015", - "3217", - "16456", - "14691", - "26261", - "19462", - "32500", - "1724", - "20125", - "25971", - "12498", - "16625", - "20350", - "32325", - "31617", - "17663", - "13043", - "16265", - "7641", - "22510", - "29496", - "19438", - "4086", - "32527", - "3616", - "29261", - "15720", - "23988" + "8401", + "29562", + "20896", + "6506", + "9984", + "4528", + "17382", + "12775", + "12850", + "29485", + "15126", + "13184", + "11634", + "14527", + "15697", + "23865", + "19675", + "6758", + "21171", + "8684" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "id": "67079b2a50157d83223741b25df3bd80785709140d7b2073755044304c103f64", - "index": 1 - }, - { - "address": "", - "id": "596e4e27255e24716a496526277b5b2f6d29e640042015524f094e521a477f65", - "index": 7799, - "amount": { - "quantity": 141, - "unit": "lovelace" - }, - "derivation_path": [ - "5111", - "10476", - "1912", - "12345", - "23472", - "26247", - "13627", - "9810", - "24732", - "1351", - "11584", - "17959", - "30051", - "27", - "16521", - "23882", - "22149", - "19887", - "21802", - "22596", - "4256", - "26860", - "2559" - ], - "assets": [ + "asset_name": "546f6b656e42", + "quantity": 34, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 53, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "id": "b87456633d4d73aa60516f1591292a77020a4f041f39160698bf272e0b474e5e", - "index": 12995, - "amount": { - "quantity": 239, - "unit": "lovelace" - }, - "derivation_path": [ - "11695", - "1705", - "2092", - "16502", - "24167", - "27700", - "29405", - "11836", - "7161", - "261", - "27184", - "12395", - "8703", - "25027", - "8454", - "12741", - "7670", - "23465", - "2534", - "20076", - "27250", - "22173" - ], - "assets": [ { "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", @@ -13179,146 +16542,502 @@ "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 44, + "asset_name": "546f6b656e43", + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - } - ], - "assets_burned": { - "token_map": [], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "stake_shared_vkh1vns2e6pjvtzf38t0wy8y9t55g3ewhmjt4w8dslqx830nu8455hu", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "policy_id": "16fcd32576276ff1edfd8da032f6630b792df2800ea4eef856acf113" - } - ], - "wallet_policy_key_hash": "policy_vkh1w92yj526dgmj5kerffnhkdp6tgqrxxmzduyy54g5dajzu2u42zk" - } - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 182, - "unit": "lovelace" - }, - "stake_address": "" }, { - "context": "ours", + "address": "", + "id": "4e4835640023204e48507e147c16624323583f599676795d1121032ef4ee7134", + "index": 16199, "amount": { - "quantity": 51, + "quantity": 154, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "1565", + "27256", + "633", + "7966", + "17050", + "12860", + "14095", + "28542", + "14459", + "15428", + "30710", + "5993", + "6595", + "18888", + "23349", + "26531", + "12113", + "16713", + "15730", + "22325", + "27130", + "6043", + "6350", + "7621", + "11323", + "11352", + "29011" + ], + "assets": [] }, { - "context": "ours", - "amount": { - "quantity": 218, - "unit": "lovelace" - }, - "stake_address": "" + "id": "46636a4e76c9ca4926683324543e186d23384b522e21232929d1245706382bd2", + "index": 0 }, { - "context": "ours", + "address": "", + "id": "b61d741697eb251f2f513a2743021a65656d60956f691d1bc31345093525591c", + "index": 8324, "amount": { - "quantity": 172, + "quantity": 36, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "22730", + "2037", + "14788", + "23816", + "5759", + "27597", + "4143", + "25849", + "13100", + "27248", + "32455", + "17809", + "29189", + "7663", + "1401", + "23345", + "18315", + "8004", + "6433", + "23002", + "22452", + "32676", + "29490", + "15318", + "14729", + "19818", + "20939" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { + "address": "", + "id": "201a0d084a0e69512fb1592205193050d171180675573d3d05017c73084e6742", + "index": 32074, "amount": { - "quantity": 10, + "quantity": 21, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "17052", + "17790", + "25470", + "7865", + "27479", + "32248", + "26212", + "16238", + "12772", + "21222", + "24320", + "28825", + "29777", + "15423", + "29573", + "8672", + "28745", + "5089", + "23164", + "13462", + "15822", + "1183", + "17493", + "2218", + "13177" + ], + "assets": [] }, { + "address": "", + "id": "7a0718408d75325c4f320eb95f3dc95e742114556e5f03770c7b533d66672d5a", + "index": 18522, "amount": { - "quantity": 128, + "quantity": 17, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "209", + "14808", + "31535", + "16692", + "14977", + "20598", + "19478", + "2817", + "2626", + "21928", + "2500", + "23138", + "12106", + "22139", + "29572", + "10381", + "23521", + "11427", + "13142", + "30938", + "14811", + "9120", + "30090", + "31282", + "16064", + "21563", + "15469", + "6277", + "8310", + "3505", + "19664" + ], + "assets": [] }, { - "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "stake_address": "" + "id": "5725751b82592f1211be5869a1092678bae15e43627514fd36383c1256053be7", + "index": 0 }, { - "context": "ours", - "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "stake_address": "" + "id": "06c8235b4a71d1aa1f313f35b1bf0407d6414b2d3937330a4f285c5c31311a5b", + "index": 1 }, { + "address": "", + "id": "05ef350c43557b57194374160d793218cb7b6f6e7947611b37763b430aaa5c5c", + "index": 27231, "amount": { - "quantity": 254, + "quantity": 4, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "11391", + "6720", + "13044", + "15475", + "15881", + "134", + "5638", + "14026", + "20513", + "10692", + "25977", + "28016", + "5261", + "1678", + "31371", + "7901", + "14484", + "31244", + "22095", + "4117", + "10603", + "7902", + "2419", + "1043", + "19576" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "context": "ours", - "amount": { - "quantity": 51, - "unit": "lovelace" + "id": "b323297b736d2e7d9a45d945452f486814735121456cc20e683f340b1b421e04", + "index": 0 + } + ], + "mint": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1rzuzcztfux2y9hsdnntz2j325rkyg24sxaq65t2hwj8aqg0z9k2", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "18b82c0969e19442de0d9cd6254a2aa0ec442ab03741aa2d57748fd0", + "assets": [ + { + "fingerprint": "asset1nckcfps526l9m8w32s8c0fjwkptnl622swuasa", + "amount": { + "quantity": 6196, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1xlc7aeuglzcu4vd5eggkzumknm4k35sm9rerae", + "amount": { + "quantity": 7294, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1nr2gyfmp2eh646a55586xhz976f44j6msmduxy", + "amount": { + "quantity": 4194, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] }, - "stake_address": "" - }, - { - "amount": { - "quantity": 230, + { + "policy_script": { + "all": [ + "policy_vkh12g4qp0uhafj3y4rew5l9wwdntnv2dd8cfqjpmrn3zgdzksta477", + { + "active_from": 100 + } + ] + }, + "policy_id": "522a00bf97ea65125479753e5739b35cd8a6b4f848241d8e71121a2b", + "assets": [ + { + "fingerprint": "asset1rerh0hhlcvesxlpk3z8ygxj8aymwn9duvc60dj", + "amount": { + "quantity": 3971, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1sed9qu6e8jp7an5catekjcx507j6vmnsvtqr3v", + "amount": { + "quantity": 9335, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset16ujpetctatxu9ksuul90fmkr6ljat97jazr5g2", + "amount": { + "quantity": 1302, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset189w2qz364ddwhhucl5nuyxmhlf43gaql96nms4", + "amount": { + "quantity": 4633, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": "policy_vkh1nq2zzt4mgxthx0kgp4h9qjw6tdgkqwdna7ddytqxjuzf2ze3nfz", + "policy_id": "9814212ebb4197733ec80d6e5049da5b516039b3ef9ad22c06970495", + "assets": [ + { + "fingerprint": "asset125vqhpg9zl25kzp9sh63s34z2nur5l7er3g58k", + "amount": { + "quantity": 9723, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1jsfuwh50dqqvg2gaf6xvm5hpm3wu0jy88440uw", + "amount": { + "quantity": 6601, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1jyadzf4n9dmfuhpm723zmwycskd6fahu4ckzq4", + "amount": { + "quantity": 1315, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1njcv87mjfw4zuzc7a0w2zhnz7d5gesqfxvnww5gsr7ev2h3lhjs", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "9cb0c3fb724baa2e0b1eebdca15e62f3688cc0093326e751101fb2c5", + "assets": [ + { + "fingerprint": "asset1652y3l90aay83sef4fk56y9cav7v0xrkd9nl87", + "amount": { + "quantity": 3848, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1zs0pgxu5krdgpayk4jghsh9jzrp400gw230aj3", + "amount": { + "quantity": 4007, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset16zgt9rp62maql8gur0mxuqjwr6fzp7hy2sajxk", + "amount": { + "quantity": 2886, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1420w7qs4d2yy9902fcawxyptafw9vxledwruc9ul4u7uw07kvpm", + { + "active_from": 100 + } + ] + }, + "policy_id": "aa9eef02156a884295ea4e3ae3102bea5c561bf96b87cc179faf3dc7", + "assets": [ + { + "fingerprint": "asset1ml5ualys6z00d84ys2zx026qzru5kjue92d3j6", + "amount": { + "quantity": 1249, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1kutkplklclv82gkzyjaha85fnw4eagyrnzpas0", + "amount": { + "quantity": 858, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1sfls0da5wyvtjaqr5y6wxadsex2kjncjzq628zjrdtnwxljvf2k", + { + "active_from": 100 + } + ] + }, + "policy_id": "827f07b7b47118b97403a134e375b0c995694f121034a38a436ae6e3", + "assets": [ + { + "fingerprint": "asset1tjae7fevjh39paxcgq76hwtfyq8gtkq9544flg", + "amount": { + "quantity": 6174, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset15p7mns2w3hfn035w5rj86g5j7jjayyfky2p989", + "amount": { + "quantity": 3938, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1xal2kunev3xwp65ks5yj62tfv3kjlvddq0kftg", + "amount": { + "quantity": 8665, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1z5u8glmtv93ruktqwt285xmrxv4p7sg02c097jscdyk5uusxqj2" + } + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 156, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 125, + "quantity": 155, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 56, + "quantity": 53, "unit": "lovelace" }, "stake_address": "" }, { - "context": "ours", "amount": { - "quantity": 242, + "quantity": 199, "unit": "lovelace" }, "stake_address": "" @@ -13326,640 +17045,527 @@ { "context": "ours", "amount": { - "quantity": 200, + "quantity": 140, "unit": "lovelace" }, "stake_address": "" - } - ], - "inputs": [ - { - "id": "5b052917ce344d7a3b0840b31e6b203279512b5e57481aee64203561b51cce03", - "index": 1 }, { - "address": "", - "id": "b522754b5c1f11267fe8b07568104e21d62ba843b02627ae57523a6a3f4a3f31", - "index": 19037, "amount": { - "quantity": 89, + "quantity": 214, "unit": "lovelace" }, - "derivation_path": [ - "32500", - "2638", - "13509", - "26540", - "6227", - "18598", - "21041", - "6945", - "25619", - "15175", - "9081", - "32123", - "30135", - "27888", - "23055", - "21342", - "18764", - "12162", - "23563", - "3720", - "17845", - "5245", - "2161", - "14853", - "28859", - "6820", - "10595", - "10908", - "28814", - "11489" - ], - "assets": [] - }, - { - "id": "375d39128bca012a37050129500099527324241e443c46ab1e5d6c477d02357e", - "index": 1 + "stake_address": "" }, { - "address": "", - "id": "1b0c532e37054376684f32da3e4e0a5b5d5a5b47f02b072e41024fd989217018", - "index": 21892, + "context": "ours", "amount": { - "quantity": 135, + "quantity": 216, "unit": "lovelace" }, - "derivation_path": [ - "5701", - "29957", - "10683", - "4888", - "26638", - "6733", - "31653", - "14583", - "12274", - "10967", - "28960", - "16859", - "24799", - "29817", - "20312", - "14281", - "20786", - "25381", - "19001", - "8489", - "11440", - "17128", - "9634" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", - "id": "af0b7f53b30b16d24b641179db5b76935150633a6a5350484e5a696d7b027d25", - "index": 7882, "amount": { - "quantity": 20, + "quantity": 65, "unit": "lovelace" }, - "derivation_path": [ - "23657", - "29455", - "773", - "21635", - "31550", - "8094", - "28298", - "21442", - "14956", - "25339", - "11930", - "11649", - "6886", - "19444", - "21573", - "30725", - "21479", - "19347", - "19412", - "15609", - "15338", - "27442", - "20697", - "7566" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 36, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 39, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", - "id": "2d541e46286e8738385e4b133e360a1b6e2c74d8322723602c722e3dc73f2329", - "index": 21485, "amount": { - "quantity": 67, + "quantity": 24, "unit": "lovelace" }, - "derivation_path": [ - "5563", - "26860", - "20840", - "19848", - "24273", - "9680", - "4552", - "23391", - "24114", - "8839", - "2639", - "22047", - "16545", - "23933", - "30881" - ], - "assets": [] - }, - { - "id": "9d01623c6d019406790b3b04131a7bf334afb0732951d3f66f4017724c396f7e", - "index": 0 + "stake_address": "" }, { - "address": "", - "id": "0a2123537aff0471291db60705321f370d290d804e17601f6e0b7d796a2b3b46", - "index": 21753, + "context": "ours", "amount": { - "quantity": 8, + "quantity": 241, "unit": "lovelace" }, - "derivation_path": [ - "20837", - "17772", - "22545", - "6876", - "976", - "28606", - "27215", - "8967", - "14760", - "7122", - "14916", - "21140" - ], - "assets": [] + "stake_address": "" }, { - "address": "", - "id": "5dda3ac2556c7d6c82111400334f3113272c5a2517bcf60e685a4d3b31346212", - "index": 26336, + "context": "ours", "amount": { - "quantity": 14, + "quantity": 154, "unit": "lovelace" }, - "derivation_path": [ - "8840", - "11430" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "id": "6741341a6385862a0e5f4f4abc602a16321c804f612323533f117856047b6e65", - "index": 0 + "context": "ours", + "amount": { + "quantity": 17, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "4b0cd7355e5e4b1036080bfd7059731d2c7e64596149993447751ef8466d5c75", - "index": 1 + "context": "ours", + "amount": { + "quantity": 34, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "435b105e081a3a504e153b7de46b04b73b176e613810116a3906ec796c236e32", - "index": 27156, + "context": "ours", "amount": { - "quantity": 4, + "quantity": 145, "unit": "lovelace" }, - "derivation_path": [ - "30485", - "4371", - "19057", - "25574" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" }, { - "id": "3688053d5c5ef372564aee615a0b63dffd2025170e160921191e21132b7c7a1f", - "index": 1 + "context": "ours", + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "2e101632026e2a185054c8136e5f391027439f0b0b31372b3bde446c11181135", - "index": 0 + "amount": { + "quantity": 251, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "6abd18c36f691d79626f4e1b2587567c780a2a4c3d5d26570c037a7b7f304f21", - "index": 0 + "context": "ours", + "amount": { + "quantity": 93, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "204c7069160c4b244a26501b1c0a2e984465227224706147245d407e6a745e01", - "index": 0 + "amount": { + "quantity": 232, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "3701ad18487850614f6360c725462939ac04684d0f0cf72007fc2219c66c2a0e", - "index": 12930, "amount": { - "quantity": 170, + "quantity": 191, "unit": "lovelace" }, - "derivation_path": [ - "13966", - "6289", - "254", - "2058", - "26071", - "13935", - "3048", - "24898", - "15779", - "13719", - "30396", - "6471", - "4924", - "25075", - "29515", - "9739", - "15451", - "32182", - "4391", - "28477", - "5479", - "20339", - "32366", - "20731", - "12776", - "598", - "32078", - "8143", - "9274" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" + }, + { + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 193, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 249, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 83, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "stake_address": "" } ], - "assets_minted": { - "token_map": [ - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "addr_shared_vkh1nq6g8gxu940zz62gf8aa9r94qsxhdy8y20mp5rgthnn2cvp0w82", - { - "active_from": 100 - } - ] - }, - "policy_id": "998b6d0eeeb86fc0e5799df6eab0138bd43e9b43f3ff64226a558f0e" - } - ], - "wallet_policy_key_hash": "policy_vkh1qp8yvn2dwqal5h6dfgq8cf6svxw7raqvdgdzxgyy9u40vndk5wk" - }, - "outputs": [ + "inputs": [ + { + "id": "3754455b0e31362c1e736c43331dddbaced01964677d5d627f0c766534482f67", + "index": 0 + }, { "address": "", + "id": "b0041f019a311e7c7a629b7923b1145b29248c263f7730cc4744142039636176", + "index": 15880, "amount": { - "quantity": 194, + "quantity": 9, "unit": "lovelace" }, "derivation_path": [ - "31682", - "24803", - "8770", - "22548", - "5998", - "29183", - "4185", - "31628", - "7584", - "26093", - "7461", - "563", - "24074", - "20675", - "13091", - "29920" + "25755", + "2710", + "15767", + "32384", + "9322", + "18139", + "10517", + "26006", + "17018", + "10144", + "8953", + "25896", + "978", + "24082", + "32448", + "9600", + "24543", + "3038", + "29244", + "30461", + "8787", + "10572", + "15923", + "3257", + "7309", + "24037", + "10349", + "17905", + "13352" ], "assets": [] }, { "address": "", + "id": "5e7633225e6a5b31282766680e3d738f4d52296eb952a80f7c3c262159565f6e", + "index": 4147, "amount": { - "quantity": 254, + "quantity": 11, "unit": "lovelace" }, "derivation_path": [ - "22197", - "21043", - "6952", - "2751", - "136" + "18227", + "20447", + "11775", + "28854", + "8149", + "22006", + "29704", + "9056", + "13026", + "27618", + "10713", + "25813", + "11967", + "737", + "10001", + "1716", + "18797" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "assets": [] + }, + { + "id": "3a242560d5410f471c736226314a6f5f356d4e409e1960644a793733743d3548", + "index": 0 }, { "address": "", + "id": "69544c1e0532751624c426696845444e33674151553037326b54022a19093f1d", + "index": 386, "amount": { - "quantity": 158, + "quantity": 108, "unit": "lovelace" }, + "derivation_path": [ + "6655", + "27592", + "18507", + "22491", + "10099", + "4837", + "5189", + "30370", + "26453", + "16226" + ], "assets": [ { "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, + { + "id": "6ade7123715c5c551042eb5c7a5f2919474f3e52395c7c2e094a163c4577ec26", + "index": 1 + }, + { + "id": "57080052140667d966767d5927750165681a990d241cd0504a40725c1d3c0660", + "index": 1 + }, { "address": "", + "id": "247527d71968fd6ddb75ae39e47534437651225f5b716e6c3f5f0a272210262b", + "index": 29881, "amount": { - "quantity": 106, + "quantity": 12, "unit": "lovelace" }, + "derivation_path": [ + "25440", + "32570", + "8334", + "5561", + "30711", + "422", + "24036", + "25124", + "23601", + "2047", + "30142", + "2631", + "18319", + "4152", + "30784", + "3750", + "17279", + "22462", + "7796", + "19329", + "21840", + "23604", + "15215", + "16652", + "13090" + ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", + "id": "9a6d647b20484445365d06813b1b5e342f9bb59150d76b056a1a67d147755336", + "index": 31304, "amount": { - "quantity": 190, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 211, + "quantity": 162, "unit": "lovelace" }, + "derivation_path": [ + "19461", + "30963", + "9580", + "14408", + "3886", + "13928", + "26595", + "29747", + "4575", + "30983", + "1322", + "26262", + "16633", + "30022", + "4088" + ], "assets": [] }, { "address": "", + "id": "0d2c545c1f13cc6fb74b357c347c544972b474252d66292396745d0ca7830535", + "index": 3322, "amount": { - "quantity": 130, + "quantity": 215, "unit": "lovelace" }, + "derivation_path": [ + "3751", + "13823", + "26726", + "2235", + "10", + "18138", + "1550", + "23310", + "28607", + "23362", + "1905", + "2527", + "14406", + "1821", + "6436", + "13162", + "32427", + "13007", + "627", + "7631", + "17112", + "16418", + "28413" + ], "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e44", - "quantity": 20, + "quantity": 66, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 37, + "quantity": 14, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e42", - "quantity": 17, + "quantity": 27, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 26, + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 42, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 27, + "asset_name": "546f6b656e42", + "quantity": 19, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - }, + } + ], + "outputs": [ { "address": "", "amount": { - "quantity": 70, + "quantity": 107, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 18, + "asset_name": "546f6b656e41", + "quantity": 4, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e44", + "quantity": 44, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 19, + "asset_name": "546f6b656e45", + "quantity": 9, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, + "quantity": 55, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 15, + "asset_name": "546f6b656e43", + "quantity": 8, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 26, + "asset_name": "546f6b656e43", + "quantity": 9, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 146, + "quantity": 150, "unit": "lovelace" }, "derivation_path": [ - "17432", - "20688", - "1770", - "29876", - "5334", - "88", - "28465", - "259", - "3146", - "6276", - "25009", - "10364", - "28630", - "197", - "15774", - "277", - "18021", - "21341", - "28690", - "1808" + "1014", + "31001", + "3149", + "15880", + "3328", + "9547", + "16085", + "10616", + "11882", + "8563", + "15288", + "27888", + "6582", + "11990", + "7628", + "11420", + "6107", + "12647", + "7471", + "32286", + "2603" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 26, + "asset_name": "546f6b656e42", + "quantity": 18, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] @@ -13967,56 +17573,54 @@ { "address": "", "amount": { - "quantity": 88, + "quantity": 233, "unit": "lovelace" }, - "assets": [] + "derivation_path": [ + "23815", + "26078", + "26228", + "21186", + "22856", + "10903" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "address": "", "amount": { - "quantity": 77, + "quantity": 165, "unit": "lovelace" }, + "derivation_path": [ + "8111", + "1481", + "9418", + "26931", + "26152", + "31233", + "31599", + "18661", + "13014", + "2442", + "24362", + "1027", + "27927", + "4337", + "32693", + "16089", + "14240" + ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 36, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, + "quantity": 15, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -14024,114 +17628,101 @@ { "address": "", "amount": { - "quantity": 116, + "quantity": 112, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 43, "unit": "lovelace" }, "derivation_path": [ - "6394", - "9179", - "5297", - "11413", - "29075", - "7994", - "13990", - "13294", - "29204", - "20670", - "28441", - "3216", - "29403", - "9921", - "29982", - "8952", - "12054", - "25979", - "4463", - "22094", - "3271", - "29369", - "6973", - "14019", - "3878", - "5333" + "7844", + "8453", + "4252", + "161", + "16896", + "14929", + "10503", + "20793", + "10559", + "14162", + "23799", + "10299", + "4786", + "5849", + "732", + "27458", + "17293", + "16915", + "15232", + "18291", + "26139", + "27529", + "12905", + "27562", + "27747", + "7812", + "20878", + "12871", + "32349" ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { "address": "", "amount": { - "quantity": 230, + "quantity": 162, "unit": "lovelace" }, - "derivation_path": [ - "7224", - "19156", - "15009", - "925", - "11413", - "28065", - "118", - "12017", - "3854", - "25090", - "24226", - "7302" - ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 1, + "asset_name": "546f6b656e45", + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 8, + "quantity": 26, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 4, + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 15, + "asset_name": "546f6b656e45", + "quantity": 30, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, + "quantity": 47, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, + "quantity": 32, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -14139,694 +17730,5649 @@ { "address": "", "amount": { - "quantity": 197, + "quantity": 35, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 130, + "quantity": 240, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "derivation_path": [ + "18729", + "24904", + "15979", + "14221", + "3597", + "8498", + "4122", + "14174", + "2865", + "32738", + "29697", + "19342", + "6665" + ], + "assets": [] }, { "address": "", "amount": { - "quantity": 38, + "quantity": 127, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 27, + "asset_name": "546f6b656e41", + "quantity": 25, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] + } + ], + "script_validity": "valid", + "id": "6d757a17549e634f49034b4b4f512c675308343813b168a57225724d43e12866", + "deposits_taken": [ + { + "quantity": 131, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 136, - "unit": "lovelace" - }, - "derivation_path": [ - "28765", - "12509", - "2152", - "23848", - "26837", - "29796", - "21140", - "10148", - "2614", - "29430", - "22145", - "21391", - "19317" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 42, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 42, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 125, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 86, - "unit": "lovelace" - }, - "derivation_path": [ - "9736", - "28143", - "19612", - "28930", - "9563", - "1334", - "26753", - "25721", - "15055", - "29294", - "2142", - "10825", - "26477", - "20417", - "30493", - "28027", - "28394", - "23205", - "7650", - "10856", - "21323", - "7122", - "14884", - "28634", - "15377", - "16044", - "21303", - "12142" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 167, - "unit": "lovelace" - }, - "derivation_path": [ - "13555", - "12239", - "9004", - "5518", - "23597", - "7102", - "6855", - "19313", - "27016", - "11604", - "26032", - "17421", - "6716", - "13935", - "31805", - "9754", - "11029", - "27883", - "24139", - "17708", - "30143", - "23486", - "27989", - "16911", - "21932", - "272", - "24341" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 152, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 243, - "unit": "lovelace" - }, - "derivation_path": [ - "16569", - "30458", - "20902", - "25489", - "30705" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 74, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 160, - "unit": "lovelace" - }, - "derivation_path": [ - "23296", - "4547", - "31958", - "23381" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 242, - "unit": "lovelace" - }, - "derivation_path": [ - "16266", - "8456", - "30085", - "28968", - "13836", - "32711", - "26604", - "29123", - "9408", - "21569", - "3508", - "3023", - "24069", - "10989", - "13957", - "8779", - "26038", - "24626", - "5929" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 143, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 108, - "unit": "lovelace" - }, - "derivation_path": [ - "15739", - "9269", - "379", - "19105", - "19991", - "8605", - "8461", - "25771", - "6168", - "31195", - "26306", - "7969", - "3210", - "20035", - "10582", - "23649", - "13799", - "3051" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 240, - "unit": "lovelace" - }, - "derivation_path": [ - "759" - ], - "assets": [] - } - ], - "script_validity": "valid", - "id": "6a9c11a77c1e3370204b5c6c4102633908182502752b7a05584da076d56e5307", - "deposits_taken": [ - { - "quantity": 249, - "unit": "lovelace" - }, - { - "quantity": 248, - "unit": "lovelace" - }, - { - "quantity": 141, - "unit": "lovelace" - }, - { - "quantity": 100, - "unit": "lovelace" - }, - { - "quantity": 40, - "unit": "lovelace" - }, - { - "quantity": 235, - "unit": "lovelace" - }, - { - "quantity": 174, - "unit": "lovelace" - }, - { - "quantity": 55, - "unit": "lovelace" - }, - { - "quantity": 182, - "unit": "lovelace" - }, - { - "quantity": 77, + "quantity": 222, "unit": "lovelace" }, { - "quantity": 140, + "quantity": 150, "unit": "lovelace" }, { - "quantity": 238, + "quantity": 170, "unit": "lovelace" }, { - "quantity": 173, + "quantity": 129, "unit": "lovelace" }, { - "quantity": 143, + "quantity": 209, "unit": "lovelace" }, { - "quantity": 157, + "quantity": 147, "unit": "lovelace" }, { - "quantity": 205, + "quantity": 215, "unit": "lovelace" } ], - "fee": { - "quantity": 222, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "join_pool", - "pool": "pool1vem927s0avp22rph5dazrgy9l34wd7rq9gpng4m4z2dtjnmhl4g", - "reward_account_path": [ - "20460", - "12272", - "17272", - "8219", - "23019" - ] - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1wkcv4vaht3ehjlq96cymtskkec4mt9uq3y86tadq67y5y4cchak", - "retirement_epoch": 30765 - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1c8wpfg9jd9l8fvt5t633ay3z4ykruduu33zf7rwcfp67q6psekkq4k958d", - "ed25519_pk1qkth4wkyu7lzlyl7cdmlrke0q3dhupvfrz0pk76q2w8xafekc3xqe2u3zr", - "ed25519_pk1d2rwnhft7ka9sww08a4rmqetnq920tv5ape25cjer2utdljjnc0sxqtgft", - "ed25519_pk1j9zzmz60vjdnzwg2gw8veyuz346kkw7jn800000gnux2eacja6usnj5hhs", - "ed25519_pk1ra3p5hpgltg0aaxwkagggf4p06umzhfsudnmge55mh98j4n8hdysdhd4kg", - "ed25519_pk1hqw9hrkh5f37qa24v0dqtl9jsnsn283hs0pvw6tkxeacahar0xwq4gyg5z", - "ed25519_pk148n26vjsg3slqnhf3pjjfeqf0flrd2t0d6scgtztwalcyppwamrqjkxjg9", - "ed25519_pk1est3ktteyqrkvm0z4w43lzg5e4tawxj6nctarmwuz57x4ugc82pqj9fky6", - "ed25519_pk1tdq76p24c8ms3gdpl9e58p9me5qxscjhtcwd07ln0la0jflfv0wqp83dj8", - "ed25519_pk19jpxltrlynr0cwq0m5k7l94fa6pdfak2xly0l3w0nmk7mlzpj90sgqljye", - "ed25519_pk1er3xl7y3nznvhqxjxmg4ph4drajde49kxp4gaep88jt5wxdw50xsd20yus", - "ed25519_pk15llsv2pygspvylqvsttqtvvp3l0ndhlt080ltmy34mem8gxrql6slpl9xe", - "ed25519_pk1t6cgnm275a5zcsgayke5ef8dmd9xg2m2q3wvu82zxkdewhjf8qnqf8lvwg", - "ed25519_pk13y4mc3rpwc4reg5dup6jc4xg8hhcmzsn94rwqzstm83qh2pz290qyf3v8w" - ], - "pool_pledge": { - "quantity": 236, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 252, - "unit": "lovelace" - }, - "pool_id": "pool166jsnke5r7lya8r3as4s48chcj3v8gugz9jxxepkz5wygznskq6", - "pool_margin": { - "quantity": 14.88, - "unit": "percent" - } - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1hnsfksdnp3g5k8j4zq3q5qp0txe5gzpqutawaj9te99lpgqm7j5qwc7x2h" - ], - "pool_pledge": { - "quantity": 33, - "unit": "lovelace" + "burn": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh16zhtv93zx9u774mh53f9qcdlltcmemvne7ad9xs63pfmxvx0qfg", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d0aeb616223179ef5777a4525061bffaf1bced93cfbad29a1a8853b3", + "assets": [ + { + "fingerprint": "asset15e7llwpdn853x8j7yqdufjt535u7swqyzprghm", + "amount": { + "quantity": 1688, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset12qrvf6rh7esq6rdfnvyfdux9xe39cam4v00a4z", + "amount": { + "quantity": 1317, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1zwsslgg7my6grh6ndxa0dapenp0uma48f00jpk", + "amount": { + "quantity": 7817, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset13e6huv8g65veh8wmz4l07638r2rm6q4vcekyrm", + "amount": { + "quantity": 5309, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] }, - "pool_cost": { - "quantity": 201, - "unit": "lovelace" + { + "policy_script": "policy_vkh194dmj5qysy5q9g5rv3rrkuys7y76zyzcxu3655rnj8mjgace93p", + "policy_id": "2d5bb95004812802a28364463b7090f13da110583723aa507391f724", + "assets": [ + { + "fingerprint": "asset17cfpmnvt5hp3f6nd95c6ep8wnzsuh2y7nmj072", + "amount": { + "quantity": 7993, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1azvh0qddwjea67suapnfg52gg09xlzquqcnxr6", + "amount": { + "quantity": 6044, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] }, - "pool_id": "pool1fwwj2tn29k9p0vp2vzn4qe9tgt54fhc2fny7ax8n0kzduullw5u", - "pool_margin": { - "quantity": 63.21, + { + "policy_script": { + "all": [ + "policy_vkh1zsn9tguhvxw5dm9wysdzm60tvzgr9f45vyzakpyxh0vuwjj4a5e", + { + "active_from": 100 + } + ] + }, + "policy_id": "142655a397619d46ecae241a2de9eb609032a6b46105db0486bbd9c7", + "assets": [ + { + "fingerprint": "asset1fljaj43wr69rffxxh20s5gy7ttlq2t63quce7w", + "amount": { + "quantity": 5446, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1zx0xsper3eezjczm8p6vsttt4yhn2yphhx385n", + "amount": { + "quantity": 7796, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1yq7j8qlkzdmsmh6j066jzt5s7n86sjfgm5vtdy", + "amount": { + "quantity": 3048, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1xymaw6lshn4g9mmw3vaq7gsa7n0h0mup0uukxm8nddv4q39sdf9", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "3137d76bf0bcea82ef6e8b3a0f221df4df77ef817f39636cf36b5950", + "assets": [ + { + "fingerprint": "asset1xzjnsj0jjlgqxkqpnuyrar0r4h0fc3hlw4eaf4", + "amount": { + "quantity": 8469, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1nc9f89jpefqef76a4sdxq362mmf2xrxpgutmgr", + "amount": { + "quantity": 2934, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1s3r9mhwgfpejkx3kcsfya9yc2tfvz9we82lew6", + "amount": { + "quantity": 2389, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1gyg27lzmv063fgks8mqqxd7gl3s520a6l8vwn6", + "amount": { + "quantity": 2148, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1y3kp983nlc6rtuetg5kjn506v2zt4fp2ushkvnzt7hahjjkzt52", + "policy_id": "246c129e33fe3435f32b452d29d1fa6284baa42ae42f664c4bf5fb79", + "assets": [ + { + "fingerprint": "asset1hav6d83qu4e7a56wjuw2fql9fvtgpxk3cddt6x", + "amount": { + "quantity": 46, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1sq75yklr4j0rcfugcvhr5t0g2f9qh2lp2xqkl5", + "amount": { + "quantity": 4272, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1km93xgegpeestcymtnwhp9kvy2tvkhsq3wlgxh", + "amount": { + "quantity": 4138, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ncjhvnn8cu2djcz7zgcl4jm5t8dxyqucgr6ek0krpgs65eqmqw0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "9e25764e67c714d9605e1231facb7459da62039840f59b3ec30a21aa", + "assets": [ + { + "fingerprint": "asset1rdrmpkmlaapwaee38838mjqmrpdza3m53x429h", + "amount": { + "quantity": 1042, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": "policy_vkh1tq57kz4und7700emmkglu60csgp0camcvjmk8mzwat2my7eqjgd", + "policy_id": "5829eb0abc9b7de7bf3bdd91fe69f88202fc777864b763ec4eead5b2", + "assets": [ + { + "fingerprint": "asset13x34a52qn659vcj7w6mtgydvtjzuvkxfzwga8t", + "amount": { + "quantity": 1654, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1sh5cmkttu46mkuy64znzsvs74mffgxuy7r2y42", + "amount": { + "quantity": 1556, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1fkpysvapkk9w6d0h2r7nj7p7mkd7c8jm6prsvx", + "amount": { + "quantity": 1311, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1yygfdyxg8zarev6d0kh5ncgh47255jrd0mynp8mjg7u9zxptqex", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "21109690c838ba3cb34d7daf49e117af954a486d7ec9309f7247b851", + "assets": [ + { + "fingerprint": "asset1lagn9czqcpemvzw98z99q4tz3fwyfsj38nw37v", + "amount": { + "quantity": 4260, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset199d0enar5wudtu9wknuvrtmtywdu0adwxrdgzy", + "amount": { + "quantity": 6132, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1cvcs6pnhvkynghlw4t9emr68kn49ewz2gp5zcd", + "amount": { + "quantity": 5185, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1f0marxr0edgrryy35d9fq2sg2kgvfnj4ls4ccp", + "amount": { + "quantity": 542, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": "policy_vkh1rdj2nsuk88tp2965tc5ne3r9yp73xq6kfcxy88t9j4uew9nyj0s", + "policy_id": "1b64a9c39639d61517545e293cc465207d1303564e0c439d65957997", + "assets": [ + { + "fingerprint": "asset155w0ntrnsr5leka2sc265jxjjzupjfncvt30rl", + "amount": { + "quantity": 3543, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mw46cj2rqkeq5q9dslac2enhx4x9ygjaq03yz8taquv2uvkcjqm", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "dbabac494305b20a00ad87fb856677354c52225d03e2411d7d0718ae", + "assets": [ + { + "fingerprint": "asset1y8tkamkdsmpdg7nwzaparyhjml9m822ztdttm6", + "amount": { + "quantity": 7153, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ew7w9t5dwvejt37tqacyajv73prpau6rmch6zzrkd5gds9djf53", + { + "active_from": 100 + } + ] + }, + "policy_id": "cbbce2ae8d733325c7cb07704ec99e88461ef343de2fa108766d10d8", + "assets": [ + { + "fingerprint": "asset1hnlnrs5vf34pxru9jkffz3wrt5za3rr8f6yedj", + "amount": { + "quantity": 6113, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1r93hd4z50wxca67ycs90udty4dt89j4gqc0hru", + "amount": { + "quantity": 7293, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1dccld6n074chan4ukwzsu0ehueaezjuvfu0kpq7jk6htck6wq0h", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "6e31f6ea6ff5717ecebcb3850e3f37e67b914b8c4f1f6083d2b6aebc", + "assets": [ + { + "fingerprint": "asset1srkzf8yv8kd6vtvu0gh43e5j6kksvxlkxvpx4f", + "amount": { + "quantity": 2797, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": "policy_vkh1tnu34448uxvh5aw40lscqkxksy5yt4hk7tzaa5s55v2a27q2ets", + "policy_id": "5cf91ad6a7e1997a75d57fe18058d6812845d6f6f2c5ded214a315d5", + "assets": [ + { + "fingerprint": "asset1erugcgzzx06wxhfx3s7kstuv7z92xsm5t797ml", + "amount": { + "quantity": 9282, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset18d97ulc9s359c37me9tlgwgnmtvnptn0knl8y9", + "amount": { + "quantity": 1367, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1yy9ez2zc9lnp8kvkyujmxecml34lju3nuc86lj", + "amount": { + "quantity": 3514, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1z9tq3nnzsgk6n7kj3helle92alzf4yprtypx4l", + "amount": { + "quantity": 6823, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1r78wqqyl8emrnfca6nf0vdypwtdaex6yunvp5wv60qsxu0dfw6n", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "1f8ee0009f3e7639a71dd4d2f6348172dbdc9b44e4d81a399a78206e", + "assets": [ + { + "fingerprint": "asset1jk7p30dujtsphsn7jy8wya00j3padx6hxmsnk0", + "amount": { + "quantity": 2456, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1u0ft737f9jh80kwkvpc4xlmrfewzlqln44h5as", + "amount": { + "quantity": 8481, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1rg8unz77nd7tp0xxgvryr7cctafxvy3m25xgkk", + "amount": { + "quantity": 5293, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1gj2p0s005dd0q2favspkglanj4yjd0a49e79rtss3pkw7p49se7", + "policy_id": "449417c1efa35af0293d6403647fb3954926bfb52e7c51ae10886cef", + "assets": [ + { + "fingerprint": "asset1dne357jp35vuac3vg72vp0ndwv2t6aplc7urjs", + "amount": { + "quantity": 7485, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13hj5wk3uuugkaqpxjr3ze5x255748duyjepp0nezcxwrk4h6let", + { + "active_from": 100 + } + ] + }, + "policy_id": "8de5475a3ce7116e802690e22cd0caa53d53b784964217cf22c19c3b", + "assets": [ + { + "fingerprint": "asset189hpfs554wv0q4vm89sy4269679t7znkkshwrd", + "amount": { + "quantity": 1086, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1l84sjnd9ujj2m82kxd08wd8nyazwelhlf5se37", + "amount": { + "quantity": 3287, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1gyqk38hup0sz7529wjfv2h2y42fnf3h5ahqmhs", + "amount": { + "quantity": 2489, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1z4rcx9eyurya3xgjfl9skesayysasw3ulypqm6", + "amount": { + "quantity": 1266, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1utgj4ks83r64zdvq0skt3sw5yushsd3alfmcn427xsles7uv8tt", + { + "active_from": 100 + } + ] + }, + "policy_id": "e2d12ada0788f55135807c2cb8c1d4272178363dfa7789d55e343f98", + "assets": [ + { + "fingerprint": "asset1nl6gjts4h63yqds0wdddh6ktsvax9r658fkeav", + "amount": { + "quantity": 5917, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1t6e0eyk9jdha7gq97dx4t08mautn426cj35epq", + "amount": { + "quantity": 6409, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1j0rr48sg3acu0r8q8zk4xj6ekzpkqaulkg49g2", + "amount": { + "quantity": 6849, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh153sezkwk5w6zfx7hdheyxxjsmx5qpkdhennugmhl7yh6qhjgppd", + { + "active_from": 100 + } + ] + }, + "policy_id": "a4619159d6a3b4249bd76df2431a50d9a800d9b7cce7c46efff12fa0", + "assets": [ + { + "fingerprint": "asset1qttz506hyarv486z4fj4f6pq8f7yxc9jsk6dks", + "amount": { + "quantity": 6080, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset15fwvu9vdunpc7y94lm3mq8qvafquwr2u4kccrk", + "amount": { + "quantity": 5692, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": "policy_vkh1aku3lljq3wd2muysnq625u6e2rescpycxg3lad9cgkegu7r797v", + "policy_id": "edb91ffe408b9aadf0909834aa735950f30c04983223feb4b845b28e", + "assets": [ + { + "fingerprint": "asset1l96cfzaxtu00lwzg08c9csue95emeuu2hrwjqn", + "amount": { + "quantity": 1173, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1j3sn8r82kq2l2hc8thy2qhgwee3u4n8x9ywg8k", + "amount": { + "quantity": 6775, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1uhze8hu0uw7kuakcy4fuqky2h48ld4uh0zxfrz", + "amount": { + "quantity": 8359, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1ww7yg40xlnj2unxd96nyjdnp90qtlw9a9qw6m5", + "amount": { + "quantity": 1288, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1penp4kac7rtt939lqhajhputa8pjsch8zdpf9t2e8rees6pkc3u", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "0e661adbb8f0d6b2c4bf05fb2b878be9c32862e7134292ad5938f398", + "assets": [ + { + "fingerprint": "asset13w8uutlr4jmtluahpukcdu650gd9pxj8ty8xcw", + "amount": { + "quantity": 7210, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset14vfc92hnpt45slwha75zgy0sqlu3e2mg4j5n7z", + "amount": { + "quantity": 8705, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1n0r0sxtx8rr6mv9um0rzrxqz2r66td5du756kf", + "amount": { + "quantity": 3567, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1ta7fswgpg54qfjquzy94p6aun4ytd37es40nea", + "amount": { + "quantity": 936, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c407grqsangk2hnse2asfhfddqt5txmep9zm8kmdx269sv4j2g0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "c55fe40c10ecd1655e70cabb04dd2d6817459b790945b3db6d32b458", + "assets": [ + { + "fingerprint": "asset1qsarrx5jqufcnjl2j9alt4azwam94n55jca7j6", + "amount": { + "quantity": 690, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset12xvpw3fdm9ck2wy7qg50lunqm77q033r7s26td", + "amount": { + "quantity": 1920, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": "policy_vkh1yl098ma75afutdjana2pk3saeu0uswymzq8k35034cq37mg7s5u", + "policy_id": "27de53efbea753c5b65d9f541b461dcf1fc8389b100f68d1f1ae011f", + "assets": [ + { + "fingerprint": "asset1sq9z0p3vuedkuhzq5k272gegam9ewztnhl8c6l", + "amount": { + "quantity": 7517, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1jw8te5yd6emlckwytd2jknva08an0tcdwewazh", + "amount": { + "quantity": 7660, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": "policy_vkh1wfnjuwvmprx002vgkznradrjd27sud39xywg845hpffhy5cqgdw", + "policy_id": "72672e399b08ccf7a988b0a63eb4726abd0e3625311c83d6970a5372", + "assets": [ + { + "fingerprint": "asset1qc7sx3vj2v9u8h9c8kvzz4ywqufv3j7ccv53t7", + "amount": { + "quantity": 6355, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1gacte65haupw4gq3r04lh8rfdk5p239684cegd", + "amount": { + "quantity": 8125, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1l8a3vs0mdpfstvr299yd98kajg9z9ajd2zm3yl", + "amount": { + "quantity": 8319, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1y8p26xjc2e246ymteehextqqmgxnyfwl5fnljq", + "amount": { + "quantity": 6402, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1v579xu9dgsf8ztjgdhfpx0vcgvdy74t4gv0kqxnwx4ee6xz0s46sz9nfhg" + }, + "fee": { + "quantity": 232, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "join_pool", + "pool": "pool1t7fex6z6met4anajy8qjpe5fhm50lda2p06ttcmszkngz5ufumy", + "reward_account_path": [ + "2689", + "25826", + "18444", + "3618", + "11441" + ] + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1ng0rq9zaq7708j5a9y3v7u4y0ddgucsrerz43tjjueyc7lkzavw", + "retirement_epoch": 29151 + }, + { + "certificate_type": "join_pool_external", + "pool": "pool10q5cnw4hntnjxsemdqlqu36tfheygvmxsndrwndtv8wajf7wm7r", + "reward_account": "" + }, + { + "certificate_type": "join_pool", + "pool": "pool1u7ruu5sru53zaa04u4cz7sun3s9wdyy8f54rffr7ntpnsxxfjas", + "reward_account_path": [ + "27934", + "6034", + "16191", + "9464", + "31904" + ] + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "28151", + "21344", + "9920", + "148", + "12347" + ] + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1s8986wwersexzmznpvgzknvzjazs9m7ugevkxhehg75tpyy6fqkq0v72kv", + "ed25519_pk1r2nw4f7scs0mxjphzxv66nxvqux3ghm09nxmhq6llga8zl04wlzqm35dya", + "ed25519_pk1wttmtdjcncrqnxjs0dge2f7mz9efjy5wk83ezgy9h8sjg863w07qjfrshz", + "ed25519_pk1acmzrl65yul590fcfa7hnnlyjsrdkzt8qlfdqhews0zumc8g3tfsugdlhw", + "ed25519_pk16crnnymnmag7qzkmer24me3gqd5m0t74gh39mqx5ywhut35wy88sfjhj2s", + "ed25519_pk1hzdrhrcy4hc47mhskfvktexgmck66mnsefuryntjfmundqy4es2sgwt8gr", + "ed25519_pk16jhwrwrwds2r7flw93tcs6hekpa6v2jynf0n4lvmdezlpjukfgxqpxcrlk", + "ed25519_pk1ry4h25k5k7h78e9356x9c7j96w0f259fjcgg8rz6rf7ac80ggz3ssgp7kn", + "ed25519_pk1myegvuf7kjqt7uhfr8mthhhdg6zqqzhr5zd9kf20wvnww3shxgvqykzq4d", + "ed25519_pk1wsh5gknv36dw6d0s3rs78cre2x36l3cg8252uc5ch0640avcwvyq372mpw", + "ed25519_pk1yxqdmjs5qav967t4ckyl3cym0qwejpwczvfxvkufm36q0rr89nqqksjhzr", + "ed25519_pk1f3lh8lguyr02kzqfgalctzh63p39g5rsj3m6q4dtasvwgd4h9yjsawn6aa", + "ed25519_pk12lyew4gc37rgrj5m827ylyvfy2faffcmug2vqjzv9tkf3t88vm0s0skt9p" + ], + "pool_pledge": { + "quantity": 61, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 231, + "unit": "lovelace" + }, + "pool_id": "pool12rgyudghgj5tyck2d5z7ac5v96tl27tf9sh99waqcpq4qcl9c4q", + "pool_margin": { + "quantity": 37.51, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1fx9hj6qre77263hp23zxspfnrj2vn0vaagssm9kthumx8pa46r2qfsmuv7", + "ed25519_pk1kahjrzaqhk222peaxfxknjrkx62s6pegr2h4szwy5aehr49nqdksjv245t", + "ed25519_pk1p87dw0jjaezavm7hvp4d54m0dd2v2nw9mtp3924xwx2e3vjax0xqp028tx", + "ed25519_pk125f8xygnp4mea2me08jvrpuugtpcf89yxhqcq70rsd7a07mt2jpq0cp4v9", + "ed25519_pk135dtnhtyp50j5tjv7atnghhe48wvm9t89tmxuc6qut8fq2wpqf7svptgsl", + "ed25519_pk1camcq3hqrwdllr6cj6zkg5ch44sdrt6mudu3l2n8k88y6e8p7dxqkm9hrl", + "ed25519_pk16q6juhv85f2lxjuee46aw9hxfflxl4p4zw0z07lyuqsq8ladgx2qsrac7y", + "ed25519_pk19st5f33x0swsy5ndwl3uzam9u35syz8t956vx3dzaua9nmkg6a5qj3sj07", + "ed25519_pk18nunsde0szhcsqpy5dum2m5954zejgeg75sw0afaq5y3c2eg8nrqp9uats", + "ed25519_pk1d32hq4xg2lkpk8razyk56anqwylzn7dfpx83p5j5srwfsgwf5dhsddq02a" + ], + "pool_pledge": { + "quantity": 112, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 85, + "unit": "lovelace" + }, + "pool_id": "pool1lzyvz9lne9euwjnf7xx8y6dvkxgljh88r6gtv6rhqtu625c2949", + "pool_margin": { + "quantity": 5.97, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1h32p3gc4h4t2sk9ffzu4wa43refwyc2hs8zwgl4wjjumkx55wrd", + "retirement_epoch": 10736 + }, + { + "certificate_type": "mir" + } + ], + "deposits_returned": [ + { + "quantity": 161, + "unit": "lovelace" + }, + { + "quantity": 27, + "unit": "lovelace" + }, + { + "quantity": 184, + "unit": "lovelace" + }, + { + "quantity": 216, + "unit": "lovelace" + }, + { + "quantity": 239, + "unit": "lovelace" + }, + { + "quantity": 141, + "unit": "lovelace" + }, + { + "quantity": 30, + "unit": "lovelace" + }, + { + "quantity": 113, + "unit": "lovelace" + }, + { + "quantity": 82, + "unit": "lovelace" + }, + { + "quantity": 75, + "unit": "lovelace" + } + ], + "metadata": { + "14": { + "string": "𮭅" + } + }, + "collateral": [ + { + "address": "", + "id": "c25736308b5120672b044474367f62655f36476ad2d52aca200f43a17f8e0630", + "index": 18275, + "amount": { + "quantity": 69, + "unit": "lovelace" + }, + "derivation_path": [ + "14401", + "13748", + "26738", + "11869", + "25177", + "22640", + "2979", + "26873", + "21778", + "23413", + "478", + "9812", + "22314", + "5868", + "2701", + "11937", + "20851", + "31039", + "10252", + "16736", + "6941", + "1333", + "7830", + "28408", + "8972" + ], + "assets": [] + }, + { + "address": "", + "id": "c8d31319c2341e2a2f7cc7445359d1435b2f071bbf6c433c6f54d965181be775", + "index": 11722, + "amount": { + "quantity": 18, + "unit": "lovelace" + }, + "derivation_path": [ + "27376", + "8128", + "30296", + "7681", + "1464", + "31281", + "19768", + "17790", + "8277", + "5539", + "19345", + "28754", + "32089", + "23939", + "27747", + "16082", + "30574" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "id": "347b51727c034b00622428233245031720eb287928592c161e4a1f0ef7173116", + "index": 1 + }, + { + "id": "73262c0a282d3a0b443f5f1b3d070c6d2517431d442f1fb9d95a0ab35c136a7a", + "index": 1 + }, + { + "address": "", + "id": "eb15cb35ae233f7c335560284651c23d182b1415005d2b765636240117123d10", + "index": 20882, + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "derivation_path": [ + "21751", + "5635", + "2413", + "23395", + "17418", + "11132", + "11012", + "6377", + "3312", + "6796", + "31619", + "24341", + "18361" + ], + "assets": [] + } + ], + "mint": { + "tokens": [ + { + "policy_script": "policy_vkh13dkqd8qdqen3z8lxpmszsca79sljzrk2u67qefnsj0tvvcn609f", + "policy_id": "8b6c069c0d0667111fe60ee02863be2c3f210ecae6bc0ca67093d6c6", + "assets": [ + { + "fingerprint": "asset14vlpznj045ywj4lvxnt7yshcjtuck6s8ed7sty", + "amount": { + "quantity": 5984, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1uux5uvrluj3sylpajw6gv0x2hl2t3v96rfqyjp", + "amount": { + "quantity": 7944, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1npa7yttk2hn6ddzvhmv7d0k3amhqqlmudtjlws", + "amount": { + "quantity": 6107, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh17k3ru9nt8hjd2muf6ppnjdc8vahx4wg6etrz2jve57vuc3klvjt", + { + "active_from": 100 + } + ] + }, + "policy_id": "f5a23e166b3de4d56f89d043393707676e6ab91acac6254999a799cc", + "assets": [ + { + "fingerprint": "asset18fe38jwwswa7up63ql9ayut5my0f8ev6zl7sv7", + "amount": { + "quantity": 5035, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1m0mhcrz6awfz0ns9h3uerktdaxqa7qejx9dzwn", + "amount": { + "quantity": 5447, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1jhenqd73dumgvedjrrl0rtnml9rvedlvw2zka5", + "amount": { + "quantity": 8126, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1zmkkrf56a7ac5pzara29lcwum59upasxdthpeu", + "amount": { + "quantity": 8551, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1u59264pflxus0ufpj6d9ts4qkw8su3z7axcww63wh26d26a3gr8", + { + "active_from": 100 + } + ] + }, + "policy_id": "e50aad5429f9b907f121969a55c2a0b38f0e445ee9b0e76a2ebab4d5", + "assets": [ + { + "fingerprint": "asset1t73zqcqxmtangj8s7jv6dspnsvf86vu7zrj9gs", + "amount": { + "quantity": 538, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mv05qpksg0lm8kawugfenf2n4lepsepl0fkrc0vq2kce7rlgqu9", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "db1f4006d043ffb3dbaee21399a553aff218643f7a6c3c3d8055b19f", + "assets": [ + { + "fingerprint": "asset1mvvmnsnetmqelcat5gqpjfmq5m5wt8qqr7srvw", + "amount": { + "quantity": 6015, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": "policy_vkh1dl898h4dgpc2x9k5ht6f7k0g5lcepfv72jwhzng5u5c7skxwqxr", + "policy_id": "6fce53dead4070a316d4baf49f59e8a7f190a59e549d714d14e531e8", + "assets": [ + { + "fingerprint": "asset1qwnzsuqayldfggtnk4hlnq5fyp047fhusv342v", + "amount": { + "quantity": 5893, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1t74zzw3jwavesnmemdqztnu6lt7q8uguc4v3zd", + "amount": { + "quantity": 5186, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1zzl6am43du7g4tc9dgdng83gdkpp3mdsprp5rd", + "amount": { + "quantity": 8904, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1ljsz6wrwn70rcqc24xnarj6mv5ntcdxq8w6zj6", + "amount": { + "quantity": 8146, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1uajx2r6fh8ut2xxantc9tnfs6vzew3urz0ektudhcnjgj7msfj4", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e764650f49b9f8b518dd9af055cd30d30597478313f365f1b7c4e489", + "assets": [ + { + "fingerprint": "asset14mw254tzg92x8wr6rnh9zwa28uv3pvt24zy3f8", + "amount": { + "quantity": 6149, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cpund7y4jfywxrn3hyqxkckj70hmcswp26kr8kfmv0476l7m4kx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "c07936f8959248e30e71b9006b62d2f3efbc41c156ac33d93b63ebed", + "assets": [ + { + "fingerprint": "asset15lp9knvksa3n9eajpet6mjl0d4kj9x9n0dtg0d", + "amount": { + "quantity": 6189, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1vmqrl22f5whxp5lna3knzsf42uls7m2wmxuny8", + "amount": { + "quantity": 571, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1zm5nshhycwqep348lckh0zs2zz8xc29nt6hus4", + "amount": { + "quantity": 3549, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh16wv0ylvd5e3028u8d2k3lz4zjtxmecyp5mu7zs0mp4mevacgjkc", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d398f27d8da662f51f876aad1f8aa292cdbce081a6f9e141fb0d7796", + "assets": [ + { + "fingerprint": "asset1umggyj5278n8nvk2wnckpecm5lvx22rvvc4rcf", + "amount": { + "quantity": 6836, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh1x38cre2wzn2qweree95xepux5pxypzr85f45u2fusk6yv6djn2z", + "policy_id": "344f81e54e14d4076479c9686c8786a04c408867a26b4e293c85b446", + "assets": [ + { + "fingerprint": "asset1ne3eu2wavpnsck22kgzd87fpptrq2p7mm9e07d", + "amount": { + "quantity": 1042, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1l4d5qdnntlwl9p35r27vf2z03u42ma8xs8g6mj", + "amount": { + "quantity": 9442, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1wwsyj2se9am92e8djx4e66xrtn2vk6ad0udyrc9dxl0uyjx5hp8", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "73a0492a192f765564ed91ab9d68c35cd4cb6bad7f1a41e0ad37dfc2", + "assets": [ + { + "fingerprint": "asset1k6gfp8ml39ua0cq57fgwlw4dfa4rz9jne5svzy", + "amount": { + "quantity": 5305, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset14afg7jzc674mtkzkrhwuz8v4enapruhw8jzn0v", + "amount": { + "quantity": 7311, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset12gdez8n784sgscu6nzmqpkflwc33yhcwt8kter", + "amount": { + "quantity": 5549, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1sy47n3k9mpdz982agqpu6qysyq2jl90lezfxsnwrlcvksn6yrhh", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "812be9c6c5d85a229d5d4003cd009020152f95ffc892684dc3fe1968", + "assets": [ + { + "fingerprint": "asset19r8g8zlre9dahj56ng8cdypr4e7kd7ytzjn8km", + "amount": { + "quantity": 282, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1s324agn6xqvvp6e2yp7k0kuustpf4lfaeazeap", + "amount": { + "quantity": 6503, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1ajucyu80kvl2xg2lq7vz4fchvf2rllly5697nn", + "amount": { + "quantity": 8733, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": "policy_vkh1en4szafyaf94gj00vhpmgwgad69pkjwwhmlxnq6quydav5jjncl", + "policy_id": "cceb017524ea4b5449ef65c3b4391d6e8a1b49cebefe698340e11bd6", + "assets": [ + { + "fingerprint": "asset1f4tpkjdg9e0daypn6zwvm42zc6s50sf2udxrvw", + "amount": { + "quantity": 4917, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset10k98md67qqqp6jmqsl76rfs56mp2wdmgmgagmj", + "amount": { + "quantity": 4816, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1lfttq0j6cp8dyheew3gzfwpayjaxqlcv8qmcqaet3rym74muh9h", + "policy_id": "fa56b03e5ac04ed25f39745024b83d24ba607f0c383780772b88c9bf", + "assets": [ + { + "fingerprint": "asset1rckwry54w40s96cptlnpxzzgpyfr60verz6893", + "amount": { + "quantity": 568, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1pfsgh9ganpfu8zgcl50hcy2luhyyg5s8mlj6tj", + "amount": { + "quantity": 8404, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1rmhlp6s46x89gkqfda5rqz96sy3f965rnu9w3y", + "amount": { + "quantity": 4420, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1a8d7uv2l64e6sxvvz3z0c3tt7cc265uwraj79s", + "amount": { + "quantity": 3298, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1wdle4mzwwkr7vffxyswfve0n3zq08z37fy74ujycf9ez2dxnx3c", + { + "active_from": 100 + } + ] + }, + "policy_id": "737f9aec4e7587e62526241c9665f38880f38a3e493d5e4898497225", + "assets": [ + { + "fingerprint": "asset1vkawf278x6rm0vwyqmqmzp3zprcn7m046e4eh4", + "amount": { + "quantity": 2692, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1z5nwjplrnqhs0v5g5dsq4ppv8g77rkfcfyw62m", + "amount": { + "quantity": 376, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1557gq5uuw5y3z6d0ggy6rt882fmnc0udkf2ur3", + "amount": { + "quantity": 6854, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh1h7xynja34yuldfvhthqfsuuyuusmw20sqh4s6cwwyfl3qvqfwj3", + "policy_id": "bf8c49cbb1a939f6a5975dc0987384e721b729f005eb0d61ce227f10", + "assets": [ + { + "fingerprint": "asset1feajjcz70q3g0r4v5wj7w3m9wy3wds4zsjz6r7", + "amount": { + "quantity": 7308, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ndwszrtgmu02cekgpsm6aaf9sccqduagwwgavah32e3h5l22hjh", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "9b5d010d68df1eac66c80c37aef525863006f3a87391d676f156637a", + "assets": [ + { + "fingerprint": "asset1sk47xln7h5krzrtdty9hw29z6z3p7g3zg36jg0", + "amount": { + "quantity": 50, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1zaeantfan0a5c3cnrqls8xcf8f00u2cg6tzxvu", + "amount": { + "quantity": 633, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1gj83464taajkqdg8s27zm6mje4l3z65awzx9ttj6rjytyu9vmnt", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "448f1aeaabef6560350782bc2deb72cd7f116a9d708c55ae5a1c88b2", + "assets": [ + { + "fingerprint": "asset1aw997aazvct2dxztmpqwqxajqa6g4utvn2qhdf", + "amount": { + "quantity": 8689, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1lknz2muz9km9g85qd3g9e7jytgg0plwjeqrk00", + "amount": { + "quantity": 2484, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1wtnldel949ehxkyhhnaj33n68775hwhjznxl07", + "amount": { + "quantity": 2200, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset19eg96qaaljywv59hlushgff6asm7tpwxfw369c", + "amount": { + "quantity": 171, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1vqdp29rey08ahxhzfrxsp4ff2uqymcnpvlf54u5yunrm5zhx9u3", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "601a15147923cfdb9ae248cd00d52957004de26167d34af284e4c7ba", + "assets": [ + { + "fingerprint": "asset1a0368x8qq2wa5nffqyx936c2ugsn834z48qsxz", + "amount": { + "quantity": 686, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1qq49nymg5ptd9yy5dj6d6tdlfx7sy5yq7hwvqa", + "amount": { + "quantity": 2103, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1gsmayrfk8zykw27etdq9xl5739yu50csdre2lw", + "amount": { + "quantity": 3302, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": "policy_vkh10fnelscesqh7gdlm07fku8ummuae0gzmwqwr5dcpgyz7csxk88a", + "policy_id": "7a679fc319802fe437fb7f936e1f9bdf3b97a05b701c3a37014105ec", + "assets": [ + { + "fingerprint": "asset1g50kwszuqe93pdzed5pn0ah7jgml4kteda3q58", + "amount": { + "quantity": 148, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset16hjvrftfgmjsr0jel7lvamsqxl0na2fyvz6day", + "amount": { + "quantity": 9964, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": "policy_vkh1v3tnuay8nl9yplrfkvkneakd5hp2xmrtcu67a6nq7zu46zkqk0z", + "policy_id": "64573e74879fca40fc69b32d3cf6cda5c2a36c6bc735eeea60f0b95d", + "assets": [ + { + "fingerprint": "asset1xcz5xt2d3pxl9slzh9w778yr8vp2vfzlykk3r0", + "amount": { + "quantity": 1857, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1kj6k4n8kjfqdzgvd887sku0dqgkks006j5xj3xeglfnhzy89slf", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "b4b56accf69240d1218d39fd0b71ed022d683dfa950d289b28fa6771", + "assets": [ + { + "fingerprint": "asset1j9r7y2teq72a2wcw6etd48e5sxqjrlkxj2zcx6", + "amount": { + "quantity": 3396, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1da5ecmlg3gzt7vcpetgphrf604n0gh0j679wjm", + "amount": { + "quantity": 4657, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1zspnwgnn2d9g5826pf2pgfct8303w2as9e7jqeect3lvy57qcpy" + } + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 108, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 218, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 211, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 79, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 241, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 77, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 232, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "id": "a35949250f4f543c6712844b0b6856671627670876774df0243f795e26f3236b", + "index": 0 + }, + { + "id": "521845411e7f73135627f07c66417f482d444a54636165c51f34744b0d5dddfd", + "index": 0 + }, + { + "address": "", + "id": "cd76d15b58225071287b0b2d5f4b5ba439de3b594d0b5119550273011a773738", + "index": 16445, + "amount": { + "quantity": 92, + "unit": "lovelace" + }, + "derivation_path": [ + "12181", + "23484", + "27218", + "12675", + "19567", + "28840", + "17289", + "24709", + "12322", + "7900", + "11708", + "11402", + "9160", + "16203", + "20962", + "9838", + "1841", + "30121", + "27598", + "16923", + "16985", + "28770", + "27865", + "31801", + "3928", + "32583", + "23024", + "21761", + "2534", + "24649" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "id": "c80527b1065b713a7a3e48ce2950dd0a7e2651557a0252322347405a34319b30", + "index": 30733, + "amount": { + "quantity": 61, + "unit": "lovelace" + }, + "derivation_path": [ + "21255", + "22676", + "9444", + "6871", + "6639", + "19336", + "12502", + "23412", + "22157", + "17277", + "15219", + "13928", + "30998", + "19336", + "21217", + "27588", + "29289", + "14206", + "12474" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "id": "218976866825720259661de473433f931771847a720919020c0ea46d8a69212f", + "index": 17031, + "amount": { + "quantity": 154, + "unit": "lovelace" + }, + "derivation_path": [ + "370", + "25345", + "4208", + "30089", + "27085", + "18498", + "11813", + "32607", + "13806", + "11227", + "25797", + "12849", + "16316", + "6579", + "6307", + "30244", + "23683", + "26040", + "5496", + "27810", + "15145", + "27491", + "22761", + "11194", + "1904", + "13546", + "1579", + "18984", + "6262", + "22385", + "23936" + ], + "assets": [] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 72, + "unit": "lovelace" + }, + "derivation_path": [ + "886", + "25293", + "31166", + "15310", + "13457", + "590", + "560", + "30867", + "2540", + "2035", + "15794", + "24912", + "20474", + "26756", + "4791", + "30917", + "818", + "1823", + "15662" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 0, + "unit": "lovelace" + }, + "derivation_path": [ + "27970", + "2391", + "14802", + "9859", + "22910", + "23003", + "26408" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 124, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 83, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 33, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "derivation_path": [ + "30269", + "29842", + "31329", + "1538", + "16266", + "5359" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 44, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 38, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 49, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 140, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "derivation_path": [ + "17729", + "16598", + "858", + "924", + "29453", + "11585", + "17810", + "7030", + "10806", + "15320", + "28547", + "13102" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 171, + "unit": "lovelace" + }, + "derivation_path": [ + "22228", + "8064", + "23214", + "1986", + "9173", + "26883", + "10356", + "6854", + "7034", + "26", + "22153", + "24520", + "17673", + "15921", + "1422", + "13625", + "3320", + "19264", + "25273", + "16325", + "16456", + "31366", + "23786", + "28036", + "15428", + "18070", + "4350", + "22469", + "2252" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 34, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 45, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 207, + "unit": "lovelace" + }, + "derivation_path": [ + "21422", + "28659", + "17480", + "9579" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "derivation_path": [ + "22613", + "28887", + "28417", + "29873", + "30638", + "17921", + "21056", + "22812", + "24427", + "11711", + "30402", + "4130", + "18556", + "21292", + "29268", + "31179", + "26569", + "7768", + "14350", + "31539", + "15840", + "9969", + "7851", + "1822", + "19292", + "10779", + "18318" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 57, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 74, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 174, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 176, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 60, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 38, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 7, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 107, + "unit": "lovelace" + }, + "derivation_path": [ + "23454", + "18314", + "8093", + "23761", + "9594", + "10000", + "2835", + "27243", + "24106", + "32288", + "26644", + "5684", + "11647", + "5088", + "2404", + "12812", + "20296", + "25957", + "23931", + "5851", + "28939", + "4555", + "28234", + "10375" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "derivation_path": [ + "7451", + "22064", + "17768", + "5087" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 15, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + ], + "id": "7e5962557919654fd36010067707224e242f57522c19042e1b711745250b2644", + "deposits_taken": [ + { + "quantity": 66, + "unit": "lovelace" + }, + { + "quantity": 64, + "unit": "lovelace" + }, + { + "quantity": 165, + "unit": "lovelace" + }, + { + "quantity": 84, + "unit": "lovelace" + }, + { + "quantity": 20, + "unit": "lovelace" + }, + { + "quantity": 45, + "unit": "lovelace" + }, + { + "quantity": 129, + "unit": "lovelace" + }, + { + "quantity": 208, + "unit": "lovelace" + }, + { + "quantity": 246, + "unit": "lovelace" + }, + { + "quantity": 90, + "unit": "lovelace" + }, + { + "quantity": 247, + "unit": "lovelace" + }, + { + "quantity": 116, + "unit": "lovelace" + }, + { + "quantity": 65, + "unit": "lovelace" + }, + { + "quantity": 80, + "unit": "lovelace" + }, + { + "quantity": 106, + "unit": "lovelace" + }, + { + "quantity": 164, + "unit": "lovelace" + }, + { + "quantity": 218, + "unit": "lovelace" + }, + { + "quantity": 249, + "unit": "lovelace" + }, + { + "quantity": 57, + "unit": "lovelace" + } + ], + "burn": { + "tokens": [ + { + "policy_script": "policy_vkh1rcq4r0qtyuljzl0r7xc8awar7040zgc8eyjqdlycwe9a5jaux97", + "policy_id": "1e0151bc0b273f217de3f1b07ebba3f3eaf12307c92406fc98764bda", + "assets": [ + { + "fingerprint": "asset15dm3zxzl3rsrqs9eel9x7gypny2qflrzk6ma7k", + "amount": { + "quantity": 7258, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1g86z9sfc7kn6g2734hsgt8plrd56x84pctlsve", + "amount": { + "quantity": 7662, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fn534nlvw60qps4lvj4zuxn29t59pwd2awpq6etak92dvpqz9j0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "4ce91acfec769e00c2bf64aa2e1a6a2ae850b9aaeb820d657db154d6", + "assets": [ + { + "fingerprint": "asset180374jxd7u5z7676fg69u3nhvu6xtznl79alu4", + "amount": { + "quantity": 3372, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset16wmurdldqkswplj4s7z4k6gntxasfaeal0ypgu", + "amount": { + "quantity": 1145, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1q7qw06pp38ev5k29ks64e5z2ahht56wg9nqpa5", + "amount": { + "quantity": 8757, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1vrh0vtdsflfemavkphav28c6e35ywx8gsfc3qx", + "amount": { + "quantity": 9652, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh18w4d5ysx6sed4fjz2zuf47yrtyljk5hjt2y0q6aweeeug7suav9", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "3baada1206d432daa64250b89af883593f2b52f25a88f06baece73c4", + "assets": [ + { + "fingerprint": "asset1pv4vl00w2yc7q843e6h6363zh75e7pp6kcpfp7", + "amount": { + "quantity": 9700, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1pn4fq7jx29whfegwwxd4zn0m6wd6zklnamk4y4", + "amount": { + "quantity": 5205, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset13c2qh75uftxh78x4qz93ja4ygxsjma6ttck4yu", + "amount": { + "quantity": 6877, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1u62frr50lzga5s8j9zegzsh8erqlt2ppkcr0lr", + "amount": { + "quantity": 6696, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cf53ceqculvt4dpm4fdsre94mes3upa3pddyrj9ej05vy02jdw0", + { + "active_from": 100 + } + ] + }, + "policy_id": "c2691c6418e7d8bab43baa5b01e4b5de611e07b10b5a41c8b993e8c2", + "assets": [ + { + "fingerprint": "asset1xa2er3z8tqxrc6e5tfuj9ch2y9hky02cd0r94r", + "amount": { + "quantity": 5131, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1pgze42cdjsnpw4sty7nvueucdfzvezmkyaza3g", + "amount": { + "quantity": 6812, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1ufqs2cpjew75x2c8gdcpcyf3fg07wl3mxz6jy6", + "amount": { + "quantity": 9171, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset16ndecurzxza04gut6lpq2fu8zvyyql2ja82rfv", + "amount": { + "quantity": 8409, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1nu244jhy3l5sqgjvrvqsa9xxnzayd23pn6wzkxtx73jlwamcgks", + { + "active_from": 100 + } + ] + }, + "policy_id": "9f155acae48fe900224c1b010e94c698ba46aa219e9c2b1966f465f7", + "assets": [ + { + "fingerprint": "asset1vm64v7hnqdmnj57ucmdjzwa5eemesmxtd48n3r", + "amount": { + "quantity": 2876, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1ky3adtvgc5pxclhw62ah0f8e05z377wlm36ypd", + "amount": { + "quantity": 9302, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset12wte76da77jssnqvdcqn6zsxcf0588jdswt768", + "amount": { + "quantity": 8517, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1lukrarerysset499ys7xnrau0yu7r8sgwvzgxn", + "amount": { + "quantity": 1249, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": "policy_vkh1n78n0txp3uugntkc4szrnff88aakdtvtsnglm26cxrcmgkwszth", + "policy_id": "9f8f37acc18f3889aed8ac0439a5273f7b66ad8b84d1fdab5830f1b4", + "assets": [ + { + "fingerprint": "asset1cfy3f6cpxlywctrjhrqep3ylgmy3se42nzk3q2", + "amount": { + "quantity": 3438, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1vmw8mzaawqc50vjztr6k667f5ylx8tk3z66ypc", + "amount": { + "quantity": 1299, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1sq63f7asxq46sehz4xvu3jwaghxpnr5yqerdesr9u3m4jea273g", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "803514fbb0302ba866e2a999c8c9dd45cc198e840646dcc065e47759", + "assets": [ + { + "fingerprint": "asset1hg424gut6p4u7jnrez4meau8w5e2e5n7smxx9u", + "amount": { + "quantity": 4557, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset17ulecd55p2ckv5zdnrx4l85cyrsjc2ypcu4k79", + "amount": { + "quantity": 4233, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1lja3krzvgdp8n0rpncydsp9sgvx3dzuyzttk68pndg03s9zcvhg", + { + "active_from": 100 + } + ] + }, + "policy_id": "fcbb1b0c4c434279bc619e08d804b0430d168b8412d76d1c336a1f18", + "assets": [ + { + "fingerprint": "asset133l943el85vexey7mcgln3dee5cn8wynmk47nz", + "amount": { + "quantity": 2425, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1s4awlgzrvusluz4yqx8h7ag070ca9n6u7q28wq8u0w9lgu5gtfe", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "857aefa0436721fe0aa4018f7f750ff3f1d2cf5cf0147700fc7b8bf4", + "assets": [ + { + "fingerprint": "asset1q7awmhl4e83z2msgn0z6awwka3x275rnwnuw2h", + "amount": { + "quantity": 1150, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": "policy_vkh16emm8857s8cukj8lzz4wnrq7g4trrjuqfk606uragmqhg4926pj", + "policy_id": "d677b39e9e81f1cb48ff10aae98c1e455631cb804db4fd707d46c174", + "assets": [ + { + "fingerprint": "asset1a9pcwse89cndnpam0tj33x6lyacqt4jpypqx66", + "amount": { + "quantity": 6906, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset18hs7384px9ja0amha84nv76x6dzynd39pj8tjx", + "amount": { + "quantity": 6931, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10mrqamcverp6juuxgpy6umv32mehl4ugqmtazwwdkc4sv9u8aap", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "7ec60eef0cc8c3a973864049ae6d9156f37fd78806d7d139cdb62b06", + "assets": [ + { + "fingerprint": "asset1p52u4rlus80h244tec9ahl9f46hur3wrc76elc", + "amount": { + "quantity": 9397, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset10kp57w6mg4arn7a8l9jsh3x8klejcczx39pjdk", + "amount": { + "quantity": 8161, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1hqqh00jzuk2pvdtj7xaxuxcc5r4tksuaedez5t", + "amount": { + "quantity": 5970, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1uu70c8e5gnp64rckqjd9we25hwjdqjm2lqq9ygyqm3e9wzwfuhv", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e73cfc1f3444c3aa8f16049a576554bba4d04b6af800522080dc7257", + "assets": [ + { + "fingerprint": "asset1ss00h0r62wd5qlratu2ej9qxzkdn2r4dt5xtvg", + "amount": { + "quantity": 8873, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1sr9nd9z877jvaz20kdldzcy05z8xzk9r7pcp90", + "amount": { + "quantity": 2932, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh19v2vp03mdtsxpun3yyn4dh4vlnmpc0zzxccwyfcsxltwj5uzfr4", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "2b14c0be3b6ae060f271212756deacfcf61c3c423630e2271037d6e9", + "assets": [ + { + "fingerprint": "asset1w6fvsuj5hme4y553f4pcerdn40tqpxcc9rfe7l", + "amount": { + "quantity": 3908, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset12pv5wqv6t4te05nh2g6wlcn0tmqt9ku08vhglu", + "amount": { + "quantity": 957, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1cscujl87hkkjf9upjrq3a2wu809ussdxpnrjjk", + "amount": { + "quantity": 5359, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1j8mtljl3z7qkaamt8tpv29tfg4fyy4uqdhyftv", + "amount": { + "quantity": 7249, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1nyc0kavyzzjldk2ws4s4nvx56ranz8vddl75dxj2dqfekk452ar", + { + "active_from": 100 + } + ] + }, + "policy_id": "9930fb758410a5f6d94e856159b0d4d0fb311d8d6ffd469a4a68139b", + "assets": [ + { + "fingerprint": "asset1d67pvr65kmxztp4nnch9avjs3e8h0xcjcsrdnn", + "amount": { + "quantity": 2365, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset19x257a9hax0a84ejrmjkhjrdzrevgx80zr78nh", + "amount": { + "quantity": 2794, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset12prwdp5luzkddz523hx026jclu3phtm5celtwn", + "amount": { + "quantity": 4715, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1rezdwrzqd0usy7turg6ekuh553fm2k744ww7ej", + "amount": { + "quantity": 1056, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh156nqt89p7vq7tuqhz6lzvf5zgkzk3nw33r2my85kajxqugsrxhh", + { + "active_from": 100 + } + ] + }, + "policy_id": "a6a6059ca1f301e5f01716be262682458568cdd188d5b21e96ec8c0e", + "assets": [ + { + "fingerprint": "asset1gwlrxvz5jyycl3jsgj6d9g0cquxaj240nrluan", + "amount": { + "quantity": 1870, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1c8cpy976v5ku4dx57u65993ks6cf3vlarzxj6q", + "amount": { + "quantity": 7887, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1vket9kkd5egse5w5578zg0y7df98s8umgu7u88", + "amount": { + "quantity": 1618, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": "policy_vkh19lx5t35fl8csx0pzyr7f7vm32pqqa866pm6g0ldcupzy5dstj88", + "policy_id": "2fcd45c689f9f1033c2220fc9f337150400e9f5a0ef487fdb8e0444a", + "assets": [ + { + "fingerprint": "asset1hd4c63chgnmch2vf33ewupc2av34nrkcy96x6x", + "amount": { + "quantity": 2024, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset18c5l0a3zggd8sft5k68zvaf3d4d7wngasll8c8", + "amount": { + "quantity": 4021, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh18e3atjdlnlmtns4dt8935fpsnszemjp3m0k2rr7lcv3p6hfwt05", + "policy_id": "3e63d5c9bf9ff6b9c2ad59cb1a24309c059dc831dbeca18fdfc3221d", + "assets": [ + { + "fingerprint": "asset1p5zmk6x0anpm0lym3syaeun08tg3dd4pq60y3d", + "amount": { + "quantity": 2706, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset18e0nly88p34h97t90k88e2jep44l8hrvmgy2d0", + "amount": { + "quantity": 6385, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1ygg0p2yxff08jpsd3erlle0789tjal0s86kg5a", + "amount": { + "quantity": 4280, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cj8lsqrd2g6aj3vswgy8xx3ede3qrakw0xf4ya5u3hjuyd0thay", + { + "active_from": 100 + } + ] + }, + "policy_id": "c48ff8006d5235d945907208731a396e6201f6ce799352769c8de5c2", + "assets": [ + { + "fingerprint": "asset10zdmwtl238xhml5vc3zj5zyt663gy3597dhkyd", + "amount": { + "quantity": 7890, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1aupfdyu2ddjxugy8y3cmrnmnx9g2lx9q3j98g89san9n6v3efd3", + { + "active_from": 100 + } + ] + }, + "policy_id": "ef0296938a6b646e20872471b1cf733150af98a08c8a741cb0eccb3d", + "assets": [ + { + "fingerprint": "asset1d569cq36yfcyshwl4drfgcyzgfxhpz7e66wfeg", + "amount": { + "quantity": 6590, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset190kgm4qnckpltu0mc8m785p3xq2dhnwrdvnj34", + "amount": { + "quantity": 4022, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1j3msglfa8wlx4czsxqjuwet2j5fywv68axezsu", + "amount": { + "quantity": 7337, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset19m9nf47fumlqndwwf4gz0rlkdy9hfz6lls40gp", + "amount": { + "quantity": 6618, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1w3jjeheutagry4rsruuscec4y3v52kt3g9pz5ucjrsxyw368x9kqu8sf9y" + }, + "fee": { + "quantity": 48, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "deregister_pool", + "pool_id": "pool1a8kh832xp0eyd75r0ye60zqhaqhq5whl2rcgwdg6pnav2fll06k", + "retirement_epoch": 29842 + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1aysqa66g2a8l65xxd4dzevn5ql809lk2elzcpc7r4j5kz33n8pp", + "reward_account": "" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1zacvq9hl27kh6dzljnumq6vknele7xl6tj06l76ducx3xhlktja", + "retirement_epoch": 8846 + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1dhjydc3c3gd6005l8x5za20j7pjspflzafars0ywg753vlrzcg0qnuc85q", + "ed25519_pk1klylekff68axzpg2thy5yhzguh9ddygelz9mt9nl8em3lth3et8qhn3xlp" + ], + "pool_pledge": { + "quantity": 57, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 89, + "unit": "lovelace" + }, + "pool_id": "pool1gc4esj73kktzwg8zlgn83vxukd83n2r45fjyk5n8qkpqs0akvzy", + "pool_margin": { + "quantity": 59.82, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1t6ptc6exsn0hfha8mxwucs0mxhemy499lumzx7x2cllhh0a98xqs2ew27a", + "ed25519_pk1ur46svcuvmupmpmd7n2qmxtr5csvp75swkjaq8j2fc2epn0tqzfqlwa5xw", + "ed25519_pk15ef3jegwq2ydk6mu2m5sqwar5xrzg5c3wkvj352ts6rc7t2apmgqtc7akc", + "ed25519_pk199x35umkahn6lu6uyzpt2p76ms35pqefmgeqe5a7ac52llzqvm3svdlmuv", + "ed25519_pk1cf8gvuv2eawad4saw46ywv66v44svy3fq238c2fg5qla8xsykugqsyt9f9", + "ed25519_pk17qndccjf8r344efu3u6wcr8uul053m99z6st6q99qtl2j2fclraqq4jjgf", + "ed25519_pk18zq6syrv7akywu798xnq8uvh5pkegv6x4pdcs4uwvh79qv98j73qyndqrz", + "ed25519_pk1aatk5y4u5x866eyrrx7a6g5vnktaq8zvwtavx2mq3mgq6gjsr4cs57rmal", + "ed25519_pk16a45qdvcyy2sr38jf3xz9ufxvuhf6x7gg6w743v0cnxh7pcrhdpqe3934s", + "ed25519_pk16x9kxh58hkdj6f6znppjd52njzyzufkcmksj6h2yev0v2e5rz0hq9d2vsw", + "ed25519_pk1utjrpx023jp48rwvgj0s83a4rcqjz4q8uawhtx6x7aj0e789mfvsuxry8f", + "ed25519_pk163u2e2lzk6n7ukr7uxp82m5wgr5yp53e6pe3pqlddxrmwjvl679shr2w8u", + "ed25519_pk1hxal22xcag0l08nnpq2zl4zdcg9wt4j3mj9rxa6ygk0md3xlypnsjnlsrh", + "ed25519_pk1yk56urvexsq4eeezu2808e5q8kz6stwnzxvxcluehz95jfuaxq9qpwrk40", + "ed25519_pk1hl53t753t7z7rlka5ynfndvrkhkv37l46p67jpcr4l6ay34t6ccs6uptqp", + "ed25519_pk120pjeeeyygvd5x2w6mst4xtve64ref02fphs678tw28mugv3wxjsugrexh", + "ed25519_pk1jpt748chm8ljeypk23wy9sqfz8mdgpjczfae7sj88pq0wx37ulvsfwm5sg", + "ed25519_pk1yynjyme7ewjqaf2ma0zw6ewfd73nd4gjefgje2adcg9dpgur8zuq2zcls7", + "ed25519_pk1j77nsj8c753ycusr0m7gulree0gst7znunqm3tjrnkzgjvaa63xqhzek7h", + "ed25519_pk1apm5p4qxfgvag7kvfqsj7m4dvual8l0mpw5p3dkqwamm3cnh964syx7kxm", + "ed25519_pk1cjpz3cr4syqtcuke343k0cfx9g3edyvx92u9tg446e58nyqxlpwqkpzd0d" + ], + "pool_pledge": { + "quantity": 124, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 159, + "unit": "lovelace" + }, + "pool_id": "pool14l65un38tcwfrgdret46c4s8nax6te9fu4uxe87utmzp53u3xl7", + "pool_margin": { + "quantity": 1.93, + "unit": "percent" + } + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk103fufwr64gr9fe2es9suq6y8w7wremcx6dsalnf5vnt4997rzpesw3expq", + "ed25519_pk1v33n4qr6a7ynt5jx4pw2enqhm0jt4yegkwrexy8cd4whne37tzsqzys4c5", + "ed25519_pk19ke7eww99rt62ksyqwuyaje9szj3w0emuewp746n3eazlp3f07tqz9p0hw", + "ed25519_pk1xu0ftqxq06snlg60jxwkxa5cqfkap66cdn83xpy83nl8pnqvnlzs5jydr2", + "ed25519_pk1z6kl2zz6fnf0djqs45pwzw82yqrc6rwh39rgkzvychlum8q9kljstxqmg5", + "ed25519_pk18lpz2ka7gvehpfpxmdlfgpxhjceka8fa80y5j2lq3x6jlmmzkgmq7ajw09", + "ed25519_pk1vzuvlrwzmx88z4ha8fksaneawqznpc2ttnnzrrnwefyrewxygkestddhqa", + "ed25519_pk1gw76790hy9ymz7cxfsu83ugnpekzcmleyvpxvq5hhr9ugxzs5z2qanezy7", + "ed25519_pk1flfdnymunep3jtymw027nysqfq2c89g4tf2fhjralav2xrnxsg8q3spppy", + "ed25519_pk13tx62gemgv9vsf7dces7kxdswvgw6dlg2lmt4md6l76w2hpsu09sg86ts8", + "ed25519_pk18n6w3syvwq405tehehlj5pm7yhv4pnjr0dxf7nypfp8yp6ck90tq6qefs2", + "ed25519_pk1s87wj7tuwqmdl7urlyc45c92vweqwsghlulcz8yy3y7maezz6e3s4ex0jh", + "ed25519_pk1j33ptumxfjlywkmmynu7wyezmapzhfm4zccppjuszvy3c3dwc32qscn5sd", + "ed25519_pk1gzp9l2g07kmh7a79t3nvp7fhmnuqhp8ugw7zkehjw7xxsqsv9edqedln2r", + "ed25519_pk1k9l0355wxx7f85m88gm6kahkeqg90gsncm87u4pfg0vcf64sk6lsrnvm4d", + "ed25519_pk122hd8pyaqpk9pju0uzj2ldlm3sea4easzkq28mj6s9tw96gta7mqkc4d3p", + "ed25519_pk1w7cqw9p6e0hkynsnc3j3v7s40j82clefgd6rxwulj2purczrq49qg2wu60", + "ed25519_pk1d8t9dj2ue4esja2jpkfrht9cd5ddxtzudn8268907fqnrat7mnwqtj5ctw" + ], + "pool_pledge": { + "quantity": 141, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 206, + "unit": "lovelace" + }, + "pool_id": "pool1y9wypq4exw0pdcdjr7zr895dzy5anefxf94wykr26ev4uwtekm2", + "pool_margin": { + "quantity": 55.14, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1qlexez20zpaeefzlfhzs8d2jyeq0vy9p4urfxexya0kh604lfzes4a8wyq", + "ed25519_pk1yeak0hzfhx62zccp3ccw9tpctyx33uthxm06tkpve5f9f8wx0rssa575hn", + "ed25519_pk1cn2jgeed6keqspjua4zu26yn9vulr609wk9j73mf87ygu5ued3jstz0sl6", + "ed25519_pk1hxcr6vfr7tla4yaktt05ppudstq0cjgrzsztamay4h3ly8qtggjshr6tyz", + "ed25519_pk1lhjulw3e0lestmac3gas48u2e05lxrvry7x03ekkdsefr52fp0ts0ajj3a", + "ed25519_pk12wgsq6yjppaj87mv27q7z53v5w3u82avegzqkur2v08kak6wrnyqqhu55u", + "ed25519_pk1zugryr4a4e3xrd5dj4sl5tw42mhjv96vp9qlqp5kv2wmr99pgqxqf56d9e", + "ed25519_pk1m8h2fxn6qq9waxuhjsnw3zye8ys8d4hfcwem5c24wk7t98u8kmes4k908x", + "ed25519_pk12w8z27ryg23z00667hdl5lyhkur36spke4tgafcdhg3vmmq80geq57rzs4", + "ed25519_pk1htgnu5skw8e4fnkhstxzy4ztcr0nhaj0cfej5xv3mrjmpxyalemqjvq6uq", + "ed25519_pk16ljywlxhe9hd9fchedt70pae9smseu84mayc0hhrp9z5s5yp2g8sjf02lj", + "ed25519_pk1hdc2jyfl00gezpq4sz3qdl2gssvhnjdkyhlaqdwn4e9vt90mhpcs2ywtr3", + "ed25519_pk1sy8r5xflwlehssdl05maukgtw7ckwpw3pavmrvhffjeumhf89e8q8x3fx9", + "ed25519_pk1xwu37uac8up830y3xddepyk4kk07hdshzvuprtmpmmvdp67zrl0qy4zs4v", + "ed25519_pk1lldap5vp6nrnhj2sftxrmqqm35gvdku4avr74tpyuulmyk2p230syfn60s", + "ed25519_pk1kvst37y0adu33y2yu6qmqj9llv32qdffnqjc33mus00ykjnj799sukwk0h", + "ed25519_pk15pceh70uzgwcr2qjz7fqfkzgap2awdw2rjlzpj42d96etsnnkgvq8h8gvl", + "ed25519_pk1kgfjcyj7j8ypw4c26lepyg3yxhdd5mpav3mtrweu68rxvzedqxasy4ytag", + "ed25519_pk12zf6wj583r5fhx23g0h9j3gse2cenfvutarlfda8ljwlt7a783cq28q7kr", + "ed25519_pk16kvuajkguar228ygr52s9fey5a0vm7fx8ekgx30yv9jlj37k9h0qmthgtw", + "ed25519_pk1sdzqge4dyjqs7p2hl7urckastwx5c2r2thrt5czcuf8r36v4cwas2mmuvg", + "ed25519_pk1lw9fdkzz22adkswwrh8pet9wask4qmyyx68zvuda7zj8hxur6wtq3lal2a", + "ed25519_pk1n6vwq5tlc9hesw4p7r87t4ryydufwkhjprmqnw5t99fk7hyl4v9qvtvfhy", + "ed25519_pk15mauuz80lsldukh4wagkayrw6rn2m2cqrltvcr25qwchuwxn7fxqhvejty", + "ed25519_pk1j6ukx3ncvfwy5fmaqgnptd0n6mm3raklp353sydu0julz9lx0ajsfw4avv", + "ed25519_pk13380t8nd4w9rers0vrc6kw6xyeyw9kvj5srhscdjna998yx97u4qtxx9nu", + "ed25519_pk1aegep9wsmqcxxzjexv4pp5a54nkk47njsh7dhxhcqf2tqasd3ueqat8t8p" + ], + "pool_pledge": { + "quantity": 16, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 201, + "unit": "lovelace" + }, + "pool_id": "pool1utr7mkyjmfsfjyq07xx0ygqevzfua6m26uqaq5w0c4qvwnrxq8a", + "pool_margin": { + "quantity": 27.9, "unit": "percent" } }, { - "certificate_type": "quit_pool", - "reward_account_path": [ - "17202", - "14797", - "18446", - "18739", - "8391" + "certificate_type": "genesis" + }, + { + "certificate_type": "genesis" + } + ], + "deposits_returned": [ + { + "quantity": 222, + "unit": "lovelace" + }, + { + "quantity": 147, + "unit": "lovelace" + }, + { + "quantity": 152, + "unit": "lovelace" + }, + { + "quantity": 65, + "unit": "lovelace" + }, + { + "quantity": 181, + "unit": "lovelace" + }, + { + "quantity": 22, + "unit": "lovelace" + }, + { + "quantity": 130, + "unit": "lovelace" + }, + { + "quantity": 251, + "unit": "lovelace" + }, + { + "quantity": 73, + "unit": "lovelace" + }, + { + "quantity": 224, + "unit": "lovelace" + }, + { + "quantity": 179, + "unit": "lovelace" + }, + { + "quantity": 228, + "unit": "lovelace" + }, + { + "quantity": 61, + "unit": "lovelace" + }, + { + "quantity": 38, + "unit": "lovelace" + }, + { + "quantity": 220, + "unit": "lovelace" + }, + { + "quantity": 126, + "unit": "lovelace" + }, + { + "quantity": 38, + "unit": "lovelace" + }, + { + "quantity": 145, + "unit": "lovelace" + }, + { + "quantity": 220, + "unit": "lovelace" + }, + { + "quantity": 118, + "unit": "lovelace" + }, + { + "quantity": 77, + "unit": "lovelace" + }, + { + "quantity": 0, + "unit": "lovelace" + }, + { + "quantity": 107, + "unit": "lovelace" + }, + { + "quantity": 187, + "unit": "lovelace" + }, + { + "quantity": 24, + "unit": "lovelace" + }, + { + "quantity": 250, + "unit": "lovelace" + }, + { + "quantity": 199, + "unit": "lovelace" + }, + { + "quantity": 126, + "unit": "lovelace" + }, + { + "quantity": 101, + "unit": "lovelace" + }, + { + "quantity": 170, + "unit": "lovelace" + } + ], + "metadata": { + "28": { + "bytes": "4d4f792837776831035602d9656847491845112538fc5a3a2a5d7a07fb0c581a59293d1d72192a" + } + }, + "collateral": [ + { + "address": "", + "id": "4007c001c54e2d2df11a560e127e5a25275d18522d4f4f38540c2f61ec28265a", + "index": 9630, + "amount": { + "quantity": 243, + "unit": "lovelace" + }, + "derivation_path": [ + "16574", + "23788", + "14198", + "13425" + ], + "assets": [] + }, + { + "id": "d387661e1d3d591865324a475d07701f6a4e503c193af0351f0046721333197b", + "index": 1 + } + ], + "mint": { + "tokens": [ + { + "policy_script": "policy_vkh1qu0xephva2ecz5rp9zhls4g8r8h94r5d3c3t5vv3qcqdz5z8c9m", + "policy_id": "071e6c86eceab381506128aff8550719ee5a8e8d8e22ba31910600d1", + "assets": [ + { + "fingerprint": "asset1uemxscgu9xst3fv26jyn85tpkcc9p057mrjuyx", + "amount": { + "quantity": 7547, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1fsar6v2c24cgea48w50zk4wfyrgdqrw25t5c64", + "amount": { + "quantity": 5163, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1e264d72zna7wp5y4zwtgzk2uafdfmqq4m7trv7", + "amount": { + "quantity": 6800, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1skauww4mcct5eelp5unc9ypwy42rqgjzlkfkrj", + "amount": { + "quantity": 6922, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh1y57h9xmwxjkt0h3el7d9hlymh8qq34602gprdez9xjzjzywcpkz", + "policy_id": "253d729b6e34acb7de39ff9a5bfc9bb9c008d74f520236e445348521", + "assets": [ + { + "fingerprint": "asset1fvgc4m06rd82vh33faajc5esvrkv4tz0uxcht3", + "amount": { + "quantity": 3882, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1cenrw866quqzzs3djls5tfxwlfgv9d7uu6ddl2", + "amount": { + "quantity": 3560, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": "policy_vkh1s9mhheh28zef2eq7u6j557aez9kz80qlk7vqw5t6uk2g7c903ps", + "policy_id": "81777be6ea38b295641ee6a54a7bb9116c23bc1fb79807517ae5948f", + "assets": [ + { + "fingerprint": "asset1a8kkdc8nflmwpg7nrfqrc8yn7xdf6mn6uh2ajk", + "amount": { + "quantity": 8011, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1vgx67ae785dk9w237fwvw3wa7fetrk7r2d2xhg", + "amount": { + "quantity": 2681, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1hxddv4y6cpmgyeczym5lss6g6ww46aag8xxsn7", + "amount": { + "quantity": 6436, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qgfp5ywacdzw90rl6nwx50xfxhu2tm8a3mxjr7nxwfadw4enynw", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "02121a11ddc344e2bc7fd4dc6a3cc935f8a5ecfd8ecd21fa66727ad7", + "assets": [ + { + "fingerprint": "asset1rn6u7scdjc3e257q4w34ejgde8hxpscaq7xpzp", + "amount": { + "quantity": 3698, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1f90n4k5mlcmgn8cptxxrv88ed3fhqfjpm3wsk7", + "amount": { + "quantity": 1776, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1zfqcgtjkaj75593qsczza8ete5msfm9y5uwk47", + "amount": { + "quantity": 6702, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1se7sdax337fpe45umlul9kqwl49ceyrymsm7x9sw3rpzvdnzvhe", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "867d06f4d18f921cd69cdff9f2d80efd4b8c9064dc37e3160e88c226", + "assets": [ + { + "fingerprint": "asset12a2cl0x8vg652eawy5ykqsygfy0crcvu0eszzh", + "amount": { + "quantity": 2955, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1lsc3gzzypgnwjngtctvl7lzh7at3q3hhnegzc7", + "amount": { + "quantity": 3034, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh14jcs6f334kgqxeda5zsvaywqkrwctlcrpuduletwnqqe5l447mh", + { + "active_from": 100 + } + ] + }, + "policy_id": "acb10d2631ad900365bda0a0ce91c0b0dd85ff030f1bcfe56e98019a", + "assets": [ + { + "fingerprint": "asset1c3q0h00chvcv8s5qg5hcd6y2yfr954gcx4h0hm", + "amount": { + "quantity": 367, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1gqtn4kdltupc3m6g50j36zffahpuzjcdytcwye", + "amount": { + "quantity": 5701, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1f030thf5puw5syhg8cg35ddh72ysg9x49yqzkn", + "amount": { + "quantity": 6504, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": "policy_vkh1lah389h7zsstazvpna2zyhejl7jhgdzf5u4caqpt5q7hwlk4lej", + "policy_id": "ff6f1396fe1420be89819f54225f32ffa5743449a72b8e802ba03d77", + "assets": [ + { + "fingerprint": "asset1hwpkk0nkgtrskzwg7fdy760f74qdfurvaedl89", + "amount": { + "quantity": 950, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1ujdrvpa96m25a8zldmlfqccvhnc5ze22telsnv", + "amount": { + "quantity": 3713, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1ypvkca4pj5et3nfqg867xw5u620llc58xp7w6gzfy320ypwh4wz", + "policy_id": "20596c76a19532b8cd2041f5e33a9cd29fffe287307ced20492454f2", + "assets": [ + { + "fingerprint": "asset1kxsae9cjavlemhnp69v39t2m2k8npcwz65pwcq", + "amount": { + "quantity": 8906, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1m3c560yv0r54w9mn4ulaca9zaujc72r0xfhccuts8t75xv72fy6", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "dc714d3c8c78e9571773af3fdc74a2ef258f286f326f8c71703afd43", + "assets": [ + { + "fingerprint": "asset1rgnhtwr5efus70g76m2rr0dtnve5jgyfwec9d0", + "amount": { + "quantity": 7786, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh15fr0vdtgsqdu8e5ccuz3mtmchcpx863cudkr7jqdfuussuh3wua", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "a246f63568801bc3e698c7051daf78be0263ea38e36c3f480d4f3908", + "assets": [ + { + "fingerprint": "asset1lpjg5pm4umsmk4fnpf7hvp93p54hggkyrjmjv8", + "amount": { + "quantity": 666, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1qnkehewetnp0zej4fmtke3dl07hx2yhexexe7z", + "amount": { + "quantity": 6627, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset14fg7gl80t4yasktznmdyqcalpqttphey0rt076", + "amount": { + "quantity": 2805, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1n2rfhym0s5rwj8f4tgfkuujvwp4qh4awlgqdnn68vvfquj78azz", + "policy_id": "9a869b936f8506e91d355a136e724c706a0bd7aefa00d9cf4763120e", + "assets": [ + { + "fingerprint": "asset1e03jqcyljnmkmucwaknm7zmpkukry7ey3elyc7", + "amount": { + "quantity": 9116, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1p7ne2j65edarlr28c9eq0ngk2j0wtglg44m7fg", + "amount": { + "quantity": 6905, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": "policy_vkh1urhypmu9rq7m3na8s52x7yd3mma85fzkse9wz269myv2wjc0r5m", + "policy_id": "e0ee40ef85183db8cfa785146f11b1defa7a2456864ae12b45d918a7", + "assets": [ + { + "fingerprint": "asset1azlyxmgk5es5fc6gqjh0tznxttspq02au4rqhq", + "amount": { + "quantity": 5597, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1tj6v4pzt8s2jlq36gvu56njpjfvpmx2jn809cy", + "amount": { + "quantity": 9829, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1rzy565rgzdxhrl7uvpm8xy38h4zsn02y7u7pss", + "amount": { + "quantity": 7585, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + } + ] + }, + { + "policy_script": "policy_vkh18z2wfq4f5h9uj20gprcrkjhdxpx85e88cw7syp6t8uljqemgj8r", + "policy_id": "3894e482a9a5cbc929e808f03b4aed304c7a64e7c3bd02074b3f3f20", + "assets": [ + { + "fingerprint": "asset189v8g3qt44vtldjsknq3u6xq6zke332u344xnx", + "amount": { + "quantity": 6929, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1h9v9umqfycfwa3fvvuv6v7y2dlc8lnkuhqrk6v", + "amount": { + "quantity": 5424, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset16ar0qpeqftawla6ksazz23cd4qxwrzre6pgk6q", + "amount": { + "quantity": 3322, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1rm95pkx4t4lk8rs6r3qfh38rkvurehmmgk5yrt8vu34u6gp03cw", + { + "active_from": 100 + } + ] + }, + "policy_id": "1ecb40d8d55d7f638e1a1c409bc4e3b3383cdf7b45a841acece46bcd", + "assets": [ + { + "fingerprint": "asset1v2x43ey7s2z0evnapzxmq636sxvln4cwe4xys7", + "amount": { + "quantity": 8297, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1paeyq6x9cyskn2f9rp3e4cekd5gnwpcva4z9rg", + "amount": { + "quantity": 2376, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": "policy_vkh1hkscafg2w944l3cx7hhdq656ntm6lktxe4erc5c4etqn6ntyg7d", + "policy_id": "bda18ea50a716b5fc706f5eed06a9a9af7afd966cd723c5315cac13d", + "assets": [ + { + "fingerprint": "asset1njppee6l76ywn6sx7wrelwfft2jgqsmkk2ad9l", + "amount": { + "quantity": 3194, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1jupd6j7l8rtm7pw0y8jclcrlgvdj9rzyche4zq", + "amount": { + "quantity": 9697, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1m4k093pz3j0hsfk77s4rc8xgzeuagyhwexnk6j", + "amount": { + "quantity": 4094, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13n34u7vqgnjf7upr0mqhmulpeytkzxyn7dzewjlgz7qwjea0460", + { + "active_from": 100 + } + ] + }, + "policy_id": "8ce35e798044e49f70237ec17df3e1c917611893f345974be81780e9", + "assets": [ + { + "fingerprint": "asset1f6w3pv4nhzrk8g4fuxlhmuhj4m9q55eut0m77t", + "amount": { + "quantity": 4650, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1r4qh620kxpd73jmhasnfqjg5yqj504mjykprsl", + "amount": { + "quantity": 2788, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": "policy_vkh1k5wypdl75wn3w3cafgrdpfpzg0r062kvnv8f0f8haee566sdy2r", + "policy_id": "b51c40b7fea3a717471d4a06d0a42243c6fd2acc9b0e97a4f7ee734d", + "assets": [ + { + "fingerprint": "asset16df50m6u335n8a7z780u5q4gt6k2xrehlu0lch", + "amount": { + "quantity": 5415, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset15lc8lsse44927t4xsmnhegpqq8xqdj2ugpgvn9", + "amount": { + "quantity": 1761, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset19f55g0cxagu83da0q85vjjg5g0pfrenymmhexy", + "amount": { + "quantity": 538, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": "policy_vkh15lqjeal0wllj8zs9wvhc9p3rvghpmh8384ckc3un7vcy2la8nt3", + "policy_id": "a7c12cf7ef77ff238a05732f828623622e1ddcf13d716c4793f33045", + "assets": [ + { + "fingerprint": "asset182cx8ls0q08txdx2z77x0f6mjjylfvn39j8yzg", + "amount": { + "quantity": 8030, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset13cshndkt7htc7d65tfxqxmr8xe32t0vcnamdxh", + "amount": { + "quantity": 2565, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1272ep9w8j3hewq6wwyegfzt5lxam530df3qqer", + "amount": { + "quantity": 1360, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh1xvz74wjhhu5kr7qmzxph534l50hh9k490px8kwmnn09aurznj3h", + "policy_id": "3305eaba57bf2961f81b11837a46bfa3ef72daa5784c7b3b739bcbde", + "assets": [ + { + "fingerprint": "asset1t2jpajndk6ugj0q2fq7sw6nnze8jx7sylvsgzt", + "amount": { + "quantity": 3732, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset138jdxfsmg5xwf4mtyj2yg36ss2kx629flefrj7", + "amount": { + "quantity": 5157, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1s8vjqsg4f7zk0jegfzv0xnezpavd6gx9m3jdts", + "amount": { + "quantity": 6433, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset17shuj7ny409npc2z38k9hs8y7tf23a8mcug2lm", + "amount": { + "quantity": 5936, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1kg9pm485l5pt6lyz735upfh6spunezkput8e97fr5v3a5nalu26", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "b20a1dd4f4fd02bd7c82f469c0a6fa80793c8ac1e2cf92f923a323da", + "assets": [ + { + "fingerprint": "asset1nkt06z47ap4w6dufyjsg8n7kllzl23fckefhky", + "amount": { + "quantity": 9426, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1sy4wmprzl4p4afwpa7nlwt85ds9mj9cppq7vhl", + "amount": { + "quantity": 8970, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1er63zryv2h7lad3mrgv6zxfxdgwkc8wstuj8x2", + "amount": { + "quantity": 4769, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1da7lcrua6wu3x4y03kuxmywsuj48xwgrfclkra", + "amount": { + "quantity": 6197, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1cdeeu0948nlz8cth496ejz6ggdcp495rrcgm5dcysmyruveve6y", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "c3739e3cb53cfe23e177a975990b4843701a96831e11ba370486c83e", + "assets": [ + { + "fingerprint": "asset15pg9ld9cqf00kelx3hqt0sjyvedsdg9ghghkmc", + "amount": { + "quantity": 6985, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset104rdcnzha8t5cugtckr50s5l7uxh2trv72rkg5", + "amount": { + "quantity": 7944, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1j3uqw463zgx7l6sn4v80hzh7nh0n2h4p3924z9", + "amount": { + "quantity": 3204, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": "policy_vkh1eesmah7nlfc7ecmqdywl64nxrne8c6v3xf7ymxw9jcne6tssg9d", + "policy_id": "ce61bedfd3fa71ece360691dfd56661cf27c6991327c4d99c596279d", + "assets": [ + { + "fingerprint": "asset1mtxj7unkej3vj0xaj26rvecc2k4m50343k6mzx", + "amount": { + "quantity": 7188, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh1wy4ch02tajl9avkq6dl9jq9ymy6jxayhzcsj22rnzltnj9wyta0", + "policy_id": "712b8bbd4becbe5eb2c0d37e5900a4d935237497162125287317d739", + "assets": [ + { + "fingerprint": "asset1qv3xyxt5vygalsnmkpr5m6weykzszlgt7g3uwh", + "amount": { + "quantity": 3612, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset174fm7wnpz2hdsnwt8k6at6y2gswjq32ww3n493", + "amount": { + "quantity": 6115, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1ay36yxaevvv33sazz5hxqzp65euvytylqxm4n7", + "amount": { + "quantity": 1606, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1rz7j44gx2s54cv53m30qf4py36qfsdzk4d7xef", + "amount": { + "quantity": 829, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c3hgp0a9xqu8fzlegm9n2025y9kka2vue4nddtm3fezasscp7ql", + { + "active_from": 100 + } + ] + }, + "policy_id": "c46e80bfa53038748bf946cb353d54216d6ea99ccd66d6af714e45d8", + "assets": [ + { + "fingerprint": "asset1j5kh2nh776a7897tp5ywgv3sdqwpjg6lpvstv3", + "amount": { + "quantity": 873, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1t5p3sz3qnfuerlt30nrmkzxppefa8c9m9awq2dls4mkrv5vzrze", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "5d03180a209a7991fd717cc7bb08c10e53d3e0bb2f5c0537f0aeec36", + "assets": [ + { + "fingerprint": "asset1k4mfngtn50t6g7xfnzylvk9kumd3yhjkne9a2m", + "amount": { + "quantity": 7474, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12g4w70z64xag78yd7fmca6pvv4cyk5v05yrrsrzewcj32fy2v7a", + { + "active_from": 100 + } + ] + }, + "policy_id": "522aef3c5aa9ba8f1c8df2778ee82c65704b518fa106380c59762515", + "assets": [ + { + "fingerprint": "asset1hwme40utkd8886dqj5wryau9xykrng6z04q0z6", + "amount": { + "quantity": 647, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1q7d8t6duadg56nymlp9n9qypw03jdpkal4kdcm", + "amount": { + "quantity": 2107, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1darmhhng98229pg4ygmw6x6mfuhh8xjwkr43fz", + "amount": { + "quantity": 3102, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset14d96sc2vhdcq5ja7ak3zf5qqvtlp49t40lj5vk", + "amount": { + "quantity": 4794, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh165ns2n4wdr7ecz8xyem0qsz8fuvryx9hdjd9gcqesf7mcteehck", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "d527054eae68fd9c08e62676f040474f183218b76c9a546019827dbc", + "assets": [ + { + "fingerprint": "asset1mldhpuh87smadtf9muwpcmqefmsmhn0pmrfrwe", + "amount": { + "quantity": 2316, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset15llcweaapg68pqs6twn6ckfav9kn7xwfnvpsw8", + "amount": { + "quantity": 8353, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1ndd00s54w0t6l7msen8vcgy5ms5tcqn50u7xuv", + "amount": { + "quantity": 9177, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh19ydr5zpraafsacn4fwwp47rq6ru3sus0d7q9ffgrgnfr5hv46pp", + { + "active_from": 100 + } + ] + }, + "policy_id": "291a3a0823ef530ee2754b9c1af860d0f918720f6f8054a50344d23a", + "assets": [ + { + "fingerprint": "asset1dnw5td4h0tja7des9kw0nepu7dlffmsl6k7pgu", + "amount": { + "quantity": 902, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": "policy_vkh1s0xgq5dm0guxhhv8hm9206p9xmw3yl8xt7rfuvydr6tr282qg4x", + "policy_id": "83cc8051bb7a386bdd87becaa7e82536dd127ce65f869e308d1e9635", + "assets": [ + { + "fingerprint": "asset1zvl0zqamfqkeu4dy90t4qrk47n8ug05md7myuy", + "amount": { + "quantity": 3217, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1j9lul0sqfpgnpzx3ksaahvg08nwzlrtlskujfv", + "amount": { + "quantity": 5845, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1zaa6usu4rs0t96eed2ckxpqqjlkwm9ek22qytx22mqmtqzw63y5", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "177bae43951c1eb2eb396ab163040097eced9736528045994ad836b0", + "assets": [ + { + "fingerprint": "asset1d6srwnkg09negwpmxhmstres4h5cmtx4pmhtvf", + "amount": { + "quantity": 7108, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1a9zmkh40jw654gavfcpspm0uf9eucpu9hjjgll", + "amount": { + "quantity": 5583, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh19ee6gaf5fvnhd2mvqdujzrua998jwg65r3qsstzzlu5n23gm7tc" + } + }, + { + "withdrawals": [ + { + "context": "ours", + "amount": { + "quantity": 215, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 109, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 35, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 164, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 221, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 187, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 236, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 103, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 168, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 206, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 62, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 34, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 38, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 199, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 184, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 174, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 101, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 40, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 136, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 65, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 70, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 40, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 157, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 73, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 88, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "id": "263f3c193b3f2135750a1017eb0a7744335272431402670451512a1e111e2216", + "index": 1 + }, + { + "id": "456c52531c5ea5720a530677459e490d0def6081714c3443574d5a5e7d380a95", + "index": 0 + }, + { + "address": "", + "id": "b00c4d3d23d5725c160f23543624707dd5d556d1b301d25941ce6d1a022d2c0e", + "index": 9371, + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "derivation_path": [ + "963" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 51, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "244295f7b26e49bc62552e7e116b8e5a0370454e562a3335db477e330940583f", + "index": 0 + }, + { + "id": "370466740e2b2e7f7d2b493556353f697d5b3cba4a22b8019c93662970432e50", + "index": 0 + }, + { + "address": "", + "id": "210e26053664d34663423c505ecb4e438e1f20445a168e026993677760431120", + "index": 11649, + "amount": { + "quantity": 187, + "unit": "lovelace" + }, + "derivation_path": [ + "29494", + "18669", + "27363", + "27425", + "12177", + "20453", + "5335", + "3831", + "26460", + "2059", + "12623", + "11249", + "966", + "4791", + "23832", + "4518", + "16632", + "19480", + "13238", + "3198", + "9371", + "16410", + "11390", + "29545", + "6494", + "28741", + "30027", + "14524", + "22565", + "11837" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "5aa328ba77120103bc3d08100e5e46c19c4e1bdbd00f0fb33c3a770a191d0e43", + "index": 1 + }, + { + "address": "", + "id": "8560454a0667625128274f25cb0e230160366088533b0723450adc77a713096b", + "index": 25448, + "amount": { + "quantity": 11, + "unit": "lovelace" + }, + "derivation_path": [ + "30553", + "11214", + "12895", + "12197", + "17780", + "13848", + "23570", + "21716", + "24418", + "5983", + "31204" + ], + "assets": [] + }, + { + "id": "40570e101cfd4c2d723e332e76733b85a615465a7a3b7e791e666a0d63403d6a", + "index": 0 + }, + { + "address": "", + "id": "1fc34f0f382753185a4b6f4569a665468627501c45c44016756431f23a4d2478", + "index": 8277, + "amount": { + "quantity": 203, + "unit": "lovelace" + }, + "derivation_path": [ + "17436", + "12285", + "25834", + "30710", + "14460", + "29334", + "6791", + "10853", + "6217" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "id": "3b1d060610657d3b7f5a7755076450446a0e260a98bf2517761b606053730950", + "index": 6135, + "amount": { + "quantity": 55, + "unit": "lovelace" + }, + "derivation_path": [ + "20272", + "2180", + "28125", + "13920", + "14584", + "6518", + "12589", + "14180", + "6341" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } ] }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1k5hccwpms6kckd6d9y5t0mct9y9tklvpv6mf0xyvn0lyvu4raz5", - "retirement_epoch": 15507 + "id": "390e08427d2228265407552c6b5d2a7108220c734f4269192d0839147e170d3a", + "index": 0 }, { - "certificate_type": "join_pool", - "pool": "pool1u4d4y8ykevzsmyqwyvhseyu7p2wpv8e7dqtwa3nkk6rr7lqyxak", - "reward_account_path": [ - "9705", - "30522", - "6894", - "22801", - "100" + "id": "306d183f51bd3a3536792521316232552b0b516f56f01b511a0d0521f8196444", + "index": 1 + }, + { + "id": "1b60752c517f056415234f440b26505d042c22055e00150c72cab37c0f4b6c31", + "index": 0 + }, + { + "id": "0e615e580134636c48146b684c094038525331345b7c3fee6a324c477c4b0e02", + "index": 1 + }, + { + "address": "", + "id": "2122116f62191c6530687316470e2a2a183563279f3c67a70b0633859f2e1312", + "index": 13269, + "amount": { + "quantity": 242, + "unit": "lovelace" + }, + "derivation_path": [ + "8214", + "13397", + "21374", + "22873", + "4215", + "16941", + "32379", + "16691", + "24603", + "9672", + "3011", + "30874", + "19306", + "7056", + "5969", + "26550", + "15223", + "21639" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } ] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1rlx8vuyvya9qq4fkshaxdm0ugpk40c3m5m7436fyzwev8k4txpmsenz7a8", - "ed25519_pk10n7qzd7egwlnzrcdavhsxwdqsec7ac4mnhy240zselvvs67p0zusuy0m3y", - "ed25519_pk1rsxjdd635dvyf6pen7g9ruzeqm8x6rqpsxqpuqf4q4pttrdxeawqc99afl", - "ed25519_pk1u43z6lktjupy299n33xjrx099em3qysrdmqe4rgyraxn39y6mn4qrsj0ks", - "ed25519_pk10uhjgqhngfaul7j0lyza56ej2e9nhkj7k6klx3s5ksxjgezxt9psweg9mu", - "ed25519_pk19lwet5aem4tcal2s8httpyfc8gnrj8nvwtrku9m9frjpwmry05qss5t9da", - "ed25519_pk1n8xtzufx0v70z6szlxpcqy32mm94frvy4m7yzcptq9pd03swzhuqd7p4wz" + "id": "7a76281468502b1b653c3744ec01186d16102564bf526a0d5f282548053d410a", + "index": 0 + }, + { + "address": "", + "id": "7f59674b4d00291f0e7532057d5877e92d686d2955a8202047ad090234394f77", + "index": 6690, + "amount": { + "quantity": 192, + "unit": "lovelace" + }, + "derivation_path": [ + "21554", + "12541", + "26289", + "15041", + "22385", + "23234", + "32273", + "23026", + "29950", + "13229", + "6920", + "26924" ], - "pool_pledge": { - "quantity": 195, + "assets": [] + }, + { + "address": "", + "id": "737476067004750d24785f5a2f50236d4a5f347796bf993e488a0f7ae3580065", + "index": 32434, + "amount": { + "quantity": 186, "unit": "lovelace" }, - "pool_cost": { - "quantity": 200, + "derivation_path": [ + "15283", + "13797", + "20789", + "5253", + "5897", + "15610", + "2642", + "24950", + "3531", + "19901", + "4730", + "29461", + "8364", + "12619", + "7215" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "44316d1822c87f2f5d0707e4745041f73af3727cad0d0e72173e5836a732983e", + "index": 1 + }, + { + "address": "", + "id": "5f03393a653ff427181818441d6f15693a7f62434518486e4b0e17685d261a39", + "index": 12351, + "amount": { + "quantity": 140, "unit": "lovelace" }, - "pool_id": "pool1guv8gr5gxkzw76hajnetm72rgarcyejc95y553s4379g6wdxcj2", - "pool_margin": { - "quantity": 28.74, - "unit": "percent" - } + "derivation_path": [ + "7399", + "21536", + "4555", + "20624", + "15024", + "29566", + "69", + "26489", + "9802", + "29160", + "13859", + "15328" + ], + "assets": [] }, { - "certificate_type": "mir" + "address": "", + "id": "12027b346aa9003201090b1f254eff076e4b1a2d073deb774c7769276953666b", + "index": 13865, + "amount": { + "quantity": 206, + "unit": "lovelace" + }, + "derivation_path": [ + "18974", + "1082", + "13263", + "32294", + "26332", + "2403", + "12903", + "30907", + "16357", + "7018", + "5254" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "4d3521212d6d95db571d7d684662215b341a656602302e575a7b17180a05603f", + "index": 1 + }, + { + "address": "", + "id": "6a3a3ea54628492000426c7e3578090e124a3174796c533f0420ac6a12ca5904", + "index": 32674, + "amount": { + "quantity": 223, + "unit": "lovelace" + }, + "derivation_path": [ + "16960", + "21817", + "13672", + "5361", + "15490", + "31388", + "22522", + "8610", + "3157", + "9671", + "11568", + "29563", + "942", + "5817", + "1831", + "15763", + "7784", + "29428" + ], + "assets": [] + }, + { + "id": "6f75e741270679113b70256a1a3c366b32424376457f7b0723974a705f467e0a", + "index": 0 + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 234, + "unit": "lovelace" + }, + "derivation_path": [ + "7595", + "27328", + "14386", + "15026", + "32586", + "6866", + "30007", + "18875", + "22180", + "18379", + "12281", + "1518", + "12671", + "10526", + "27266", + "28610", + "16389", + "2124", + "4366", + "24279", + "12268" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 56, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk13ervu5026gqq72s7g020yq95h399mrsk4d6amuasgyd642pkp6dqn778dw", - "ed25519_pk1rhvcavq2nnr05wr6wyw6g39a2j5y9c4zy2ht92mnve35z24as0mspud5sf", - "ed25519_pk1en39ds0nys53q8dnlnzl4vvlplq05fdnvez4q0u6w38ydg7wv29skdex8u", - "ed25519_pk1pd6nmm2dt0vv59jmcwx5udtf4yjg6dr76lsjk9yvnk2zs4rhhx5q69nt79", - "ed25519_pk1ypy3yfh8shug8njw5wv5ej4njgn04s348mwa6lv5klln3x8xup6sncykdm", - "ed25519_pk1qwjf9lr4dq2e64ykhte9l9t3sdzacm4mw73dsf6qf23a8aazghjq4lwtnl", - "ed25519_pk1sydqc8ghukrr2k4j04h9ady0qcd2y8ejwrlwev7krrksvp2anwnsj44jys", - "ed25519_pk17f95mm9mqxwflmruqryw0jevz7xm6m6ljnn5ulr7yprsslhzszaqz9mjfk", - "ed25519_pk1yy0fmhtex9vxw0vfh8647qpc0n3vwf8fa6qv9ecjy5ahh5pd83xqwsvu03", - "ed25519_pk1ydm9ce7vx0mhg8y3tgkjlc5caxd2pf6gldl39fm6vwxd4cjyaucqmusula" - ], - "pool_pledge": { - "quantity": 190, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 161, + "address": "", + "amount": { + "quantity": 170, "unit": "lovelace" }, - "pool_id": "pool1n35gnl9w8x0mr5s7e5ay69tsuln8n2gc3yz3v2flghrkgzqur9d", - "pool_margin": { - "quantity": 17.3, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1xy52zvreddfg9p8qj3vvpq5s6sw60eu4w3ntfdwhcgxjkf2m6l8", - "retirement_epoch": 4353 - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1ry5c4fddezdrn8tsgd2h3m32x9akgshpxmf0glz6ucld6e3c5r8", - "retirement_epoch": 8880 - }, - { - "certificate_type": "join_pool_external", - "pool": "pool10d0w8yyyvswsmhtj4k8p2fthz7yucqxk3hhs7ug8t5wk6hxwjkg", - "reward_account": "" + "assets": [] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1plyudlg5959thuq5nay3vty04wn09fznt9funlzjk6r0vcrra6sqtjcy0y", - "ed25519_pk1uu5qafze0xvd7c4l65hlwah736kgpp72h6edhslm3lhs8f0rfnsqm95s6x", - "ed25519_pk122usfh60ngxyquse28x77q4q7j7cx4537gtwxs9lve5e4jp53azqegql7s", - "ed25519_pk1dqh0hd759erld9cv2jfvuym9mj8257hlfssfxdk8qkh9ftgflrxq0fq8gx", - "ed25519_pk1nmvz0qe9nun0dgklpl0rm6988u2re372zez0pmsr7up53mg02zpqn4ghz5", - "ed25519_pk1wjdgt2hq6wxfamcc358h4fq5hzftnj293xz9mpsgs87ev7g6w4gse3a6ed", - "ed25519_pk1cmxzmehz84wl9q4m23t7cgk4clj5wadv8y3dqzhnrkemk4glp5xs726yx7", - "ed25519_pk1fqfrty5c7ndpzh2l8kz4zxzlv52xqvf5c9yyu48njegnc6da2gws949x2v", - "ed25519_pk1cpl087tlexqm40ys9alu4pk4yh05ahqzkn2fvcl5aqvp4uz8q0ss3ccep9", - "ed25519_pk1qtfvn07j7c0gl09pnhet6gq4vzm3avytfluetsy5wanlxwy6wfassy40n0", - "ed25519_pk1f7fu27u6raa75av0882lzcgvgax7a7fhmrxehzzmvs9y6kwxz7ssjqc23p", - "ed25519_pk1y2pr6t2qemnjc4zrzcnzgyt0mg4wutafudf0zselhy4mr33egeus7xwrh2", - "ed25519_pk1gnwp43jkhzt9wcfqfqmuw79sjmscu9n7vqvt5ngktcr7ykkxl7aqu8qstg", - "ed25519_pk1efju3qdmak3wv8670wzrx5s7xa038n63p0h0ed2w0f2u7z7vdzms58k4t6", - "ed25519_pk1l4kchahemqzhzwyx0sg2c5qxc2c3tz40whsu99v8srek7jkcxhqqmuwrcx", - "ed25519_pk1zcw28uh0tc2kpn9sfm38avs6ze3g3xgs30kzvma6y7jx587an9nsac5zlg", - "ed25519_pk14rxd3ym3yl3j70j5h65ge2tcdr48se6uk9sm2pjkn844lr5ytvgqakksvr", - "ed25519_pk1jsft3gelqpfql2smancqx8l3czcjgam46h6ajfd4jsa0vvuw3nhsx3hzva", - "ed25519_pk1cpp3vvrrvpjtdax6uxxlquaa0z2d46fzsxrzy67r8agsfpt4jssqjh04dh", - "ed25519_pk1tmlanllkx0y3x0vjyur77vlm9w9s9kawskvdcuks5f3n8xqxuv8q372xac", - "ed25519_pk1ep57nu35cpyyhaevx2g7djhafurfwzzdv4mv8yq9ws549h67w00qq86ayk", - "ed25519_pk1ugfnj9w624reneh0zskws5xl98pq6gu3dzvay7k57azev0yghzlsepq4nh", - "ed25519_pk1aegwadqefymv3nme5cehzjqfpwlxq79n4p7h3crxhfau5zrgjkrqn74n9r", - "ed25519_pk1vh258j5pej6646ay6nfl0ffvn6p07p8j4s0q7e8nvcfrx5evscesvl8emg", - "ed25519_pk1g5z2att45p4cz0gc0q5fjdje6nsmzjnr6gyy2kup9qzv77tpk4fq8fhnxq", - "ed25519_pk1atyqyyy44x5fvh3xlkgxrmxk9pu4708t5vt7nl8ekac2l83n98wsy0dl39", - "ed25519_pk1jeuguw3z3vmh8mjyppasl4f5pv8h5vt5wnumcfr2w9muhqwsjhsspls203" - ], - "pool_pledge": { - "quantity": 185, + "address": "", + "amount": { + "quantity": 89, "unit": "lovelace" }, - "pool_cost": { - "quantity": 118, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 139, "unit": "lovelace" }, - "pool_id": "pool1y9kxgqzauefajupm3njqvvlg6qsdytg2rqqy5rfvu2vwcxvrqlg", - "pool_margin": { - "quantity": 48.69, - "unit": "percent" - } + "derivation_path": [ + "5651", + "26426", + "197", + "24330", + "24744", + "8666", + "13761", + "18440", + "26548", + "18277", + "6489", + "21641", + "29424", + "23238", + "11998", + "13916", + "9244", + "26423", + "5595", + "8243", + "8871", + "564" + ], + "assets": [] }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1en0pmpnw6x8y5txj0ckrzs0q60qtttls3qrerpthwmu2vuj0rjt", - "retirement_epoch": 11461 + "address": "", + "amount": { + "quantity": 128, + "unit": "lovelace" + }, + "derivation_path": [ + "10496", + "21677", + "10470", + "26581", + "30653" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1wyfrheqf5aend37dyn7le9ek0tfvakjs74wc6tck2tt2ul7ywy0", - "retirement_epoch": 19285 + "address": "", + "amount": { + "quantity": 23, + "unit": "lovelace" + }, + "derivation_path": [ + "24300", + "4292", + "9860", + "25847", + "23485", + "10462", + "22153", + "5591", + "26215" + ], + "assets": [] } ], - "deposits_returned": [ - { - "quantity": 183, - "unit": "lovelace" - }, + "id": "4d476bf052c7681eed754a894c5f15515c807d39f132610cbc67885b106e2355", + "deposits_taken": [ { - "quantity": 182, + "quantity": 135, "unit": "lovelace" }, { - "quantity": 93, + "quantity": 19, "unit": "lovelace" }, { - "quantity": 49, + "quantity": 81, "unit": "lovelace" }, { - "quantity": 92, + "quantity": 124, "unit": "lovelace" }, { - "quantity": 3, + "quantity": 246, "unit": "lovelace" }, { - "quantity": 118, + "quantity": 68, "unit": "lovelace" }, { - "quantity": 249, + "quantity": 102, "unit": "lovelace" }, { - "quantity": 136, + "quantity": 63, "unit": "lovelace" }, { @@ -14834,308 +23380,1450 @@ "unit": "lovelace" }, { - "quantity": 71, - "unit": "lovelace" - }, - { - "quantity": 250, - "unit": "lovelace" - }, - { - "quantity": 155, - "unit": "lovelace" - }, - { - "quantity": 2, - "unit": "lovelace" - }, - { - "quantity": 218, - "unit": "lovelace" - }, - { - "quantity": 77, + "quantity": 63, "unit": "lovelace" }, { - "quantity": 1, + "quantity": 161, "unit": "lovelace" }, { - "quantity": 221, + "quantity": 245, "unit": "lovelace" }, { - "quantity": 211, + "quantity": 20, "unit": "lovelace" }, { - "quantity": 103, + "quantity": 160, "unit": "lovelace" }, { - "quantity": 111, + "quantity": 255, "unit": "lovelace" }, { - "quantity": 201, + "quantity": 41, "unit": "lovelace" - }, + } + ], + "burn": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1uem7439cf2zcd7ztaz426lmjtjuvgr82cfd0q27kp26d6fuyenr", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "e677eac4b84a8586f84be8aaad7f725cb8c40ceac25af02bd60ab4dd", + "assets": [ + { + "fingerprint": "asset1hhwcfw69kqqhs8z3cn0a0fasscypxc5eqwqlwd", + "amount": { + "quantity": 2522, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset14smpcy6vk49wr6t9fmx0uw3wqpvp83nns4h8mn", + "amount": { + "quantity": 6941, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1msxxumrzn80p8kn3d6qs4elfn3dc5mpcjrm8pe", + "amount": { + "quantity": 9089, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset15ksk9rkrcjcnh2s6r6z35p43j96sjq45tr5yfj", + "amount": { + "quantity": 7244, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1gzjnpq0ytm00y2nns3czrwxm4qm9kcnqx4dcqgdct96uuult7sj", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "40a53081e45edef22a73847021b8dba8365b6260355b8021b85975ce", + "assets": [ + { + "fingerprint": "asset1m3hslmpl969gayxg2cp963kfzv4g75l83tnnw5", + "amount": { + "quantity": 6731, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1p86jcrqhwgw59ps3jgl58l7x4z2350fjf3jrpl", + "amount": { + "quantity": 230, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset10kzepkqla29flgex0tujrcf26nm4uu6xcxpx0v", + "amount": { + "quantity": 2159, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset180l4y8e9re4hsv9fme8j9dznj3pwlqg3wfd4g6", + "amount": { + "quantity": 6457, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13qgrjhlpuuwe9pw6erjfqd6cthvj2u7pxzshs29eytn9v37n0zn", + { + "active_from": 100 + } + ] + }, + "policy_id": "8810395fe1e71d9285dac8e49037585dd92573c130a17828b922e656", + "assets": [ + { + "fingerprint": "asset1u4c8cy5zrcprry3pjqrt7d5vpreg8yuktmy04t", + "amount": { + "quantity": 2077, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1w65f45ed6jl4zjmcf5gktvygrcnm5dflncgac8", + "amount": { + "quantity": 5233, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": "policy_vkh13kghp5a78wup3x2g597vn3ujmgjmvya8atn7ygj26mhu5vqheca", + "policy_id": "8d9170d3be3bb8189948a17cc9c792da25b613a7eae7e2224ad6efca", + "assets": [ + { + "fingerprint": "asset10stun5y370452xg0e7w979gjzugclk6f3cjv7s", + "amount": { + "quantity": 9888, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1ar4jqrmqqpvefc8usuc6nfhtzd7racq475hpma", + "amount": { + "quantity": 6602, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1t98469zmzsvp63x35lj26tml4354faxl7a3etp", + "amount": { + "quantity": 5527, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": "policy_vkh1gc6tm9lxcs2n76tjpwye6ahld7jw9xete6p9hx0q2ssyg7gc6h8", + "policy_id": "4634bd97e6c4153f69720b899d76ff6fa4e29b2bce825b99e0542044", + "assets": [ + { + "fingerprint": "asset1z36nkz4adjfwzef6lk404p0mjjzeaa7ul4rwfx", + "amount": { + "quantity": 8485, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1lepfejt0vkrxwn7a8xjhem3ytzp5a6uhrvesjl", + "amount": { + "quantity": 7056, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ddx8w4uady7swlczm9q20uu24ct5cfmt8crw9hdj0fmfc8sgy7p", + { + "active_from": 100 + } + ] + }, + "policy_id": "6b4c77579d693d077f02d940a7f38aae174c276b3e06e2ddb27a769c", + "assets": [ + { + "fingerprint": "asset1l8g6dtm3j53e0en4dfk2zrx97he680fy465t7g", + "amount": { + "quantity": 8794, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1nnz4jj3fl3xv90teakl29679ww56rszgsgm26q", + "amount": { + "quantity": 2293, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1mns00tkddmlvchdgfzjfm8g2vm8h9lhuy84l7a", + "amount": { + "quantity": 8679, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset18rwejujhnzm396n7ndrc64evkaefrga6krfq98", + "amount": { + "quantity": 2769, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": "policy_vkh12qe63dtrcrq2s5xy84eyu9hhh90kqtrz9u2znt8ygg0dqnxjn2y", + "policy_id": "5033a8b563c0c0a850c43d724e16f7b95f602c622f1429ace4421ed0", + "assets": [ + { + "fingerprint": "asset18t0zpe8x9f2h4vy9kdujhwcf594u9wrqsw2mgf", + "amount": { + "quantity": 6026, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1t5hw93utuc8vmga6n2kfhzaz2nxa309aq2a3rupg2kakjlgft9l", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "5d2ee2c78be60ecda3ba9aac9b8ba254cdd8bcbd02bb11f02855bb69", + "assets": [ + { + "fingerprint": "asset19x338zsw4u8cadxn8dr60hx3d5r08wjk65tkw7", + "amount": { + "quantity": 4135, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1f8npkzlh25zap7rz4czn7jl8fd3j39ykzraake", + "amount": { + "quantity": 4689, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1gn4yafxvwsh929dnewhwk6llnqw7jpkpwqp4fw5mr4zj6yf4mgy", + { + "active_from": 100 + } + ] + }, + "policy_id": "44ea4ea4cc742e5515b3cbaeeb6bff981de906c1700354ba9b1d452d", + "assets": [ + { + "fingerprint": "asset1pfuld4mryqxezyc304vnas9ynx0w5l7t4pahzh", + "amount": { + "quantity": 278, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1u7twnswpkqxk287n4hc5w8af8z7cayejxkxtyx", + "amount": { + "quantity": 2935, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset13vjmaaa4pl3tyep3r0gkf4crunkn9g50jhnr8g", + "amount": { + "quantity": 2268, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh12ulx4facyqw9jdc2m895ca6vh2eut2yd0gsyl5tu5nawcnkamtd", + { + "active_from": 100 + } + ] + }, + "policy_id": "573e6aa7b8201c59370ad9cb4c774cbab3c5a88d7a204fd17ca4faec", + "assets": [ + { + "fingerprint": "asset1en3730u7sr92sdn04q3vk20ws2e089xzu438wm", + "amount": { + "quantity": 530, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1dssyycyx2549u9u4kkga9kykg00esff0dfmps7", + "amount": { + "quantity": 4460, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset19hquc37fcf6m5g2huumkzzvfhawklqy28cl7a2", + "amount": { + "quantity": 7504, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1fhthapzvkdknc4pwzvg6vxx65wu9ccghes8y7k6ayd3fgx7g0ej", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "4dd77e844cb36d3c542e1311a618daa3b85c6117cc0e4f5b5d236294", + "assets": [ + { + "fingerprint": "asset1e3txmlxw3f6eukl0mnru3ty7yevea2dyswzm5z", + "amount": { + "quantity": 93, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1xxaq9m0g7emzu3n8xkeunnm58exdax5vx2mmfk", + "amount": { + "quantity": 9564, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1fa8qw7rad8mxz2cftgdgjzw2knmyw8h8s40d3f", + "amount": { + "quantity": 5286, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1um3dw06f5grkaytwcx8n9ezh27sem6capefsg7s4wjhsvqnldm8", + { + "active_from": 100 + } + ] + }, + "policy_id": "e6e2d73f49a2076e916ec18f32e45757a19deb1d0e53047a1574af06", + "assets": [ + { + "fingerprint": "asset1zx774htlrunq9x9clut5g557h3tsan9qhwp0nr", + "amount": { + "quantity": 6412, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1rqdjzcclsepkggpl73esz9m4kvcysa6hyyd8j6yjgua3jxk09ym" + }, + "fee": { + "quantity": 254, + "unit": "lovelace" + }, + "certificates": [ { - "quantity": 206, - "unit": "lovelace" + "certificate_type": "mir" }, { - "quantity": 229, - "unit": "lovelace" + "certificate_type": "quit_pool", + "reward_account_path": [ + "11037", + "26812", + "16247", + "17762", + "11213" + ] }, { - "quantity": 191, - "unit": "lovelace" + "certificate_type": "quit_pool", + "reward_account_path": [ + "18027", + "30619", + "20877", + "7674", + "26496" + ] }, { - "quantity": 70, - "unit": "lovelace" + "certificate_type": "deregister_pool", + "pool_id": "pool19trnz2aynxhpah870me543asykechl92rlgw477r0l5tcn2hdc4", + "retirement_epoch": 2194 } ], + "deposits_returned": [], "metadata": { - "12": { - "map": [] + "28": { + "string": "􁀶𐇞􂜦䗹" } }, "collateral": [ + { + "id": "1556326b18520a2bdb74286368fe2800586cd9beb41f3628f86f6518295d3509", + "index": 1 + }, { "address": "", - "id": "77537e382d4a080e6e62ab8b971036a1201e7390be0c2d3853e4311570771a2c", - "index": 16027, + "id": "4e34343c5e2ed5bf4681554f481e6530a01d7052f0dc955f0c583a1fe5704113", + "index": 27517, "amount": { - "quantity": 82, + "quantity": 14, + "unit": "lovelace" + }, + "derivation_path": [ + "23729", + "16602", + "24200", + "27760", + "694", + "22619", + "1439", + "32259", + "29827", + "17049", + "24375", + "27401", + "11139", + "21824", + "10504", + "29080", + "15381", + "9599", + "24350", + "6099", + "32535", + "28958", + "27877", + "2431", + "6829", + "12571", + "6229", + "12074", + "26560", + "28930" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 45, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "id": "0f0d664d2e627f18305543106f138e7d742b8a0e0d2d3874091d4c6971133a4a", + "index": 30951, + "amount": { + "quantity": 38, "unit": "lovelace" }, - "derivation_path": [ - "11585", - "15907", - "4749", - "24190", - "11408", - "25272", - "12318", - "23657", - "25926", - "13626", - "26214", - "3187", - "7061", - "3551", - "15574", - "7129", - "26596", - "23840", - "21462", - "23135", - "19764", - "14992", - "8333", - "30528", - "28191", - "23209", - "16934", - "2031", - "15336", - "1013", - "10531" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "id": "43401560e40d0401ef0c8a72a83e72543c622919370b6003acf117580e342d34", - "index": 1 - }, - { - "address": "", - "id": "6d7f664f38722d22472e2119543c32370873121850aa4c5b56690d404f104653", - "index": 23170, - "amount": { - "quantity": 170, - "unit": "lovelace" + "derivation_path": [ + "19077", + "8668", + "1808", + "12944", + "4102", + "19227", + "24071", + "20379", + "7230", + "28355", + "18401", + "13686", + "32547", + "7741", + "4060", + "24687", + "945", + "659", + "28823", + "21620", + "18971", + "18688", + "18025" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "id": "6e3022196544323a724c67156e22982e6302743f4a712db53a45492a4ff24d5f", + "index": 0 + } + ], + "mint": { + "tokens": [ + { + "policy_script": "policy_vkh1nqyza8qrlzr5tqhtm7jxvpd2wek55na9tngvc2qyt60hy0d5veq", + "policy_id": "98082e9c03f8874582ebdfa46605aa766d4a4fa55cd0cc28045e9f72", + "assets": [ + { + "fingerprint": "asset1t5g6kfvdwyzn4xxe8qpfyy2sc8cc2hfrjgguuh", + "amount": { + "quantity": 839, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset149tevpxd77g40m5x6rwkw60k7jwhgpfvpzvcfd", + "amount": { + "quantity": 5827, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mlk7r67595xx8p6pwec4g0f2kdxycsrgyur9yjztnylg2fuc28h", + { + "active_from": 100 + } + ] + }, + "policy_id": "dfede1ebd42d0c6387417671543d2ab34c4c4068270652484b993e85", + "assets": [ + { + "fingerprint": "asset1pkcg49wqqyw58m6exzcytrcaczn7m03pwkcguk", + "amount": { + "quantity": 157, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1wgxq5x2ew9wu5448lrm8v5htnccrm06nt6prja", + "amount": { + "quantity": 8455, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": "policy_vkh1ujn545drkpwvhy368k4q9j0w028kcef04cmf4xc47ua76y7zcl9", + "policy_id": "e4a74ad1a3b05ccb923a3daa02c9ee7a8f6c652fae369a9b15f73bed", + "assets": [ + { + "fingerprint": "asset12hzkxeyalgg850j5gp0f6nr3lq8j0c5uqxdhkv", + "amount": { + "quantity": 3279, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset130kckjlp8y9gyh4sasz00r76tgygmxwwv3jjyq", + "amount": { + "quantity": 9430, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset135apxlzaf04mqvz46af5ksmrhexm8jyxxleypy", + "amount": { + "quantity": 702, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1vjv9sx83vec7akel5gumh4rws3f6f7rgsqvfq7", + "amount": { + "quantity": 5795, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1hg93mjtflujxc9m39jcdzv64sp2d6v2ah7q4t7jxr764jqlp8ma", + { + "active_from": 100 + } + ] + }, + "policy_id": "ba0b1dc969ff246c17712cb0d133558054dd315dbf8155fa461fb559", + "assets": [ + { + "fingerprint": "asset1jzxlypczp64ff6ccy4ep9tzkjupup36d24l977", + "amount": { + "quantity": 8265, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1gspqsqfrdzaxwxna0e7yh4qrfffs0xrcq4kr54", + "amount": { + "quantity": 1854, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh15fv448f8jxk57lk4ugs4hkqnlj3ht3hetta0kvrvmsvlzfsjf7u", + "policy_id": "a2595a9d2791ad4f7ed5e2215bd813fca375c6f95afafb306cdc19f1", + "assets": [ + { + "fingerprint": "asset1efke7jjdqga2nwch7mg5cyvhjy0rt474p98vjm", + "amount": { + "quantity": 6857, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset12c6hjlgdkvvurhjnwed4exxzj348u4cts6ak9x", + "amount": { + "quantity": 8671, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1tgnnvl83fzxxhd7q9pwgkfm04h032txencp9e3", + "amount": { + "quantity": 2718, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": "policy_vkh19st9wr5hr7u96u2537w3nm7z5lcek7xg4nv52z0wqctkcgtmgz2", + "policy_id": "2c16570e971fb85d71548f9d19efc2a7f19b78c8acd94509ee06176c", + "assets": [ + { + "fingerprint": "asset1y2veme7nr2gef8h74qktf84mdjutpqq7k4xarz", + "amount": { + "quantity": 291, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1xz7n2k5svkcejqlckkkekdf0xmevt4mnejpesn", + "amount": { + "quantity": 5773, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset17pzk2ee3agn5fqdce5s0y5fx70jfqws444ngdn", + "amount": { + "quantity": 2076, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1tq2yxd5g4dkd0g3pqdjcac8xhsrrazhfkghlqvunxdvsv3n6u23", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "5814433688ab6cd7a22103658ee0e6bc063e8ae9b22ff03393335906", + "assets": [ + { + "fingerprint": "asset1rww4del0gy7wzljn550dt0pupd6a40ckjtzjzv", + "amount": { + "quantity": 2074, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset188wawehea57scsdlsuxsqwa2grj839hcdn4svl", + "amount": { + "quantity": 4736, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1y636h4lzeay0y4t7gtn7ftvunwajt7d5y3nmtd", + "amount": { + "quantity": 2496, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1976ecuqmnledlwu2uvdwju4sqfe8uw3kky9cnx", + "amount": { + "quantity": 8319, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1carvl25ajq2lr4h0h476c836m0qp7lf8lukluwjvgnz257qm26a", + { + "active_from": 100 + } + ] + }, + "policy_id": "c746cfaa9d9015f1d6efbd7dac1e3adbc01f7d27ff2dfe3a4c44c4aa", + "assets": [ + { + "fingerprint": "asset17pxx98sr77rcj86ct2clkwdc2tsxljy9j52egy", + "amount": { + "quantity": 2164, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset14neh6t8tj0a5zmqy2vsrzv0af4nv93u8ul8txm", + "amount": { + "quantity": 2735, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1hw4nquqk0a5lwd98d6wksjas4m4snnl795teku", + "amount": { + "quantity": 9901, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1c2c3x885heu7f9smlj2zf7dv5zyn8mnlae8ngvk5hfs3csz4qzz", + { + "active_from": 100 + } + ] + }, + "policy_id": "c2b1131cf4be79e4961bfc9424f9aca08933ee7fee4f3432d4ba611c", + "assets": [ + { + "fingerprint": "asset1yrd96ku33h2e9fzv7ram5jd4l2jyp46v00tml8", + "amount": { + "quantity": 7693, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset165nlngxjvttp0pz9naz5cgslw528jhjr00wu9a", + "amount": { + "quantity": 796, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset126f8uss5uxurvket36kzyj2ccpsa467khkzxtq", + "amount": { + "quantity": 8639, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] }, - "derivation_path": [ - "18906", - "15902", - "14323", - "17627", - "26957", - "27636", - "22663", - "7855", - "21135", - "7003", - "2728", - "27983", - "7865", - "12571", - "20218", - "27553", - "4246", - "29687", - "18607", - "15059", - "19148", - "5535", - "22937", - "14348", - "19865", - "9384" - ], - "assets": [] - }, - { - "id": "f9a9e02f3c1b04dd6270553125161c64b231775a2a4102466e1c07114a687328", - "index": 1 - }, - { - "address": "", - "id": "63115f4c085c3f324d706c4d48b76438013f42e1656425b25f4a34fe02487d36", - "index": 32537, - "amount": { - "quantity": 177, - "unit": "lovelace" + { + "policy_script": "policy_vkh14t2qmjnkhy5796xcdl7s93e96wat2vf6xqurcxr6nw8uz803tfd", + "policy_id": "aad40dca76b929e2e8d86ffd02c725d3bab5313a30383c187a9b8fc1", + "assets": [ + { + "fingerprint": "asset1v47w7sdtg2mzcx4furc4s8rt7ygq3w4mu6hq3k", + "amount": { + "quantity": 3079, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] }, - "derivation_path": [ - "15763", - "24792", - "22296", - "31393", - "948", - "13841", - "9728", - "16349", - "3127", - "7012", - "32612", - "4638", - "27389", - "21615", - "18139", - "5504", - "6866", - "9239", - "27699", - "6417", - "30264", - "3414", - "31555", - "4165", - "30540" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + { + "policy_script": "policy_vkh13lnngp0urarcuv0ructtdxnhagp3qapgw79r9kd98qvncsqyk4w", + "policy_id": "8fe73405fc1f478e31e3e616b69a77ea03107428778a32d9a538193c", + "assets": [ + { + "fingerprint": "asset1d82csueveslsrh6angyu7lgcr2ujzs2pdat4xx", + "amount": { + "quantity": 9305, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1wjve0pzzrg0rrxtdngq8rwe807cflsjuwadz0726dvq3xtk8uw2", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "74999784421a1e31996d9a0071bb277fb09fc25c775a27f95a6b0113", + "assets": [ + { + "fingerprint": "asset1p9y8hm53s7emm4qfk39cpa5fluy8quzvtt6cn0", + "amount": { + "quantity": 50, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1kmek5h8r9pv8zqumntl7mzhxf042w44wzsswwspaxarlj395jxz", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "b6f36a5ce3285871039b9affed8ae64beaa756ae1420e7403d3747f9", + "assets": [ + { + "fingerprint": "asset1k3m7n8vhnhnhrpkvy6uwd7wgtq9p532l3tncv5", + "amount": { + "quantity": 4312, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1kl4txrtutk0qgvtf69ejkmcw2xh4e76n23g7re", + "amount": { + "quantity": 5848, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1ya98qvkyucxpca8wkfruv29ggqcxmnn3cflev4", + "amount": { + "quantity": 3227, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset197rf39987e3mkkly255gmez65rygp30t4a74a0", + "amount": { + "quantity": 8108, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": "policy_vkh1ugy7ss6dgtrrvdv8lq2whhf8vtg4u326na06k5c3pyxsvf7csul", + "policy_id": "e209e8434d42c6363587f814ebdd2762d15e455a9f5fab5311090d06", + "assets": [ + { + "fingerprint": "asset1fk6cgn7h7pufprwrx4tnvt4sczy7xlvaee6xva", + "amount": { + "quantity": 4565, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": "policy_vkh1q5wpv7d56rrpl4swngj9h0n0py826d48vyh7ucclmqswsj3g3wf", + "policy_id": "051c1679b4d0c61fd60e9a245bbe6f090ead36a7612fee631fd820e8", + "assets": [ + { + "fingerprint": "asset1m8v5vcptv33a66pfyr96mgkp406wlsnezmg3cq", + "amount": { + "quantity": 7223, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset127nyryw23672ndhudd3sh9g5pj7esc2eyag78j", + "amount": { + "quantity": 9654, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1k2lzhwx9thwlhztxzcyw5rc9x5sazqrt5crhj9jcch7rxxhxh3k", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "b2be2bb8c55dddfb89661608ea0f053521d1006ba607791658c5fc33", + "assets": [ + { + "fingerprint": "asset1q4up5dzpvruxhg8h0df4h5snch3l7fpvsug5dk", + "amount": { + "quantity": 3585, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1cs70v0lrlthyadacyemqjqla2wkcfv2gmcfz4r", + "amount": { + "quantity": 5275, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1jar4szcpza9t9rrhqv9rw6r5qr7rmp3zxt00dlxrlem4znsc40u", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "9747580b01174ab28c77030a37687400fc3d862232def6fcc3fe7751", + "assets": [ + { + "fingerprint": "asset1ct0pddkrltsrfdz4g6qrycurdt3ryupvhfwdj9", + "amount": { + "quantity": 2020, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1pahvta9l0kudh75vs4d7ezx0q5qs52dwnr8r9m", + "amount": { + "quantity": 7052, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + } + ] + }, + { + "policy_script": "policy_vkh1zc9dtkzn3gawqwdvxem40w8qjtp7lnwxjwmp6zgg2h5y6zpgesx", + "policy_id": "160ad5d8538a3ae039ac367757b8e092c3efcdc693b61d090855e84d", + "assets": [ + { + "fingerprint": "asset1w6e6r7g54r2n03upxtrlud0ra2rl9nqva6s06n", + "amount": { + "quantity": 990, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + }, + { + "fingerprint": "asset1hzswj0j9j6dcfgz2238ta44sy4lrpskw6hmhg6", + "amount": { + "quantity": 599, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ju8h4f20env4z4mswwmzwswyuxd09vqz36t9zeru9dzhgle6xst", + { + "active_from": 100 + } + ] + }, + "policy_id": "970f7aa54fccd951577073b62741c4e19af2b0028e9651647c2b4574", + "assets": [ + { + "fingerprint": "asset14vcxeql9nczw9yh8wf9kxfn3zwf2899exxd2hw", + "amount": { + "quantity": 7166, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset19a97gu2lvahdcsc96xdq95udk6fmemxfuly2gc", + "amount": { + "quantity": 4137, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1lv4l3td6ysff90v43plfg5npt550nftka3jukqzetlpd76tlls5", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "fb2bf8adba241292bd95887e9452615d28f9a576ec65cb00595fc2df", + "assets": [ + { + "fingerprint": "asset1e5mx3ej4y3w0kpfr4d74pfvw4cf4qpln9wpvf7", + "amount": { + "quantity": 474, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset1fhg434ffv2qalxrxwnl492vrmpgejn6038ct6s", + "amount": { + "quantity": 779, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset13fscj2snswdcfyqlt4zzxvsl3srpq400e60nt6", + "amount": { + "quantity": 6582, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1ed4dhlk7m7ksrfjnqp5pfh7klhck7rn9v30x9e", + "amount": { + "quantity": 4616, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": "policy_vkh1tx7wtufzh9yxqrp2x9fjv567sjy2vwtjw2em56zmsyv9223vk9a", + "policy_id": "59bce5f122b948600c2a315326535e8488a6397272b3ba685b811855", + "assets": [ + { + "fingerprint": "asset15hk78scj0n0avfmnd72urq8mcstk9yfk600zey", + "amount": { + "quantity": 4581, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": "policy_vkh185dftu2ddvegcjfq8wez94epe50gwdw9ffd782kq6u72yuuhgrw", + "policy_id": "3d1a95f14d6b328c49203bb222d721cd1e8735c54a5be3aac0d73ca2", + "assets": [ + { + "fingerprint": "asset1eydf6fx5d5ywgkmj0vnw867655svurapcgcs0n", + "amount": { + "quantity": 9396, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ze436eg4ejzf982t6yqtgsggwk77r0fxs5jp7rqghgfj2s397p2", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "166b1d6515cc84929d4bd100b4410875bde1bd2685241f0c08ba1325", + "assets": [ + { + "fingerprint": "asset1546l0lwcwrh2a0eywdhcwae0gqq7lljztt2tkd", + "amount": { + "quantity": 6432, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1ka3w6g8hj4wrpyq87gv6g5c8mjagygnrjzddul", + "amount": { + "quantity": 6662, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1pz2lwgvxtkrv862a0qd5qswa5r6walx3vjgdde4p3440k7p97s9", + { + "active_from": 100 + } + ] + }, + "policy_id": "0895f721865d86c3e95d781b4041dda0f4eefcd16490d6e6a18d6afb", + "assets": [ + { + "fingerprint": "asset1wje8wmcphnqtrhxejftujccpdt2akpvj4rnvjz", + "amount": { + "quantity": 6805, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1u3z6elt6escleq0u8pv7d085hth98xqyl5dtvt", + "amount": { + "quantity": 2890, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qg5ylefupzu4jnqv4d4qcjpl2sdzvaxnjmwgpxzny6ypvk8z5tr", + { + "active_from": 100 + } + ] + }, + "policy_id": "02284fe53c08b9594c0cab6a0c483f541a2674d396dc809853268816", + "assets": [ + { + "fingerprint": "asset1elvs5a2kstjyzaz95qd5efem4z3884p29xy8ly", + "amount": { + "quantity": 5537, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ef2kpmhcrhkxlle2fh7486kqfwymvjqs5fslavkvy7dsut434s3", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "ca5560eef81dec6fff2a4dfd53eac04b89b64810a261feb2cc279b0e", + "assets": [ + { + "fingerprint": "asset1wnj4ae8dazcxll9qnkt90y0ys42llw7f7ujjmn", + "amount": { + "quantity": 7266, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1sru2gzq95cx03tfudl34mm2mch7zpcr7q25hel", + "amount": { + "quantity": 35, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh18h0kj9yz9e0ywhsfxy9rs5wpeknu59dfzd9y5yd37d6gc6epf3k", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "id": "ae5a634463ba9f241f7d1812276336276276632b0a5123dd0a764e79144d545e", - "index": 0 - }, - { - "id": "0f5c48212137245b1e767a143598eb41c729656a723efa3c0f67542a4f0b2c5c", - "index": 0 - }, - { - "id": "75eec8560e91ba6cec432c5d3f781e38863c1801007b5917150b3232050a3000", - "index": 0 - }, - { - "address": "", - "id": "0358e5d11cce1e795001270a0d695259226d039c7c6f01a93440074d38179927", - "index": 13147, - "amount": { - "quantity": 29, - "unit": "lovelace" + "policy_id": "3ddf6914822e5e475e09310a3851c1cda7ca15a9134a4a11b1f3748c", + "assets": [ + { + "fingerprint": "asset1r2p3f7xvdnp3sljawujnk4j9pklfhtnjlajh05", + "amount": { + "quantity": 4932, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset1kfh48sjqr6pes503fay6uychyd9lcp2j4lkhk8", + "amount": { + "quantity": 5016, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset123svrav6hz54rg5enpvrry0ad37qqc0j8d09zn", + "amount": { + "quantity": 7404, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + } + ] }, - "derivation_path": [ - "12241", - "30786", - "3107", - "32209", - "26436", - "15422", - "11747", - "28759", - "28735", - "19724" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "id": "32fa8aadbb7c2c1731260b4db40a067a7f510516092f4502654a955eff2afd7a", - "index": 31816, - "amount": { - "quantity": 11, - "unit": "lovelace" + { + "policy_script": { + "all": [ + "policy_vkh1k447vj4gck4q79z30d55fv5gse3z2j4e8cfy0mjulqhg652nmer", + { + "active_from": 100 + } + ] + }, + "policy_id": "b56be64aa8c5aa0f14517b6944b2888662254ab93e1247ee5cf82e8d", + "assets": [ + { + "fingerprint": "asset1jf29tk2ekfghgml7gt635485rdw7qth275a2ug", + "amount": { + "quantity": 5110, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1z36lurt3ztqanejrdjg03xwd3k46ryda34hfeledvf8nxjfymmx", + { + "active_from": 100 + } + ] + }, + "policy_id": "1475fe0d7112c1d9e6436c90f899cd8daba191bd8d6e9cff2d624f33", + "assets": [ + { + "fingerprint": "asset12yurzpy67vslnavvd2538qmccxr8gm3prjvp9j", + "amount": { + "quantity": 8930, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] }, - "derivation_path": [ - "23915", - "29215", - "14350", - "22523" - ], - "assets": [] - } - ], - "assets_burned": { - "token_map": [], - "policy_scripts": [ { "policy_script": { "all": [ - "stake_shared_vkh1tkqap6pvvufcmn7kaztw4l2jvtf572kkxv3jdkkx2r6vc2tnyne", + "policy_vkh1356aqr2jlgyrvdkd04qwfgl3kqaqx3uzva6l9nlmd0z4jpqe556", { "active_from": 100 }, @@ -15144,1336 +24832,1966 @@ } ] }, - "policy_id": "0e32eb8a0b022914ef65b5515d48aee9fde4d8b528214d8e9cffe119" + "policy_id": "8d35d00d52fa083636cd7d40e4a3f1b03a0347826775f2cffb6bc559", + "assets": [ + { + "fingerprint": "asset187kzkp33hsdy63spr0mtd86vy7p6na5r5zqjrv", + "amount": { + "quantity": 6370, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] } ], - "wallet_policy_key_hash": "policy_vkh104fqslznrs745w0mq49n7e3yqyk9q8gdduaqw39vz6aex908cuu" + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1jx2z22trd56k7ds2z30xqecj2dcn6lt6xqckj486gf9qutlr0ar" } }, { "withdrawals": [ - { - "amount": { - "quantity": 190, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 25, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 67, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 187, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 50, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 30, - "unit": "lovelace" - }, - "stake_address": "" - }, { "context": "ours", "amount": { - "quantity": 204, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 141, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 236, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 56, + "quantity": 166, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 242, + "quantity": 74, "unit": "lovelace" }, "stake_address": "" - } - ], - "inputs": [ - { - "address": "", - "id": "ff7f1d3579095b25326261a3482c1d7076ec3477fd010a2e9783586c2b2f4d09", - "index": 25189, - "amount": { - "quantity": 31, - "unit": "lovelace" - }, - "derivation_path": [ - "25346", - "25242", - "16519", - "9598", - "29366", - "24724", - "24171", - "13200", - "11748", - "22985", - "2114", - "12398", - "21675", - "9302", - "4039", - "11316" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] }, { - "address": "", - "id": "1e74271a3c28127a210a717c562b7e1758156c0c253417350d23650052057b50", - "index": 5477, "amount": { - "quantity": 47, - "unit": "lovelace" - }, - "derivation_path": [ - "28576", - "23173", - "28829", - "4421", - "9768", - "26317", - "17912", - "30999", - "12982" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 201, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "9d614945771d0b30d0350752275e4c70514b693e30617d744b7fd34712437a38", - "index": 0 + "amount": { + "quantity": 207, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "3402267d2c52e24742b7024c544f566837765749142f2b15736f30491002076d", - "index": 22758, + "context": "ours", "amount": { - "quantity": 137, + "quantity": 248, "unit": "lovelace" }, - "derivation_path": [ - "23899", - "31636", - "14718", - "22524", - "15844", - "9864", - "6620", - "12509", - "30308", - "23595", - "5206", - "31812", - "10125", - "12150", - "6502", - "29136", - "11420", - "7873", - "10760", - "2293", - "32250", - "27101", - "21367", - "30924", - "27238", - "10540", - "29626", - "25049", - "1616" - ], - "assets": [] + "stake_address": "" }, { - "address": "", - "id": "4d6940671e888f3410086f4537555f6a6420407b0c5776e87d3c9b7010042266", - "index": 8290, "amount": { - "quantity": 44, + "quantity": 69, "unit": "lovelace" }, - "derivation_path": [ - "11840", - "9971", - "32651", - "29153", - "8840", - "2991", - "14656", - "14902", - "31727", - "18897", - "26988", - "4437", - "18432", - "16248", - "7027", - "21691", - "27258", - "13399", - "28778", - "4048", - "4011", - "11342", - "28399", - "4664", - "24607", - "9251", - "4047", - "13422" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "id": "39672f7a4d38620405386cf9eea0fd8846110267b2525ec04f2262353e692d34", - "index": 1 + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "255fbb7bea6d5b271d26790323ea471719af24514f0a8f1325244706417d6b13", - "index": 16087, "amount": { - "quantity": 166, + "quantity": 160, "unit": "lovelace" }, - "derivation_path": [ - "17921", - "26307", - "21404", - "10699", - "22215", - "11253", - "4155", - "15899", - "27875", - "1990", - "8012", - "6028", - "3345", - "14770", - "31128", - "22987", - "12076", - "19229", - "1900", - "4295", - "31055", - "30286", - "14959", - "19133", - "27990", - "13478", - "8611", - "14170" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" }, { - "address": "", - "id": "4227700f0f64e6187b0a74037b41a41f5e2d231d5a3809a2aacc7ac03d693603", - "index": 26185, + "context": "ours", "amount": { - "quantity": 144, + "quantity": 245, "unit": "lovelace" }, - "derivation_path": [ - "31528", - "2633", - "26488", - "20702", - "4713" - ], - "assets": [] + "stake_address": "" }, { - "id": "175e73aa7ed94ce97d50b245002701010b126c870072514eb85a2db2ea7c3b69", - "index": 0 + "context": "ours", + "amount": { + "quantity": 73, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "2410a642244c034c37496e222a442f6a23173f5813583a951b16111a3f382d15", - "index": 6509, + "context": "ours", "amount": { - "quantity": 58, + "quantity": 134, "unit": "lovelace" }, - "derivation_path": [ - "29451", - "21424", - "6516", - "700", - "28509", - "20354", - "16993", - "22344", - "4051", - "26306", - "30430", - "9191", - "11898", - "24995", - "28845", - "16505", - "7998", - "2008", - "7649", - "904", - "4246", - "10262", - "8532", - "27903", - "9660", - "1172", - "5296" - ], - "assets": [] + "stake_address": "" }, { - "address": "", - "id": "27738b21717b152d5d0f56bfdac4ef301b50111a5a3f476476d444798b173170", - "index": 12330, + "context": "ours", "amount": { - "quantity": 83, + "quantity": 247, "unit": "lovelace" }, - "derivation_path": [ - "28", - "25759", - "30323", - "21736", - "3338", - "16230", - "4619", - "30871", - "22722", - "28238", - "146", - "19533", - "7887", - "11810", - "3654", - "10589", - "12134", - "32758", - "30477", - "7690", - "6320", - "10821", - "18425", - "6637", - "11498", - "922", - "26677", - "5798", - "26089", - "25164" - ], - "assets": [] + "stake_address": "" }, { - "id": "536648cc792efa6f1f06430b4c3e666591364ace02534631b10775532d2e2d9d", - "index": 1 + "amount": { + "quantity": 18, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "5e6b729947387f71143f55026e2af83d0b206103612a331410c173134d696a3d", - "index": 0 - } - ], - "assets_minted": { - "token_map": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "context": "ours", + "amount": { + "quantity": 213, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 149, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e44", - "quantity": 35, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 185, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 187, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 41, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 247, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "stake_address": "" + }, + { + "amount": { + "quantity": 44, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "stake_address": "" + }, + { + "amount": { + "quantity": 75, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 189, + "unit": "lovelace" }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "policy_scripts": [ - { - "policy_script": { - "all": [ - "addr_shared_vkh18y6v95dzj4nd6fkcl2jf3qdr3u89xus0uq6mk2twa9s7klw0zzp", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "policy_id": "d360749ed73642beb08eca29625edf3c736890e6246814979af22508" - } - ], - "wallet_policy_key_hash": "policy_vkh1ztrnz6sm89dj9se3fvls67r3dfpj5rswrvr3vsn80pmjs6zfpwd" - }, - "outputs": [ + "stake_address": "" + }, { - "address": "", + "context": "ours", "amount": { - "quantity": 37, + "quantity": 53, "unit": "lovelace" }, - "derivation_path": [ - "20446", - "20919", - "19851", - "28146", - "13211", - "13566", - "1207", - "7397", - "19852", - "12044", - "4195", - "31260", - "31745", - "16112", - "4744", - "13556", - "2939", - "7108", - "25789", - "23362", - "13825", - "12078", - "30481", - "28976", - "398", - "18664" - ], - "assets": [] - }, + "stake_address": "" + } + ], + "inputs": [ { "address": "", + "id": "30035f4e74fc7b4a05441c367ede4039777e4f53c239465a360636071b006937", + "index": 25535, "amount": { - "quantity": 114, + "quantity": 139, "unit": "lovelace" }, + "derivation_path": [ + "13879", + "11788", + "27911", + "1145", + "32403", + "10515", + "28663", + "19617", + "2064" + ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 36, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e44", - "quantity": 19, + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "4760300758e86a25305871305a712b55135a753539382afa6b5923266095e61c", + "index": 20353, "amount": { - "quantity": 26, + "quantity": 105, "unit": "lovelace" }, + "derivation_path": [ + "23456", + "6573", + "7811", + "16927", + "6174", + "23453", + "29646", + "12369", + "14547", + "9475", + "23302", + "11018", + "24353", + "23157", + "25812", + "20469", + "15673", + "791", + "31600", + "24327", + "17683", + "6242" + ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 26, + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 53, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 34, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "address": "", - "amount": { - "quantity": 182, - "unit": "lovelace" - }, - "derivation_path": [ - "19869", - "16004", - "30589", - "22468", - "23940", - "12185", - "22512", - "1340", - "31836", - "20346", - "30853", - "18681", - "25848", - "1831", - "32421", - "9215", - "9253", - "16598", - "20988" - ], - "assets": [] + "id": "33126cec3452535952bd3f551f53405b062b20f56267da38705b4c320c595f02", + "index": 0 + }, + { + "id": "3e6841643b49f16efe4a4a02564ef26c7b7b0f377f1a2e0f272e056126154c3d", + "index": 0 }, { "address": "", + "id": "0b590c6365f663682cee0f210d01c53b030c18244dc2a67a3173755ad12a710a", + "index": 5767, "amount": { - "quantity": 186, + "quantity": 172, "unit": "lovelace" }, + "derivation_path": [ + "12121", + "27249", + "8742", + "3603", + "880", + "9810" + ], "assets": [ { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 22, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e43", - "quantity": 15, + "quantity": 6, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 12, + "asset_name": "546f6b656e44", + "quantity": 37, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 7, + "asset_name": "546f6b656e41", + "quantity": 25, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "3e9129726d27ccd003b35839203b5a5217b874360510287f36f8384a70203109", + "index": 11788, "amount": { - "quantity": 201, + "quantity": 130, "unit": "lovelace" }, "derivation_path": [ - "10907", - "18201", - "30718", - "6183", - "11305", - "8287", - "8301", - "29410", - "5308", - "15783", - "12848", - "2882", - "8376", - "6439", - "24465", - "11240" + "16398", + "3761", + "32328", + "334", + "4327", + "21906", + "21885" ], "assets": [ { "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "id": "6808441e6b5667d6755a4d5c27e62b2b05c746385143367d7e5d460351652018", + "index": 0 + }, + { + "address": "", + "id": "4f432e335c693c85040c611974a56f59a803654c1e747e1977b518bdba3dfc5c", + "index": 747, + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "derivation_path": [ + "19638", + "10400", + "29981", + "552", + "7885", + "4511", + "1011", + "30406", + "5993", + "25440", + "21567", + "2960", + "6802", + "20422", + "8210", + "10303", + "30551", + "24795", + "32335", + "8566" + ], + "assets": [] + }, + { + "id": "736273d7cd455d7efd59445b52e45a3b1b67105e132878761e204d261c7c63df", + "index": 0 + }, + { + "id": "ba4e0c4817053b043e10147b643323075f273d08045768cb5f65093f634b5624", + "index": 0 + }, + { + "address": "", + "id": "0d361f363002f319f3db1b5c6574303d481a875b690dff672a5a5b27ba0d7c37", + "index": 18310, + "amount": { + "quantity": 6, + "unit": "lovelace" + }, + "derivation_path": [ + "2810", + "25050", + "8161", + "31037", + "30995", + "16378", + "1337", + "4853", + "5806", + "10560", + "28569", + "31757" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 40, + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 3, + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 27, + "asset_name": "546f6b656e45", + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 45, + "asset_name": "546f6b656e42", + "quantity": 7, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e42", - "quantity": 22, + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "223c47745806a9207507385f69486a883c63626f3a032709827336601416853e", + "index": 1 + }, { "address": "", + "id": "19bf4534837d0f010f2c4f405a0a16563b3aa8a8346a74629222435e3e554d6e", + "index": 16048, "amount": { - "quantity": 178, + "quantity": 158, "unit": "lovelace" }, "derivation_path": [ - "3086", - "18410", - "10717", - "28789", - "11346", - "14617", - "359", - "9867", - "28398", - "27192", - "9500", - "23808", - "31792", - "20991", - "12215", - "16807", - "7062", - "13384", - "12791", - "19436", - "9322", - "4409", - "31435", - "17554", - "28363", - "14422", - "31498", - "7990", - "25667", - "14030" + "29967", + "17687", + "28929", + "11184", + "27777" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] + }, + { + "address": "", + "id": "005a0114180d64622f60237a2699040d853887a227713c5f6b03454a7c7d1953", + "index": 8290, + "amount": { + "quantity": 112, + "unit": "lovelace" + }, + "derivation_path": [ + "1499", + "25011", + "21717", + "13257", + "27319", + "27195", + "11538", + "20797", + "17775", + "13298", + "12845", + "5120", + "7744", + "10288", + "27470" + ], + "assets": [] + }, + { + "id": "245f0a3168097ca54267082e1b9bffc745092f5d5239094a64123c243d641451", + "index": 0 + }, + { + "address": "", + "id": "4b2f242946702118c0274e5e2014604a3a3e3a052e8604640868711683766ef7", + "index": 18510, + "amount": { + "quantity": 13, + "unit": "lovelace" + }, + "derivation_path": [ + "29284", + "28357", + "17225" + ], + "assets": [] + }, + { + "id": "622a311ad36c0623883aff4c6560531b237617064d7d506377f4c1266c097745", + "index": 0 }, { "address": "", + "id": "450d39092a2b00720ed91a4519706a7cf300da637ab082470f090a757b600c06", + "index": 8303, "amount": { - "quantity": 136, + "quantity": 178, "unit": "lovelace" }, + "derivation_path": [ + "13253", + "2178", + "1566", + "16668", + "26298", + "12894", + "12895" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", + "id": "6d376851a93c295c33ec2b6105671e1c33514e7b805ad41b112a5ec40ae01ee7", + "index": 6350, "amount": { - "quantity": 153, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 56, + "quantity": 5, "unit": "lovelace" }, "derivation_path": [ - "10908", - "10445", - "29555", - "10896", - "8611", - "1493", - "7368", - "10717", - "4801", - "29075", - "19195", - "12909", - "4828", - "13144", - "14211", - "103", - "32487", - "9799", - "13605" + "17706", + "9739", + "5216", + "7884", + "23163", + "20515", + "8062", + "20196", + "20239", + "1500", + "23542", + "10395", + "22436", + "31686", + "9768", + "17828", + "28508", + "10959", + "13114", + "19658", + "19694", + "15964", + "16558", + "21521", + "21562", + "3898", + "6045", + "17982", + "23776", + "2523", + "8410" ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 24, + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 9, + "quantity": 10, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 9, + "asset_name": "546f6b656e41", + "quantity": 11, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 41, - "unit": "lovelace" - }, - "derivation_path": [ - "26398", - "281", - "653", - "1618", - "31457", - "6532", - "6155", - "13451", - "8532", - "18423", - "21181", - "26594", - "2402", - "16959", - "27073", - "32104", - "483", - "20504", - "25692", - "29793", - "2431", - "24146", - "18370", - "10451", - "140", - "13393", - "28809", - "12191", - "271" - ], - "assets": [ + }, { - "asset_name": "546f6b656e45", - "quantity": 28, + "asset_name": "546f6b656e41", + "quantity": 22, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "0d332563ad231973d55e3e3c31473559417360736a20ca1798a1180b7b01dd93", + "index": 1 + }, + { + "id": "54149ea370cc611e204f6ed89e20b7e07d38723a0d7a083e237a84d778065b3e", + "index": 1 + }, { "address": "", + "id": "01280b52281f5b2bfa330f681b0306cb6e2c46262423ec532745371bc108c17d", + "index": 4421, "amount": { - "quantity": 58, + "quantity": 16, "unit": "lovelace" }, "derivation_path": [ - "14049", - "22692", - "1947", - "19013", - "30233", - "11374", - "17769" + "11161", + "14786", + "29207", + "29211", + "19770", + "26407", + "7671", + "21595", + "31146", + "8656", + "28019", + "3425", + "9948", + "15607", + "2793", + "22030", + "9815", + "7925", + "24306", + "9627", + "2436", + "24709", + "1449", + "4611", + "19994", + "16856", + "19485", + "6592" ], "assets": [] }, + { + "id": "6023452e07145a334c5e552c00062d4fa36a1346454d2131460e4f4733655439", + "index": 1 + }, { "address": "", + "id": "5d16d70b3b787f1b7ce66a3b3d461e1f0574586e110f4ccb1845846055049621", + "index": 14151, "amount": { - "quantity": 121, + "quantity": 54, "unit": "lovelace" }, + "derivation_path": [ + "6364", + "6893", + "14630", + "11059", + "29867", + "5535", + "14544", + "9291", + "9813", + "24252", + "11603", + "23651", + "2552", + "21426", + "14351" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 5, + "asset_name": "546f6b656e43", + "quantity": 29, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 6, + "quantity": 13, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 7, + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 25, + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 4, + "asset_name": "546f6b656e45", + "quantity": 26, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 27, + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "7b214a2244cb20403c3a563c238e6404612b77235d04b4f70a1a56af1d5e0d2a", + "index": 0 + }, { "address": "", + "id": "294f6b42653b4d32af5746645db71f347442700a21d50267dd1f06415b40c216", + "index": 27071, "amount": { - "quantity": 115, + "quantity": 98, "unit": "lovelace" }, "derivation_path": [ - "15304", - "1211", - "13824", - "13390", - "18387", - "31225", - "8394", - "16251", - "6508", - "25165", - "32413", - "8264", - "24854", - "7319", - "27371", - "9090", - "22741", - "24071" + "31971", + "11586", + "20241", + "22726", + "11059", + "29019", + "658", + "21079", + "4019", + "28674", + "29136", + "31889", + "3171", + "23637", + "16546", + "1066", + "18176", + "21514" ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 22, + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "02537444178904428d66202c2c6a7a546766578e61aa369e324585582b694536", + "index": 1 + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 130, + "unit": "lovelace" + }, + "derivation_path": [ + "17693", + "19391", + "7866", + "29011", + "14789", + "2512", + "29166" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 21, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 29, + "asset_name": "546f6b656e45", + "quantity": 37, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 16, + "quantity": 8, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 3, + "quantity": 34, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 25, + "asset_name": "546f6b656e43", + "quantity": 8, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 37, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 56, + "quantity": 30, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 8, + "asset_name": "546f6b656e44", + "quantity": 27, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "address": "", - "amount": { - "quantity": 111, - "unit": "lovelace" - }, - "assets": [] + "address": "", + "amount": { + "quantity": 156, + "unit": "lovelace" + }, + "assets": [] + } + ], + "script_validity": "valid", + "id": "c44865f91d787b514435620fb47878124566070b6e91251c9368587383253056", + "deposits_taken": [ + { + "quantity": 37, + "unit": "lovelace" + }, + { + "quantity": 240, + "unit": "lovelace" + }, + { + "quantity": 29, + "unit": "lovelace" + }, + { + "quantity": 10, + "unit": "lovelace" + }, + { + "quantity": 254, + "unit": "lovelace" + }, + { + "quantity": 65, + "unit": "lovelace" + }, + { + "quantity": 34, + "unit": "lovelace" + }, + { + "quantity": 248, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 12, - "unit": "lovelace" - }, - "derivation_path": [ - "31991", - "13761", - "30155", - "7681", - "2133", - "5535", - "12986", - "7297", - "10037" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "quantity": 35, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 168, - "unit": "lovelace" + "quantity": 70, + "unit": "lovelace" + }, + { + "quantity": 128, + "unit": "lovelace" + }, + { + "quantity": 105, + "unit": "lovelace" + }, + { + "quantity": 17, + "unit": "lovelace" + }, + { + "quantity": 60, + "unit": "lovelace" + }, + { + "quantity": 136, + "unit": "lovelace" + }, + { + "quantity": 90, + "unit": "lovelace" + }, + { + "quantity": 171, + "unit": "lovelace" + }, + { + "quantity": 62, + "unit": "lovelace" + }, + { + "quantity": 10, + "unit": "lovelace" + }, + { + "quantity": 136, + "unit": "lovelace" + }, + { + "quantity": 228, + "unit": "lovelace" + }, + { + "quantity": 163, + "unit": "lovelace" + }, + { + "quantity": 109, + "unit": "lovelace" + }, + { + "quantity": 0, + "unit": "lovelace" + } + ], + "burn": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1pt2wew5yj2jryngvcw00evg0n8gzkzd0ckz3ny3srfcl6a2f5vz", + { + "active_from": 100 + } + ] + }, + "policy_id": "0ad4ecba8492a4324d0cc39efcb10f99d02b09afc5851992301a71fd", + "assets": [ + { + "fingerprint": "asset1k2nrqad6mprvvh8wwj2640h3hpgmxfler3fs3g", + "amount": { + "quantity": 3209, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + } + ] }, - "derivation_path": [ - "24505", - "5333", - "30241", - "21340", - "6749", - "1724" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + { + "policy_script": { + "all": [ + "policy_vkh1v9pm4tt7vc4kx33eh96dlecp5yncmygv7mttekhssvtfvqlxdnp", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "6143baad7e662b634639b974dfe701a1278d910cf6d6bcdaf0831696", + "assets": [ + { + "fingerprint": "asset1x3l4v3jpsck2efdsu2wjsm7sylee24akjv2zt4", + "amount": { + "quantity": 7071, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1kl3gjg4r6ds4lmpv5mcpr6scmfzk3aprcltrxg", + "amount": { + "quantity": 5771, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh15yzr6wwm7nmu44g9z5c4af7arhah26uhkzg6t527hed453sewpc", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "a1043d39dbf4f7cad50515315ea7dd1dfb756b97b091a5d15ebe5b5a", + "assets": [ + { + "fingerprint": "asset1t35w2mx3mmz9ysrhlstw3aa72wpmg87n5ap0st", + "amount": { + "quantity": 1346, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1k9l8g3uutrty5gxy33u95awyvsy9ny7f4u7l7v", + "amount": { + "quantity": 9111, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1ey9vzse8hc4v8p4heej2mywgk4ypgypwwwyhzft73samxqq9pyc", + { + "active_from": 100 + } + ] + }, + "policy_id": "c90ac14327be2ac386b7ce64ad91c8b54814102e738971257e8c3bb3", + "assets": [ + { + "fingerprint": "asset1s9qthn3h2gljc2898p5aqvzs6u36tj23xmrl3j", + "amount": { + "quantity": 3720, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset13dny7j9aw7s59xnsqpq68uefgalgy7g8fz68u6", + "amount": { + "quantity": 3247, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset12kf5zquenef2ycmcxgmwz9djgmhudmrr2u3s63", + "amount": { + "quantity": 1741, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset16m8cc9e6dtm04s7ev4kaqj9s4w0gry9qk9ql8r", + "amount": { + "quantity": 7087, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + } + ] + }, + { + "policy_script": "policy_vkh1jtms6eq3vtfduuvsm0cea0cw2gud3zgnpv275p3juqmmqxgahca", + "policy_id": "92f70d641162d2de7190dbf19ebf0e5238d889130b15ea0632e037b0", + "assets": [ + { + "fingerprint": "asset1rp7zugcj9p2nff8jhyqnwmfrlhtzmdzygf4kz5", + "amount": { + "quantity": 346, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1gc7jug7u5tyu28vx2zzftzcapw7f2qt803xln3", + "amount": { + "quantity": 7330, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset13rndr9grz2a9dnc0zpa5tw2ng66r97ldlw2pd3", + "amount": { + "quantity": 9296, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1e2u4hl2k63nheeq9ev7x90ecyjvfa5zsh92wsh", + "amount": { + "quantity": 9951, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": "policy_vkh1uez9uup2r7grt596a0x0eusxpty5lhwlmwq5uvhndqy5j6j3f95", + "policy_id": "e6445e702a1f9035d0baebccfcf2060ac94fdddfdb814e32f3680949", + "assets": [ + { + "fingerprint": "asset1d0yalyhxylq2ujh5czlnw5sr9na2s2544dazr5", + "amount": { + "quantity": 9178, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1gufpazjtrgjf7xejpavpcrcjcmtk50vnvwt3cg", + "amount": { + "quantity": 8365, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": "policy_vkh1u4u0rnxd8u33r9qf3vcxc2qvgax78t35ywcef8qqdzjqxehke4f", + "policy_id": "e578f1cccd3f231194098b306c280c474de3ae3423b1949c0068a403", + "assets": [ + { + "fingerprint": "asset173e96u73a2efg82pd0hed2j6qrtwx022lpyf94", + "amount": { + "quantity": 7569, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1mvavsvzuzqnhhkmvwtmdr28cu4y9e6xcnfceht", + "amount": { + "quantity": 9029, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": "policy_vkh140mlsphtknn5lax8rl03t8jp7rjhecmfzad6fuzrwhfcsnq8cce", + "policy_id": "abf7f806ebb4e74ff4c71fdf159e41f0e57ce369175ba4f04375d388", + "assets": [ + { + "fingerprint": "asset1cf98ys2esfpku7ack78z98yfallgq84s5kuz7k", + "amount": { + "quantity": 7945, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + }, + { + "fingerprint": "asset1plegnyy5mm523pl8ccm6emzc6g3xyvadlsnv76", + "amount": { + "quantity": 5216, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": "policy_vkh1js3zk460c03lkpcl9mu2jwwy0hs9mlm4s5eehjpa52llvxy2hyz", + "policy_id": "94222b574fc3e3fb071f2ef8a939c47de05dff7585339bc83da2bff6", + "assets": [ + { + "fingerprint": "asset19unhrw545mt5ftfclgd7lse503kcu04klazdd0", + "amount": { + "quantity": 9415, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": "policy_vkh16j45dsh6ml89fwl5aqv8wpeyhd43r3525ls08xzmccgwvdwq9v0", + "policy_id": "d4ab46c2fadfce54bbf4e818770724bb6b11c68aa7e0f3985bc610e6", + "assets": [ + { + "fingerprint": "asset1tghmzfm3fljegs3qhmqruktqd7rrr0aw2qkdxq", + "amount": { + "quantity": 7022, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset1yfur7m4fy86dhs7mv6ukw0un4kzez4aw4znfq6", + "amount": { + "quantity": 1761, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1vpudprejllmt6mxg4v5hzea5wc72nug8eufa6a", + "amount": { + "quantity": 5839, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + }, + { + "fingerprint": "asset1f46nspnmul2exg68z05lsauksgase58vxyxu9p", + "amount": { + "quantity": 6953, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1904yhmxax8jqfcwhv6l3x033exvu654rwqrn9nezy0z5ca4xl9f", + { + "active_from": 100 + } + ] + }, + "policy_id": "2bea4becdd31e404e1d766bf133e31c999cd52a3700732cf2223c54c", + "assets": [ + { + "fingerprint": "asset1rlrl7cy3dnjt6h6ak9avedf9wgc4hjgh9puzw9", + "amount": { + "quantity": 6681, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset10kwtcwjnfhdzr85tguslc5zs2um60w0jyfd8ng", + "amount": { + "quantity": 2724, + "unit": "assets" + }, + "asset_name": "546f6b656e48" + }, + { + "fingerprint": "asset1xnlnjsmgjj9q3ql48ctchlyr6dp6de9nrarup6", + "amount": { + "quantity": 2958, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] + }, + { + "policy_script": "policy_vkh1uaar0tje3kf0cjgylnrh5u53mjavnydp63uxq3f4fuh6cwn6efh", + "policy_id": "e77a37ae598d92fc4904fcc77a7291dcbac991a1d4786045354f2fac", + "assets": [ + { + "fingerprint": "asset1x40ypznezy2ywrxfpt9pdmnglcj8dk888x2f6n", + "amount": { + "quantity": 5615, + "unit": "assets" + }, + "asset_name": "546f6b656e4c" + }, + { + "fingerprint": "asset1dlrf2fmr7fv7udh2mxmma0vrykf0ckeapstmce", + "amount": { + "quantity": 3860, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1sj9wczwvvw40t5lslhsq97pjcxymczj33kdc2n", + "amount": { + "quantity": 5910, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1549kh04yd2kmg4dt4veckarulnwummyv0n2k83xc8ujw527dej2", + { + "active_from": 100 + } + ] + }, + "policy_id": "a54b6bbea46aadb455abab338b747cfcddcdec8c7cd563c4d83f24ea", + "assets": [ + { + "fingerprint": "asset1c6a5cjfyswv45rqhycmvplj0ynvr8npprycmu5", + "amount": { + "quantity": 1138, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + }, + { + "fingerprint": "asset1vwm2q822lnghzzjftt9p8ph9y6e848dfd6ggch", + "amount": { + "quantity": 5207, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1kp9tsmjs3drsum8fxzk4z8v6x587qhf64kgg7s", + "amount": { + "quantity": 2132, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1y5s2a22y3e3vn26vnmlsyg5ndaydzyfn6f60v22yj3vtjqt6w36", + { + "active_from": 100 + } + ] + }, + "policy_id": "2520aea9448e62c9ab4c9eff0222936f48d11133d274f629449458b9", + "assets": [ + { + "fingerprint": "asset1q2ch58llh6satws0p4n27d6ffk809hmfgtxs2r", + "amount": { + "quantity": 6102, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh19eacvxs8hg3ugp7ff4288cgr4vsct6ujfy0lj5f7kany292epnx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "2e7b861a07ba23c407c94d5473e103ab2185eb92491ff9513eb76645", + "assets": [ + { + "fingerprint": "asset10zjp976sfaxwgkjulhp7lnjjm6ny25ju3v0xfd", + "amount": { + "quantity": 6189, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1h3lu9w5enu64xn2u5x3c89kvhwmk9d4p5pw9at", + "amount": { + "quantity": 4169, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1dfpumfeh7hjh6xwm987sny29afcxe20qxlsl2m", + "amount": { + "quantity": 1451, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1xx7vke90g5qvc9048egmtc387qev7te525r8zmtg9rf8xw0mtwz", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 36, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "31bccb64af4500cc15f53e51b5e227f032cf2f345506716d6828d273", + "assets": [ + { + "fingerprint": "asset1z86zcv0rlhlm40y5tu5cgkzfapc63p92mmvr8n", + "amount": { + "quantity": 7175, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1jrxa2kpu8k9rwtd95d3638yttjh2lcsl7lctsu", + "amount": { + "quantity": 1199, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1dah4v7npevd5g8zhtlu9j8axswnuwu0ndc9xh2", + "amount": { + "quantity": 5988, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset198gtvdx974uz30ajrwwvvxej5dak9ex6gv62d5", + "amount": { + "quantity": 793, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + } + ] + }, + { + "policy_script": "policy_vkh1vkfmcgfxzyn04g7kvscmrt6c4z88ecl986j0arghcusvx23zp5j", + "policy_id": "6593bc21261126faa3d66431b1af58a88e7ce3e53ea4fe8d17c720c3", + "assets": [ + { + "fingerprint": "asset17rj04dnuax3326q7pd9uk9hn2rgc4xezm0z3cu", + "amount": { + "quantity": 6134, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1f6skq3mw5lsdtq00gg9y7nqap56egyjkf25yv9", + "amount": { + "quantity": 6233, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh13rnz5fqyelj6p6vzjmguchgkeuqw3t7nxjuv6f89fj2dzqw8mg5", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "88e62a2404cfe5a0e98296d1cc5d16cf00e8afd334b8cd24e54c94d1", + "assets": [ + { + "fingerprint": "asset18jg2jpz9xukkd775d4q89sjc0ev0x4vz0x4ud9", + "amount": { + "quantity": 1368, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1erlma2mfl6p6vgq6rkuwuef8w97dyrfl4482lm", + "amount": { + "quantity": 3165, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1w3h4yqwhwmh9s6juenl4rn7ukk4k3jw4ujl5jx", + "amount": { + "quantity": 1075, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1qvl0qpwkk9m4mqzu08fxl5t6m2qam3xvfqzz99", + "amount": { + "quantity": 3484, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1tnfep5uty52ztwlydlzy2rh702f6zht58tjj3vvkdqzhgvmgg5s", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "5cd390d38b251425bbe46fc4450efe7a93a15d743ae528b196680574", + "assets": [ + { + "fingerprint": "asset1cdc9asu00s7ttjn68ntv4ug3qd2w6qhcszfm05", + "amount": { + "quantity": 1201, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1mw40uhdz4m8s60detped6zvvzzewf9eu9xtglev8t4xrxxudkuq", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "dbaafe5da2aecf0d3db95872dd098c10b2e4973c29968fe5875d4c33", + "assets": [ + { + "fingerprint": "asset1l0l9kkcam9dtckwk75f2g8frjsnq8v87azz72s", + "amount": { + "quantity": 2472, + "unit": "assets" + }, + "asset_name": "546f6b656e4e" + }, + { + "fingerprint": "asset1ly39hakm2pe775wx6ckeh68lsu3e3jpzspe95l", + "amount": { + "quantity": 7900, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh18m6w8kspard307sljwdqae7g09l5mv0dp2psnzaxslawv2psnd6", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e44", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "3ef4e3da01e8db17fa1f939a0ee7c8797f4db1ed0a83098ba687fae6", + "assets": [ + { + "fingerprint": "asset16pt5sj887r5xnqp3fjp34l6clpax8tj7lwhg8h", + "amount": { + "quantity": 2628, + "unit": "assets" + }, + "asset_name": "546f6b656e4b" + }, + { + "fingerprint": "asset1txd6559kfd434vhhvjlsejpdx9su7qncy7qy2n", + "amount": { + "quantity": 5692, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh10qzz8yp0uc8la6vaklfxvhgwhysqsz84h9tga25tyd25xsz8525", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "780423902fe60ffee99db7d2665d0eb9200808f5b9568eaa8b235543", + "assets": [ + { + "fingerprint": "asset1skmjjxv5vku8sfm7sgdza07lhn77z2pryap84p", + "amount": { + "quantity": 987, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset17qhzw853san3tryfk6ms93lax87nmskjwvxm27", + "amount": { + "quantity": 2236, + "unit": "assets" + }, + "asset_name": "546f6b656e41" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1e68548k0ye6ykwuejccpk7h3p6s0v5m3vles0pa0atc423alvdu", + { + "active_from": 100 + } + ] }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 159, - "unit": "lovelace" + "policy_id": "ce8f4a9ecf26744b3b9996301b7af10ea0f6537167f30787afeaf155", + "assets": [ + { + "fingerprint": "asset1uzyw6mttkclazlf73w3xayur5ys2xdj8qzw7hv", + "amount": { + "quantity": 2074, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1muyfauqxqurgphjr4m7kv9epdzmhlythje5wjq", + "amount": { + "quantity": 8120, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset19vyqvfqwqyar0cunvjl5vsy4acwctp9zzma9u7", + "amount": { + "quantity": 8775, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1q7ptmryfqweqcacym0r3mmvddyl59carlncv07", + "amount": { + "quantity": 7537, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + } + ] }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 99, - "unit": "lovelace" + { + "policy_script": "policy_vkh1mrk8vz2cst8lgw4x6aeyvk0qujsk202g37z4krl2s7quvv0eufd", + "policy_id": "d8ec76095882cff43aa6d7724659e0e4a1653d488f855b0fea8781c6", + "assets": [ + { + "fingerprint": "asset1h2wn8g0jl8dprugey47sstcwjgt8m44fvxs2l0", + "amount": { + "quantity": 6233, + "unit": "assets" + }, + "asset_name": "546f6b656e49" + }, + { + "fingerprint": "asset1dkh2lp4e7gjhxklv2c70uqxs3ufvcuyey27qwu", + "amount": { + "quantity": 1480, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1cstl8gk0fukxwwy4z9855ly3vyg8g8fphra5kx", + "amount": { + "quantity": 9978, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset19t8cn4xn6jjevfztmdtxjp9537gku2y3s8rkpu", + "amount": { + "quantity": 533, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + } + ] }, - "derivation_path": [ - "26486", - "31453", - "7290", - "27262", - "30912", - "17898", - "14118", - "15016", - "32265", - "13207", - "19741", - "11400", - "8300" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 80, - "unit": "lovelace" + { + "policy_script": "policy_vkh10ch85t930ylgjdsq3dlk4rnshzatnse7aex8g7e3ce96ggljn3y", + "policy_id": "7e2e7a2cb1793e8936008b7f6a8e70b8bab9c33eee4c747b31c64ba4", + "assets": [ + { + "fingerprint": "asset1f67lxx0hk84lx9ta8vskrkswzgxjk8xn8a286e", + "amount": { + "quantity": 2574, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + }, + { + "fingerprint": "asset1vz54ulvfnf7l4z6kfgpndm3jazyljtqnk0ngjl", + "amount": { + "quantity": 5960, + "unit": "assets" + }, + "asset_name": "546f6b656e56" + }, + { + "fingerprint": "asset1sck6prt76yvy8uwt42j8hmxs9292zv3tw7j0uj", + "amount": { + "quantity": 3161, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - ], - "script_validity": "valid", - "id": "b034194525637115190bde21240fbc10587e6b07425b5079c6714158313b1d70", - "deposits_taken": [ - { - "quantity": 161, - "unit": "lovelace" - }, - { - "quantity": 194, - "unit": "lovelace" - }, - { - "quantity": 7, - "unit": "lovelace" - }, - { - "quantity": 160, - "unit": "lovelace" - }, - { - "quantity": 172, - "unit": "lovelace" - }, - { - "quantity": 127, - "unit": "lovelace" - }, - { - "quantity": 207, - "unit": "lovelace" - }, - { - "quantity": 33, - "unit": "lovelace" - }, - { - "quantity": 238, - "unit": "lovelace" - }, - { - "quantity": 60, - "unit": "lovelace" - }, - { - "quantity": 64, - "unit": "lovelace" - } - ], + { + "policy_script": "policy_vkh1qsadype0ff0nwrnjd3c34qxh60l4kmqp8puace5mmfqwzjgq9c7", + "policy_id": "043ad2072f4a5f370e726c711a80d7d3ff5b6c013879dc669bda40e1", + "assets": [ + { + "fingerprint": "asset1phxzeu0egv8wt0vt6dersj0wt0uyzfd4rt6k7q", + "amount": { + "quantity": 8953, + "unit": "assets" + }, + "asset_name": "546f6b656e4f" + }, + { + "fingerprint": "asset1tm5rljt33mk3tn0zc6llwazgjxw0n7shr3hlc0", + "amount": { + "quantity": 451, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1gdc3z79c0h7zpg9tq5wnesvq3unqd0ndkee9eq", + "amount": { + "quantity": 6981, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1un8c8c8grfredlcn7dutu8ztx6khfxxrf50zu3qrgw9ws4wn4nv", + { + "active_from": 100 + } + ] + }, + "policy_id": "e4cf83e0e81a4796ff13f378be1c4b36ad7498c34d1e2e4403438ae8", + "assets": [ + { + "fingerprint": "asset15qe4u6rv2qvadv4tajhamar23etu3hp37rkpyz", + "amount": { + "quantity": 5770, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qg7wd6t4z6k0aredvxr6cqjec5ry36dcruu7fdnp480ccsnhh8k", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "023ce6e97516acfe8f2d6187ac0259c50648e9b81f39e4b661a9df8c", + "assets": [ + { + "fingerprint": "asset1fycp34y9pwf2smwht6w39lzdqxtpwmc4aqsm85", + "amount": { + "quantity": 4580, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset1n20a6ru3wqwdcg8f5jkjlldp9ae4nned824pjs", + "amount": { + "quantity": 1578, + "unit": "assets" + }, + "asset_name": "546f6b656e54" + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1rs447thtu96yjeq0jegm67qkktupunrhdjqnwfmgvfffzj4h9m0" + }, "fee": { - "quantity": 62, + "quantity": 119, "unit": "lovelace" }, "certificates": [ { - "certificate_type": "mir" - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1gd3hd6ks304290rhfvdz6wv2ca00aa5sjm2j6gn57y7us2v5djp", - "retirement_epoch": 14135 - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool18skfr7ejx3ns0e053j30zww3zhpv5w43ympl9f0ekgvhvxz0te6", - "retirement_epoch": 21933 + "certificate_type": "genesis" }, { "certificate_type": "genesis" @@ -16481,347 +26799,339 @@ { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1s0g9rukfdkxd02kcpl2ng4d0n6cqzgvfj358clp2n0zxdhck0t8q7q90fe", - "ed25519_pk125qhfhtmy9l582jetez44exu6hyz84c8l62grzkp4r0zwqmdt2eszz3sw6", - "ed25519_pk10cf8tdk3yv8eta05sla95ndgztqktmpq5gftq2as0cddzgur2m9sux2gdc", - "ed25519_pk1g22nakfqjpmnmpal2h2aca49hcs6cux242v58p8mrnj9telqz9vsg9ajjg", - "ed25519_pk1w2lywg7x373hhhtej9ranhf3eq73uwp80csht9tft68amy3s0s4svc7lh5", - "ed25519_pk1gkw2xrxmz47nzf6ruzkxqjdps56ckr2hn8w5ng3079rqf9dug0asz9wwgr", - "ed25519_pk1mztdncl5wsjd2cnz7rxz3t08ln7g2z84286e99ef69pead4x0fnsg0kl3p", - "ed25519_pk1wl6enx2uax0wkt5av73r44mn8y37atmeax092h2va896q3vsexgs6e9ezn", - "ed25519_pk1ta7djhzn5sheev6jzxfxfzwsyp7tsww29lzzt8my9claczz5snts0pldc0", - "ed25519_pk10y8e9h09dm6s9xl5vzesje5vlued096npfur550er0fvpgtv6t3qrhqvsr", - "ed25519_pk125z7lvwyuzf9a9u8z6adqye920dlpazat2t9r3f5tcgph44rx37sgywf2h", - "ed25519_pk1grfhcr2ugj3w6uxptd9p6gmx0ksmm4sjvc6kn6c4nk6p9mpuq2ns8jx4vk", - "ed25519_pk1tzfmhcg4t9t2rd8wg9y58p7xptsv0sxlfruljfgpv0qfta9m2j4qg5s5qx", - "ed25519_pk16zyjycrht3eaa2kaepahr2wn3mpc5me0sy8zgvesyszwj50398wswhkkzk", - "ed25519_pk12gknlfrc3wlla7hd07r3jhgmxrzchga8zlcn9jzvx2shmcjweflspxc0t0", - "ed25519_pk1nfugtll8w6pw0k520rs40mumu0xff4j3e85hn6m5jc2re9c55x2qultft9", - "ed25519_pk1yx8rdz7wlj8ut2y4u6wtcc8ehpfpnmgn5yzqeak2c347vyf2vsmqdc3af3", - "ed25519_pk1qqmvax05x0gq5dhh5j364el3u4xkad7zgzz4j6gvlyyjpjuj8aqsu6rm92", - "ed25519_pk19dnvnvl03mwwgf5m64ae6ndedfjsy6fwv67vwuyxkak7hlcjm6dqdey60n", - "ed25519_pk1287kc5p85cm7ca3ruzj3k8y4wfnpxqmj38mlgezudzrka588rs9sf2mpkh", - "ed25519_pk1qwg9q58gr92wyt53064v66p2p4p9lr5xga4x5as37s28hfj6788s97km8p", - "ed25519_pk1e7um3uz4gxggtu3wjcwhxaxr23q0k6tmx0t8zuz7y5ljkxpeu87qpmxe80", - "ed25519_pk1k6yhjtmrwzzufvm2neua7pzv8ugcz0dj28pmwkm0cfyatqpqacysr83548", - "ed25519_pk18k97l9ce98cfe0rwxwknjly2y2kntxhktdvh302x687hvqzghexspqhdc6", - "ed25519_pk1gddagz57p6fdsc3jq44ummewkdnd08v75cr0yuwk5yc3jj6k4d4swr8z0q", - "ed25519_pk1hrunpzhvnkpna237696c6wes6ezz592xmmtdtxlq65agq0v2k46srzzky8", - "ed25519_pk12nppk839wnr964pvspuhzwnljtymc6ujng2h965664rhcy2u9g0qutt0t8", - "ed25519_pk1ryt4d2r08pyjx5lnf5mlmjgfgdkdhylhsumgf56z774lkrarndds725jv5", - "ed25519_pk1unkag80fmwaey7ah3fmqgp084kjy38feqfeqfa37sl5ypv6rydhsh9gh7d" + "ed25519_pk12jxm55gyrnejkfpgcf65gjwtmc3deakfzvypya9sv74f508pca3smkmmp7", + "ed25519_pk1hheyxyf9242us7d32y549fxddqawyly5hx5kxkvezngkvwykc0js07ynhj", + "ed25519_pk19z4vze95l7djhdulpmy0hjc237ntg662yh7tjm2x8uuyzgljg87swr543d", + "ed25519_pk1uau5tljtwweu22wrq66ka5vuhupurmgd4xsrxtewpfgmq9dgjp3q8jf986" ], "pool_pledge": { - "quantity": 224, + "quantity": 194, "unit": "lovelace" }, "pool_cost": { - "quantity": 114, - "unit": "lovelace" - }, - "pool_id": "pool1w8g6rgml4a3rkk0ylwrc3vsg4rf55l8pmmhplurnldksgtkz788", - "pool_margin": { - "quantity": 14.58, - "unit": "percent" - } - }, - { - "certificate_type": "join_pool_external", - "pool": "pool14tcls0tea3at84rmpp5yjr8g6umv4tzlqcwkcjuneg9z6qrjx34", - "reward_account": "" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool1efeqrwnzyumdyjxwundr23cphskp934u3mwqdc25pm8h6v6teag", - "reward_account": "" - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1xhyzy2gan20mum460ul8q2adcsc9qrzt54946sak8dztkq8p6g0se4tj6e", - "ed25519_pk1shqy2szh3dw9xakads6dck554h7hwer45vq77f9j6fycqpejuuhqk29xzu", - "ed25519_pk1h0v73ylxqakddtaggjy0d9dztq29l27vw52qfz6pjlcgrpgvt2nsz4z5lc", - "ed25519_pk1flr283tln4xltkxjf5ea3le5tql7ps9lyjwecvp7cdvfamzzzsmqpnsgm0" - ], - "pool_pledge": { "quantity": 156, "unit": "lovelace" }, - "pool_cost": { - "quantity": 99, - "unit": "lovelace" - }, - "pool_id": "pool1u3epl4y736qszavn7s2nl9thvcl00l65fldm02apzfr3cvldzcu", + "pool_id": "pool19qeqaxnwj8wc3wrtz6pxdpl5mf2gnklvmyak0gllxxagk6fnnvx", "pool_margin": { - "quantity": 17.53, + "quantity": 10.54, "unit": "percent" } }, - { - "certificate_type": "mir" - }, { "certificate_type": "deregister_pool", - "pool_id": "pool17rrec27k7lnxznd2zal9mtxa2ryamwruac0hv6qu3ncz6e4dxqj", - "retirement_epoch": 30235 + "pool_id": "pool1ht2384ur5h50da84ukf89zdzdkmkw2lmhnh8v3rqp9uyx7kfgft", + "retirement_epoch": 28950 }, { - "certificate_type": "join_pool_external", - "pool": "pool15n0nfta2y867fy2a65qejqhjpegn55gy5guv09vuh97pqm40vgg", - "reward_account": "" - }, - { - "certificate_type": "genesis" - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool13fapa4c2chv34272ux7j5zwmt2ylkuk9ycn8fghnpjh3qqrfj5n", - "retirement_epoch": 8111 - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "register_reward_account", + "certificate_type": "quit_pool", "reward_account_path": [ - "10122", - "2854", - "30267", - "3458", - "6332" + "13531", + "10530", + "31953", + "12060", + "32474" ] }, { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1djts7ztyuau9quwkv8evp7v3hz39635plkgdpzjf946xfglpyarsak7lyd", - "ed25519_pk1eqjrz30wne7t6km42uqn2yh5su8snhw3azq9m6lvkdgy04km2ntsywlsx5", - "ed25519_pk1ccj3g2djs8m85z4saa8jntmfsvc2wjt2ga577f63z8pmdfgnhgpshmtrxh", - "ed25519_pk18lhl28gmjpa4ln8w9cq407v30nhp4mw5wn2pca30tdu4y2ksm69q0et3xv", - "ed25519_pk1qngq9dt7e2creyrlkz45rp537dxxl5py7q7s3ffzq6e0rsyuhyyqkk04va", - "ed25519_pk1arex2nwpyhh2x8fa53jpenewmavn2j6smyqmqnclf3c2yjqj6uxsdlplfw", - "ed25519_pk14nc2cgdjfzxxhk75am9mzmclx0lwm6tgzc7rsr2yefs8jep5a90qw0mv99", - "ed25519_pk1d03x08sums3u7mg5vh2mmq0tzm6c5v5ljdqvey6y02y2fea8avlqxxuvvm", - "ed25519_pk1sumehfmt0qpwjvwz8mtm55qwhdwut9rszjn7tqcfyy24rnp8f2tswftphd", - "ed25519_pk1p8zm63jvclkeghmf9gnmpnf8x7gvmt3s4xxnrza53rguqupnj9kscgjd3g", - "ed25519_pk1gl34zfgvmg6z9wqdk8780tzcs5s2565464mw6hwg4w4xnufkt5pslgut0f", - "ed25519_pk19r7wf3vc69mnedk5ums92zmx7v6e849yx6g64kmp03qq3rw7jwfs8rhpta", - "ed25519_pk13m7rvyspevjvn5m5sfxrks32qpvp54cx8u4tt3y5424t0mlj2x9ssr7luv", - "ed25519_pk1pwel34vpcd8mlp7kfk2eyswzpxjlagv26jk4a380j4usnfmenz8suf7zq6", - "ed25519_pk1captnvwkv2km3kypfgd89786fkexa3upzht65ywqusp042hyutusa9uxc4", - "ed25519_pk1vvu7tkd4l9dx9gwr22j4srngshpcjcl3dym8gd3yq0xw4le3zs4saslkw8", - "ed25519_pk1vpcqavdcwtpwzluydgw6pd2m4jr9ln2rnfndta3nw64460e3ep7s60qcjn", - "ed25519_pk13ln6m4jdxdw3kky6lz244n5xcsmzv6wklytdmdr6nw5285l80dsswr7mt9", - "ed25519_pk18sqt2xgqxx8dpq03st0cxajw78srxmh0h2unh9zrqdt9ntwjkhvsdktf97", - "ed25519_pk1pqdq28gk3xq3s6t8e7dxwd07ucceql0l886p4n48fwjcepp86jlqsrhnrp", - "ed25519_pk1eruvd23lttl6aew77wsjtcyuyc3vk58j3qne6cr7vqejya0vrfkqvjwa62", - "ed25519_pk1wydf7r22peveyrhcd93edm8k9t89t807vvaku3lnhhyt5cpr9gxq5zsh32", - "ed25519_pk1y2hsej7t6qdq8aqrpha9lfrrhgcnvtruwzzj026n2t5jjxrs68ssaeft4q", - "ed25519_pk14ep73mvkwqmyjex4585fckg0l8zpycraygyt0cvz2s0rc3dwc8xsggp7d4", - "ed25519_pk19wqwf574qx8lfpk0z9ctxwdqmlt24qv0lw0me5pups96lm27tdmsfsm2a6", - "ed25519_pk18ytn0t6tpmksntazleja9j3zde500ryrkesl0ec8xp0kre7n4f8symqxla", - "ed25519_pk1epd8pv93v6gafksef7melscn4jaa8vlmma8s0sltf09gg7da7xrsgu0gmf", - "ed25519_pk1rfylc3lryrw02mmdkng2n5zfn3k9ry2xle0zl7ucctr7exzanntqgwdyd9", - "ed25519_pk1mh2ck8fh4vhh4ksy0zxtla3x3svxn8rdyvyd0yyrzeten2ctzc8s4tv50d", - "ed25519_pk1cnh3h9507z749qzlx8eyga4wwpev8vyap4ljtreqw2ef9ke0f86sjpcrcw" + "ed25519_pk1nz0ukuegz62mzdcefhgc2w7740g70yj4t9v5j9ye5r3l0eh66drsj9eacx", + "ed25519_pk13zr2mp7td09pq8s80tu204kuurqje254e2rcrt9wyh4uqyz09txqfxmk2v", + "ed25519_pk14grvf3ztnrx5eavgahkwkm76x470u39y68mvyejfmyqdgegn4ycq9ukqk4", + "ed25519_pk1r9atyqy6u0snkncdz2alxcmpthmhgg2ayysv55pur0q5zywh6x3q770sld", + "ed25519_pk1r8fn4ccyark6g02y39lfl2a6hhz4v2mttan587z7y2ttmh0mmdpstfwucq", + "ed25519_pk1sx4589d4mt2zc5lsg5yvpglx5llvrzkgp7uw54ae5vx9rkckk4vqphj9k8", + "ed25519_pk1vxrr5ngzdrx4wjlm30z2kmu735ur0chlcwwhz23nmfkg2an24jyqtzwk6x", + "ed25519_pk1j6an4ryy4phg222fjrvmvexckl4tf6pxvahap3tvqe97ex0cmppsxq368f", + "ed25519_pk1lahwty4lj9hcpy0qhq6x6g8kj0aah0mrlxpy00xaxvaw9eqzu7mq4pm6vh", + "ed25519_pk1epefue5vzduwgw7dk6lgypenwhyc667tf72uaymsf2m0sru7h44swh0evm", + "ed25519_pk182qtpqzzca0jckkvukdgvfe3l7g98gxqmyle8v2serzh7urp0y3s87f5y9", + "ed25519_pk1sz5h3mgdzdx4ahkfspekxkpugsp55phxyxp2t2r4r2ulymw7dtzstf765c", + "ed25519_pk14aryqezwyvs5wmc27mupvkmm6e0u09fhgq85yc79uhfump5h359sas5es0", + "ed25519_pk12nn3s88y2s680exz3phd3kxrp4uvt47wt59pn35fg3wr4ph96csqhyj3y7", + "ed25519_pk1dtksewh5g44tk5dmj7wmnvkh0dcqj4hec0pcsx6tq5pv6fv0u8ysfl7kdu", + "ed25519_pk1qayj5mk6deu09j7f6n9kr9l3sj3y3s9h6089kd4n5mt3h2y2g7tqxypd9m", + "ed25519_pk176ut53gtlhykwxnzr35llfut8w3y8uyuhqfh80ekv2asrgqvwjzq504pc0", + "ed25519_pk19x3aezpx2lgdaj0yjs5yxajv33d8hfc9yfj9wummmz7pvhtau4dslclpq3", + "ed25519_pk1k70vcykwlnnplrf3uxtfr7qtsr37ma8m9trsvz067n9ahvza6zusegqfh3", + "ed25519_pk1u5rw2j23ug985w4c5vqaxgtstnkh3m5su0j93w6wm6n3qladqw9s8fmxaz", + "ed25519_pk15dczwu4hg6rdrma8xxq0jzqxe57xz3mhfsu8gq9wat85pzc2h9qqxgll3y", + "ed25519_pk1ea8leveqdqvf68ejx3w7p4fk76znmnwd3y2pz586g4r6pq0f933s2mltft", + "ed25519_pk1y2tgypneykqwk9d9y8ujzwu06envzx34jx44wqc97a7zvqptd8fsjqwwed", + "ed25519_pk102wfjt4cyny83jyg55f3824lcpjtfcjyknrfz2v7k2zynmawm6zsnjple7", + "ed25519_pk1dv5hefkgq48m67nr63rhlkark6nt4rqxdejr9q09urp620cupp7slnqy89", + "ed25519_pk1njsyajspfehkryp2yzxsdqzt75n0zgyx5k7ufutdgfaechh3uy7qa96vcf" ], "pool_pledge": { - "quantity": 248, + "quantity": 206, "unit": "lovelace" }, "pool_cost": { - "quantity": 106, + "quantity": 117, "unit": "lovelace" }, - "pool_id": "pool1366r5janz52xnx7wpqtjmj3namaz5uesykymmczn477msemt7jy", + "pool_id": "pool1gayhsz8xqhfy06xj3xdgrzwhnavvgdq2xglx4q90ufwaj4a67ew", "pool_margin": { - "quantity": 12.13, + "quantity": 95.38, "unit": "percent" } }, { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1gkeje3j284ys3ctemju0ah65ltalkgm9u97w8xqpavvfwhqyxz4q400yta", - "ed25519_pk1c39zmr8mc2zem39pkcg2rnuvrw2kvjnustjf8drathr25363w9esujh682", - "ed25519_pk1fzsh48yt57a7u4t6qztewpz37ugpz3aj9p3zpf8fqhkxndd0dgcs0w7l87", - "ed25519_pk1673x55zeh6ytr4y3lq025j32458l8c7qtvnmflvsnckecsykpm8scqu6fv", - "ed25519_pk10rjfsp87y74fzgdgjazu7rjmvcud3p7q5vyy2ugw2jdldvhw7hxssv7jnu", - "ed25519_pk1cx2psxjncx36660a7x0kql9yth4h9rn9mxukx3a4mq5rf6lwrmzqd93zqz", - "ed25519_pk1tagdudr4nrhdga66h0j67ayz54men0gunaqej95y8026m20pvn9sdrahrs", - "ed25519_pk1tn6l952xql5psdc824vfk4c74yqz943y4373djmu5rcymc59q2wqq3cn76", - "ed25519_pk19gcq7uwv267d47hn0q9ctup67luefun7qg3ugzfpn4rl3qehv9gsvu36t2", - "ed25519_pk1pmmq7cg5upa34v67tax30zdwsr4uzmesa7gmh00lckazprxvmhvqrvh0vp", - "ed25519_pk1kdtz6435ezsa5k0c7kk6eusnhruguckyrkajd6aq8cam0fx66yjsw9hx6w", - "ed25519_pk1t89j3k8st6ndtwm7h09p6puq5ut4ksek9qwrp8ua2d6ha5tx0hqq9wft7k", - "ed25519_pk14ptazyncm8qs3xy7rjj2zaarn40999e72ca9vn6h8v70nxvtq6aq279qja", - "ed25519_pk10p65qaxfnaksa9zre9c79lfcapg3s02s8f4j3zzqesdyk59y8r0qh0uz9r", - "ed25519_pk1cd8tpf9ksex9pcpdk32ut2mvk0wvykduv5va4a9856trhjkrgn5stmjtuw", - "ed25519_pk1rhqqtrcsm5g60nu834vhkgy6xvrrl42tsms8khjdrzpfyvhrjyqsdellee" + "ed25519_pk1tjjsd8admxckwzmm3sg3tnt5gnmh24cysn7phfnjn57m2pkhe6xsqqc2r4", + "ed25519_pk1nn6dnt6jylzsrpfwqge8df5exvshme0zkayrn5w3n0l5dmtpg2tse4l6hm", + "ed25519_pk1gl6gw9qmv7tvm0nhj47q53yma46g5gs8hr3myghz55p6qtzyugrqe0zjd4", + "ed25519_pk1lcw0dfzl502m2x0xngkcztkamjgwfs0pk7gu2nqav3n6tnny505qx2988c", + "ed25519_pk1ztzv5k9yj379yv30m4f6kfdpwe38mhqm3scg06rfh95wnlg68vgspl6lta", + "ed25519_pk1snrmq97cgffcvz275gfht26sdzdy6sva0d28r5d322ql72lgw7hsm85f4m", + "ed25519_pk16lkqpvh089yk7mdsstr90c9yyyu32qg22uwn374f9jsgn3dv0m7srvfzzh", + "ed25519_pk15jx7063zktcst4kacl6necdha68hcg6mvcalhldn6p4pmdhncaksdz36p6", + "ed25519_pk1p3te2dcygrqdeapwvexu79uglnawkwc0zd3srg4ymkhtl6cfajhq6c5dhl" ], "pool_pledge": { - "quantity": 223, + "quantity": 141, "unit": "lovelace" }, "pool_cost": { - "quantity": 238, + "quantity": 134, "unit": "lovelace" }, - "pool_id": "pool1q4wnxcft80fpn2guxs64zyrrzr67z47tfjqd9jnyxme9uqz0dp9", + "pool_id": "pool1m3n40w9lpuuqxwm5pvz8v5rph79qnvvssg80n0kgavgr75r7gk6", "pool_margin": { - "quantity": 9.16, + "quantity": 42.63, "unit": "percent" } }, { "certificate_type": "join_pool_external", - "pool": "pool10v5kmqerxwy7unkvm7m5w6ku889xu08yu96te4dtekpmgrv2lx2", + "pool": "pool1qup8elrcz4dl552r8alclnaelh742kmhjev4jl06h63tksa78al", "reward_account": "" }, { - "certificate_type": "mir" + "certificate_type": "deregister_pool", + "pool_id": "pool1k9s09vy7p0f0y9hanfyq7pldlrk559kuy9nqq29edfy86lmkufk", + "retirement_epoch": 19802 }, { - "certificate_type": "genesis" + "certificate_type": "mir" }, { - "certificate_type": "quit_pool", + "certificate_type": "join_pool", + "pool": "pool1jdtzva389td3yfpt6mtqzc4kdkn50wt3em43el5v5ttxvf3qlql", "reward_account_path": [ - "32408", - "24204", - "22556", - "18395", - "28110" + "20760", + "5831", + "26879", + "22219", + "8608" ] }, { - "certificate_type": "join_pool_external", - "pool": "pool1z4lauw6ax8rsnl3f6n47mvnr4kw4vhnkd4rxzlg566acwjcqdyx", - "reward_account": "" + "certificate_type": "mir" }, { "certificate_type": "deregister_pool", - "pool_id": "pool16x0kxj5txjd6852r522033hmkem5htyaqu9v5ztfps5j76rh7r3", - "retirement_epoch": 7958 + "pool_id": "pool1p9z83tz8q2sq74l3gtfar6rx7s7gyuthqpj87ar867r3uh3dq9k", + "retirement_epoch": 25087 }, { "certificate_type": "deregister_pool", - "pool_id": "pool1qsnhre4zfzd5fcytmw366gtss5c2g0tudl6a867ly04cuvpy8rs", - "retirement_epoch": 21254 + "pool_id": "pool1xd2z4302tpj9f9lctjq9lrlkxyjlcqzd07jzpauqkwagkvjm3tu", + "retirement_epoch": 31656 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1q9pr7yv5hscqvak5kgm2yav7e6uv3qjl8p9g5rd4mrm87phqclt", + "retirement_epoch": 23322 + }, + { + "certificate_type": "join_pool", + "pool": "pool1clechfcrhs47vaad20vmzmvnc4qcz06xsjecfrrn6g35w0pxr0m", + "reward_account_path": [ + "9743", + "3335", + "29469", + "23835", + "107" + ] + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1lvgmr5r6r3wz78s836nkgkyqetr5c6p5sv73k7vv4mm9uerf3zt", + "retirement_epoch": 29129 }, { "certificate_type": "register_reward_account", "reward_account_path": [ - "8666", - "20369", - "29912", - "3542", - "12686" + "23567", + "376", + "25765", + "24310", + "28807" + ] + }, + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "32704", + "9790", + "29206", + "3627", + "28037" ] }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool10ylvez7pwnewuduuzff6namd7j0chhuwmlgcpzhsqa0yv4nvn7q", + "retirement_epoch": 24533 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1jyc686qq9tzus6tsmslvs8dfjcwujute2y38nsvthx8zgtsklmt", + "retirement_epoch": 27910 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1hjca57p3wxm2nphkr4l5n9yx3wskmj5hpt5hyljr0vnxsmw2p27", + "retirement_epoch": 2218 + }, { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1jzvm6g2wqe95m9s58m69c6mw9a02932me6zg3q9674skc7r7w9xqd0d8h6", - "ed25519_pk16mewe86ypnqkc8hh8cpsznp63dy0mcdf5569fa04vnqv4wnlvjqqh8ff98", - "ed25519_pk1z5pjjk3pa9fcy7skx325873n8caswkyrlt69p8n8glm2lvte6cas8lxyt8", - "ed25519_pk186vf3pns4a8jsd7gmygq2pax6ze6pxjxrxxhpjmtckyrzfd5a7xsssq82h", - "ed25519_pk19ed07ex4msqvzw9ym48racgx3k56w8m94wytp8rdtwnyfknst57q9868rm", - "ed25519_pk1lchvvfzxwt6y30g9zgsr6dnh4fje7f23274cyfrndh9pnqagukuq5crx9f", - "ed25519_pk1rn52jcr2kamjfrdy33esx088ttegecu3qqzhmg5nu57d2jva5hfq7znm65", - "ed25519_pk1w7uwh5nd6289e6an6vtct2nglhuw964wnmu5yd4aynyfnz0pyhts8fv5zf", - "ed25519_pk1hls0pra5daewhwrevf0uvwsw3reu34tunyztp8xpc467dxqkzvasp2dymz", - "ed25519_pk1pa70g9xlyz4zgm88xhlfhuah4tfmf4ml8lq62fwz7yrseatz33rqndzk79", - "ed25519_pk16z9hrysawwjax9egzrrl6r0rav66natv6kchv27ycc9ycz5ayrcs4rj2qs", - "ed25519_pk1xtnq5w4gzxfrxw7l5ceckyzlve905y850sa6gqcv8q2s8rutpdqs5dxpwu", - "ed25519_pk1u76q73c279asax5kmzc76la69j0zh035lmgqvt9c6cx8tlgwn4xqj26p57", - "ed25519_pk12mzh250crv856h0f3dckjn5c9v8n349rtpqwg28p2jfsj3epjxasvs8jlu", - "ed25519_pk1wlp2aeasswpnulqqajvcz6mjxpcdl53kgwepv5qtpr0nrz6gaucse5wucu", - "ed25519_pk1n24lgq0mzrdh3av74h5928x4c5utj38lwf68scun7lwh7wnj095swe5jsj", - "ed25519_pk1nwvv5fkmvhdgj7sk2unleu4qvdwm3j6njmt4vvxy2fntchamhgcqkv6rza", - "ed25519_pk1083lpftprgt36lw7xz56lkh7rzazpza56dd8qwx7yyvq2va88mrs9ayf6x", - "ed25519_pk1uyxnms5fs57n7hx3kg8gf28yc3tk2j8zx8yegrjet3txfy76uluq3zqyt9", - "ed25519_pk18yx9w5ddkdh9u065edvc93slzgv0xqyx8ea9pruha27d3v5g872sppz52e", - "ed25519_pk1un4rjt0903w7ucxaz90c0wvwxt2uyfups05gszymglv9k4yrpyaq4xgy7k", - "ed25519_pk1ncc34ak4lzdh3tpw3g7mdhcs35cq84dmvuvj6x9cxafnaesqe3gqrzs32u", - "ed25519_pk15e82zfuzu2akaclt6jlu4t5xrfmnamlsm0atz7np2vmxh6avthxqpy5e3l", - "ed25519_pk1uv4xpyrd37dd6yhs6jxsgfysjf3xq2f902ccjupzq4p23p0y4cdqg8u7ef", - "ed25519_pk1ycyvndm53ht72nzh4hwqlsakhpg70j2ctx8fcnaldkym5q344qhsckvj8c", - "ed25519_pk1dkzmz2lkag05cjx5gg7a9h23dxcf5cl74zcdst5hmq2kufdjclysxsyvjy", - "ed25519_pk147988gevkexywnwc807tqk4d79nthukede9g4tku925rnyhwmmdspk3zn3", - "ed25519_pk1xcm8xak3889as537suj7zl5darv8ght8hjnund68lsvy5jv5z5as6u5tl6" + "ed25519_pk1clgjry9gekamkqsy2yltfczr5v9kk2t58kqms7p2jupsnfuzwt6q3lu380", + "ed25519_pk16gc8w7k38av2z4n25040t26yeeadspfj3tt4zr7zykjqm2pa436s70gxxk", + "ed25519_pk1qcnt9237z73a07ef646yc6mkwcvtf7hwjftak97u2sh9jc9luyhq62jwzn", + "ed25519_pk1k2653n2wgzcpme7gdtjn9ghnxhf4fsmx4n97gez9zthkplde0qrsxt9sta", + "ed25519_pk13rxqxr4ar08lznzvsax7tj78w2mnpk2w6r5unzwln2h6wc969pvqm56u3d", + "ed25519_pk1a9g07ssf7e5x0fgr6andtx6jlxvnl3rc0e2t4umcry76gtesngss7ts3q9", + "ed25519_pk1hwe3k9veau4ad2vqtdx45cdf4pw2wrf5lh8zaryrm3m9et3mz07qa9has7", + "ed25519_pk1n3hqshszelycgzcf4uj0vcdw6spte3y3x4rnmaqfa0eckm6jkrzsqg9ry3", + "ed25519_pk1jrqy5hanncnm549cl47wfdhvx6ew2drlgrj08957pj96lqmxneyqn4t8km", + "ed25519_pk1wdz3u8mky343g2yafjvs32etd0rekr3dn4da04mw6sjpxw26hefq4ydxax", + "ed25519_pk1mq6sraanf78tsy6cq772tkuu4detdn7hsu9hdq58mwuzu2lgdppqw78nn8", + "ed25519_pk1zc4f9pzmk20k2993nzn6t85j0sd6ahc5jvxlfy0da0t8dgavw2askj23lq", + "ed25519_pk1evvyf4hpjtlw9yqr747py02hd6mdmu8006extrxc93qm0m6qk30s2h2tzf", + "ed25519_pk1cgknuvwlcmx3nz4zp5n8mmnxl9jjk2mng8z96lz6fsgvamm8drmqa58phu" ], "pool_pledge": { - "quantity": 15, + "quantity": 9, "unit": "lovelace" }, "pool_cost": { - "quantity": 182, + "quantity": 80, "unit": "lovelace" }, - "pool_id": "pool1ya9vu80fm75gavgjh3jz3hkuxw4gk2tevqlq7qfseuv3c875ure", + "pool_id": "pool1gx3c3upe0ccz3nwr7wzlm4ak4txsfmahcqjsv0q6k558khv6084", "pool_margin": { - "quantity": 27.61, + "quantity": 48.89, "unit": "percent" } }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1wya7yel36me8gvd662qkkmwqjymykqpxet9vzk9k73a4g4s0atr", - "retirement_epoch": 9517 + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1gkmx8rvxdvwwkwyzh5upqk4zzw6q4j3evcuvd4r24u4gu97dmztsuhk4qy", + "ed25519_pk1gdem46l86fj997rzz8nvcla3hls0vdppdxc57kphc4pdya2gcxeqzmjhpy", + "ed25519_pk18jkdvxx8gq8f805hpn7qa42hdsvj07z7g3mre2x7wtj3sf65fqnqw0xvjw", + "ed25519_pk1eqr4ullwc4k20hxwu3v2lkq95spzg6aghxetr8nuf0mztrpn56eqfffgn5", + "ed25519_pk1urantwd90errpf376uux8vmvr24mqee60tvxlxsqjujqp8vpjqase7y7ge", + "ed25519_pk1jnx3qfz6kka4y5pq4edsham9e5vwrtsj0udvdsukc7q09xsu9ekquf5tpu", + "ed25519_pk1fzfuttge37gar0mury2vmhjj7hphder9yhe7a6w0lpvfau3n7r4ssdajfg", + "ed25519_pk1hvw6nc3auq65mazdrk36h29f7ck6xyxhwh6x5qrd7g7fnw8shtgsmnf0ct", + "ed25519_pk1jnk3qwzjf5q5dx8y23c2l0svlyvuyc2dep33n3xyyma64mvkv3eqxzkt6n", + "ed25519_pk1a9wc9qn7j4rcwmy5445y8sxjh7wddffk27xjm7y4ujur5q5r66uqt6r4xt", + "ed25519_pk1qj3s8eqvarpfcwyh6hkzn5yt8ef0qr86tyssc3mf79x4e6c5nw7qht0745", + "ed25519_pk1rlmgrzjjkyh74tnek3nq9cay367w6c8plgpy3v4pumxnakwy5c0sayj7wk", + "ed25519_pk1kwq5uqt04dhtyaey2payxsw76exdmnkwzu475yjt9vm5nxdzeu0qqq32tx", + "ed25519_pk1lvtkmxstm6ufx48ttzr2ksvg7va4lq2zkl5fxvzhtnupc5sn4swqed4emu", + "ed25519_pk1qz44kctk9a320hw93te82eus2jrf9jcywleax8t7l6glf6880t9qag7x2e", + "ed25519_pk108u56v5dw0n525gtptkdk9t0vz8uhduzuqswgug54hfmjfrlngxsk4mt78", + "ed25519_pk1f9hs8q8np9nw0w3dv3yzzm6kufxk520h0semgr3jt8cu4z70j72shp52gv", + "ed25519_pk1lwa4muw6p0s2wlruzd5n46mt796jrfmryru2y7r56gldnngylwzqe834zg", + "ed25519_pk1r8ea59mnm5czhxdrgeq945qnqgr3hzkckh6k3y8k82xlpx4a5c0spnl7l8", + "ed25519_pk1ed0dxsp2g3xlfc4tm46c8vkssu8zjl5k64n6crm688dy6y20aatqeq3tec", + "ed25519_pk1efm6m92nvj8gmn5td4gkgwyy5uzs73a5s0cvs9a9g2t3tnng99esj6r8nr", + "ed25519_pk1fj2dd0e0qy2fw9796avca484zuzgjettham09wmqzcuwqzq9an8sansz6e", + "ed25519_pk1c5yc64jaf4snhajyqrwpzv7znekspp923xa95hpug7mnse76xhzsjje5kk", + "ed25519_pk1zamask07sf8wq7mkm55lvu2tkz5ufld0ghay3nfap8hgzdzp6dhs0pwmzj", + "ed25519_pk1parj850tynjhkaj4gvy39jhx5h92jjeaaxnn294qf3ygnd839nqq5tyxnd", + "ed25519_pk1lgnws033jjj0re4d8yr3vxjee2xnt45ethuaqsqy0f6cls9yg98q2f3ez6" + ], + "pool_pledge": { + "quantity": 226, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 62, + "unit": "lovelace" + }, + "pool_id": "pool196xh5fn8hhf2n4ncvh9dl6q6w7tjp3ysmguluerxmp3wk4snx0z", + "pool_margin": { + "quantity": 0.58, + "unit": "percent" + } }, { - "certificate_type": "register_reward_account_external", + "certificate_type": "quit_pool_external", "reward_account": "" + }, + { + "certificate_type": "mir" } ], "deposits_returned": [ { - "quantity": 71, + "quantity": 255, "unit": "lovelace" }, { - "quantity": 152, + "quantity": 95, "unit": "lovelace" }, { - "quantity": 194, + "quantity": 145, "unit": "lovelace" }, { - "quantity": 50, + "quantity": 235, "unit": "lovelace" }, { - "quantity": 44, + "quantity": 0, "unit": "lovelace" }, { - "quantity": 41, + "quantity": 220, "unit": "lovelace" }, { - "quantity": 0, + "quantity": 51, "unit": "lovelace" }, { - "quantity": 165, + "quantity": 101, "unit": "lovelace" }, { - "quantity": 242, + "quantity": 33, "unit": "lovelace" }, { - "quantity": 102, + "quantity": 11, "unit": "lovelace" }, { - "quantity": 103, + "quantity": 130, "unit": "lovelace" }, { - "quantity": 103, + "quantity": 79, + "unit": "lovelace" + }, + { + "quantity": 10, "unit": "lovelace" }, { @@ -16829,185 +27139,678 @@ "unit": "lovelace" }, { - "quantity": 151, + "quantity": 4, "unit": "lovelace" }, { - "quantity": 88, + "quantity": 86, "unit": "lovelace" }, { - "quantity": 213, + "quantity": 152, "unit": "lovelace" }, { - "quantity": 140, + "quantity": 194, "unit": "lovelace" }, { - "quantity": 91, + "quantity": 155, "unit": "lovelace" }, { - "quantity": 142, + "quantity": 24, "unit": "lovelace" }, { - "quantity": 138, + "quantity": 117, "unit": "lovelace" }, { - "quantity": 222, + "quantity": 75, "unit": "lovelace" + } + ], + "metadata": null, + "collateral": [ + { + "id": "376065bd3363375623133fc4583f17b57e74627c2656374beb7504192301317a", + "index": 1 + }, + { + "id": "36141ce406045f61212f7578b06b18700e4d20b267185f7c145b672a4833338d", + "index": 0 + }, + { + "id": "99150788290b0702001d1434c51432515c546f477f275e104c744f5d70187763", + "index": 1 + }, + { + "id": "16022e1c3458204a1e4b7d891221266a4d5f5d7425194064522b787b7606f513", + "index": 0 + }, + { + "id": "2a9622851db01b6f7f650f73725e423d19ee6828e72baf146277ec710a76105f", + "index": 1 + }, + { + "id": "1660615f723114267f727c3da63562c77c2e145a7e5e780c666f0d060f2355a5", + "index": 1 + }, + { + "id": "6a6311751b0219113b77204d5866e229d368761b7769760e1711253b49265802", + "index": 0 + }, + { + "id": "4e33ea3f5b21546429442d07463522ab6749267f36ae3c312d431807d100465e", + "index": 0 + }, + { + "address": "", + "id": "087a446d7c589d9a247207424e20555d426b041f7d022b184b4423cf0c6f344b", + "index": 3702, + "amount": { + "quantity": 235, + "unit": "lovelace" + }, + "derivation_path": [ + "14031", + "26471", + "11323", + "7447", + "18302", + "10367", + "2862", + "2327", + "17746", + "18108", + "22686", + "20692", + "22247", + "23119", + "1919", + "13789", + "24565" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "id": "163faf9a0959772f6e377e6e4b82680c6654101d6f234f13920a8fd774193f3a", + "index": 4704, + "amount": { + "quantity": 120, + "unit": "lovelace" + }, + "derivation_path": [ + "1419", + "6432", + "27275", + "18777", + "8564", + "19442", + "13073", + "1752", + "834", + "2833", + "13553", + "30369" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "id": "365e3c302c7c5721058372420c33c53eb9347a5a2d44270b6211695c4b5d755f", + "index": 1 + }, + { + "id": "03372330574d6cc96bea398e006c7f4c24572f60f16c952ad06165c42a604f39", + "index": 0 + }, + { + "id": "5b2b1e5359612c6e13684a4f30d2202a034222022c761c7b40255e586b1d6c68", + "index": 1 + }, + { + "address": "", + "id": "6c7700415731654565948e6e8e14095c3a3f061d122434504d030b5a5e2d1d1a", + "index": 16814, + "amount": { + "quantity": 61, + "unit": "lovelace" + }, + "derivation_path": [ + "5567", + "28093", + "4818", + "29122", + "6622", + "32448", + "19468", + "11835", + "17102", + "12956", + "25368", + "3907", + "15591", + "1113", + "7433", + "5153" + ], + "assets": [] }, { - "quantity": 228, - "unit": "lovelace" + "address": "", + "id": "22251f14733348175f39890c7b1d087f2e1e0401295e3318718d49045a693e34", + "index": 28556, + "amount": { + "quantity": 93, + "unit": "lovelace" + }, + "derivation_path": [ + "20423", + "1336", + "762", + "1921", + "29022", + "1430", + "21582", + "21409", + "17283", + "7894", + "20083", + "4710", + "28309", + "31806", + "16582", + "12721", + "17938", + "31750", + "11036", + "20208", + "18718", + "27326", + "27775", + "32337", + "16802", + "14064", + "10276", + "17882" + ], + "assets": [] }, { - "quantity": 139, - "unit": "lovelace" + "id": "3f5e95e5165eed1914445de51d8e20d70b1d3d1947795401cd7d354b2c662b59", + "index": 1 }, { - "quantity": 7, - "unit": "lovelace" + "address": "", + "id": "6e307d10ce402f2a2b13692b1f6f144d1b3e730e566370673a2c6b66732262a4", + "index": 443, + "amount": { + "quantity": 166, + "unit": "lovelace" + }, + "derivation_path": [ + "12401", + "9482", + "5323", + "4678", + "24767", + "762", + "24209", + "21625", + "11157", + "15983", + "16487", + "17020", + "28825", + "10296", + "5502", + "28975", + "32094", + "31928", + "29702", + "2959", + "32272", + "26469", + "28280", + "28069", + "24431", + "18392" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 39, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quantity": 24, - "unit": "lovelace" + "address": "", + "id": "3770733703f005243b25f38e3fb1014a74aa1821605b0d3d0c130c4440630c08", + "index": 2955, + "amount": { + "quantity": 150, + "unit": "lovelace" + }, + "derivation_path": [ + "26692", + "26304", + "30733", + "13809", + "22964", + "29390", + "14054", + "32136", + "19818", + "30754", + "13508", + "26808", + "1519", + "24961", + "6767", + "8784", + "30142", + "21623" + ], + "assets": [] }, { - "quantity": 52, - "unit": "lovelace" + "address": "", + "id": "2c2b7b6c740d7e3f607c381ef06a2154263621193f0f7b494c61b4623e672e7a", + "index": 13486, + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "derivation_path": [ + "11495", + "27304", + "26529", + "9389", + "14356", + "14412", + "25806", + "22840", + "5984", + "21133", + "12192", + "31881", + "24309", + "17939", + "1035", + "31593", + "18380", + "13010", + "968", + "16723", + "3446", + "20217", + "552", + "13021", + "12904", + "11793", + "28886", + "13271", + "29335", + "4578", + "6306" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { - "quantity": 235, - "unit": "lovelace" + "id": "633a0e6c26134a515c4d7306661c196a09ca6f4b400a69651eb0754cc46b6971", + "index": 1 }, { - "quantity": 248, - "unit": "lovelace" + "id": "4e2622ee6a2d10e70239743c1d1ea56375e52e19df73571c38626e545c78ef63", + "index": 0 }, { - "quantity": 85, - "unit": "lovelace" + "id": "564ece366418723a4d1a3f2b476b7843162d0c7c212f3017b8632f3703a92705", + "index": 1 }, { - "quantity": 183, - "unit": "lovelace" - } - ], - "metadata": { - "20": { - "int": 0 - } - }, - "collateral": [ - { - "id": "96697412662b1b0d238e06400ffb645f5a6671602b4e3031ae141a176f571c40", - "index": 1 + "id": "2343503c4613340444611add6c11431b395c060323025f5118244e1da43e223a", + "index": 0 }, { "address": "", - "id": "23394c794db9631e03748423931871ae426f2d212a18c033950811310e08c45f", - "index": 2389, + "id": "362b294561af63020a5d373766741f6f04435b11692ac317047d12334f47ed51", + "index": 30026, "amount": { - "quantity": 162, + "quantity": 86, "unit": "lovelace" }, "derivation_path": [ - "26587", - "520", - "21768", - "11870", - "29405", - "26411", - "23824", - "16549", - "14463", - "11312", - "5019", - "15046", - "31581", - "22401", - "15950", - "3673", - "5245", - "3538", - "1551", - "7219", - "11817", - "21598", - "12850", - "4839" + "31114", + "23705", + "1550", + "8704" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { - "id": "211a50682b5e133f270521351d5a405b67ab402583006c01c05c704650ad504e", + "id": "05295ca042ca4e6944731e74095d7b765e6081026175257541184d0b147a627a", "index": 1 }, { "address": "", - "id": "6b4f2e58379d14164c1f14d0740c21030b30174522302742240c57c03e0e0d2e", - "index": 7716, + "id": "717307a51c32e10e096737595242203213ec51254f266a5e2e7d376442bc3e6e", + "index": 12698, "amount": { - "quantity": 137, + "quantity": 232, "unit": "lovelace" }, "derivation_path": [ - "10680", - "15630", - "11349", - "9438", - "8072", - "26351", - "8427", - "12223", - "12212", - "24065", - "10901", - "15273", - "16642", - "24024", - "14154", - "18544", - "6002", - "13753", - "3598", - "8772", - "9690", - "13102", - "12921", - "13178", - "20867", - "8971", - "19155", - "16103", - "9556" + "3338", + "12076", + "11093", + "8782", + "7370", + "10900" ], "assets": [] - }, - { - "id": "2e4771dc193c7c651009099a292b595074510a091d4a786a2f3a5a4cc62b2935", - "index": 1 } ], - "assets_burned": { - "token_map": [], - "policy_scripts": [ + "mint": { + "tokens": [ + { + "policy_script": { + "all": [ + "policy_vkh1n4hqmvrmv3ct6dcw67q0nt2m96y0vu97c0cfw0whc5urxar5qff", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "9d6e0db07b6470bd370ed780f9ad5b2e88f670bec3f0973dd7c53833", + "assets": [ + { + "fingerprint": "asset1wtxulv7c5vh5sqpk6w79sz76wzs3l03lwmm5gr", + "amount": { + "quantity": 3276, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1prsz8t2kxwah5fr0ahp6p50g6y307epf47th9u", + "amount": { + "quantity": 6266, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset169jt5ww8yyg2mnyja2qampm2j3hnwp48ngwsc8", + "amount": { + "quantity": 1016, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1safcwxd5cjv5y3edumpkhf7zzvgrsmhtm6rn7x7ww0edjtsplcg", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "87538719b4c49942472de6c36ba7c21310386eebde873f1bce73f2d9", + "assets": [ + { + "fingerprint": "asset1zvqhu5hjlacum3t9qpknu2gg9zrsx4guppawdk", + "amount": { + "quantity": 7230, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset1qsh78al32xxzyejh39dhz2tmn2ftjpzxg5x34x", + "amount": { + "quantity": 2951, + "unit": "assets" + }, + "asset_name": "546f6b656e51" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1aguuezc89hwhvdzlxmrhkjqyy2cyyl2ark7pe6nn3tgjgnc4a9n", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ea39cc8b072ddd76345f36c77b480422b0427d5d1dbc1cea738ad124", + "assets": [ + { + "fingerprint": "asset1jmg3cda39e7e8n62mpmuer4em8d8c37dl68cyq", + "amount": { + "quantity": 2495, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset15tvve3vwsh9vqdg5dt6fnrxw9r2sskwqa7f709", + "amount": { + "quantity": 4774, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1u00nr4e0yuuvm5n3nypnfc7xdg92a5j64lktnl", + "amount": { + "quantity": 5891, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset16vv08tw3jwpwpvs5yhsplg5rwc3ruvssdzpdsn", + "amount": { + "quantity": 2536, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1eajuw9wehtm8he3fs0grevkf93kt8xva09lgf46zg9dx5msks0e", + { + "active_from": 100 + } + ] + }, + "policy_id": "cf65c715d9baf67be62983d03cb2c92c6cb3999d797e84d742415a6a", + "assets": [ + { + "fingerprint": "asset1kq0a75kpxqecpus56ag0g3agpgzsxdnwjsnve5", + "amount": { + "quantity": 8236, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": "policy_vkh1neh3ntlmkgspdcjdd6syjwetclur8yy0lddaadyp94uechxyzdn", + "policy_id": "9e6f19affbb22016e24d6ea0493b2bc7f833908ffb5bdeb4812d799c", + "assets": [ + { + "fingerprint": "asset167zce64yglz45c7tfq32l8g3u0mj83rdpjqfdl", + "amount": { + "quantity": 1913, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset10cd0tkd4fmaa2pvwphhw7clglfgxzdkc4qn5ml", + "amount": { + "quantity": 8266, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + }, + { + "fingerprint": "asset142y9qshr2d9jw9yn62pdng2zt777y34zc78wwt", + "amount": { + "quantity": 1626, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + }, { - "policy_script": "stake_shared_vkh1s4879gx8rppq62a8n8a3zk2sgj72hwnjhha90tf0rtkzj42pasj", - "policy_id": "55dbeaba0aa1b9f6c767cc155017bf8241b9d913e1fc8876aebdb9e4" + "policy_script": { + "all": [ + "policy_vkh1e5n54qwtg5k6lmukkuxuz9yjt3agg83uv5krdmjp2v5as6lwpjc", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "cd274a81cb452dafef96b70dc114925c7a841e3c652c36ee415329d8", + "assets": [ + { + "fingerprint": "asset1g2cgqvp7l3e4pmdmlwa475h2mwrkf5t3ktfvc3", + "amount": { + "quantity": 6654, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset1gyj4ugjhzvvahrwws2fmmj76z8hc9y0g2w2ddm", + "amount": { + "quantity": 5078, + "unit": "assets" + }, + "asset_name": "546f6b656e55" + } + ] } ], - "wallet_policy_key_hash": "policy_vkh1r9nrs8ewge83gn22r2kq7l9ydvlnw8flau6wqrr3v3z3y0gt072" + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1qxysxcjqtyakj30ragy2uymkqzy9tvzyqfhz75kfgc38yu9c40m" } } ] diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTokenAsset.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTokenAsset.json new file mode 100644 index 00000000000..1b1ed88c28e --- /dev/null +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiTokenAsset.json @@ -0,0 +1,85 @@ +{ + "seed": -6726042728513418060, + "samples": [ + { + "fingerprint": "asset1hq2hhhzmresms9mw67mvyx3jpklwmyqnqleefg", + "amount": { + "quantity": 8940, + "unit": "assets" + }, + "asset_name": "546f6b656e52" + }, + { + "fingerprint": "asset1nznfvhfwwwgahe66ajf5jeypp6q8pe68q0j5rp", + "amount": { + "quantity": 7062, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1x7taw3wtqf5rkr36k57l9chtn023cf03h3mk7y", + "amount": { + "quantity": 5802, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1dcvs04k728gyvywfdypjyafu6wyrtp350p2ryt", + "amount": { + "quantity": 6880, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset148hsna3pq5wr8j6mel3askpmmqhzvmcmyg6gct", + "amount": { + "quantity": 8389, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + }, + { + "fingerprint": "asset15gqhkzk0gqum3jpng64ymykcgwpuyq4phqhz3t", + "amount": { + "quantity": 1232, + "unit": "assets" + }, + "asset_name": "546f6b656e42" + }, + { + "fingerprint": "asset13jvu9r3c83shxh0cx2t45xap75jr4tr9cla0p2", + "amount": { + "quantity": 8783, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + }, + { + "fingerprint": "asset17yrqlkqfynygfhf363mva0zxwzdg32jmyapchs", + "amount": { + "quantity": 3027, + "unit": "assets" + }, + "asset_name": "546f6b656e59" + }, + { + "fingerprint": "asset1c6w8632gv3saypa05m0mhdlsu9j5xle5ywpsa2", + "amount": { + "quantity": 8372, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset13ylajxg6zh69mcss64emhf93h52t7k2gx9tmce", + "amount": { + "quantity": 8014, + "unit": "assets" + }, + "asset_name": "546f6b656e53" + } + ] +} \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTokens.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTokens.json new file mode 100644 index 00000000000..ff2ea9dada8 --- /dev/null +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiTokens.json @@ -0,0 +1,263 @@ +{ + "seed": 4136960582200033278, + "samples": [ + { + "policy_script": "policy_vkh10pw5uv07pdlf9u8cn53umaltc49gnyfrhqxehfpvxtenscex7pc", + "policy_id": "785d4e31fe0b7e92f0f89d23cdf7ebc54a899123b80d9ba42c32f338", + "assets": [ + { + "fingerprint": "asset1glhzvcr2ztr7luy4wxvd7elzqyecl982077khe", + "amount": { + "quantity": 2584, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1j8k8f33tfxpyq0w83l9h4gxt4xjv0zzql8lvjh", + "amount": { + "quantity": 6031, + "unit": "assets" + }, + "asset_name": "546f6b656e58" + }, + { + "fingerprint": "asset16nvyn003dyd2twdxdxj9jqffv6s26qven7t7e4", + "amount": { + "quantity": 123, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + } + ] + }, + { + "policy_script": "policy_vkh1fdhnv6ex4prcy6u2l243jnd5vjvtr2gtm8k8xs7ufr4ayq9zepd", + "policy_id": "4b6f366b26a847826b8afaab194db46498b1a90bd9ec7343dc48ebd2", + "assets": [ + { + "fingerprint": "asset19ztk848y7a7t8u5507u3ludgkt0ydlgasypvn4", + "amount": { + "quantity": 7027, + "unit": "assets" + }, + "asset_name": "546f6b656e44" + } + ] + }, + { + "policy_script": "policy_vkh1wkz87ev35nthcf0ajjv4cv60qnx70ra8xn3vfhn88xd0vq9hedx", + "policy_id": "75847f6591a4d77c25fd94995c334f04cde78fa734e2c4de67399af6", + "assets": [ + { + "fingerprint": "asset1ttmlnmvq9906kn6fsgccpplw327l4h9p8d8jhp", + "amount": { + "quantity": 1076, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1049mx3vgtlt3swc0l0zpejqq8xtuzjv4tuwh6g", + "amount": { + "quantity": 4663, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + }, + { + "fingerprint": "asset1f4d8dzgss8euuv3d29jzu4ev0y57l29qqv6rpd", + "amount": { + "quantity": 6175, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1eea9x4kvlxsv7shhk4rt9la9eg2gu8vxnjekxvuht64hzpe8g2c", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "policy_id": "ce7a5356ccf9a0cf42f7b546b2ffa5ca148e1d869cb36333975eab71", + "assets": [ + { + "fingerprint": "asset14k0a5zqpgj3acmj3hmuyl2p74nfkeqaptya547", + "amount": { + "quantity": 1486, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh127ma030x6t0dfrz4fjqhrfzaj9uvlcrwzl68t960hw38jgpydje", + { + "active_from": 100 + } + ] + }, + "policy_id": "57b7d7c5e6d2ded48c554c8171a45d9178cfe06e17f475974fbba279", + "assets": [ + { + "fingerprint": "asset1zpqjjqn4pf5v5d9es9vnghp4mlxwtsfakssn07", + "amount": { + "quantity": 6459, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + }, + { + "fingerprint": "asset1dct6dj9njkxejd9w5u7gsdn6eeujyaapem55e9", + "amount": { + "quantity": 9389, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1m6nkrmzn6l9z68lqmtdda53dwhhg2g22jf4um5a6w9zkz0s605h", + { + "active_from": 100 + } + ] + }, + "policy_id": "dea761ec53d7ca2d1fe0dadaded22d75ee85214a926bcdd3ba714561", + "assets": [ + { + "fingerprint": "asset15p9zwhzg48w6zr54cjm2zaaqh4p60z53qtz7mv", + "amount": { + "quantity": 1133, + "unit": "assets" + }, + "asset_name": "546f6b656e46" + } + ] + }, + { + "policy_script": "policy_vkh1df50l3qxkk53f4ccj2cu4x49qc89hj7eakvq8s73hala25unv4g", + "policy_id": "6a68ffc406b5a914d71892b1ca9aa5060e5bcbd9ed9803c3d1bf7fd5", + "assets": [ + { + "fingerprint": "asset17g8pz92llqptaa5jqe82p3pfe2jxj7vmasvnmz", + "amount": { + "quantity": 5272, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + }, + { + "fingerprint": "asset1k5j9yrprqv39kzp7ghq7q7wtxpvw0e2cp49u7a", + "amount": { + "quantity": 5513, + "unit": "assets" + }, + "asset_name": "546f6b656e5a" + }, + { + "fingerprint": "asset1mva6ztce796vtf4w004tau363864nszw9785l0", + "amount": { + "quantity": 5509, + "unit": "assets" + }, + "asset_name": "546f6b656e57" + }, + { + "fingerprint": "asset1nlle0epf7esup0qv270g6smy7c4q5xtexxec32", + "amount": { + "quantity": 1274, + "unit": "assets" + }, + "asset_name": "546f6b656e47" + } + ] + }, + { + "policy_script": "policy_vkh143k42ahscwe9ksvlefn9phacnvhkmdjnpnhtsnm967kxcdhhlyx", + "policy_id": "ac6d5576f0c3b25b419fca6650dfb89b2f6db6530ceeb84f65d7ac6c", + "assets": [ + { + "fingerprint": "asset1mdfuhlwnznpzx2tcwnpn0g0khvg90syttcmgxf", + "amount": { + "quantity": 6151, + "unit": "assets" + }, + "asset_name": "546f6b656e50" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1v9dc2uaejgp43ze63y40v2rrtjucey4dwrp76uwv64d2qwchjua", + { + "active_from": 100 + } + ] + }, + "policy_id": "615b8573b99203588b3a892af628635cb98c92ad70c3ed71ccd55aa0", + "assets": [ + { + "fingerprint": "asset1x5v4zfswhshuvn770pchcua4mjmae4f68wmtcy", + "amount": { + "quantity": 7242, + "unit": "assets" + }, + "asset_name": "546f6b656e4d" + }, + { + "fingerprint": "asset1vvg9zxz7pj8qx6u27u98gspxc0j2esah4dd2sk", + "amount": { + "quantity": 7369, + "unit": "assets" + }, + "asset_name": "546f6b656e43" + }, + { + "fingerprint": "asset19ulvh7wzq4jt43kpf0xqpp9qajcj6g4qmktarv", + "amount": { + "quantity": 2028, + "unit": "assets" + }, + "asset_name": "546f6b656e45" + } + ] + }, + { + "policy_script": { + "all": [ + "policy_vkh1qnnntrl9tent48vfzguplryk2ex423hj26aejp5mp8gd6h747fl", + { + "active_from": 100 + } + ] + }, + "policy_id": "04e7358fe55e66ba9d8912381f8c96564d5546f256bb99069b09d0dd", + "assets": [ + { + "fingerprint": "asset1qh5mv3zfsmme4gzrfxs0j3gcpf8esgjq9c6d48", + "amount": { + "quantity": 9273, + "unit": "assets" + }, + "asset_name": "546f6b656e4a" + } + ] + } + ] +} \ No newline at end of file diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 921c66654dd..17b46cd8058 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -99,7 +99,6 @@ import Cardano.Wallet.Api.Types , ApiMaintenanceAction (..) , ApiMaintenanceActionPostData (..) , ApiMintBurnData (..) - , ApiMintBurnInfo (..) , ApiMintBurnOperation (..) , ApiMintData (..) , ApiMnemonicT (..) @@ -113,7 +112,6 @@ import Cardano.Wallet.Api.Types , ApiPaymentDestination (..) , ApiPendingSharedWallet (..) , ApiPolicyKey (..) - , ApiPolicyScript (..) , ApiPostAccountKeyData (..) , ApiPostAccountKeyDataWithPurpose , ApiPostPolicyKeyData (..) @@ -140,6 +138,8 @@ import Cardano.Wallet.Api.Types , ApiStakePoolFlag (..) , ApiStakePoolMetrics (..) , ApiT (..) + , ApiTokenAsset (..) + , ApiTokens (..) , ApiTransaction (..) , ApiTxCollateral (..) , ApiTxId (..) @@ -208,7 +208,8 @@ import Cardano.Wallet.Gen , shrinkTxMetadata ) import Cardano.Wallet.Primitive.AddressDerivation - ( DerivationIndex (..) + ( Depth (..) + , DerivationIndex (..) , DerivationType (..) , HardDerivation (..) , Index (..) @@ -400,7 +401,6 @@ import Test.QuickCheck , InfiniteList (..) , applyArbitrary2 , applyArbitrary3 - , applyArbitrary4 , arbitraryBoundedEnum , arbitraryPrintableChar , arbitrarySizedBoundedIntegral @@ -519,6 +519,8 @@ spec = parallel $ do jsonRoundtripAndGolden $ Proxy @ApiUtxoStatistics jsonRoundtripAndGolden $ Proxy @ApiFee jsonRoundtripAndGolden $ Proxy @ApiAssetMintBurn + jsonRoundtripAndGolden $ Proxy @ApiTokens + jsonRoundtripAndGolden $ Proxy @ApiTokenAsset jsonRoundtripAndGolden $ Proxy @ApiStakePoolMetrics jsonRoundtripAndGolden $ Proxy @ApiTxId jsonRoundtripAndGolden $ Proxy @ApiVerificationKeyShelley @@ -1167,8 +1169,8 @@ spec = parallel $ do , collateral = collateral (x :: ApiDecodedTransaction ('Testnet 0)) , withdrawals = withdrawals (x :: ApiDecodedTransaction ('Testnet 0)) , metadata = metadata (x :: ApiDecodedTransaction ('Testnet 0)) - , assetsMinted = assetsMinted (x :: ApiDecodedTransaction ('Testnet 0)) - , assetsBurned = assetsBurned (x :: ApiDecodedTransaction ('Testnet 0)) + , mint = mint (x :: ApiDecodedTransaction ('Testnet 0)) + , burn = burn (x :: ApiDecodedTransaction ('Testnet 0)) , certificates = certificates (x :: ApiDecodedTransaction ('Testnet 0)) , depositsTaken = depositsTaken (x :: ApiDecodedTransaction ('Testnet 0)) , depositsReturned = depositsReturned (x :: ApiDecodedTransaction ('Testnet 0)) @@ -2213,11 +2215,22 @@ instance Arbitrary StakeAddress where (header <> payload) instance Arbitrary (ApiConstructTransaction n) where - arbitrary = applyArbitrary4 ApiConstructTransaction + arbitrary = applyArbitrary3 ApiConstructTransaction -instance Arbitrary ApiAssetMintBurn where +instance Arbitrary ApiTokenAsset where + arbitrary = do + name <- genTokenName + policyid <- arbitrary + let fingerprint = ApiT $ mkTokenFingerprint policyid name + ApiTokenAsset + <$> pure (ApiT name) + <*> (Quantity . fromIntegral <$> choose @Int (1, 10000)) + <*> pure fingerprint + +instance Arbitrary ApiTokens where arbitrary = do - keyhash <- arbitrary + policyid <- arbitrary + let keyhash = KeyHash Policy $ getHash $ unTokenPolicyId policyid script <- elements [ ApiT $ RequireSignatureOf keyhash , ApiT $ RequireAllOf @@ -2230,11 +2243,21 @@ instance Arbitrary ApiAssetMintBurn where , ActiveUntilSlot 150 ] ] - policyid <- arbitrary + assetNum <- choose (1,4) + assets <- vectorOf assetNum arbitrary + ApiTokens + <$> pure (ApiT policyid) + <*> pure script + <*> pure (NE.fromList assets) + +instance Arbitrary ApiAssetMintBurn where + arbitrary = do + let keyix = ApiT $ DerivationIndex $ + getIndex (minBound :: Index 'Hardened 'PolicyK) ApiAssetMintBurn <$> arbitrary - <*> pure [ApiPolicyScript policyid script] <*> arbitrary + <*> pure (Just keyix) instance Arbitrary (ApiMintBurnData n) where arbitrary = ApiMintBurnData @@ -2273,6 +2296,7 @@ instance Arbitrary (ApiMintBurnOperation n) where , ApiBurn <$> arbitrary ] +{-- instance Arbitrary ApiMintBurnInfo where arbitrary = do mpi <- arbitrary @@ -2290,7 +2314,7 @@ instance Arbitrary ApiMintBurnInfo where (ApiT assetName) (ApiT subject) (ApiT script) - +--} instance Arbitrary TokenPolicyId where arbitrary = UnsafeTokenPolicyId . Hash . BS.pack <$> vector 28 @@ -2944,6 +2968,14 @@ instance Typeable n => ToSchema (ApiForeignStakeKey n) where instance ToSchema ApiNullStakeKey where declareNamedSchema _ = declareSchemaForDefinition "ApiNullStakeKey" +instance ToSchema ApiTokenAsset where + declareNamedSchema _ = declareSchemaForDefinition "ApiTokenAsset" + +instance ToSchema ApiTokens where + declareNamedSchema _ = do + addDefinition =<< declareSchemaForDefinition "ScriptValue" + declareSchemaForDefinition "ApiTokens" + instance ToSchema ApiAssetMintBurn where declareNamedSchema _ = do addDefinition =<< declareSchemaForDefinition "ScriptValue" diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 05d49c145b9..e7e1bffe2ac 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -79,6 +79,20 @@ x-absoluteSlot: &absoluteSlot minimum: 0 example: 8086 +x-numberOfAssets: &numberOfAssets + type: object + required: + - quantity + - unit + properties: + quantity: + type: integer + minimum: 1 + example: 42000 + unit: + type: string + enum: ["assets"] + x-numberOfSlots: &numberOfSlots type: object required: @@ -2410,13 +2424,11 @@ components: type: object required: - asset_name - - quantity + - amount - fingerprint properties: asset_name: *assetName - quantity: - type: integer - minimum: 0 + amount: *numberOfAssets fingerprint: *assetFingerprint ApiTokens: &ApiTokens @@ -2455,16 +2467,6 @@ components: transaction: *serialisedTransactionBase64 coin_selection: *ApiCoinSelection fee: *amount - mint: - type: array - items: *ApiAssetMintBurn - minItems: 1 - description: An entry for each unique asset minted containing helpful information. - burn: - type: array - items: *ApiAssetMintBurn - minItems: 1 - description: An entry for each unique asset burned containing helpful information. ApiTransaction: &ApiTransaction type: object From 7f961eb96a7810140b66e9b39a1d8ccba02ee206 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Wed, 30 Mar 2022 00:28:42 +0000 Subject: [PATCH 15/29] Wrap long lines according to team coding standard. https://input-output-hk.github.io/adrestia/code/Coding-Standards#limit-line-length-to-80-characters --- .../Scenario/API/Shelley/TransactionsNew.hs | 30 +++++--- lib/core/src/Cardano/Wallet.hs | 5 +- .../src/Cardano/Wallet/Shelley/Transaction.hs | 70 +++++++++++-------- 3 files changed, 63 insertions(+), 42 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 08b5fa24b04..79d95b87803 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -1333,7 +1333,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTokenAsset = ApiTokenAsset { assetName = ApiT tokenName' , amount = Quantity 50_000 - , fingerprint = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + , fingerprint = + ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' } let apiTokens = ApiTokens { policyId = ApiT tokenPolicyId' @@ -1344,7 +1345,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let activeAssetsInfo = ApiAssetMintBurn { tokens = [apiTokens] , walletPolicyKeyHash = Just policyKeyHashPayload - , walletPolicyKeyIndex = Just $ ApiT (DerivationIndex 2147483648) + , walletPolicyKeyIndex = + Just $ ApiT (DerivationIndex 2147483648) } let inactiveAssetsInfo = ApiAssetMintBurn { tokens = [] @@ -2341,7 +2343,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let delegatingCert2 = WalletDelegationCertificate $ JoinPool stakeKeyDerPath pool2 - let txCbor2 = getFromResponse #transaction (HTTP.status202, Right signedTx2) + let txCbor2 = + getFromResponse #transaction (HTTP.status202, Right signedTx2) let decodePayload2 = Json (toJSON $ ApiSerialisedTransaction txCbor2) rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley src) Default decodePayload2 @@ -3702,7 +3705,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTokenAsset = ApiTokenAsset { assetName = ApiT tokenName' , amount = Quantity 50_000 - , fingerprint = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + , fingerprint = + ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' } let apiTokens = ApiTokens { policyId = ApiT tokenPolicyId' @@ -3713,7 +3717,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let activeAssetsInfo = ApiAssetMintBurn { tokens = [apiTokens] , walletPolicyKeyHash = Just policyKeyHashPayload - , walletPolicyKeyIndex = Just $ ApiT (DerivationIndex 2147483648) + , walletPolicyKeyIndex = + Just $ ApiT (DerivationIndex 2147483648) } let inactiveAssetsInfo = ApiAssetMintBurn { tokens = [] @@ -3731,7 +3736,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTx = getFromResponse #transaction rTx signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] - let txCbor2 = getFromResponse #transaction (HTTP.status202, Right signedTx) + let txCbor2 = + getFromResponse #transaction (HTTP.status202, Right signedTx) let decodePayload2 = Json (toJSON $ ApiSerialisedTransaction txCbor2) rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodePayload2 @@ -3749,7 +3755,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let initialBalance = wa ^. #balance . #available . #getQuantity let expectedFee = getFromResponse (#fee . #getQuantity) rTx - eventually "Wallet balance is decreased by fee and holds minted assets" $ do + eventually + "Wallet balance is decreased by fee and holds minted assets" $ do rWa <- request @ApiWallet ctx (Link.getWallet @'Shelley wa) Default Empty verify rWa @@ -3787,7 +3794,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTokenAsset = ApiTokenAsset { assetName = ApiT tokenName' , amount = Quantity 50_000 - , fingerprint = ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' + , fingerprint = + ApiT $ mkTokenFingerprint tokenPolicyId' tokenName' } let apiTokens = ApiTokens { policyId = ApiT tokenPolicyId' @@ -3803,7 +3811,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let inactiveAssetsInfo = ApiAssetMintBurn { tokens = [apiTokens] , walletPolicyKeyHash = Just policyKeyHashPayload - , walletPolicyKeyIndex = Just $ ApiT (DerivationIndex 2147483648) + , walletPolicyKeyIndex = + Just $ ApiT (DerivationIndex 2147483648) } rDecodedTx <- request @(ApiDecodedTransaction n) ctx @@ -3816,7 +3825,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTx = getFromResponse #transaction rTx signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] - let txCbor2 = getFromResponse #transaction (HTTP.status202, Right signedTx) + let txCbor2 = + getFromResponse #transaction (HTTP.status202, Right signedTx) let decodePayload2 = Json (toJSON $ ApiSerialisedTransaction txCbor2) rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodePayload2 diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index c41928c0883..f0a001abef1 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -3265,8 +3265,9 @@ writePolicyPublicKey ctx wid pwd = db & \DBLayer{..} -> do let (SeqPrologue seqState) = getPrologue $ getState cp - policyXPub <- withRootKey @ctx @s @ShelleyKey ctx wid pwd ErrWritePolicyPublicKeyWithRootKey - $ \rootK scheme -> do + policyXPub <- withRootKey + @ctx @s @ShelleyKey ctx wid pwd ErrWritePolicyPublicKeyWithRootKey $ + \rootK scheme -> do let encPwd = preparePassphrase scheme pwd let xprv = derivePolicyPrivateKey encPwd (getRawKey rootK) minBound pure $ liftRawKey $ toXPub xprv diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index a09a59feab8..11ebbea8699 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -426,8 +426,14 @@ signTransaction -> (Cardano.TxBody era, [Cardano.KeyWitness era]) -- ^ The transaction to sign, possibly with already some existing witnesses -> Cardano.Tx era -signTransaction networkId resolveRewardAcct resolvePolicyKey resolveAddress resolveInput (body, wits) = - Cardano.makeSignedTransaction wits' body +signTransaction + networkId + resolveRewardAcct + resolvePolicyKey + resolveAddress + resolveInput + (body, wits) = + Cardano.makeSignedTransaction wits' body where wits' = mconcat [ wits @@ -534,34 +540,38 @@ newTransactionLayer networkId = TransactionLayer mkTx networkId payload ttl stakeCreds keystore wdrl selection delta - , addVkWitnesses = \_era stakeCreds policyCreds addressResolver inputResolver sealedTx -> do - let acctResolver :: RewardAccount -> Maybe (XPrv, Passphrase "encryption") - acctResolver acct = do - let acct' = toRewardAccountRaw $ toXPub $ fst stakeCreds - guard (acct == acct') $> stakeCreds - let policyResolver :: KeyHash -> Maybe (XPrv, Passphrase "encryption") - policyResolver keyhash = do - let (keyhash', xprv, encP) = policyCreds - guard (keyhash == keyhash') $> (xprv, encP) - case cardanoTx sealedTx of - InAnyCardanoEra ByronEra _ -> - sealedTx - InAnyCardanoEra ShelleyEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver (const Nothing) - addressResolver inputResolver (body, wits) - & sealedTxFromCardano' - InAnyCardanoEra AllegraEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver (const Nothing) - addressResolver inputResolver (body, wits) - & sealedTxFromCardano' - InAnyCardanoEra MaryEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver policyResolver - addressResolver inputResolver (body, wits) - & sealedTxFromCardano' - InAnyCardanoEra AlonzoEra (Cardano.Tx body wits) -> - signTransaction networkId acctResolver policyResolver - addressResolver inputResolver (body, wits) - & sealedTxFromCardano' + , addVkWitnesses = + \_era stakeCreds policyCreds addressResolver inputResolver sealedTx -> + do + let acctResolver + :: RewardAccount -> Maybe (XPrv, Passphrase "encryption") + acctResolver acct = do + let acct' = toRewardAccountRaw $ toXPub $ fst stakeCreds + guard (acct == acct') $> stakeCreds + let policyResolver + :: KeyHash -> Maybe (XPrv, Passphrase "encryption") + policyResolver keyhash = do + let (keyhash', xprv, encP) = policyCreds + guard (keyhash == keyhash') $> (xprv, encP) + case cardanoTx sealedTx of + InAnyCardanoEra ByronEra _ -> + sealedTx + InAnyCardanoEra ShelleyEra (Cardano.Tx body wits) -> + signTransaction networkId acctResolver (const Nothing) + addressResolver inputResolver (body, wits) + & sealedTxFromCardano' + InAnyCardanoEra AllegraEra (Cardano.Tx body wits) -> + signTransaction networkId acctResolver (const Nothing) + addressResolver inputResolver (body, wits) + & sealedTxFromCardano' + InAnyCardanoEra MaryEra (Cardano.Tx body wits) -> + signTransaction networkId acctResolver policyResolver + addressResolver inputResolver (body, wits) + & sealedTxFromCardano' + InAnyCardanoEra AlonzoEra (Cardano.Tx body wits) -> + signTransaction networkId acctResolver policyResolver + addressResolver inputResolver (body, wits) + & sealedTxFromCardano' , mkUnsignedTransaction = \era stakeXPub _pp ctx selection -> do let ttl = txTimeToLive ctx From fba7aaee4ed2f1209bef92f46b91a7d53977af7d Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Wed, 30 Mar 2022 00:30:58 +0000 Subject: [PATCH 16/29] Use just a single blank line between definitions. https://input-output-hk.github.io/adrestia/code/Coding-Standards#use-only-a-single-blank-line-between-top-level-definitions --- .../Test/Integration/Scenario/API/Shelley/TransactionsNew.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 79d95b87803..91b9929a319 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -227,7 +227,6 @@ import qualified Data.Text.Encoding as T import qualified Network.HTTP.Types.Status as HTTP import qualified Test.Integration.Plutus as PlutusScenario - spec :: forall n. ( DecodeAddress n , DecodeStakeAddress n @@ -2677,7 +2676,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do }] }|] - -- send transaction rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload From 9b0520cab436a4e4dd5ff1b5261d52eafce3fcc0 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Wed, 30 Mar 2022 00:40:51 +0000 Subject: [PATCH 17/29] Use 4-space indents in Haskell source files. See `.editorconfig`. --- .../Scenario/API/Shelley/TransactionsNew.hs | 30 +++++++++---------- lib/core/src/Cardano/Wallet.hs | 11 +++---- 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 91b9929a319..05b5355a6a8 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3271,18 +3271,18 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "mint_burn": [{ "policy_script_template": { "all": - [ "cosigner#0" - ] + [ "cosigner#0" + ] }, "asset_name": #{toText tokenName'}, "operation": { "mint" : - { "receiving_address": #{destination}, - "amount": { - "quantity": 50000, - "unit": "assets" - } - } + { "receiving_address": #{destination}, + "amount": { + "quantity": 50000, + "unit": "assets" + } + } } }] }|] @@ -3297,15 +3297,15 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "mint_burn": [{ "policy_script_template": { "all": - [ "cosigner#0" - ] + [ "cosigner#0" + ] }, "asset_name": #{toText tokenName'}, "operation": { "burn" : - { "quantity": 50000, - "unit": "assets" - } + { "quantity": 50000 + , "unit": "assets" + } } }] }|] @@ -3846,7 +3846,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do verify rWa [ expectSuccess , expectField (#assets . #available . #getApiT) - (`shouldBe` TokenMap.empty) + (`shouldBe` TokenMap.empty) , expectField (#assets . #total . #getApiT) - (`shouldBe` TokenMap.empty) + (`shouldBe` TokenMap.empty) ] diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index f0a001abef1..827da9e1369 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -2327,11 +2327,12 @@ signTransaction tl era keyLookup (rootKey, rootPwd) utxo = policyKey :: (KeyHash, XPrv, Passphrase "encryption") policyKey = - let xprv = - derivePolicyPrivateKey rootPwd (getRawKey rootKey) minBound - in ( hashVerificationKey @k CA.Policy $ liftRawKey $ toXPub xprv - , xprv - , rootPwd) + ( hashVerificationKey @k CA.Policy $ liftRawKey $ toXPub xprv + , xprv + , rootPwd + ) + where + xprv = derivePolicyPrivateKey rootPwd (getRawKey rootKey) minBound inputResolver :: TxIn -> Maybe Address inputResolver i = do From fead6f8b064f8bd189e30f4dda846147fc7663c7 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 08:54:43 +0000 Subject: [PATCH 18/29] Add type signatures to helper functions in `TransactionsNew`. --- .../Scenario/API/Shelley/TransactionsNew.hs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 05b5355a6a8..676e8ec7b25 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -22,7 +22,8 @@ import Prelude import Cardano.Address.Derivation ( XPub, xpubPublicKey ) import Cardano.Address.Script - ( KeyRole (..) + ( KeyHash + , KeyRole (..) , Script (..) , ScriptHash (..) , keyHashFromBytes @@ -3664,6 +3665,14 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do in toCborHexTx txBody + mintAssetCheck + :: MonadUnliftIO m + => Context + -> ApiWallet + -> TokenName + -> Payload + -> (KeyHash -> Script KeyHash) + -> m () mintAssetCheck ctx wa tokenName' payload scriptUsedF = do rTx <- request @(ApiConstructTransaction n) ctx @@ -3768,6 +3777,14 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (`shouldBe` tokens') ] + burnAssetsCheck + :: MonadUnliftIO m + => Context + -> ApiWallet + -> TokenName + -> Payload + -> (KeyHash -> Script KeyHash) + -> m () burnAssetsCheck ctx wa tokenName' payload scriptUsedF = do rTx <- request @(ApiConstructTransaction n) ctx From 2626b0b8695ba96a222c596126c885e0c6be49e5 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 08:55:51 +0000 Subject: [PATCH 19/29] Rename `mintAssetCheck` to `mintAssetsCheck`. This is for consistency with its sister function `burnAssetsCheck`. --- .../Scenario/API/Shelley/TransactionsNew.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 676e8ec7b25..ce4f54efc5f 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3220,7 +3220,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do [ RequireSignatureOf policyKeyHash ] - mintAssetCheck ctx wa tokenName' payload scriptUsed + mintAssetsCheck ctx wa tokenName' payload scriptUsed it "TRANS_NEW_CREATE_10e - Minting assets with timelocks" $ \ctx -> runResourceT $ do @@ -3258,7 +3258,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , ActiveFromSlot 120 ] - mintAssetCheck ctx wa tokenName' payload scriptUsed + mintAssetsCheck ctx wa tokenName' payload scriptUsed it "TRANS_NEW_CREATE_10f - Burning assets without timelock" $ \ctx -> runResourceT $ do @@ -3292,7 +3292,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do [ RequireSignatureOf policyKeyHash ] - mintAssetCheck ctx wa tokenName' payloadMint scriptUsed + mintAssetsCheck ctx wa tokenName' payloadMint scriptUsed let payloadBurn = Json [json|{ "mint_burn": [{ @@ -3665,7 +3665,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do in toCborHexTx txBody - mintAssetCheck + mintAssetsCheck :: MonadUnliftIO m => Context -> ApiWallet @@ -3673,7 +3673,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do -> Payload -> (KeyHash -> Script KeyHash) -> m () - mintAssetCheck ctx wa tokenName' payload scriptUsedF = do + mintAssetsCheck ctx wa tokenName' payload scriptUsedF = do rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload From 6951314468399a163fa58739c5b036bf1cbcb3b4 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 09:29:29 +0000 Subject: [PATCH 20/29] Rename `ApiTokenAsset` to `ApiTokenAmountFingerprint`. After review discussion. --- .../Scenario/API/Shelley/TransactionsNew.hs | 14 +++++------ lib/core/src/Cardano/Wallet/Api/Server.hs | 23 ++++++++++--------- lib/core/src/Cardano/Wallet/Api/Types.hs | 10 ++++---- ...et.json => ApiTokenAmountFingerprint.json} | 0 .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 13 ++++++----- specifications/api/swagger.yaml | 4 ++-- 6 files changed, 33 insertions(+), 31 deletions(-) rename lib/core/test/data/Cardano/Wallet/Api/{ApiTokenAsset.json => ApiTokenAmountFingerprint.json} (100%) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index ce4f54efc5f..1bbe716c95e 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -51,7 +51,7 @@ import Cardano.Wallet.Api.Types , ApiSerialisedTransaction (..) , ApiStakePool , ApiT (..) - , ApiTokenAsset (..) + , ApiTokenAmountFingerprint (..) , ApiTokens (..) , ApiTransaction , ApiTxId (..) @@ -1330,7 +1330,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ) let scriptUsed = RequireAllOf [RequireSignatureOf externalPolicyKeyHash] - let apiTokenAsset = ApiTokenAsset + let apiTokenAmountFingerprint = ApiTokenAmountFingerprint { assetName = ApiT tokenName' , amount = Quantity 50_000 , fingerprint = @@ -1339,7 +1339,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTokens = ApiTokens { policyId = ApiT tokenPolicyId' , policyScript = ApiT scriptUsed - , assets = NE.fromList [apiTokenAsset] + , assets = NE.fromList [apiTokenAmountFingerprint] } let activeAssetsInfo = ApiAssetMintBurn @@ -3709,7 +3709,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (AssetId tokenPolicyId' tokenName') (TokenQuantity 50_000) - let apiTokenAsset = ApiTokenAsset + let apiTokenAmountFingerprint = ApiTokenAmountFingerprint { assetName = ApiT tokenName' , amount = Quantity 50_000 , fingerprint = @@ -3718,7 +3718,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTokens = ApiTokens { policyId = ApiT tokenPolicyId' , policyScript = ApiT scriptUsed - , assets = NE.fromList [apiTokenAsset] + , assets = NE.fromList [apiTokenAmountFingerprint] } let activeAssetsInfo = ApiAssetMintBurn @@ -3806,7 +3806,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let tokenPolicyId' = UnsafeTokenPolicyId . Hash $ unScriptHash $ toScriptHash scriptUsed - let apiTokenAsset = ApiTokenAsset + let apiTokenAmountFingerprint = ApiTokenAmountFingerprint { assetName = ApiT tokenName' , amount = Quantity 50_000 , fingerprint = @@ -3815,7 +3815,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let apiTokens = ApiTokens { policyId = ApiT tokenPolicyId' , policyScript = ApiT scriptUsed - , assets = NE.fromList [apiTokenAsset] + , assets = NE.fromList [apiTokenAmountFingerprint] } let activeAssetsInfo = ApiAssetMintBurn diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 83afcaa0661..0f2a5b57180 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -246,8 +246,6 @@ import Cardano.Wallet.Api.Types , ApiPaymentDestination (..) , ApiPendingSharedWallet (..) , ApiPolicyKey (..) - , ApiTokens (..) - , ApiTokenAsset (..) , ApiPoolId (..) , ApiPostAccountKeyDataWithPurpose (..) , ApiPostPolicyKeyData (..) @@ -269,6 +267,8 @@ import Cardano.Wallet.Api.Types , ApiStakeKeyIndex (..) , ApiStakeKeys (..) , ApiT (..) + , ApiTokenAmountFingerprint (..) + , ApiTokens (..) , ApiTransaction (..) , ApiTxCollateral (..) , ApiTxId (..) @@ -460,12 +460,12 @@ import Cardano.Wallet.Primitive.Types.Redeemer ( Redeemer (..) ) import Cardano.Wallet.Primitive.Types.TokenBundle ( Flat (..), TokenBundle (..) ) -import Cardano.Wallet.Primitive.Types.TokenQuantity - ( TokenQuantity (..) ) import Cardano.Wallet.Primitive.Types.TokenMap ( AssetId (..), fromFlatList, toNestedList ) import Cardano.Wallet.Primitive.Types.TokenPolicy ( TokenName (..), TokenPolicyId (..), mkTokenFingerprint, nullTokenName ) +import Cardano.Wallet.Primitive.Types.TokenQuantity + ( TokenQuantity (..) ) import Cardano.Wallet.Primitive.Types.Tx ( TransactionInfo , Tx (..) @@ -490,11 +490,11 @@ import Cardano.Wallet.Transaction ( DelegationAction (..) , ErrAssignRedeemers (..) , ErrSignTx (..) + , TokenMapWithScripts (..) , TransactionCtx (..) , TransactionLayer (..) , Withdrawal (..) , defaultTransactionCtx - , TokenMapWithScripts (..) ) import Cardano.Wallet.Unsafe ( unsafeRunExceptT ) @@ -2459,16 +2459,17 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do | (policy, tokenQuantities) <- toNestedList tokenmap ] - toTokenAsset policy (name, tokenquantity) = ApiTokenAsset - { assetName = ApiT name - , amount = Quantity $ unTokenQuantity tokenquantity - , fingerprint = ApiT $ mkTokenFingerprint policy name - } + toTokenAmountFingerprint policy (name, tokenquantity) = + ApiTokenAmountFingerprint + { assetName = ApiT name + , amount = Quantity $ unTokenQuantity tokenquantity + , fingerprint = ApiT $ mkTokenFingerprint policy name + } fromIdScriptAssets (policy, script, tokens) = ApiTokens { policyId = ApiT policy , policyScript = ApiT script - , assets = NE.map (toTokenAsset policy) tokens + , assets = NE.map (toTokenAmountFingerprint policy) tokens } toApiTokens (TokenMapWithScripts tokenMap scriptMap) = diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index fff9265c34e..1915fed4e43 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -172,8 +172,8 @@ module Cardano.Wallet.Api.Types , ApiRegisterPool (..) , ApiDeregisterPool (..) , ApiAssetMintBurn (..) + , ApiTokenAmountFingerprint (..) , ApiTokens (..) - , ApiTokenAsset (..) -- * API Types (Byron) , ApiByronWallet (..) @@ -1225,7 +1225,7 @@ newtype ApiPostPolicyKeyData = ApiPostPolicyKeyData deriving (Eq, Generic, Show) deriving anyclass NFData -data ApiTokenAsset = ApiTokenAsset +data ApiTokenAmountFingerprint = ApiTokenAmountFingerprint { assetName :: !(ApiT W.TokenName) , amount :: !(Quantity "assets" Natural) , fingerprint :: !(ApiT W.TokenFingerprint) @@ -1236,7 +1236,7 @@ data ApiTokenAsset = ApiTokenAsset data ApiTokens = ApiTokens { policyId :: !(ApiT W.TokenPolicyId) , policyScript :: !(ApiT (Script KeyHash)) - , assets :: !(NonEmpty ApiTokenAsset) + , assets :: !(NonEmpty ApiTokenAmountFingerprint) } deriving (Eq, Generic, Show) deriving anyclass NFData @@ -2091,9 +2091,9 @@ instance FromJSON ApiAssetMintBurn where instance ToJSON ApiAssetMintBurn where toJSON = genericToJSON defaultRecordTypeOptions -instance FromJSON ApiTokenAsset where +instance FromJSON ApiTokenAmountFingerprint where parseJSON = genericParseJSON defaultRecordTypeOptions -instance ToJSON ApiTokenAsset where +instance ToJSON ApiTokenAmountFingerprint where toJSON = genericToJSON defaultRecordTypeOptions instance FromJSON ApiTokens where diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTokenAsset.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTokenAmountFingerprint.json similarity index 100% rename from lib/core/test/data/Cardano/Wallet/Api/ApiTokenAsset.json rename to lib/core/test/data/Cardano/Wallet/Api/ApiTokenAmountFingerprint.json diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 17b46cd8058..446743d8928 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -138,7 +138,7 @@ import Cardano.Wallet.Api.Types , ApiStakePoolFlag (..) , ApiStakePoolMetrics (..) , ApiT (..) - , ApiTokenAsset (..) + , ApiTokenAmountFingerprint (..) , ApiTokens (..) , ApiTransaction (..) , ApiTxCollateral (..) @@ -520,7 +520,7 @@ spec = parallel $ do jsonRoundtripAndGolden $ Proxy @ApiFee jsonRoundtripAndGolden $ Proxy @ApiAssetMintBurn jsonRoundtripAndGolden $ Proxy @ApiTokens - jsonRoundtripAndGolden $ Proxy @ApiTokenAsset + jsonRoundtripAndGolden $ Proxy @ApiTokenAmountFingerprint jsonRoundtripAndGolden $ Proxy @ApiStakePoolMetrics jsonRoundtripAndGolden $ Proxy @ApiTxId jsonRoundtripAndGolden $ Proxy @ApiVerificationKeyShelley @@ -2217,12 +2217,12 @@ instance Arbitrary StakeAddress where instance Arbitrary (ApiConstructTransaction n) where arbitrary = applyArbitrary3 ApiConstructTransaction -instance Arbitrary ApiTokenAsset where +instance Arbitrary ApiTokenAmountFingerprint where arbitrary = do name <- genTokenName policyid <- arbitrary let fingerprint = ApiT $ mkTokenFingerprint policyid name - ApiTokenAsset + ApiTokenAmountFingerprint <$> pure (ApiT name) <*> (Quantity . fromIntegral <$> choose @Int (1, 10000)) <*> pure fingerprint @@ -2968,8 +2968,9 @@ instance Typeable n => ToSchema (ApiForeignStakeKey n) where instance ToSchema ApiNullStakeKey where declareNamedSchema _ = declareSchemaForDefinition "ApiNullStakeKey" -instance ToSchema ApiTokenAsset where - declareNamedSchema _ = declareSchemaForDefinition "ApiTokenAsset" +instance ToSchema ApiTokenAmountFingerprint where + declareNamedSchema _ = + declareSchemaForDefinition "ApiTokenAmountFingerprint" instance ToSchema ApiTokens where declareNamedSchema _ = do diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index e7e1bffe2ac..92229dba459 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -2420,7 +2420,7 @@ components: properties: transaction: *serialisedTransactionEncoded - ApiTokenAsset: &ApiTokenAsset + ApiTokenAmountFingerprint: &ApiTokenAmountFingerprint type: object required: - asset_name @@ -2443,7 +2443,7 @@ components: assets: type: array minItems: 1 - items: *ApiTokenAsset + items: *ApiTokenAmountFingerprint ApiAssetMintBurn: &ApiAssetMintBurn type: object From cded02d653c15aa2909ebf764f5a34315ce1e2e4 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 09:32:09 +0000 Subject: [PATCH 21/29] Simplify applicative expressions. (Remove redundant `<$> pure` combinations.) --- lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 446743d8928..8f883726f97 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -2222,9 +2222,8 @@ instance Arbitrary ApiTokenAmountFingerprint where name <- genTokenName policyid <- arbitrary let fingerprint = ApiT $ mkTokenFingerprint policyid name - ApiTokenAmountFingerprint - <$> pure (ApiT name) - <*> (Quantity . fromIntegral <$> choose @Int (1, 10000)) + ApiTokenAmountFingerprint (ApiT name) + <$> (Quantity . fromIntegral <$> choose @Int (1, 10000)) <*> pure fingerprint instance Arbitrary ApiTokens where @@ -2245,10 +2244,7 @@ instance Arbitrary ApiTokens where ] assetNum <- choose (1,4) assets <- vectorOf assetNum arbitrary - ApiTokens - <$> pure (ApiT policyid) - <*> pure script - <*> pure (NE.fromList assets) + pure $ ApiTokens (ApiT policyid) script (NE.fromList assets) instance Arbitrary ApiAssetMintBurn where arbitrary = do From ba75be5e521293bb6adeb392c92fb52f0c625a52 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 09:36:40 +0000 Subject: [PATCH 22/29] Use `GeneralizedNewtypeDeriving` to eliminate boilerplate. --- lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 8f883726f97..2bd32e4c0e9 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -4,6 +4,7 @@ {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE NoMonomorphismRestriction #-} @@ -1946,8 +1947,7 @@ instance Arbitrary (Quantity "percent" Double) where shrink _ = [Quantity 0.0] arbitrary = Quantity <$> choose (0,100) -instance Arbitrary ApiPostPolicyKeyData where - arbitrary = ApiPostPolicyKeyData <$> arbitrary +deriving instance Arbitrary ApiPostPolicyKeyData instance Arbitrary ApiPolicyKey where arbitrary = do From 66bccd744e4184432db433e6ba8b8408eba9c952 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 09:51:32 +0000 Subject: [PATCH 23/29] Rename `numberOfAssets` to `tokenAmount`. This is consistent with the `ApiTokenAmountFingerprint` name. --- specifications/api/swagger.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 92229dba459..c83cc86d9f4 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -79,7 +79,7 @@ x-absoluteSlot: &absoluteSlot minimum: 0 example: 8086 -x-numberOfAssets: &numberOfAssets +x-tokenAmount: &tokenAmount type: object required: - quantity @@ -2428,7 +2428,7 @@ components: - fingerprint properties: asset_name: *assetName - amount: *numberOfAssets + amount: *tokenAmount fingerprint: *assetFingerprint ApiTokens: &ApiTokens From 2a92320c1a0506000d22213a01d2ce8b71387cea Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 09:54:49 +0000 Subject: [PATCH 24/29] Revise error message for `MissingPolicyPublicKey`. --- lib/core/src/Cardano/Wallet/Api/Server.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 0f2a5b57180..1e2df3dd53e 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -4393,8 +4393,8 @@ instance IsServerError ErrReadPolicyPublicKey where apiError err403 MissingPolicyPublicKey $ T.unwords [ "It seems the wallet lacks a policy public key. It's" , "therefore not possible to create a minting or burning" - , "transaction. Please invoke POST call on endpoint" - , "/wallets/{walletId}/policy-key to set it." + , "transaction. Please POST to endpoint" + , "/wallets/{walletId}/policy-key to set a policy key." ] instance IsServerError ErrWritePolicyPublicKey where From 90499017b73e990491cd7dbf0ffc735ee828955c Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 10:06:41 +0000 Subject: [PATCH 25/29] Add note regarding the use of `L.nub`. See review conversation here: https://github.com/input-output-hk/cardano-wallet/pull/3199#discussion_r839398755 --- lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index 11ebbea8699..801a9c5afd4 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -475,7 +475,11 @@ signTransaction mintBurnScripts = let (_, toMint, toBurn, _) = fromCardanoTx $ Cardano.makeSignedTransaction wits body - in L.nub $ getScripts toMint <> getScripts toBurn + in + -- Note that we use 'nub' here because multiple scripts can share + -- the same policyXPub. It's sufficient to have one witness for + -- each. + L.nub $ getScripts toMint <> getScripts toBurn getScripts :: TokenMapWithScripts -> [KeyHash] getScripts s = From 230d8c1b56538b6063fd45d7c4545995a317bbea Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 10:09:57 +0000 Subject: [PATCH 26/29] Add TODO that links to ADP-1193 in `TRANS_NEW_CREATE_10e`. --- .../Test/Integration/Scenario/API/Shelley/TransactionsNew.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 1bbe716c95e..7bb3c70d534 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs @@ -3224,7 +3224,9 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do it "TRANS_NEW_CREATE_10e - Minting assets with timelocks" $ \ctx -> runResourceT $ do - liftIO $ pendingWith "Should work when interval validity is addressed" + -- TODO: ADP-1193 + liftIO $ pendingWith + "ADP-1193: Should work when interval validity is addressed" wa <- fixtureWallet ctx addrs <- listAddresses @n ctx wa From 8c03c468cbf56a891d7b5c229ba9e468dcfc9260 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 10:13:44 +0000 Subject: [PATCH 27/29] Replace `const x <$>` with `x <$` in `Api.Server`. --- lib/core/src/Cardano/Wallet/Api/Server.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 1e2df3dd53e..a9f9d18e1e6 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2489,7 +2489,7 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do uncurry ApiPolicyKey . computeKeyPayload (Just True) <$> includePolicyKeyInfo tokenWithScripts xpubM , walletPolicyKeyIndex = - (const policyIx) <$> includePolicyKeyInfo tokenWithScripts xpubM + policyIx <$ includePolicyKeyInfo tokenWithScripts xpubM } toOut (txoutIncoming, Nothing) = ExternalOutput $ toAddressAmount @n txoutIncoming From 7076da5d9e70a8337a0ad7c822c2e49866714431 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 10:14:49 +0000 Subject: [PATCH 28/29] Remove redundant parentheses and `do` usages. --- lib/core/src/Cardano/Wallet/Api/Types.hs | 2 +- lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 1915fed4e43..79daf3cd64e 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1220,7 +1220,7 @@ data ApiAnyCertificate n = deriving anyclass NFData newtype ApiPostPolicyKeyData = ApiPostPolicyKeyData - { passphrase :: (ApiT (Passphrase "raw")) + { passphrase :: ApiT (Passphrase "raw") } deriving (Eq, Generic, Show) deriving anyclass NFData diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index 801a9c5afd4..773f12309fe 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -497,11 +497,11 @@ signTransaction mkByronWitness body networkId addr (getRawKey k, pwd) mkWdrlCertWitness :: RewardAccount -> Maybe (Cardano.KeyWitness era) - mkWdrlCertWitness a = do + mkWdrlCertWitness a = mkShelleyWitness body <$> resolveRewardAcct a mkPolicyWitness :: KeyHash -> Maybe (Cardano.KeyWitness era) - mkPolicyWitness a = do + mkPolicyWitness a = mkShelleyWitness body <$> resolvePolicyKey a mkExtraWitness :: Cardano.Hash Cardano.PaymentKey -> Maybe (Cardano.KeyWitness era) From 1c4da7cd740b501655847f312ad170f91d345915 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 31 Mar 2022 10:21:16 +0000 Subject: [PATCH 29/29] Remove redundant check for empty `TokenMap` in `toApiTokens`. --- lib/core/src/Cardano/Wallet/Api/Server.hs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index a9f9d18e1e6..bbca9044251 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2473,11 +2473,8 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do } toApiTokens (TokenMapWithScripts tokenMap scriptMap) = - if tokenMap == TokenMap.empty then - [] - else - map fromIdScriptAssets $ - toIdScriptAssets scriptMap tokenMap + map fromIdScriptAssets $ + toIdScriptAssets scriptMap tokenMap includePolicyKeyInfo (TokenMapWithScripts tokenMap _) xpubM = if tokenMap == TokenMap.empty then Nothing