From 7a5407b6f65c8ee29292d1a3ac123b22c3980e5c Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 21 Apr 2022 15:14:34 +0200 Subject: [PATCH 01/31] add proper usage of validity interval - part 1 --- .../Scenario/API/Shelley/TransactionsNew.hs | 2 -- lib/core/src/Cardano/Wallet/Api/Server.hs | 33 +++++++++++++++++-- 2 files changed, 30 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 a15caa76d03..27eae5115f8 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 @@ -1158,8 +1158,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval second should be >= 0" $ \ctx -> runResourceT $ do - liftIO $ pendingWith "Accepted but should be 403 - to be fixed in ADP-1189" - wa <- fixtureWallet ctx let payload = Json [json|{ diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 935d1cfbe5c..c0279dedf35 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -138,6 +138,8 @@ import Cardano.BM.Tracing ( HasPrivacyAnnotation (..), HasSeverityAnnotation (..) ) import Cardano.Mnemonic ( SomeMnemonic ) +import Cardano.Slotting.Slot + ( SlotNo (..) ) import Cardano.Wallet ( ErrAddCosignerKey (..) , ErrBalanceTx (..) @@ -284,6 +286,8 @@ import Cardano.Wallet.Api.Types , ApiTxMetadata (..) , ApiTxOutputGeneral (..) , ApiUtxoStatistics (..) + , ApiValidityBound (..) + , ApiValidityInterval (..) , ApiWallet (..) , ApiWalletAssetsBalance (..) , ApiWalletBalance (..) @@ -2260,13 +2264,36 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do liftHandler $ throwE ErrConstructTxMultiaccountNotSupported let md = body ^? #metadata . traverse . #getApiT - let mTTL = Nothing --TODO: ADP-1189 + + + let fromValidityBound (Left ApiValidityBoundUnspecified) = + liftIO $ pure $ SlotNo 0 + fromValidityBound (Right ApiValidityBoundUnspecified) = + liftIO $ W.getTxExpiry ti Nothing + fromValidityBound (Right (ApiValidityBoundAsTimeFromNow (Quantity sec))) = + liftIO $ W.getTxExpiry ti (Just sec) + fromValidityBound (Left (ApiValidityBoundAsTimeFromNow (Quantity sec))) = + liftIO $ W.getTxExpiry ti (Just sec) + fromValidityBound (Right (ApiValidityBoundAsSlot (Quantity slot))) = + liftIO $ pure $ SlotNo slot + fromValidityBound (Left (ApiValidityBoundAsSlot (Quantity slot))) = + liftIO $ pure $ SlotNo slot + + (before, hereafter) <- case body ^. #validityInterval of + Nothing -> do + before' <- fromValidityBound (Left ApiValidityBoundUnspecified) + hereafter' <- fromValidityBound (Right ApiValidityBoundUnspecified) + pure (before', hereafter') + Just (ApiValidityInterval before' hereafter') -> do + before' <- fromValidityBound (Left before') + hereafter' <- fromValidityBound (Right hereafter') + pure (before', hereafter') + + let ttl = hereafter (wdrl, _) <- mkRewardAccountBuilder @_ @s @_ @n ctx wid (body ^. #withdrawal) - ttl <- liftIO $ W.getTxExpiry ti mTTL - withWorkerCtx ctx wid liftE liftE $ \wrk -> do pp <- liftIO $ NW.currentProtocolParameters (wrk ^. networkLayer) (deposit, refund, txCtx) <- case body ^. #delegations of From fe2e7d6c288ae291b0195b129b6b10424a34c71f Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 21 Apr 2022 16:58:27 +0200 Subject: [PATCH 02/31] handle invalid validity bounds --- .../Test/Integration/Framework/TestData.hs | 8 +++++ .../Scenario/API/Shelley/TransactionsNew.hs | 30 ++++++++++++++++++- lib/core/src/Cardano/Wallet.hs | 1 + lib/core/src/Cardano/Wallet/Api/Server.hs | 19 ++++++++---- lib/core/src/Cardano/Wallet/Api/Types.hs | 1 + specifications/api/swagger.yaml | 14 +++++++++ 6 files changed, 66 insertions(+), 7 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Framework/TestData.hs b/lib/core-integration/src/Test/Integration/Framework/TestData.hs index 633038beabc..3cbb2a66867 100644 --- a/lib/core-integration/src/Test/Integration/Framework/TestData.hs +++ b/lib/core-integration/src/Test/Integration/Framework/TestData.hs @@ -109,6 +109,7 @@ module Test.Integration.Framework.TestData , errMsg403CreatedWrongPolicyScriptTemplatePolicyId , errMsg403AssetNameTooLong , errMsg403MintOrBurnAssetQuantityOutOfBounds + , errMsg403InvalidValidityBounds ) where import Prelude @@ -700,6 +701,13 @@ errMsg403MintOrBurnAssetQuantityOutOfBounds = mconcat , "not exceed 9223372036854775807 (2^63 - 1)." ] +errMsg403InvalidValidityBounds :: String +errMsg403InvalidValidityBounds = mconcat + [ "It looks like I've created a transaction " + , "with wrong validity bounds. Please make sure before validity bound " + , "is preceding hereafter validity bound, and nonnegative times are used." + ] + -------------------------------------------------------------------------------- -- Transaction metadata -------------------------------------------------------------------------------- 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 27eae5115f8..11187800370 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 @@ -203,6 +203,7 @@ import Test.Integration.Framework.TestData , errMsg403Fee , errMsg403ForeignTransaction , errMsg403InvalidConstructTx + , errMsg403InvalidValidityBounds , errMsg403MinUTxOValue , errMsg403MintOrBurnAssetQuantityOutOfBounds , errMsg403MissingWitsInTransaction @@ -1156,8 +1157,35 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectResponseCode HTTP.status202 ] + it "TRANS_NEW_VALIDITY_INTERVAL_02 - validity bound should precede" $ \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json|{ + "withdrawal": "self", + "validity_interval": { + "invalid_before": { + "quantity": 100, + "unit": "second" + }, + "invalid_hereafter": { + "quantity": 50, + "unit": "second" + } + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status403 + , expectErrorMessage errMsg403InvalidValidityBounds + ] + it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval second should be >= 0" $ \ctx -> runResourceT $ do + liftIO $ pendingWith "Returns 400, I think it should be 403 - to be fixed in ADP-1189" + wa <- fixtureWallet ctx let payload = Json [json|{ @@ -1168,7 +1196,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "unit": "second" }, "invalid_hereafter": { - "quantity": -1, + "quantity": 10, "unit": "second" } } diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 876d545aa82..bd4eecc4efd 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -3461,6 +3461,7 @@ data ErrConstructTx | ErrConstructTxWrongMintingBurningTemplate | ErrConstructTxAssetNameTooLong | ErrConstructTxMintOrBurnAssetQuantityOutOfBounds + | ErrConstructTxWrongValidityBounds | ErrConstructTxNotImplemented String -- ^ Temporary error constructor. deriving (Show, Eq) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index c0279dedf35..cb054c91c30 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -138,8 +138,6 @@ import Cardano.BM.Tracing ( HasPrivacyAnnotation (..), HasSeverityAnnotation (..) ) import Cardano.Mnemonic ( SomeMnemonic ) -import Cardano.Slotting.Slot - ( SlotNo (..) ) import Cardano.Wallet ( ErrAddCosignerKey (..) , ErrBalanceTx (..) @@ -460,7 +458,7 @@ import Cardano.Wallet.Primitive.Types , PoolLifeCycleStatus (..) , Signature (..) , SlotId - , SlotNo + , SlotNo (..) , SortOrder (..) , WalletId (..) , WalletMetadata (..) @@ -2285,9 +2283,12 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do hereafter' <- fromValidityBound (Right ApiValidityBoundUnspecified) pure (before', hereafter') Just (ApiValidityInterval before' hereafter') -> do - before' <- fromValidityBound (Left before') - hereafter' <- fromValidityBound (Right hereafter') - pure (before', hereafter') + before'' <- fromValidityBound (Left before') + hereafter'' <- fromValidityBound (Right hereafter') + pure (before'', hereafter'') + + when (hereafter < before) $ + liftHandler $ throwE ErrConstructTxWrongValidityBounds let ttl = hereafter @@ -4369,6 +4370,12 @@ instance IsServerError ErrConstructTx where , "bounds. The asset quantity must be greater than zero and must " , "not exceed 9223372036854775807 (2^63 - 1)." ] + ErrConstructTxWrongValidityBounds -> + apiError err403 InvalidValidityBounds $ mconcat + [ "It looks like I've created a transaction " + , "with wrong validity bounds. Please make sure before validity bound " + , "is preceding hereafter validity bound, and nonnegative times are used." + ] ErrConstructTxNotImplemented _ -> apiError err501 NotImplemented "This feature is not yet implemented." diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 02236ab5958..cdfeae906fd 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1658,6 +1658,7 @@ data ApiErrorCode | InsufficientCollateral | InvalidCoinSelection | InvalidWalletType + | InvalidValidityBounds | KeyNotFoundForAddress | MalformedTxPayload | MethodNotAllowed diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index fb3a526b485..cf1097eb58f 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -4143,6 +4143,19 @@ x-errMintOrBurnAssetQuantityOutOfBounds: &errMintOrBurnAssetQuantityOutOfBounds type: string enum: ['mint_or_burn_asset_quantity_out_of_bounds'] +x-errInvalidValidityBounds: &errInvalidValidityBounds + <<: *responsesErr + title: invalid_validity_bounds + properties: + message: + type: string + description: + Occurs when upon transaction construction before validity bound does + not precede hereafter valdity bound or negative time is used. + code: + type: string + enum: ['invalid_validity_bounds'] + x-errInputsDepleted: &errInputsDepleted <<: *responsesErr title: inputs_depleted @@ -5192,6 +5205,7 @@ x-responsesConstructTransaction: &responsesConstructTransaction - <<: *errCreatedWrongPolicyScriptTemplate - <<: *errAssetNameTooLong - <<: *errMintOrBurnAssetQuantityOutOfBounds + - <<: *errInvalidValidityBounds <<: *responsesErr404WalletNotFound <<: *responsesErr406 <<: *responsesErr415UnsupportedMediaType From dcc8eefa98ff7d849b2679c99a41ebb18851da1f Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 21 Apr 2022 17:25:05 +0200 Subject: [PATCH 03/31] add next check --- .../Scenario/API/Shelley/TransactionsNew.hs | 3 +-- lib/core/src/Cardano/Wallet/Api/Server.hs | 11 ++++++++++- 2 files changed, 11 insertions(+), 3 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 11187800370..d3567434386 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 @@ -1184,8 +1184,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval second should be >= 0" $ \ctx -> runResourceT $ do - liftIO $ pendingWith "Returns 400, I think it should be 403 - to be fixed in ADP-1189" - wa <- fixtureWallet ctx let payload = Json [json|{ @@ -1206,6 +1204,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (Link.createUnsignedTransaction @'Shelley wa) Default payload verify rTx [ expectResponseCode HTTP.status403 + , expectErrorMessage errMsg403InvalidValidityBounds ] it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval slot should be >= 0" $ \ctx -> runResourceT $ do diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index cb054c91c30..7112d730685 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2263,6 +2263,15 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do let md = body ^? #metadata . traverse . #getApiT + let isValidityBoundTimeNegative (ApiValidityBoundAsTimeFromNow (Quantity sec)) = + sec < 0 + isValidityBoundTimeNegative _ = False + + let isThereNegativeTime = case body ^. #validityInterval of + Nothing -> False + Just (ApiValidityInterval before' hereafter') -> + isValidityBoundTimeNegative before' || + isValidityBoundTimeNegative hereafter' let fromValidityBound (Left ApiValidityBoundUnspecified) = liftIO $ pure $ SlotNo 0 @@ -2287,7 +2296,7 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do hereafter'' <- fromValidityBound (Right hereafter') pure (before'', hereafter'') - when (hereafter < before) $ + when (hereafter < before || isThereNegativeTime) $ liftHandler $ throwE ErrConstructTxWrongValidityBounds let ttl = hereafter From 129db26e2730947ce23652afc86526aaf4cbc8e9 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 22 Apr 2022 11:58:25 +0200 Subject: [PATCH 04/31] simplify how asset quantity is called during construction --- lib/core/src/Cardano/Wallet/Api/Server.hs | 10 +- lib/core/src/Cardano/Wallet/Api/Types.hs | 9 +- .../ApiConstructTransactionDataTestnet0.json | 4664 ++++++++--------- specifications/api/swagger.yaml | 23 +- 4 files changed, 2270 insertions(+), 2436 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 7112d730685..edb5858f482 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2239,10 +2239,10 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do ) $ liftHandler $ throwE ErrConstructTxAssetNameTooLong let assetQuantityOutOfBounds - (ApiMintBurnData _ _ (ApiMint (ApiMintData _ (Quantity amt)))) = + (ApiMintBurnData _ _ (ApiMint (ApiMintData _ amt))) = amt <= 0 || amt > unTokenQuantity txMintBurnMaxTokenQuantity assetQuantityOutOfBounds - (ApiMintBurnData _ _ (ApiBurn (ApiBurnData (Quantity amt)))) = + (ApiMintBurnData _ _ (ApiBurn (ApiBurnData amt))) = amt <= 0 || amt > unTokenQuantity txMintBurnMaxTokenQuantity when ( isJust mintingBurning' && @@ -2358,7 +2358,7 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do ApiMintBurnData (ApiT scriptT) (Just (ApiT tName)) - (ApiMint (ApiMintData _ (Quantity amt))) -> + (ApiMint (ApiMintData _ amt)) -> toTokenMapAndScript @k scriptT (Map.singleton (Cosigner 0) policyXPub) @@ -2369,7 +2369,7 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do ApiMintBurnData (ApiT scriptT) (Just (ApiT tName)) - (ApiBurn (ApiBurnData (Quantity amt))) -> + (ApiBurn (ApiBurnData amt)) -> toTokenMapAndScript @k scriptT (Map.singleton (Cosigner 0) policyXPub) @@ -2459,7 +2459,7 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do toMintTxOut policyXPub (ApiMintBurnData (ApiT scriptT) (Just (ApiT tName)) - (ApiMint (ApiMintData (Just addr) (Quantity amt)))) = + (ApiMint (ApiMintData (Just addr) amt))) = let (assetId, tokenQuantity, _) = toTokenMapAndScript @k scriptT (Map.singleton (Cosigner 0) policyXPub) diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index cdfeae906fd..087749c93e7 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -4085,8 +4085,8 @@ data ApiMintData (n :: NetworkDiscriminant) = ApiMintData -- If no address is specified, then minted assets will be returned to -- the wallet as change, and change output addresses will be assigned -- automatically. - , amount - :: Quantity "assets" Natural + , quantity + :: Natural -- ^ Amount of assets to mint. } deriving (Eq, Generic, Show) @@ -4101,8 +4101,9 @@ instance EncodeAddress n => ToJSON (ApiMintData n) where -- | The format of a burn request: burn "amount". The user can only specify the -- type of tokens to burn (policyId, assetName), and the amount, the exact -- tokens selected are up to the implementation. -newtype ApiBurnData = ApiBurnData (Quantity "assets" Natural) - deriving (Eq, Generic, Show) +newtype ApiBurnData = ApiBurnData + { quantity :: Natural + } deriving (Eq, Generic, Show) deriving anyclass NFData instance FromJSON ApiBurnData where diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json index d4adc363c56..c6e424ce640 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json @@ -1,179 +1,168 @@ { - "seed": 1771887724255002563, + "seed": -3494269887809655878, "samples": [ { "withdrawal": "self", "delegations": [ { "join": { - "pool": "pool1qjg986cwg8hc78svut6573t3lk5nmz0ejlsk94vwt5csy0a927h", - "stake_key_index": "7958" + "pool": "pool1lxlg0wt57wd3wukuw5hsq2nlwrwk9cepcaevy55zhzkqshzhp4p", + "stake_key_index": "22499" } }, { "quit": { - "stake_key_index": "7775" + "stake_key_index": "8532" } }, { "join": { - "pool": "pool1jnfjl5ykeuulfryaewzpqt49x5d638s0jgprq7kg3d3t2dwq7w4", - "stake_key_index": "22510" - } - }, - { - "quit": { - "stake_key_index": "23226" - } - }, - { - "quit": { - "stake_key_index": "14277" + "pool": "pool1tp4ysn542r44j3j6c09j6zrm9neh7hl0e7tk2d5vldes59kzm54", + "stake_key_index": "3323" } }, { "join": { - "pool": "pool1aczuuqusjfevnf03tx357h67ldl8p5svckpujuca6uqcqutegjq", - "stake_key_index": "8822" + "pool": "pool1h9s6zqlyeq4jsuq7th9m3shp6wt55z2ufe36mssudztnv6n6tuc", + "stake_key_index": "26390" } }, { - "quit": { - "stake_key_index": "1831" + "join": { + "pool": "pool1cphj05zuuzteckft9dcsm3wl2zvkpxlapw48rnwx5kfmzkfz76f", + "stake_key_index": "24604" } }, { "quit": { - "stake_key_index": "9223" + "stake_key_index": "19998" } }, { "quit": { - "stake_key_index": "10355" + "stake_key_index": "4843" } }, { "join": { - "pool": "pool19tdfgsrzqud395le23d8qa3kw997hhsfuqlaf2jy3hytuctcurt", - "stake_key_index": "14414" + "pool": "pool1j7r35rfwpdeeplc872axdaacz84tgmm6sfh0npmrhm0vj6g702q", + "stake_key_index": "28680" } }, { "quit": { - "stake_key_index": "32489" - } - }, - { - "join": { - "pool": "pool1kyhd5z8vrn8aw3gg59e9g4usyvez47gepc33hwxlc20x2v3w2f0", - "stake_key_index": "22691" + "stake_key_index": "8834" } }, { "quit": { - "stake_key_index": "16877" + "stake_key_index": "16537" } }, { - "quit": { - "stake_key_index": "16266" + "join": { + "pool": "pool16u9s56w3mgxvpdxz0sy4pr55207gptqvjvkfctxzyhs7k7pc6g2", + "stake_key_index": "31685" } }, { "join": { - "pool": "pool1sgd4gsyld9n09vze94rwgysyzutrtslfs3fzc004fwm4qv5j3z9", - "stake_key_index": "16933" + "pool": "pool1dlvgrg8msn4n0054ufhq5tes5m48fyy0xup3tvndnyfdykkykqv", + "stake_key_index": "207" } }, { "join": { - "pool": "pool125j5vqz2f2wnrhxh0kvakvv6leev00wra6rvvxw2jga9jfe2xwz", - "stake_key_index": "26571" + "pool": "pool1ssnpncvzpp5f45l6382cpqw54yzst6ny5hg7x6xga6hz66tdv3d", + "stake_key_index": "25937" } }, { "quit": { - "stake_key_index": "3985" + "stake_key_index": "10598" } }, { "quit": { - "stake_key_index": "1006" + "stake_key_index": "288" } }, { "join": { - "pool": "pool1m7uel6d4uj40vvphfsz2v4hru62l97mp86twtlhdt40aqzu9drk", - "stake_key_index": "4716" + "pool": "pool1emquy56nccdtvls3gs06e0df5swklpz3fjdsnthckplrwcauc5s", + "stake_key_index": "870" } }, { - "quit": { - "stake_key_index": "24312" + "join": { + "pool": "pool1sws9aqqjjzru69jzafkhzs2v9eawuyxm3hkn0uhs5x4qxj7j4c4", + "stake_key_index": "2866" } }, { "quit": { - "stake_key_index": "20298" + "stake_key_index": "2372" } }, { "join": { - "pool": "pool1ndr890we99442yu6x9gjueca573vj3u2vmn779rrswny7a4yyg6", - "stake_key_index": "22675" + "pool": "pool18yx8756csnx6xc29jzk07su2s37h97awv7xdfafm07h4yjd00w3", + "stake_key_index": "3935" } }, { "quit": { - "stake_key_index": "21029" + "stake_key_index": "15439" } } ], "payments": [ - { - "address": "", - "amount": { - "quantity": 140, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" ], "mint_burn": [ { "operation": { "burn": { - "quantity": 241, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e49" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 120, - "unit": "assets" - } + "quantity": 8 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e5a" + "asset_name": "546f6b656e46" }, { "operation": { "burn": { - "quantity": 217, - "unit": "assets" + "quantity": 30 } }, "policy_script_template": { @@ -186,13 +175,13 @@ "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e54" }, { "operation": { "burn": { - "quantity": 145, - "unit": "assets" + "quantity": 5 } }, "policy_script_template": { @@ -200,15 +189,18 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e52" }, { "operation": { "burn": { - "quantity": 83, - "unit": "assets" + "quantity": 15 } }, "policy_script_template": { @@ -218,14 +210,29 @@ "active_from": 100 } ] + } + }, + { + "operation": { + "mint": { + "quantity": 1 + } }, - "asset_name": "546f6b656e55" + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "mint": { + "quantity": 9 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e41" }, { "operation": { "burn": { - "quantity": 249, - "unit": "assets" + "quantity": 18 } }, "policy_script_template": { @@ -241,49 +248,81 @@ "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 81, - "unit": "assets" - } + "quantity": 8 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e54" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 210, - "unit": "assets" - } + "quantity": 14 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { "operation": { "burn": { - "quantity": 108, - "unit": "assets" + "quantity": 3 } }, "policy_script_template": "cosigner#0" }, { "operation": { - "burn": { - "quantity": 225, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 23 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e4f" }, { "operation": { - "burn": { - "quantity": 191, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 11 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e48" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 2 } }, "policy_script_template": { @@ -291,26 +330,33 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, { "operation": { - "mint": { - "amount": { - "quantity": 232, - "unit": "assets" - } + "burn": { + "quantity": 29 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { "operation": { - "burn": { - "quantity": 233, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 14 } }, "policy_script_template": { @@ -324,13 +370,12 @@ } ] }, - "asset_name": "546f6b656e4f" + "asset_name": "546f6b656e51" }, { "operation": { "burn": { - "quantity": 90, - "unit": "assets" + "quantity": 14 } }, "policy_script_template": { @@ -340,16 +385,14 @@ "active_from": 100 } ] - } + }, + "asset_name": "546f6b656e52" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 76, - "unit": "assets" - } + "quantity": 10 } }, "policy_script_template": { @@ -359,30 +402,37 @@ "active_from": 100 } ] - }, - "asset_name": "546f6b656e46" + } }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 15, - "unit": "assets" + "quantity": 11 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 24 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e57" + "asset_name": "546f6b656e55" }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 182, - "unit": "assets" - } + "burn": { + "quantity": 12 } }, "policy_script_template": { @@ -392,17 +442,13 @@ "active_from": 100 } ] - }, - "asset_name": "546f6b656e49" + } }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 113, - "unit": "assets" - } + "quantity": 18 } }, "policy_script_template": { @@ -414,166 +460,53 @@ ] }, "asset_name": "546f6b656e43" - } - ] - }, - { - "withdrawal": "self", - "delegations": [ - { - "join": { - "pool": "pool1d2gfknmxgyvx9hn7mdlsvygwc86v039klkvnysdunkd2c4ygrl5", - "stake_key_index": "13310" - } - }, - { - "quit": { - "stake_key_index": "683" - } - }, - { - "join": { - "pool": "pool1f44dpza4t47wkf675rtlh27466gvnepcs7sf2hty0rc2sr0pn70", - "stake_key_index": "27407" - } }, { - "join": { - "pool": "pool1gr7afngwflzjygzev75q3kvd48qu3q3z49g74cwfkcqcktnk2jp", - "stake_key_index": "4187" + "operation": { + "burn": { + "quantity": 7 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "quit": { - "stake_key_index": "7484" - } + "operation": { + "burn": { + "quantity": 4 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e55" }, { - "join": { - "pool": "pool1qe7xj997wkw2s2nsadcnsmrm7pqve6rfvjwlfdg3sm2sctt90s4", - "stake_key_index": "24848" - } - }, - { - "quit": { - "stake_key_index": "20321" - } - }, - { - "join": { - "pool": "pool1nrpuvqnejsd03jg6l6uhvuh4wsl3hljkmzmc6fkurq9tq4l9kh0", - "stake_key_index": "23069" - } - }, - { - "quit": { - "stake_key_index": "29414" - } - }, - { - "quit": { - "stake_key_index": "11640" - } - }, - { - "join": { - "pool": "pool1e26xj4nssycplsgmw5wnekm524dgalmwkny0qnw3f9vakw0lkmu", - "stake_key_index": "4380" - } - }, - { - "join": { - "pool": "pool1x96p2q8pp9sty6kqngjka732lv6gsnerl95upr2wxe3l5h7xru8", - "stake_key_index": "22238" - } - }, - { - "quit": { - "stake_key_index": "29511" - } - }, - { - "join": { - "pool": "pool1c4w5v7rkq7m8fwkxcun68nx3etnpk6ar4vfepjc007lvsfe4q7q", - "stake_key_index": "11478" - } - }, - { - "join": { - "pool": "pool1zxr6pmr5a6ecl4zpn6ysmhsfyz7e2m5vvn6hl5xyx0puxmw4tyl", - "stake_key_index": "27290" - } - }, - { - "quit": { - "stake_key_index": "2020" - } - }, - { - "join": { - "pool": "pool1qltahhvdc9mr9vkak7whwjamaqspmqt2fgsh9rf7wjfhw6rqjak", - "stake_key_index": "20892" - } - } - ], - "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 134, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "operation": { + "burn": { + "quantity": 0 + } + }, + "policy_script_template": "cosigner#0" }, { "operation": { "mint": { - "receiving_address": "", - "amount": { - "quantity": 104, - "unit": "assets" - } + "quantity": 16 } }, "policy_script_template": { @@ -588,209 +521,642 @@ ] }, "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 55, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e49" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 51, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e55" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 81, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } - }, + } + ] + }, + { + "withdrawal": "self", + "payments": [ { - "operation": { - "burn": { - "quantity": 152, - "unit": "assets" - } + "address": "", + "amount": { + "quantity": 40, + "unit": "lovelace" }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 44, - "unit": "assets" + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + ] }, { - "operation": { - "burn": { - "quantity": 166, - "unit": "assets" - } + "address": "", + "amount": { + "quantity": 253, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "mint": { - "amount": { - "quantity": 126, - "unit": "assets" - } + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e59" + ] }, { - "operation": { - "burn": { - "quantity": 141, - "unit": "assets" - } + "address": "", + "amount": { + "quantity": 195, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" + "assets": [] }, { - "operation": { - "burn": { - "quantity": 6, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "address": "", + "amount": { + "quantity": 6, + "unit": "lovelace" }, - "asset_name": "546f6b656e44" + "assets": [] }, { - "operation": { - "burn": { - "quantity": 246, - "unit": "assets" - } + "address": "", + "amount": { + "quantity": 131, + "unit": "lovelace" }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 39, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 37, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 124, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 36, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 255, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 74, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 29, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 112, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 70, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 253, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 207, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 234, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 49, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 31, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 180, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 82, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 33, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 223, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 36, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 57, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 5, + "unit": "lovelace" }, - "asset_name": "546f6b656e52" + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 38, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 38, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "address": "", + "amount": { + "quantity": 3, + "unit": "lovelace" }, - "asset_name": "546f6b656e45" - }, + "assets": [] + } + ] + }, + { + "withdrawal": "self", + "mint_burn": [ { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 29, - "unit": "assets" - } + "burn": { + "quantity": 9 } }, "policy_script_template": { @@ -798,32 +1164,26 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] }, - "asset_name": "546f6b656e52" + "asset_name": "546f6b656e58" }, { "operation": { - "burn": { - "quantity": 175, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 25 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e55" + "asset_name": "546f6b656e49" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 115, - "unit": "assets" - } + "quantity": 8 } }, "policy_script_template": { @@ -831,42 +1191,32 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] }, - "asset_name": "546f6b656e50" + "asset_name": "546f6b656e4c" }, { "operation": { "mint": { - "amount": { - "quantity": 28, - "unit": "assets" - } + "receiving_address": "", + "quantity": 8 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 182, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "burn": { - "quantity": 67, - "unit": "assets" + "quantity": 21 } }, "policy_script_template": { @@ -880,11 +1230,8 @@ }, { "operation": { - "mint": { - "amount": { - "quantity": 202, - "unit": "assets" - } + "burn": { + "quantity": 9 } }, "policy_script_template": { @@ -894,28 +1241,23 @@ "active_from": 100 } ] - } + }, + "asset_name": "546f6b656e44" }, { "operation": { "mint": { - "receiving_address": "", - "amount": { - "quantity": 2, - "unit": "assets" - } + "quantity": 13 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e41" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 63, - "unit": "assets" - } + "quantity": 14 } }, "policy_script_template": { @@ -926,13 +1268,12 @@ } ] }, - "asset_name": "546f6b656e42" + "asset_name": "546f6b656e59" }, { "operation": { "burn": { - "quantity": 157, - "unit": "assets" + "quantity": 26 } }, "policy_script_template": { @@ -942,16 +1283,14 @@ "active_from": 100 } ] - } + }, + "asset_name": "546f6b656e4e" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 166, - "unit": "assets" - } + "quantity": 25 } }, "policy_script_template": { @@ -964,63 +1303,32 @@ "active_until": 150 } ] - }, - "asset_name": "546f6b656e47" + } }, { "operation": { "mint": { - "amount": { - "quantity": 188, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e53" - }, - { - "operation": { - "burn": { - "quantity": 37, - "unit": "assets" + "receiving_address": "", + "quantity": 24 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e5a" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e51" }, { "operation": { "burn": { - "quantity": 187, - "unit": "assets" + "quantity": 19 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" + "asset_name": "546f6b656e44" }, { "operation": { - "burn": { - "quantity": 84, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 19 } }, "policy_script_template": { @@ -1028,26 +1336,26 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - }, - "asset_name": "546f6b656e45" + } }, { "operation": { "burn": { - "quantity": 160, - "unit": "assets" + "quantity": 7 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e54" + "asset_name": "546f6b656e45" }, { "operation": { "burn": { - "quantity": 65, - "unit": "assets" + "quantity": 11 } }, "policy_script_template": { @@ -1056,183 +1364,199 @@ { "active_from": 100 }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e5a" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 126, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0" - } - ] - }, - { - "withdrawal": "self", - "delegations": [ - { - "join": { - "pool": "pool17wu3twhkprgzcpn2fx4y0emtylk4skyy8dfqktngnpfqyzdqyc4", - "stake_key_index": "3469" - } - }, - { - "quit": { - "stake_key_index": "4598" - } - }, - { - "quit": { - "stake_key_index": "24239" - } - }, - { - "join": { - "pool": "pool13qvh4s28u7l2ezany2p5famw5nrj3uz38ghtjvv5m3lm7sdyukk", - "stake_key_index": "23339" - } - }, - { - "quit": { - "stake_key_index": "11463" - } - }, - { - "quit": { - "stake_key_index": "17016" - } - }, - { - "join": { - "pool": "pool1zlmn858u64972rwz5v578uhncfysc4479hw2q0wxs5a7s2u7w48", - "stake_key_index": "4973" - } - }, - { - "quit": { - "stake_key_index": "93" - } - }, - { - "join": { - "pool": "pool1j335j0tgn95vtpz58yr8s580p0ppgneu2dnmxafexdajsffu4vh", - "stake_key_index": "9001" - } - }, - { - "join": { - "pool": "pool1elzzdsl2snnwlynar6rcxz9nmzpdkdscp9w2rp6jsx3lvtl2r55", - "stake_key_index": "718" - } - }, - { - "quit": { - "stake_key_index": "18769" - } - }, - { - "join": { - "pool": "pool1mdlvle23eep69l45ulkdelvuwa7jadklaud33lh5xc0fq500mhf", - "stake_key_index": "13072" - } - }, - { - "quit": { - "stake_key_index": "20810" - } - }, - { - "quit": { - "stake_key_index": "15634" - } - }, - { - "quit": { - "stake_key_index": "12729" - } - }, - { - "quit": { - "stake_key_index": "18046" - } - }, - { - "join": { - "pool": "pool1edrqye80pe8k5up0xkuvl2dfz5af0ezlqmje7pmwzk97gjyf3pc", - "stake_key_index": "26076" - } - }, - { - "quit": { - "stake_key_index": "12190" - } + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e47" }, { - "quit": { - "stake_key_index": "14465" - } + "operation": { + "burn": { + "quantity": 1 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e4b" }, { - "quit": { - "stake_key_index": "900" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 9 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "join": { - "pool": "pool1naslcy8cfg7ggcuwwhxydfxy7trrkxy5g4fzwju6j2sus66k5rj", - "stake_key_index": "32639" - } + "operation": { + "mint": { + "receiving_address": "", + "quantity": 28 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e48" }, { - "quit": { - "stake_key_index": "21522" - } + "operation": { + "mint": { + "receiving_address": "", + "quantity": 23 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e5a" }, { - "quit": { - "stake_key_index": "16830" - } - }, + "operation": { + "mint": { + "receiving_address": "", + "quantity": 22 + } + }, + "policy_script_template": "cosigner#0" + } + ], + "metadata": { + "7": { + "map": [ + { + "k": { + "string": "󵳞󵚲󶕎" + }, + "v": { + "map": [ + { + "k": { + "string": "𨭓𥶟" + }, + "v": { + "map": [ + { + "k": { + "string": "󾢾窖" + }, + "v": { + "string": "􏭌" + } + } + ] + } + }, + { + "k": { + "string": "󺞲" + }, + "v": { + "map": [ + { + "k": { + "string": "𣜄㨋" + }, + "v": { + "int": 1 + } + } + ] + } + } + ] + } + }, + { + "k": { + "string": "󼧬􏀒" + }, + "v": { + "list": [ + { + "int": -1 + }, + { + "bytes": "5c55a80f6f0b5f25254550a61826f95657092f0a7f17" + } + ] + } + }, + { + "k": { + "string": "􀊐" + }, + "v": { + "bytes": "455e0a6a3f1805466500437e9fdf39037eda72353436f96824661e6ecc014e0412401e57560b072e3705772cc439610f" + } + } + ] + } + } + }, + { + "withdrawal": "self", + "delegations": [ { "join": { - "pool": "pool1l0se52yfj49lup7wfxmff9za73txd4r89lc8t6vydy4lq2zfpdl", - "stake_key_index": "8102" + "pool": "pool17dvg0ch8mmxvruhu7suqz7t0su4e0u94yewlknve7yf428egzug", + "stake_key_index": "3292" } }, { "quit": { - "stake_key_index": "11908" + "stake_key_index": "12697" } }, { "quit": { - "stake_key_index": "13302" + "stake_key_index": "15814" } }, { "quit": { - "stake_key_index": "15517" + "stake_key_index": "5199" } }, { "join": { - "pool": "pool1taeacdungtc88d7784vg39s74pvem20dynhaevglggltkvc4dvx", - "stake_key_index": "4545" - } - }, - { - "quit": { - "stake_key_index": "15251" + "pool": "pool1xptlyjttsfqn6fmmuaxk8nh2tc49clceaj0hyk75kqn6769fxqd", + "stake_key_index": "7505" } } ], @@ -1257,529 +1581,324 @@ "", "" ], - "metadata": { - "15": { - "list": [ - { - "map": [ - { - "k": { - "string": "飛􁋷􍞓" - }, - "v": { - "string": "𤾞𐳪" - } - }, - { - "k": { - "string": "􄢪􂎈" - }, - "v": { - "map": [ - { - "k": { - "string": "𣜟蒿" - }, - "v": { - "string": "𧓍" - } - } - ] - } - } - ] - } - ] - } - } - }, - { - "withdrawal": "self", - "delegations": [ - { - "join": { - "pool": "pool1m8dtj89j74dj5fj9753ngpyjfs267x3nkywgfmw7sdt5yzt2525", - "stake_key_index": "19987" - } - }, - { - "quit": { - "stake_key_index": "7111" - } - }, - { - "join": { - "pool": "pool1g8y0rzh0z2p6q3g7gd3qu5zv6uhs6hu0lk5k06gy59d4kr5lpsa", - "stake_key_index": "8593" - } - }, - { - "join": { - "pool": "pool17waypgs3vp2gy9y4jy9c6xq9zahxedlsglck0qvnjak3snl3k9g", - "stake_key_index": "3617" - } - }, - { - "quit": { - "stake_key_index": "24972" - } - }, - { - "join": { - "pool": "pool1q3txhg3vsvauksgmum7hgj0zgj47m8vteypyavy24gp2qpe7dxm", - "stake_key_index": "21423" - } - }, - { - "quit": { - "stake_key_index": "19371" - } - }, + "mint_burn": [ { - "join": { - "pool": "pool1fef290y8unvep5vrza73mzxkqzvztz5lprc3x0jp4a8uxzrfuvp", - "stake_key_index": "25761" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 8 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "quit": { - "stake_key_index": "26118" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 5 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } }, { - "join": { - "pool": "pool14039s6nc2xtcuu2024ja5mkxz06p9vgh94mjz7vuhz8mzw70pe9", - "stake_key_index": "6016" - } - } - ], - "payments": [ - { - "address": "", - "amount": { - "quantity": 41, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 11 + } }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { - "address": "", - "amount": { - "quantity": 150, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 4 + } }, - "assets": [] + "policy_script_template": "cosigner#0" }, { - "address": "", - "amount": { - "quantity": 233, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "operation": { + "mint": { + "quantity": 4 } - ] + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e4c" }, { - "address": "", - "amount": { - "quantity": 55, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "operation": { + "burn": { + "quantity": 20 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { - "address": "", - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 40, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "operation": { + "burn": { + "quantity": 1 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { - "address": "", - "amount": { - "quantity": 27, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 30 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e58" }, { - "address": "", - "amount": { - "quantity": 142, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "operation": { + "burn": { + "quantity": 2 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "", - "amount": { - "quantity": 233, - "unit": "lovelace" + "operation": { + "mint": { + "quantity": 0 + } }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e57" }, { - "address": "", - "amount": { - "quantity": 80, - "unit": "lovelace" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 3 + } }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e42" + }, + { + "operation": { + "mint": { + "quantity": 17 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e56" }, { - "address": "", - "amount": { - "quantity": 63, - "unit": "lovelace" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 10 + } }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 30 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e42" }, { - "address": "", - "amount": { - "quantity": 137, - "unit": "lovelace" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 15 + } }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 41, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 17 } - ] + }, + "policy_script_template": "cosigner#0" }, { - "address": "", - "amount": { - "quantity": 246, - "unit": "lovelace" + "operation": { + "mint": { + "quantity": 13 + } }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e4b" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 3 } - ] + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e50" }, { - "address": "", - "amount": { - "quantity": 46, - "unit": "lovelace" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 11 + } }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 9 } - ] - } - ], - "mint_burn": [ + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e43" + }, { "operation": { "burn": { - "quantity": 110, - "unit": "assets" + "quantity": 29 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e50" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 27 } }, "policy_script_template": { @@ -1796,9 +1915,9 @@ }, { "operation": { - "burn": { - "quantity": 160, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 18 } }, "policy_script_template": "cosigner#0" @@ -1806,8 +1925,16 @@ { "operation": { "burn": { - "quantity": 223, - "unit": "assets" + "quantity": 22 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 24 } }, "policy_script_template": { @@ -1820,65 +1947,52 @@ "active_until": 150 } ] - } - } - ], - "metadata": { - "15": { - "map": [ - { - "k": { - "string": "𦘼া" - }, - "v": { - "list": [ - { - "map": [] - }, - { - "bytes": "2f0a0d5d306de0282b5f0e6869652828427e296623694452286326326c172c" - } - ] - } - }, - { - "k": { - "string": "𧐃􂙚𠅻" + }, + "asset_name": "546f6b656e4b" + }, + { + "operation": { + "burn": { + "quantity": 11 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 }, - "v": { - "map": [ - { - "k": { - "string": "魓𑙑" - }, - "v": { - "string": "全窌" - } - }, - { - "k": { - "string": "󵄒󹵑" - }, - "v": { - "list": [ - { - "int": 1 - } - ] - } - } - ] + { + "active_until": 150 } - }, - { - "k": { - "string": "𬯀􅹅" + ] + }, + "asset_name": "546f6b656e47" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 1 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 }, - "v": { - "string": "󱃌釒" + { + "active_until": 150 } - } - ] + ] + }, + "asset_name": "546f6b656e47" + } + ], + "metadata": { + "19": { + "int": 0 } } }, @@ -1886,105 +2000,182 @@ "withdrawal": "self", "delegations": [ { - "quit": { - "stake_key_index": "28608" + "join": { + "pool": "pool1899wm5tjckw6p2548pfj79jp88c4h8au3cw6kgj3k8fzqthedel", + "stake_key_index": "16609" + } + }, + { + "join": { + "pool": "pool1j8x0ya3w8n7l5frs2wgdgjezj6tumnjsgwsx5ruwuxzucxwq85t", + "stake_key_index": "15893" } }, { "join": { - "pool": "pool15kalm7m2kkfrpgm7mt5dg7e9h76996k4gjh9juw9ewstk3mu4zt", - "stake_key_index": "28975" + "pool": "pool1d9fspjuksulw7dcg2ed9dcjuhf33t3uwjxgz7ejrgcmeuak0v5v", + "stake_key_index": "26168" + } + }, + { + "join": { + "pool": "pool1egfwm7c58jmt56g2z2ycnvqf2ylun47af9d72k6ykm6yc2x47d7", + "stake_key_index": "27978" } }, { "quit": { - "stake_key_index": "16708" + "stake_key_index": "14292" + } + }, + { + "join": { + "pool": "pool1pje6qnaq3xv463wjfd8mld5czec7e7gphkxjnjtgcu9ecm9a24v", + "stake_key_index": "10481" + } + }, + { + "join": { + "pool": "pool1l6nlzr64ervwxqa2w2vdez66gp0amxtnlmlgs49veyffjyectz5", + "stake_key_index": "29094" } }, { "quit": { - "stake_key_index": "8169" + "stake_key_index": "7295" } }, { "join": { - "pool": "pool13ae6s3dfghzm2exrypr4efsyr4p6vnae5lmq7nnx4rnlsch28mf", - "stake_key_index": "19111" + "pool": "pool15fm9tnnvnmmqx264gg0m5cjve07af57h6xj8wh8zxg37y338qlw", + "stake_key_index": "18425" } }, { "quit": { - "stake_key_index": "735" + "stake_key_index": "4735" } }, { "join": { - "pool": "pool1tw0r0uy7yhap7n955ash8j4tn820ywy2tsynfykjeltxy7tvmlz", - "stake_key_index": "23688" + "pool": "pool1zjtmp04e8gjew6gew455pm3nc0um45vcnu7gs8julm9du9a4jy4", + "stake_key_index": "18219" } }, { "quit": { - "stake_key_index": "9638" + "stake_key_index": "31837" + } + }, + { + "join": { + "pool": "pool1p0dpsrpwj50phfdcxyc4zhffazypsxeh3kcs49fnckva2p9vr0r", + "stake_key_index": "29423" + } + }, + { + "join": { + "pool": "pool15a0tkjplvatgfs9w778ge0uungzemrzgjnr8pt8mhu6agynmjcw", + "stake_key_index": "6738" } }, { "quit": { - "stake_key_index": "195" + "stake_key_index": "2895" + } + }, + { + "join": { + "pool": "pool1c94frf2j5x25yknenmwcy4jk3kx9ev6nlt5pgl54lpkf59vcmrg", + "stake_key_index": "19705" + } + }, + { + "join": { + "pool": "pool103hqf9n8vsha659xs47z24a57fr5yx0qkheff33tyfmlgnh4lce", + "stake_key_index": "15467" + } + }, + { + "join": { + "pool": "pool1wx7f03rulw8ypkef6gz6k6uk5xpa4yfv5emst6qy4ge6q2wqnly", + "stake_key_index": "16041" } }, { "join": { - "pool": "pool1v9lrcujuegl9pnyvyv20lqxztdd2kzy890ytcs3jzwhvycu90yt", - "stake_key_index": "28230" + "pool": "pool1marphc8uawxm4qkdmr770n97dz2rn629dl8ev92uhxn8c6e8cth", + "stake_key_index": "14087" } }, { "quit": { - "stake_key_index": "24065" + "stake_key_index": "17016" + } + }, + { + "join": { + "pool": "pool1w7dx2wg0x4gxwaj24q6luntythjm9yplarzly5l0jdgdxyxsm4r", + "stake_key_index": "22888" } }, { "quit": { - "stake_key_index": "4299" + "stake_key_index": "29319" } }, { "quit": { - "stake_key_index": "16009" + "stake_key_index": "28684" } }, { "quit": { - "stake_key_index": "28495" + "stake_key_index": "29841" } } ], - "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], "mint_burn": [ + { + "operation": { + "burn": { + "quantity": 16 + } + }, + "policy_script_template": "cosigner#0" + }, { "operation": { "mint": { - "amount": { - "quantity": 5, - "unit": "assets" + "receiving_address": "", + "quantity": 8 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 } + ] + }, + "asset_name": "546f6b656e4f" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 18 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e52" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 17 } }, "policy_script_template": { @@ -1997,13 +2188,14 @@ "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e4e" }, { "operation": { - "burn": { - "quantity": 26, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 11 } }, "policy_script_template": { @@ -2017,12 +2209,8 @@ }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 242, - "unit": "assets" - } + "burn": { + "quantity": 25 } }, "policy_script_template": { @@ -2036,12 +2224,26 @@ }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 151, - "unit": "assets" - } + "burn": { + "quantity": 7 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e48" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 18 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 28 } }, "policy_script_template": { @@ -2054,13 +2256,13 @@ "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e50" }, { "operation": { "burn": { - "quantity": 92, - "unit": "assets" + "quantity": 25 } }, "policy_script_template": { @@ -2070,14 +2272,23 @@ "active_from": 100 } ] + } + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 18 + } }, - "asset_name": "546f6b656e4e" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e55" }, { "operation": { - "burn": { - "quantity": 34, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 22 } }, "policy_script_template": { @@ -2087,14 +2298,12 @@ "active_from": 100 } ] - }, - "asset_name": "546f6b656e42" + } }, { "operation": { "burn": { - "quantity": 151, - "unit": "assets" + "quantity": 28 } }, "policy_script_template": { @@ -2105,13 +2314,13 @@ } ] }, - "asset_name": "546f6b656e42" + "asset_name": "546f6b656e51" }, { "operation": { - "burn": { - "quantity": 234, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 21 } }, "policy_script_template": { @@ -2125,21 +2334,17 @@ }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 134, - "unit": "assets" - } + "burn": { + "quantity": 4 } }, "policy_script_template": "cosigner#0" }, { "operation": { - "burn": { - "quantity": 235, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 8 } }, "policy_script_template": { @@ -2149,13 +2354,13 @@ "active_from": 100 } ] - } + }, + "asset_name": "546f6b656e59" }, { "operation": { "burn": { - "quantity": 15, - "unit": "assets" + "quantity": 8 } }, "policy_script_template": { @@ -2166,16 +2371,21 @@ } ] }, - "asset_name": "546f6b656e48" + "asset_name": "546f6b656e4b" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 80, - "unit": "assets" - } + "quantity": 6 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 12 } }, "policy_script_template": "cosigner#0" @@ -2184,73 +2394,43 @@ "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 94, - "unit": "assets" - } + "quantity": 21 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4a" + "asset_name": "546f6b656e48" }, { "operation": { "burn": { - "quantity": 179, - "unit": "assets" + "quantity": 12 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e55" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e58" }, { "operation": { "burn": { - "quantity": 34, - "unit": "assets" + "quantity": 10 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e53" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e54" }, { "operation": { "burn": { - "quantity": 112, - "unit": "assets" + "quantity": 1 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "policy_script_template": "cosigner#0" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 28, - "unit": "assets" - } + "quantity": 19 } }, "policy_script_template": "cosigner#0" @@ -2259,10 +2439,7 @@ "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 244, - "unit": "assets" - } + "quantity": 10 } }, "policy_script_template": { @@ -2270,19 +2447,14 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - }, - "asset_name": "546f6b656e48" + } }, { "operation": { "burn": { - "quantity": 5, - "unit": "assets" + "quantity": 30 } }, "policy_script_template": { @@ -2290,44 +2462,27 @@ "cosigner#0", { "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e49" - }, - { - "operation": { - "burn": { - "quantity": 34, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", + }, { - "active_from": 100 + "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e4f" }, { "operation": { "burn": { - "quantity": 225, - "unit": "assets" + "quantity": 16 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e52" }, { "operation": { "mint": { - "receiving_address": "", - "amount": { - "quantity": 121, - "unit": "assets" - } + "quantity": 6 } }, "policy_script_template": { @@ -2337,38 +2492,13 @@ "active_from": 100 } ] - } - }, - { - "operation": { - "mint": { - "amount": { - "quantity": 137, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 187, - "unit": "assets" - } - } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e51" + "asset_name": "546f6b656e55" }, { "operation": { "burn": { - "quantity": 204, - "unit": "assets" + "quantity": 20 } }, "policy_script_template": { @@ -2379,21 +2509,14 @@ } ] }, - "asset_name": "546f6b656e4b" + "asset_name": "546f6b656e54" } ], "metadata": { - "9": { + "14": { "list": [ { - "string": "󴈒䤴" - }, - { - "list": [ - { - "list": [] - } - ] + "list": [] } ] } @@ -2404,184 +2527,346 @@ "delegations": [ { "quit": { - "stake_key_index": "20188" + "stake_key_index": "11936" } }, { "join": { - "pool": "pool1pqns5s7x3nmwjad9vud6n82wuv0lag6rhnka2cxyktnruyewhdl", - "stake_key_index": "31679" + "pool": "pool1ceufwy7hh0vnz7qq7tcu4m92785l0kk7ckw3cchpuxepzm26hm0", + "stake_key_index": "2724" } }, { - "quit": { - "stake_key_index": "20767" + "join": { + "pool": "pool1pzxjaalsexhcauapk483r674fddj073yk3yvasc5wc26xvcdgne", + "stake_key_index": "6881" } }, { "quit": { - "stake_key_index": "26996" + "stake_key_index": "3530" + } + }, + { + "join": { + "pool": "pool12wvppall0mfu462xcf036u7hqpvep5vyuku75nxe6tcy2lktu6z", + "stake_key_index": "27626" + } + }, + { + "join": { + "pool": "pool1kvd06v4pua63x5cjxwuaed7ngyw8u30l39406lzj4vrdwle3dt4", + "stake_key_index": "10477" + } + }, + { + "join": { + "pool": "pool1wcx5xf724qy2rw2ez4l3gppja69xcjp3mdqvh0elzggywmnf00u", + "stake_key_index": "12046" } }, { "join": { - "pool": "pool185gcuvgc4vwxyfxc5n5r55f350dfvrcay3e8z7z90lz2s3ke63k", - "stake_key_index": "1662" + "pool": "pool1h36xmwm3ksj8gnpgrxy233vyaz07s2q524qjx2nqfyca6s3sxnz", + "stake_key_index": "31586" } }, { "join": { - "pool": "pool1wkakj2rqylz45tpa4z2yt8c5547wj4k3vx4gjudysu89qauulfz", - "stake_key_index": "19737" + "pool": "pool195tzc0sxmn4756l03em9wutru0nd5l7y4097zxe7t4umx3s0z5t", + "stake_key_index": "13329" } }, { "join": { - "pool": "pool1muuthvck50hchfvlf3jy9p6ut7gy96utq4fq4jhxv9jfw33nvc8", - "stake_key_index": "30112" + "pool": "pool1e9v2zdc789dayfmhp3cukmzpjdpacxlcwj0h8ukt6kzqwc08m5y", + "stake_key_index": "7230" } }, { "quit": { - "stake_key_index": "29819" + "stake_key_index": "5298" } }, { "quit": { - "stake_key_index": "29872" + "stake_key_index": "5776" } }, { "quit": { - "stake_key_index": "28768" + "stake_key_index": "8269" } }, { "quit": { - "stake_key_index": "29272" + "stake_key_index": "3911" } }, { - "join": { - "pool": "pool1vkesd5y6adg839vgkaflrxy8ey9g0u9eef5y96y0vc3vu7k2jjv", - "stake_key_index": "29367" + "quit": { + "stake_key_index": "6954" } }, { - "join": { - "pool": "pool1ukf7l8j8kdaaqwwk28ux6d5m3ajtvxx6hrfwt559p759yls0ymr", - "stake_key_index": "1918" + "quit": { + "stake_key_index": "19051" + } + }, + { + "quit": { + "stake_key_index": "18269" } }, { "quit": { - "stake_key_index": "8443" + "stake_key_index": "517" } }, { "join": { - "pool": "pool16dp6pe8lzfcr2e88kve6jsawm9drv6pchx5uvz0w30442kyn47g", - "stake_key_index": "2589" + "pool": "pool1khjx8s24sxehl75aks6d6pgf0lgrt5kqdrpp8cf6vjgz53wckpt", + "stake_key_index": "9244" } }, { "quit": { - "stake_key_index": "8268" + "stake_key_index": "22275" } }, { - "join": { - "pool": "pool1qd5sr7t3twl3u2p6mnnwnup52lqwx0g2nt9kkrplvc8gw7tu7dl", - "stake_key_index": "16098" + "quit": { + "stake_key_index": "28695" } }, { "join": { - "pool": "pool12y2vhvfqn35x57wumzvgls97kxydl0kmut39ezak0t6kj7p6uc7", - "stake_key_index": "27700" + "pool": "pool1kgal7uaswaw9yp4wtcnacyvsxvtk2cvcw678u5dd43u3zwuncpq", + "stake_key_index": "21764" } }, { "quit": { - "stake_key_index": "23200" + "stake_key_index": "23002" } }, { - "join": { - "pool": "pool107xvst8ehvgtrw66e0067z0h8k5kk642qx7588e6mg6wwmy8pre", - "stake_key_index": "20384" + "quit": { + "stake_key_index": "22788" } }, { "quit": { - "stake_key_index": "20902" + "stake_key_index": "5654" } + } + ], + "payments": [ + { + "address": "", + "amount": { + "quantity": 72, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 9, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 95, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 45, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 222, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quit": { - "stake_key_index": "32016" - } + "address": "", + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "join": { - "pool": "pool1su27xdkmw6y4kyjzq8pham2zqmq3v0qnq5aduq9jrl7lz3tkx8h", - "stake_key_index": "11354" - } + "address": "", + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 79, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 40, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "join": { - "pool": "pool1ed83xmzyjhuj9esq2dyxssud300cqhs9nm2t68lr0efyv3qfgff", - "stake_key_index": "17253" - } + "address": "", + "amount": { + "quantity": 112, + "unit": "lovelace" + }, + "assets": [] }, { - "quit": { - "stake_key_index": "17466" - } + "address": "", + "amount": { + "quantity": 105, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] } ], - "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], "mint_burn": [ { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 77, - "unit": "assets" - } + "burn": { + "quantity": 28 } }, "policy_script_template": { @@ -2592,13 +2877,12 @@ } ] }, - "asset_name": "546f6b656e4a" + "asset_name": "546f6b656e4c" }, { "operation": { - "burn": { - "quantity": 92, - "unit": "assets" + "mint": { + "quantity": 16 } }, "policy_script_template": { @@ -2614,10 +2898,16 @@ "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 186, - "unit": "assets" - } + "quantity": 16 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e56" + }, + { + "operation": { + "burn": { + "quantity": 15 } }, "policy_script_template": { @@ -2625,41 +2915,46 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - }, - "asset_name": "546f6b656e53" + } }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 211, - "unit": "assets" - } + "quantity": 24 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e56" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { "operation": { - "burn": { - "quantity": 213, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 1 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e50" }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 106, - "unit": "assets" - } + "burn": { + "quantity": 24 } }, "policy_script_template": { @@ -2676,12 +2971,8 @@ }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 20, - "unit": "assets" - } + "burn": { + "quantity": 6 } }, "policy_script_template": { @@ -2695,41 +2986,24 @@ }, { "operation": { - "burn": { - "quantity": 127, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4e" - }, - { - "operation": { - "burn": { - "quantity": 169, - "unit": "assets" + "mint": { + "quantity": 30 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 123, - "unit": "assets" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 } - } + ] }, - "policy_script_template": "cosigner#0" + "asset_name": "546f6b656e52" }, { "operation": { "burn": { - "quantity": 19, - "unit": "assets" + "quantity": 18 } }, "policy_script_template": { @@ -2746,9 +3020,9 @@ }, { "operation": { - "burn": { - "quantity": 28, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 22 } }, "policy_script_template": { @@ -2756,19 +3030,23 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] + } + }, + { + "operation": { + "burn": { + "quantity": 27 + } }, - "asset_name": "546f6b656e5a" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e47" }, { "operation": { "burn": { - "quantity": 23, - "unit": "assets" + "quantity": 19 } }, "policy_script_template": { @@ -2776,19 +3054,24 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] + } + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 1 + } }, - "asset_name": "546f6b656e44" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e50" }, { "operation": { "burn": { - "quantity": 242, - "unit": "assets" + "quantity": 8 } }, "policy_script_template": { @@ -2796,19 +3079,22 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] + } + }, + { + "operation": { + "burn": { + "quantity": 10 + } }, - "asset_name": "546f6b656e54" + "policy_script_template": "cosigner#0" }, { "operation": { "burn": { - "quantity": 194, - "unit": "assets" + "quantity": 2 } }, "policy_script_template": { @@ -2823,10 +3109,8 @@ { "operation": { "mint": { - "amount": { - "quantity": 144, - "unit": "assets" - } + "receiving_address": "", + "quantity": 29 } }, "policy_script_template": { @@ -2840,23 +3124,20 @@ } ] }, - "asset_name": "546f6b656e53" + "asset_name": "546f6b656e5a" }, { "operation": { - "burn": { - "quantity": 249, - "unit": "assets" + "mint": { + "quantity": 0 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e44" + "policy_script_template": "cosigner#0" }, { "operation": { "burn": { - "quantity": 19, - "unit": "assets" + "quantity": 0 } }, "policy_script_template": { @@ -2864,43 +3145,32 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - } - }, - { - "operation": { - "burn": { - "quantity": 97, - "unit": "assets" - } }, - "policy_script_template": "cosigner#0" + "asset_name": "546f6b656e45" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 42, - "unit": "assets" - } + "quantity": 28 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 184, - "unit": "assets" - } + "quantity": 12 } }, "policy_script_template": { @@ -2908,6 +3178,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } @@ -2915,8 +3188,7 @@ { "operation": { "burn": { - "quantity": 124, - "unit": "assets" + "quantity": 3 } }, "policy_script_template": { @@ -2929,27 +3201,22 @@ "active_until": 150 } ] - }, - "asset_name": "546f6b656e48" + } }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 167, - "unit": "assets" - } + "quantity": 0 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" + "policy_script_template": "cosigner#0" }, { "operation": { - "burn": { - "quantity": 37, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 8 } }, "policy_script_template": { @@ -2957,50 +3224,35 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] }, - "asset_name": "546f6b656e42" + "asset_name": "546f6b656e56" }, { "operation": { - "mint": { - "amount": { - "quantity": 153, - "unit": "assets" - } + "burn": { + "quantity": 19 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e59" + "policy_script_template": "cosigner#0" }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 206, - "unit": "assets" - } + "burn": { + "quantity": 0 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "policy_script_template": "cosigner#0" }, { "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 135, - "unit": "assets" - } + "quantity": 13 } }, "policy_script_template": { @@ -3014,12 +3266,21 @@ } ] }, - "asset_name": "546f6b656e4d" + "asset_name": "546f6b656e42" } ], "metadata": { - "28": { - "list": [] + "17": { + "map": [ + { + "k": { + "string": "謽" + }, + "v": { + "string": "𩐳𗀣􂍑" + } + } + ] } } }, @@ -3028,295 +3289,273 @@ "delegations": [ { "join": { - "pool": "pool17eh8lxqgx8lqgt74hlnal3trcwmvera9q4l249eztrjnzd57p27", - "stake_key_index": "14462" + "pool": "pool1feecf2yt49ju3gnadfvrtw5w2j5k8s0fg3urcmdgz6ewjhu0dq9", + "stake_key_index": "2874" } }, { - "quit": { - "stake_key_index": "11219" + "join": { + "pool": "pool15u2rlg7ysfud2nzpngm2tkzse3zgxnmlcvqaye979taq56yc2av", + "stake_key_index": "29947" } }, { "join": { - "pool": "pool1zjpz7g0zf8tt2dvv2j0cngknqlyy0e9prke6ls3wm86kz8jrxza", - "stake_key_index": "70" + "pool": "pool1vds9vg8jfm2xsy4znc7dm5knpkugypjdh3w5smajjaxkjw0f4v8", + "stake_key_index": "15239" } }, { "quit": { - "stake_key_index": "2242" + "stake_key_index": "22510" } }, { "join": { - "pool": "pool1wnfxnlm4mlaq60sxuntd0pqc257uywkmwqt4tjv5nlttukj4yck", - "stake_key_index": "9411" + "pool": "pool1gg0ma43sl8669x3wqyfd69wun73k6up2llq738f5x8s8qhc84p8", + "stake_key_index": "23148" } }, { - "join": { - "pool": "pool1yuqvwm3sza0fqeg0j7v07tuw9ux43qlsrt7x73cd8hqvjgmel66", - "stake_key_index": "27830" + "quit": { + "stake_key_index": "22836" } }, { "join": { - "pool": "pool1quagd63j358esdsn7hky7ll2vjcn2acueadu8h6xljr86v93g4d", - "stake_key_index": "6933" + "pool": "pool1qm3e44tn7vqsretwp3pu09s76dgr2kmela42zpz00hvtydcqev9", + "stake_key_index": "25224" } }, { - "join": { - "pool": "pool18n0rll35swxkgzl5jf49lj5ajwp6s577kzzxepywgcvy732sesg", - "stake_key_index": "27071" + "quit": { + "stake_key_index": "21829" } }, { "join": { - "pool": "pool1lu06a9xa9p07jnqtcj6j9f3srd7qpeeczw3arqe7e87eqzvqjf9", - "stake_key_index": "14181" + "pool": "pool12qd2fmnd80h6wdgqlsndw23wuv3nye5yjgu963t43433cm9fmg7", + "stake_key_index": "26652" } }, { "quit": { - "stake_key_index": "969" + "stake_key_index": "17471" } }, { - "join": { - "pool": "pool1at3fzh02ps6l5awt2xakd985sa0zsgz8662tz9wfcskn50nlvsf", - "stake_key_index": "13039" + "quit": { + "stake_key_index": "6777" } }, { "join": { - "pool": "pool1a345y667tg4mmses6l9u5qm9ddvr9p2ts649ggkca88rgxf2nk9", - "stake_key_index": "21170" + "pool": "pool1d952wn7kv0w5jvyx0nwe7z0x7fj7fmzplhnayejkxumdgjnhhac", + "stake_key_index": "26255" } }, { "quit": { - "stake_key_index": "15787" + "stake_key_index": "199" } }, { "join": { - "pool": "pool1lsw2gq2yu6wxqwgdmcam5fj34jjn6s97xfelqfkfzrur7mr0m0v", - "stake_key_index": "2067" + "pool": "pool1fwvwhwn6pj7fjesq54yhedggkh5aq4lwdwqadkpd2mp6gawldv5", + "stake_key_index": "29207" } }, { "quit": { - "stake_key_index": "28222" + "stake_key_index": "7044" } }, { "join": { - "pool": "pool1yz8vrz8rdk5rxqnjz58gh90j3j8225scngnwgertpngzqupt5cn", - "stake_key_index": "20160" + "pool": "pool13kgtxt44zs05qlwgjtwly8486l8w69ynag64nm4lpfyzkk9esdd", + "stake_key_index": "26418" } }, { - "join": { - "pool": "pool1dqqtcm0l3wcf8pg5rep9pxx2lxd6clh9ypwthluedsf2scm83qs", - "stake_key_index": "7782" + "quit": { + "stake_key_index": "27764" } }, { "join": { - "pool": "pool1ezh2uv0cje9z43gyg06w0jye9ks425tyulgteu9rkdvtw506q27", - "stake_key_index": "25591" - } - } - ], - "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "mint_burn": [ - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 135, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e56" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 201, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "pool": "pool1dssf6awzena2dglnrtw8p3slxxk6ejyftwdz52vh2ffdcq6r99j", + "stake_key_index": "26771" } }, { - "operation": { - "burn": { - "quantity": 82, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "burn": { - "quantity": 226, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e56" - }, - { - "operation": { - "burn": { - "quantity": 152, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "6064" } }, - { - "operation": { - "mint": { - "amount": { - "quantity": 87, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4f" - } - ], - "metadata": { - "18": { - "string": "􏼥𮄾" - } - } - }, - { - "withdrawal": "self", - "delegations": [ { "quit": { - "stake_key_index": "9454" + "stake_key_index": "23582" } }, { "join": { - "pool": "pool1wc4lk0dja3yrpf0z67gdkdm6wynw4k0jpa833hlpxxr2c99pquq", - "stake_key_index": "25110" + "pool": "pool14jt46tp3kazc309y2mqxdnxsg6udaayr0dgtm7588m7jwzhv9ac", + "stake_key_index": "7639" } }, { "join": { - "pool": "pool1xm7yneupzp2w4wk693rq85xrlw9ew7v402ckdf9ew9s8vnjluwg", - "stake_key_index": "18353" + "pool": "pool14vv9rl5mmv3alpp9qejg2n5wk0tq38ujwzvwl3dump4lyrhngf8", + "stake_key_index": "29430" } }, { - "quit": { - "stake_key_index": "9897" + "join": { + "pool": "pool1d3m3ssk97hu605nq9qk4lm3ymdfpzvc45zl7tvsa3yrngmnm5h9", + "stake_key_index": "24532" } + } + ], + "payments": [ + { + "address": "", + "amount": { + "quantity": 254, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quit": { - "stake_key_index": "25495" - } + "address": "", + "amount": { + "quantity": 110, + "unit": "lovelace" + }, + "assets": [] }, { - "join": { - "pool": "pool1nctavx84g4dcwey5cfpm8vvv79hx2gllqac4pve5wfzuj7tpy9x", - "stake_key_index": "26038" - } + "address": "", + "amount": { + "quantity": 128, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quit": { - "stake_key_index": "4103" - } + "address": "", + "amount": { + "quantity": 36, + "unit": "lovelace" + }, + "assets": [] }, { - "quit": { - "stake_key_index": "13320" - } + "address": "", + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "quit": { - "stake_key_index": "29274" - } + "address": "", + "amount": { + "quantity": 165, + "unit": "lovelace" + }, + "assets": [] }, { - "join": { - "pool": "pool175rrmsffhqvw4r8j4kmn0459qxtkhh3274nzspwqwu2k635fnqe", - "stake_key_index": "26792" - } + "address": "", + "amount": { + "quantity": 46, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] } ], + "metadata": { + "18": { + "map": [ + { + "k": { + "string": "𥔌􌵻" + }, + "v": { + "list": [] + } + }, + { + "k": { + "string": "󰽾􁏗" + }, + "v": { + "int": 3 + } + }, + { + "k": { + "string": "􄀡哾" + }, + "v": { + "int": 1 + } + } + ] + } + } + }, + { + "withdrawal": "self", "payments": [ "", "", @@ -3334,307 +3573,93 @@ "", "", "", + "", + "", + "", + "", "" - ], - "metadata": { - "9": { - "string": "𬃚󱏺" - } - } + ] }, { "withdrawal": "self", "delegations": [ - { - "quit": { - "stake_key_index": "32702" - } - }, - { - "quit": { - "stake_key_index": "13402" - } - }, - { - "quit": { - "stake_key_index": "2595" - } - }, - { - "join": { - "pool": "pool1e026ahz5xa6a00uz4n39mnvdu7gnxpl85dcq0g3m8mt9gn6yp7g", - "stake_key_index": "5267" - } - }, { "join": { - "pool": "pool1hs0k4a2dlmrtzaaxdrcyv5pqaz860j2ys3mdflg43s7w6qttk5a", - "stake_key_index": "26131" + "pool": "pool1wd63ep4gv9dhqsd594x50xcuccmgywj8gr68k98aajyt24awl4t", + "stake_key_index": "7836" } }, { "join": { - "pool": "pool1kcqumlahuxe66trpnce4hqd756l6sh8y54am2dk47lfrsxrerud", - "stake_key_index": "10854" + "pool": "pool1n8srxkfsgzfq8mgnd4c3uzv3gfcjtyy9wf3yyyp0s8e8qv2j3v3", + "stake_key_index": "1391" } }, { "quit": { - "stake_key_index": "13945" - } - }, - { - "join": { - "pool": "pool1e0u6gpn2guv2ss0xkzdspaapd94eyeza695fd3k2acu5znq7j3t", - "stake_key_index": "31057" + "stake_key_index": "1533" } }, { - "join": { - "pool": "pool155pn375ky9juzvz9t87wpsy5d5437r598kl7jn96p60p2jp5j04", - "stake_key_index": "26833" + "quit": { + "stake_key_index": "32576" } }, { "quit": { - "stake_key_index": "22020" + "stake_key_index": "12225" } }, { "join": { - "pool": "pool19qd4ffhh0gjpunlyc6rgd2nvhlavf6d8zryudnvzwf92y4z7g20", - "stake_key_index": "15245" - } - }, - { - "quit": { - "stake_key_index": "20870" + "pool": "pool1g8dyx8tz8faz0qk6cyxv33m7mjkshqn6clpsxqxdp42n7ka8ewn", + "stake_key_index": "26694" } }, { "join": { - "pool": "pool1k3lrz0jwhs2wsgadnmgk6gvs9cgky27ccnhqnsngm6d5yphm5f6", - "stake_key_index": "27833" + "pool": "pool1gzx2sc9qhlddyyc4sakwwnwxyxn9d0s9f5y86xm3whqggyrpwgk", + "stake_key_index": "1087" } }, { "quit": { - "stake_key_index": "30959" + "stake_key_index": "15103" } }, { "quit": { - "stake_key_index": "16966" + "stake_key_index": "490" } }, { "quit": { - "stake_key_index": "4216" - } - }, - { - "join": { - "pool": "pool1eexwhn82shcnlzw82h03u04etp834ysypxtthmpncwegkfk59nq", - "stake_key_index": "2415" - } - }, - { - "join": { - "pool": "pool1dg4ge6lmmmtl4pqqjza303px5ref4jcvd8d4rdfj7eayxq797s8", - "stake_key_index": "14547" - } - }, - { - "join": { - "pool": "pool1f8gtjawqv8f5t0zt0tvhrwgp6jjxqrsz4tlcpysgvfn2k4ccugc", - "stake_key_index": "29084" - } - }, - { - "join": { - "pool": "pool18g5lvgwmpst8qn3ctqq6esky2g0ethuqw82hcymv9gv8v6htfrx", - "stake_key_index": "18749" - } - }, - { - "join": { - "pool": "pool1lu8j572lae6mx43ln68fr7qqxycvp3aauglgukpdhxq5x4mveyt", - "stake_key_index": "23194" - } - } - ], - "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 117, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e55" - }, - { - "operation": { - "mint": { - "amount": { - "quantity": 233, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 9, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e55" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 236, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "stake_key_index": "15042" } }, { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 136, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 49, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e41" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 182, - "unit": "assets" - } - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "19125" } }, { - "operation": { - "burn": { - "quantity": 212, - "unit": "assets" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "burn": { - "quantity": 107, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0" + "join": { + "pool": "pool1tyskea2v24sn0jje8at2ypexd7576sal2f8vcs0wxc455zp695z", + "stake_key_index": "30866" + } }, { - "operation": { - "burn": { - "quantity": 95, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0" - }, + "join": { + "pool": "pool16pmvw37xlv4ake2cjv5mjtxtj9yq2fwpqalz27tuysu25acetk7", + "stake_key_index": "28973" + } + } + ], + "mint_burn": [ { "operation": { "mint": { - "receiving_address": "", - "amount": { - "quantity": 184, - "unit": "assets" - } + "quantity": 21 } }, "policy_script_template": { @@ -3647,24 +3672,13 @@ "active_until": 150 } ] - }, - "asset_name": "546f6b656e55" - }, - { - "operation": { - "burn": { - "quantity": 120, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e49" + } }, { "operation": { - "burn": { - "quantity": 56, - "unit": "assets" + "mint": { + "receiving_address": "", + "quantity": 6 } }, "policy_script_template": { @@ -3672,17 +3686,19 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e4d" }, { "operation": { "mint": { - "amount": { - "quantity": 58, - "unit": "assets" - } + "receiving_address": "", + "quantity": 23 } }, "policy_script_template": { @@ -3690,9 +3706,6 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } @@ -3700,8 +3713,7 @@ { "operation": { "burn": { - "quantity": 171, - "unit": "assets" + "quantity": 26 } }, "policy_script_template": { @@ -3709,44 +3721,23 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } }, - { - "operation": { - "burn": { - "quantity": 56, - "unit": "assets" - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4a" - }, { "operation": { "mint": { - "receiving_address": "", - "amount": { - "quantity": 81, - "unit": "assets" - } + "quantity": 5 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4b" + "asset_name": "546f6b656e42" }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 237, - "unit": "assets" - } + "burn": { + "quantity": 3 } }, "policy_script_template": { @@ -3758,11 +3749,19 @@ ] } }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 11 + } + }, + "policy_script_template": "cosigner#0" + }, { "operation": { "burn": { - "quantity": 100, - "unit": "assets" + "quantity": 6 } }, "policy_script_template": "cosigner#0" @@ -3770,8 +3769,7 @@ { "operation": { "burn": { - "quantity": 173, - "unit": "assets" + "quantity": 27 } }, "policy_script_template": { @@ -3787,36 +3785,16 @@ "operation": { "mint": { "receiving_address": "", - "amount": { - "quantity": 150, - "unit": "assets" - } - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e50" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 130, - "unit": "assets" - } + "quantity": 14 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" + "asset_name": "546f6b656e4c" }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 196, - "unit": "assets" - } + "burn": { + "quantity": 0 } }, "policy_script_template": { @@ -3829,190 +3807,98 @@ "active_until": 150 } ] - }, - "asset_name": "546f6b656e56" + } }, { "operation": { - "mint": { - "receiving_address": "", - "amount": { - "quantity": 177, - "unit": "assets" - } + "burn": { + "quantity": 26 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e55" } ], "metadata": { - "9": { - "map": [] + "11": { + "list": [ + { + "string": "乂𦐖" + }, + { + "list": [ + { + "list": [ + { + "string": "𢰈" + } + ] + }, + { + "list": [] + } + ] + }, + { + "map": [ + { + "k": { + "string": "􄭴𦗑" + }, + "v": { + "list": [] + } + } + ] + } + ] } } }, { "withdrawal": "self", "delegations": [ - { - "join": { - "pool": "pool1a880ltvnnd02u9cpg5u52magfz3zkzht9x76kpnagz6lqeglpgq", - "stake_key_index": "31409" - } - }, - { - "quit": { - "stake_key_index": "28522" - } - }, - { - "join": { - "pool": "pool16j66h3xmh0zrga8sek0cmne0rg33yan5c73mp6u38vstywymx79", - "stake_key_index": "15440" - } - }, - { - "join": { - "pool": "pool1zzzggs6drfqkxlkyzmxflqunyrqxywa3hsklp483x96kcnjsgcr", - "stake_key_index": "25885" - } - }, - { - "join": { - "pool": "pool1h4nfslzrx72pkhc88xgchxxqlq8a6sqpu7xzywlfzrzvsy2djle", - "stake_key_index": "17214" - } - }, - { - "join": { - "pool": "pool1lu7a4u7yagkf2wx2xd3qzrcwz32z73dexfzsrd5uvmgqkv5gmw6", - "stake_key_index": "2715" - } - }, - { - "join": { - "pool": "pool1fqzzzh0wh8hptamgfx0qk2lvlkqzyqmdha00hyx9k4s0gws9xvs", - "stake_key_index": "9658" - } - }, - { - "quit": { - "stake_key_index": "14614" - } - }, - { - "join": { - "pool": "pool10t5qn3afrmkjpuvuvsnsk0rf055nl23mvcp27ywsjjm36x38f9q", - "stake_key_index": "21244" - } - }, - { - "quit": { - "stake_key_index": "8900" - } - }, - { - "join": { - "pool": "pool1wagt80w7p04mrleawd3420ne36eqldg6ttjcd4rav22h6qy8uyy", - "stake_key_index": "20576" - } - }, - { - "join": { - "pool": "pool187alqml77sxd422754mrc6v0kru76sjmhy9r2yh34dplkq5pwwq", - "stake_key_index": "6343" - } - }, - { - "join": { - "pool": "pool1x3zmyxtd0gvzf99gjkr4eyqmk6hk0kx3us8g4uj2qvpzxxk6mzz", - "stake_key_index": "8818" - } - }, - { - "quit": { - "stake_key_index": "14760" - } - }, - { - "join": { - "pool": "pool15zjjvwa6euyg0lp0xyq2smdhph8dcjyhs3ajjv9mqac6qg2uuda", - "stake_key_index": "11702" - } - }, - { - "quit": { - "stake_key_index": "4234" - } - }, - { - "quit": { - "stake_key_index": "13247" - } - }, - { - "quit": { - "stake_key_index": "29479" - } - }, - { - "join": { - "pool": "pool1c2ptwgwnat6dc7505qxu46ywv07h7huq9n5rka0wsz2fs7cwnd5", - "stake_key_index": "14412" - } - }, { "quit": { - "stake_key_index": "565" - } - }, - { - "join": { - "pool": "pool10ysjzhadwc0qlxj6gd45edgf6xf2qxhdcydda50xhwfssducqcn", - "stake_key_index": "19573" + "stake_key_index": "7550" } }, { "quit": { - "stake_key_index": "6269" + "stake_key_index": "27426" } }, { "quit": { - "stake_key_index": "6328" + "stake_key_index": "18246" } }, { "quit": { - "stake_key_index": "19803" - } - }, - { - "join": { - "pool": "pool1jf5ka03q076eqj4c3f8yj2n6ape8ukwdz5w83fc439y26yg6n5s", - "stake_key_index": "24345" - } - }, - { - "join": { - "pool": "pool1p6w6mwnjt5kkjk262eykjjkqkmrk6yr4vyyszyfujga829fc7th", - "stake_key_index": "4271" + "stake_key_index": "8310" } }, { "quit": { - "stake_key_index": "23570" + "stake_key_index": "932" } }, { "quit": { - "stake_key_index": "12141" + "stake_key_index": "1817" } }, { "join": { - "pool": "pool1f0qj2ggfyg20wfcj9g9a38nganxycdulgwmdl563g0ja2wk0dgc", - "stake_key_index": "17323" + "pool": "pool1pf8qk0zdjtx8s56aefku77x3mr5j6yj50emqwfwwtn8yk3e0k2z", + "stake_key_index": "4324" } } ], @@ -4030,50 +3916,8 @@ "", "", "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", "" - ], - "metadata": { - "22": { - "map": [ - { - "k": { - "string": "ဲ󹵣" - }, - "v": { - "map": [ - { - "k": { - "string": "􁚥􏼞" - }, - "v": { - "list": [] - } - } - ] - } - }, - { - "k": { - "string": "𪠏" - }, - "v": { - "list": [] - } - } - ] - } - } + ] } ] } \ No newline at end of file diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index cf1097eb58f..255d3da2163 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -3413,31 +3413,20 @@ components: - title: outputs without amounts <<: *transactionNoAmountOutputs - ApiAssetQuantity: &ApiAssetQuantity + ApiMintData: &ApiMintData type: object required: - quantity - - unit properties: - quantity: - type: integer - example: 14 - unit: - type: string - enum: - - assets + receiving_address: *addressId + quantity: *assetQuantity - ApiMintData: &ApiMintData + ApiBurnData: &ApiBurnData type: object required: - - amount + - quantity properties: - receiving_address: *addressId - amount: *ApiAssetQuantity - - ApiBurnData: &ApiBurnData - allOf: - - *ApiAssetQuantity + quantity: *assetQuantity ApiMintBurnOperation: &ApiMintBurnOperation type: object From c0a8232e5c75566808c254e2c36ddb7a3291a803 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 22 Apr 2022 14:21:13 +0200 Subject: [PATCH 05/31] deal with negative slots --- .../Scenario/API/Shelley/TransactionsNew.hs | 30 ++----------------- 1 file changed, 2 insertions(+), 28 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 d3567434386..d6db69f2775 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 @@ -1182,35 +1182,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectErrorMessage errMsg403InvalidValidityBounds ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval second should be >= 0" $ \ctx -> runResourceT $ do - - wa <- fixtureWallet ctx - - let payload = Json [json|{ - "withdrawal": "self", - "validity_interval": { - "invalid_before": { - "quantity": -1, - "unit": "second" - }, - "invalid_hereafter": { - "quantity": 10, - "unit": "second" - } - } - }|] - - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status403 - , expectErrorMessage errMsg403InvalidValidityBounds - ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval slot should be >= 0" $ \ctx -> runResourceT $ do - liftIO $ pendingWith "Returns 400, I think it should be 403 - to be fixed in ADP-1189" - wa <- fixtureWallet ctx let payload = Json [json|{ @@ -1230,7 +1203,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload verify rTx - [ expectResponseCode HTTP.status403 + [ expectResponseCode HTTP.status400 + , expectErrorMessage "parsing Word64 failed, value is either floating or will cause over or underflow" ] it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval 'unspecified'" $ \ctx -> runResourceT $ do From f4a7b1514e5c2d9758eb87ff49b1c1a3572e445c Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 22 Apr 2022 15:24:39 +0200 Subject: [PATCH 06/31] make validity bound optional --- .../Scenario/API/Shelley/TransactionsNew.hs | 42 + lib/core/src/Cardano/Wallet/Api/Server.hs | 16 +- lib/core/src/Cardano/Wallet/Api/Types.hs | 4 +- .../ApiConstructTransactionDataTestnet0.json | 4642 ++++++++++------- .../test/unit/Cardano/Wallet/Api/Malformed.hs | 24 - specifications/api/swagger.yaml | 5 +- 6 files changed, 2713 insertions(+), 2020 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 d6db69f2775..31109a9ac6a 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 @@ -1182,6 +1182,48 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectErrorMessage errMsg403InvalidValidityBounds ] + it "TRANS_NEW_VALIDITY_INTERVAL_02 - Missing lower validity interval is \ + \acceptable" $ \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json|{ + "withdrawal": "self", + "validity_interval": { + "invalid_hereafter": { + "quantity": 10, + "unit": "second" + } + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status202 + ] + + it "TRANS_NEW_VALIDITY_INTERVAL_02 - Missing upper validity interval is \ + \acceptable" $ \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json|{ + "withdrawal": "self", + "validity_interval": { + "invalid_before": { + "quantity": 10, + "unit": "second" + } + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status202 + ] + it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval slot should be >= 0" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index edb5858f482..ad4462042ea 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2268,10 +2268,14 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do isValidityBoundTimeNegative _ = False let isThereNegativeTime = case body ^. #validityInterval of - Nothing -> False - Just (ApiValidityInterval before' hereafter') -> + Just (ApiValidityInterval (Just before') Nothing) -> + isValidityBoundTimeNegative before' + Just (ApiValidityInterval Nothing (Just hereafter')) -> + isValidityBoundTimeNegative hereafter' + Just (ApiValidityInterval (Just before') (Just hereafter')) -> isValidityBoundTimeNegative before' || isValidityBoundTimeNegative hereafter' + _ -> False let fromValidityBound (Left ApiValidityBoundUnspecified) = liftIO $ pure $ SlotNo 0 @@ -2292,8 +2296,12 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do hereafter' <- fromValidityBound (Right ApiValidityBoundUnspecified) pure (before', hereafter') Just (ApiValidityInterval before' hereafter') -> do - before'' <- fromValidityBound (Left before') - hereafter'' <- fromValidityBound (Right hereafter') + before'' <- case before' of + Nothing -> fromValidityBound (Left ApiValidityBoundUnspecified) + Just val -> fromValidityBound (Left val) + hereafter'' <- case hereafter' of + Nothing -> fromValidityBound (Right ApiValidityBoundUnspecified) + Just val -> fromValidityBound (Right val) pure (before'', hereafter'') when (hereafter < before || isThereNegativeTime) $ diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 087749c93e7..3248c691196 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -975,9 +975,9 @@ data ApiPaymentDestination (n :: NetworkDiscriminant) -- | Times where transactions are valid. data ApiValidityInterval = ApiValidityInterval - { invalidBefore :: !ApiValidityBound + { invalidBefore :: !(Maybe ApiValidityBound) -- ^ Tx is not valid before this time. Defaults to genesis. - , invalidHereafter :: !ApiValidityBound + , invalidHereafter :: !(Maybe ApiValidityBound) -- ^ Tx is not valid at this time and after. Defaults to now + 2 hours. } deriving (Eq, Generic, Show) deriving anyclass NFData diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json index c6e424ce640..6b4b0a036cd 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json @@ -1,238 +1,544 @@ { - "seed": -3494269887809655878, + "seed": 5848220718435394146, "samples": [ { "withdrawal": "self", "delegations": [ { "join": { - "pool": "pool1lxlg0wt57wd3wukuw5hsq2nlwrwk9cepcaevy55zhzkqshzhp4p", - "stake_key_index": "22499" + "pool": "pool15axjl5jfxr94u7yy8uqllrzf8rzrm3kvrxefvzvgs5g4w3nzln9", + "stake_key_index": "21043" } }, { "quit": { - "stake_key_index": "8532" + "stake_key_index": "2089" } }, { "join": { - "pool": "pool1tp4ysn542r44j3j6c09j6zrm9neh7hl0e7tk2d5vldes59kzm54", - "stake_key_index": "3323" + "pool": "pool1a98cw0gj5gjecaxsdg6rseawjx0wqlkgrtl96wjscjx3cq9094n", + "stake_key_index": "6103" + } + }, + { + "quit": { + "stake_key_index": "29442" } }, { "join": { - "pool": "pool1h9s6zqlyeq4jsuq7th9m3shp6wt55z2ufe36mssudztnv6n6tuc", - "stake_key_index": "26390" + "pool": "pool1lhvd5n2s9c8x3hfg5fljjezmcykr2h8n6kr2qhr69kf62k32je2", + "stake_key_index": "538" } }, { "join": { - "pool": "pool1cphj05zuuzteckft9dcsm3wl2zvkpxlapw48rnwx5kfmzkfz76f", - "stake_key_index": "24604" + "pool": "pool1ls9aqdtp8g0fammd7gyrv94qtuc3lhl3r83le502ymt5wv0r8mf", + "stake_key_index": "17352" } }, { - "quit": { - "stake_key_index": "19998" + "join": { + "pool": "pool1w5m05kye2rep2wcswad53sx0ceaxz6u32re5dfjmpyxmkqf93vr", + "stake_key_index": "24100" } }, { "quit": { - "stake_key_index": "4843" + "stake_key_index": "11070" } }, { "join": { - "pool": "pool1j7r35rfwpdeeplc872axdaacz84tgmm6sfh0npmrhm0vj6g702q", - "stake_key_index": "28680" + "pool": "pool16l7usuae5h83kweh0he2ucsajd83n0dh9qr5xna7a2frkp0p5zf", + "stake_key_index": "9464" } }, { - "quit": { - "stake_key_index": "8834" + "join": { + "pool": "pool1xrnmzge8c9qr3k9pgu34rkz77428llgw3w3m4vnwv2vj5wpn5rx", + "stake_key_index": "30110" + } + }, + { + "join": { + "pool": "pool1e8qcg2ftqqc34fjktyekwedf0pw78v4gzcjt3ymyknyhqh6th2m", + "stake_key_index": "6401" } }, { "quit": { - "stake_key_index": "16537" + "stake_key_index": "29824" } }, { "join": { - "pool": "pool16u9s56w3mgxvpdxz0sy4pr55207gptqvjvkfctxzyhs7k7pc6g2", - "stake_key_index": "31685" + "pool": "pool1qlt48c8vnxeam6zs6sktqrxwmwmqyejzp96z7yucj8zmvqwwcas", + "stake_key_index": "4268" } }, { - "join": { - "pool": "pool1dlvgrg8msn4n0054ufhq5tes5m48fyy0xup3tvndnyfdykkykqv", - "stake_key_index": "207" + "quit": { + "stake_key_index": "13630" } }, { - "join": { - "pool": "pool1ssnpncvzpp5f45l6382cpqw54yzst6ny5hg7x6xga6hz66tdv3d", - "stake_key_index": "25937" + "quit": { + "stake_key_index": "7552" } }, { "quit": { - "stake_key_index": "10598" + "stake_key_index": "15372" } }, { "quit": { - "stake_key_index": "288" + "stake_key_index": "2052" } }, { "join": { - "pool": "pool1emquy56nccdtvls3gs06e0df5swklpz3fjdsnthckplrwcauc5s", - "stake_key_index": "870" + "pool": "pool1m8d0wmwe6df63aelry73w8jvc7vgwv2u7xnp983rua297r7a30z", + "stake_key_index": "25043" } }, { "join": { - "pool": "pool1sws9aqqjjzru69jzafkhzs2v9eawuyxm3hkn0uhs5x4qxj7j4c4", - "stake_key_index": "2866" + "pool": "pool1nmru0y3r9srjh7dckrplezlcajt8zfyugyu5f46ylsagy4vwv8u", + "stake_key_index": "10140" + } + }, + { + "join": { + "pool": "pool1wuaftsk9jc5wuswm2sulmhyrr9eacd3ggq98xf8nq6dpje7x22d", + "stake_key_index": "3996" } }, { "quit": { - "stake_key_index": "2372" + "stake_key_index": "22458" } }, { - "join": { - "pool": "pool18yx8756csnx6xc29jzk07su2s37h97awv7xdfafm07h4yjd00w3", - "stake_key_index": "3935" + "quit": { + "stake_key_index": "15020" + } + }, + { + "quit": { + "stake_key_index": "23751" + } + }, + { + "quit": { + "stake_key_index": "26261" + } + }, + { + "quit": { + "stake_key_index": "13735" } }, { "quit": { - "stake_key_index": "15439" + "stake_key_index": "6117" } } ], "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "mint_burn": [ { - "operation": { - "burn": { - "quantity": 8 - } + "address": "", + "amount": { + "quantity": 62, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e46" + "assets": [] }, { - "operation": { - "burn": { - "quantity": 30 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "address": "", + "amount": { + "quantity": 81, + "unit": "lovelace" }, - "asset_name": "546f6b656e54" + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "operation": { - "burn": { - "quantity": 5 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "address": "", + "amount": { + "quantity": 182, + "unit": "lovelace" }, - "asset_name": "546f6b656e52" + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 31, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "operation": { - "burn": { - "quantity": 15 - } + "address": "", + "amount": { + "quantity": 93, + "unit": "lovelace" }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 44, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "operation": { - "mint": { - "quantity": 1 + "address": "", + "amount": { + "quantity": 246, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } + ] + }, + { + "address": "", + "amount": { + "quantity": 199, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" + "assets": [] }, { - "operation": { - "mint": { - "quantity": 9 - } + "address": "", + "amount": { + "quantity": 50, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e41" + "assets": [] }, { - "operation": { + "address": "", + "amount": { + "quantity": 87, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 39, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 243, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 83, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + ], + "mint_burn": [ + { + "operation": { + "mint": { + "quantity": 1 + } + }, + "policy_script_template": "cosigner#0" + } + ], + "metadata": { + "1": { + "map": [ + { + "k": { + "string": "腲𐝠" + }, + "v": { + "list": [ + { + "string": "ῆꩆ" + }, + { + "list": [ + { + "int": 1 + } + ] + } + ] + } + }, + { + "k": { + "string": "􂇹𥼀" + }, + "v": { + "int": 0 + } + }, + { + "k": { + "string": "􌍄𡉝" + }, + "v": { + "list": [ + { + "map": [] + }, + { + "map": [] + } + ] + } + } + ] + } + } + }, + { + "withdrawal": "self", + "delegations": [ + { + "join": { + "pool": "pool18prrphr02etpr02v5flnylyl93cd0j8pjepgeg307f36xw88q3s", + "stake_key_index": "15940" + } + }, + { + "quit": { + "stake_key_index": "14720" + } + }, + { + "quit": { + "stake_key_index": "29626" + } + }, + { + "quit": { + "stake_key_index": "19649" + } + }, + { + "quit": { + "stake_key_index": "21275" + } + }, + { + "join": { + "pool": "pool185c2x58d66nwqrjhegztqryzx3cunnferqzqpn429maegmffe70", + "stake_key_index": "22747" + } + }, + { + "join": { + "pool": "pool1xpwzd9c69ccggamywlne4927wz6v00uxs35j9fdr433vwdsgpd4", + "stake_key_index": "15272" + } + }, + { + "quit": { + "stake_key_index": "3481" + } + }, + { + "join": { + "pool": "pool160a4kr5920v7u0hhvdsn47c0spty3xwp29cmnttfsdg4yzz0me2", + "stake_key_index": "856" + } + }, + { + "join": { + "pool": "pool1zechx2r766rt2aaet8q08yxxhsv4r0ytx9kslx068yp0vmtes8g", + "stake_key_index": "29074" + } + } + ], + "payments": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "mint_burn": [ + { + "operation": { "burn": { - "quantity": 18 + "quantity": 1 } }, "policy_script_template": { @@ -242,13 +548,13 @@ "active_from": 100 } ] - } + }, + "asset_name": "546f6b656e48" }, { "operation": { "mint": { - "receiving_address": "", - "quantity": 8 + "quantity": 23 } }, "policy_script_template": { @@ -256,19 +562,15 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] }, - "asset_name": "546f6b656e54" + "asset_name": "546f6b656e49" }, { "operation": { "mint": { - "receiving_address": "", - "quantity": 14 + "quantity": 22 } }, "policy_script_template": { @@ -285,17 +587,17 @@ }, { "operation": { - "burn": { - "quantity": 3 + "mint": { + "receiving_address": "", + "quantity": 0 } }, "policy_script_template": "cosigner#0" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 23 + "burn": { + "quantity": 0 } }, "policy_script_template": { @@ -303,6 +605,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] }, @@ -310,19 +615,26 @@ }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 11 + "burn": { + "quantity": 28 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e48" + "asset_name": "546f6b656e55" + }, + { + "operation": { + "burn": { + "quantity": 10 + } + }, + "policy_script_template": "cosigner#0" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 2 + "quantity": 21 } }, "policy_script_template": { @@ -339,8 +651,9 @@ }, { "operation": { - "burn": { - "quantity": 29 + "mint": { + "receiving_address": "", + "quantity": 16 } }, "policy_script_template": { @@ -348,6 +661,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } @@ -356,7 +672,7 @@ "operation": { "mint": { "receiving_address": "", - "quantity": 14 + "quantity": 5 } }, "policy_script_template": { @@ -364,18 +680,14 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - }, - "asset_name": "546f6b656e51" + } }, { "operation": { "burn": { - "quantity": 14 + "quantity": 7 } }, "policy_script_template": { @@ -386,13 +698,46 @@ } ] }, - "asset_name": "546f6b656e52" + "asset_name": "546f6b656e47" }, { "operation": { "mint": { - "receiving_address": "", - "quantity": 10 + "quantity": 7 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e56" + }, + { + "operation": { + "burn": { + "quantity": 18 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 9 } }, "policy_script_template": { @@ -400,15 +745,17 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 11 + "burn": { + "quantity": 8 } }, "policy_script_template": { @@ -423,16 +770,33 @@ { "operation": { "burn": { - "quantity": 24 + "quantity": 13 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e56" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 5 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e55" + "asset_name": "546f6b656e50" }, { "operation": { "burn": { - "quantity": 12 + "quantity": 10 } }, "policy_script_template": { @@ -448,7 +812,7 @@ "operation": { "mint": { "receiving_address": "", - "quantity": 18 + "quantity": 10 } }, "policy_script_template": { @@ -459,12 +823,21 @@ } ] }, - "asset_name": "546f6b656e43" + "asset_name": "546f6b656e51" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 19 + } + }, + "policy_script_template": "cosigner#0" }, { "operation": { "burn": { - "quantity": 7 + "quantity": 13 } }, "policy_script_template": { @@ -477,12 +850,13 @@ "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e4a" }, { "operation": { "burn": { - "quantity": 4 + "quantity": 25 } }, "policy_script_template": { @@ -493,12 +867,50 @@ } ] }, - "asset_name": "546f6b656e55" + "asset_name": "546f6b656e4f" }, { "operation": { "burn": { - "quantity": 0 + "quantity": 16 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 19 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 28 } }, "policy_script_template": "cosigner#0" @@ -506,7 +918,16 @@ { "operation": { "mint": { - "quantity": 16 + "receiving_address": "", + "quantity": 25 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 11 } }, "policy_script_template": { @@ -519,123 +940,647 @@ "active_until": 150 } ] - }, - "asset_name": "546f6b656e50" + } } - ] + ], + "metadata": { + "6": { + "bytes": "0c67315e23321908152a486c6f5f416241517f02620052" + } + } }, { "withdrawal": "self", "payments": [ + "", + "", + "", + "", + "", + "", + "" + ], + "mint_burn": [ { - "address": "", - "amount": { - "quantity": 40, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 18 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e48" }, { - "address": "", - "amount": { - "quantity": 253, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "operation": { + "burn": { + "quantity": 18 } - ] + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e52" }, { - "address": "", - "amount": { - "quantity": 195, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 5 + } }, - "assets": [] + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e54" }, { - "address": "", - "amount": { - "quantity": 6, - "unit": "lovelace" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 9 + } }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "", - "amount": { - "quantity": 131, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 21 + } }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e4d" + }, + { + "operation": { + "burn": { + "quantity": 17 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e50" + }, + { + "operation": { + "burn": { + "quantity": 21 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 11 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 13 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 22 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "mint": { + "quantity": 3 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e4b" + }, + { + "operation": { + "burn": { + "quantity": 23 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 21 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e4d" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 11 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e41" + }, + { + "operation": { + "burn": { + "quantity": 6 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e51" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 6 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e45" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 20 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e46" + }, + { + "operation": { + "burn": { + "quantity": 17 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e48" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 0 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 13 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e41" + }, + { + "operation": { + "burn": { + "quantity": 26 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 3 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "mint": { + "quantity": 11 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e57" + }, + { + "operation": { + "burn": { + "quantity": 26 + } + }, + "policy_script_template": "cosigner#0" + } + ] + }, + { + "withdrawal": "self", + "delegations": [ + { + "join": { + "pool": "pool18ceutc8f7vkrs4n3823hxrvzsk68mpjwvf94x4l3nktnv867d7a", + "stake_key_index": "12854" + } + }, + { + "quit": { + "stake_key_index": "29229" + } + }, + { + "quit": { + "stake_key_index": "6394" + } + }, + { + "quit": { + "stake_key_index": "23587" + } + }, + { + "join": { + "pool": "pool17xk54p266e3jfdzetrtgfan972n5crd8jywunvmvu9apkdn9ze8", + "stake_key_index": "21310" + } + }, + { + "quit": { + "stake_key_index": "19354" + } + }, + { + "join": { + "pool": "pool1fc9s56a2rgt5vcsrhr8z7gepyrqj47zzwsh5pahk85f02e9u8hm", + "stake_key_index": "3033" + } + }, + { + "quit": { + "stake_key_index": "32718" + } + }, + { + "join": { + "pool": "pool1k2d9ja9z84qtyemzjnhz8va5cdc5pu48pjpvusyfkh2djjssxwd", + "stake_key_index": "9983" + } + }, + { + "join": { + "pool": "pool1rzdk0um3s2klmmdwyqlcjkhmm5cjwdvkcfv890rqtps4k2k9hza", + "stake_key_index": "17806" + } + }, + { + "join": { + "pool": "pool1gztxz5xfwp4n9pv23nuuggzwat3tmg2tgujpgyplz7xfjeyerq2", + "stake_key_index": "22433" + } + } + ], + "payments": [ + { + "address": "", + "amount": { + "quantity": 23, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 209, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 30, + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 27, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 7, + "quantity": 10, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 7, + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 49, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 47, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 7, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 189, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 24, + "asset_name": "546f6b656e45", + "quantity": 25, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 39, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e42", - "quantity": 37, + "asset_name": "546f6b656e44", + "quantity": 31, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 24, + "asset_name": "546f6b656e45", + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -643,68 +1588,68 @@ { "address": "", "amount": { - "quantity": 124, + "quantity": 24, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 3, + "asset_name": "546f6b656e41", + "quantity": 26, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 2, + "asset_name": "546f6b656e42", + "quantity": 27, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 36, + "asset_name": "546f6b656e41", + "quantity": 23, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 7, + "quantity": 18, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 23, + "quantity": 29, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -712,99 +1657,106 @@ { "address": "", "amount": { - "quantity": 255, + "quantity": 197, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 74, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { "address": "", "amount": { - "quantity": 75, + "quantity": 230, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, + "asset_name": "546f6b656e41", + "quantity": 30, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 74, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, + } + ] + }, + { + "address": "", + "amount": { + "quantity": 85, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 23, + "asset_name": "546f6b656e43", + "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 29, + "quantity": 46, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", - "quantity": 16, + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", "amount": { - "quantity": 112, + "quantity": 57, "unit": "lovelace" }, "assets": [] @@ -812,15 +1764,41 @@ { "address": "", "amount": { - "quantity": 99, + "quantity": 205, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "address": "", "amount": { - "quantity": 129, + "quantity": 176, "unit": "lovelace" }, "assets": [] @@ -828,7 +1806,7 @@ { "address": "", "amount": { - "quantity": 239, + "quantity": 56, "unit": "lovelace" }, "assets": [] @@ -836,145 +1814,101 @@ { "address": "", "amount": { - "quantity": 70, + "quantity": 235, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 253, + "quantity": 189, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 53, + "unit": "lovelace" + }, + "assets": [] }, { "address": "", "amount": { - "quantity": 207, + "quantity": 232, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", "amount": { - "quantity": 234, + "quantity": 119, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 49, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 60, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 31, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 16, + "asset_name": "546f6b656e42", + "quantity": 14, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 4, + "asset_name": "546f6b656e44", + "quantity": 38, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -982,177 +1916,322 @@ { "address": "", "amount": { - "quantity": 68, + "quantity": 93, "unit": "lovelace" }, "assets": [] + } + ], + "mint_burn": [ + { + "operation": { + "burn": { + "quantity": 22 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e4d" }, { - "address": "", - "amount": { - "quantity": 163, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 3 + } }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "", - "amount": { - "quantity": 180, - "unit": "lovelace" + "operation": { + "mint": { + "quantity": 25 + } }, - "assets": [] + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e47" }, { - "address": "", - "amount": { - "quantity": 214, - "unit": "lovelace" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 16 + } }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e51" }, { - "address": "", - "amount": { - "quantity": 82, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 27 + } }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e4c" + } + ], + "metadata": { + "5": { + "string": "𭤽" + } + } + }, + { + "withdrawal": "self", + "delegations": [ + { + "join": { + "pool": "pool1shjetwuu2aaxjdzhlh8swerpk46ls6thp8vdren0jr4ug0myvlm", + "stake_key_index": "10765" + } + }, + { + "join": { + "pool": "pool1axruv0thawtq4q5r0wvu6mnlg06awyhj0v3kx8j4mq9jx3es8us", + "stake_key_index": "30675" + } + }, + { + "join": { + "pool": "pool1dr9r4mydjvnacr6frztgmfsqys273y7h0skt6du9tmv3upflnn3", + "stake_key_index": "23117" + } + }, + { + "join": { + "pool": "pool1hkur9ehrqvchxd2pqqur66zmh2j2cuh2avwhrx7m3uftxz68ce9", + "stake_key_index": "837" + } + }, + { + "quit": { + "stake_key_index": "29436" + } + }, + { + "quit": { + "stake_key_index": "29845" + } + }, + { + "quit": { + "stake_key_index": "3364" + } + }, + { + "join": { + "pool": "pool1sp577nahdq9vltpn5w3wngqyn2scct2uexqqf5f7m24syjzvj7u", + "stake_key_index": "28208" + } + }, + { + "quit": { + "stake_key_index": "21949" + } + }, + { + "quit": { + "stake_key_index": "23839" + } + }, + { + "join": { + "pool": "pool1q247j0w0jfjftjnm70t4zv7nd2wjezszdl65h5xy6jc4vk5jl0h", + "stake_key_index": "14809" + } + }, + { + "quit": { + "stake_key_index": "7371" + } + }, + { + "join": { + "pool": "pool1hln7pu8jedr4tdq2kv0vtnrdcnqg08u5dryptujyrssnjkk0cyq", + "stake_key_index": "29012" + } + }, + { + "quit": { + "stake_key_index": "4487" + } + }, + { + "join": { + "pool": "pool17aedeay9cgd6zv8mkqpdh5t9h6d9hxw0yyaep7ueuls22ve7k2v", + "stake_key_index": "3150" + } + }, + { + "join": { + "pool": "pool1xweulsn3rlh3r9plvdcvcglsjx55nd9qzezcqmwp6rmfw20nghy", + "stake_key_index": "30356" + } + }, + { + "quit": { + "stake_key_index": "14224" + } + }, + { + "join": { + "pool": "pool1tugljrdqmfjhzgg7ehvn3msf0t2mwfst4gymrs7u9tgegww2tgl", + "stake_key_index": "29951" + } + }, + { + "quit": { + "stake_key_index": "9065" + } + }, + { + "join": { + "pool": "pool1u5ac520muwjh08frsplrh57v48dft3dcgefmfxm3cma55qw25ea", + "stake_key_index": "1672" + } + }, + { + "quit": { + "stake_key_index": "25103" + } + }, + { + "join": { + "pool": "pool1ytjn8jq57gzdy5mm73f2sruqv5h2eycewdzf7r3dpj5c6fsll30", + "stake_key_index": "331" + } + }, + { + "join": { + "pool": "pool1gz89h8g7pasfqpkf9ljz4l0xzkxd6zuk65jjyf9z463gwykn4ln", + "stake_key_index": "6727" + } + }, + { + "join": { + "pool": "pool1ga8nqxrpfaqqzrp9djrw0sqmhz673w8twwae6j4xqdc4sd0ydkk", + "stake_key_index": "2852" + } + }, + { + "join": { + "pool": "pool18r72azeq6429hnkujvpmjhsywwnlarpwukf0jlp4atfjsllud5w", + "stake_key_index": "19595" + } }, + { + "quit": { + "stake_key_index": "11232" + } + } + ], + "payments": [ { "address": "", "amount": { - "quantity": 33, + "quantity": 109, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "assets": [] + } + ], + "mint_burn": [ + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 27 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e5a" }, { - "address": "", - "amount": { - "quantity": 223, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 36, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "operation": { + "mint": { + "quantity": 3 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e44" }, { - "address": "", - "amount": { - "quantity": 57, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "operation": { + "mint": { + "quantity": 15 } - ] + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e4e" }, { - "address": "", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 38, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 6 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { - "address": "", - "amount": { - "quantity": 3, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 11 + } }, - "assets": [] - } - ] - }, - { - "withdrawal": "self", - "mint_burn": [ + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e4e" + }, { "operation": { "burn": { @@ -1164,26 +2243,36 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] + } + }, + { + "operation": { + "burn": { + "quantity": 0 + } }, - "asset_name": "546f6b656e58" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e51" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 25 + "quantity": 29 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e49" + "asset_name": "546f6b656e56" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 8 + "burn": { + "quantity": 5 } }, "policy_script_template": { @@ -1194,13 +2283,30 @@ } ] }, - "asset_name": "546f6b656e4c" + "asset_name": "546f6b656e45" }, { "operation": { "mint": { - "receiving_address": "", - "quantity": 8 + "quantity": 20 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 23 } }, "policy_script_template": { @@ -1208,6 +2314,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } @@ -1216,7 +2325,7 @@ "operation": { "mint": { "receiving_address": "", - "quantity": 21 + "quantity": 19 } }, "policy_script_template": { @@ -1227,11 +2336,35 @@ } ] } - }, + } + ], + "metadata": { + "23": { + "list": [ + { + "list": [ + { + "bytes": "1ae0569e1f51506671226b5c795f45645b192d3d5a5f4aae8d2fd171c04061" + } + ] + }, + { + "string": "錯" + }, + { + "list": [] + } + ] + } + } + }, + { + "withdrawal": "self", + "mint_burn": [ { "operation": { "burn": { - "quantity": 9 + "quantity": 25 } }, "policy_script_template": { @@ -1241,23 +2374,32 @@ "active_from": 100 } ] + } + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 5 + } }, - "asset_name": "546f6b656e44" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e54" }, { "operation": { "mint": { - "quantity": 13 + "receiving_address": "", + "quantity": 30 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e41" + "asset_name": "546f6b656e5a" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 14 + "burn": { + "quantity": 19 } }, "policy_script_template": { @@ -1265,15 +2407,19 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] }, - "asset_name": "546f6b656e59" + "asset_name": "546f6b656e57" }, { "operation": { - "burn": { - "quantity": 26 + "mint": { + "receiving_address": "", + "quantity": 19 } }, "policy_script_template": { @@ -1281,16 +2427,18 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] }, - "asset_name": "546f6b656e4e" + "asset_name": "546f6b656e55" }, { "operation": { "mint": { - "receiving_address": "", - "quantity": 25 + "quantity": 8 } }, "policy_script_template": { @@ -1298,37 +2446,33 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e42" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 24 + "quantity": 4 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e51" + "policy_script_template": "cosigner#0" }, { "operation": { "burn": { - "quantity": 19 + "quantity": 14 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e44" + "asset_name": "546f6b656e4a" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 19 + "burn": { + "quantity": 16 } }, "policy_script_template": { @@ -1346,16 +2490,7 @@ { "operation": { "burn": { - "quantity": 7 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e45" - }, - { - "operation": { - "burn": { - "quantity": 11 + "quantity": 19 } }, "policy_script_template": { @@ -1369,51 +2504,29 @@ } ] }, - "asset_name": "546f6b656e47" + "asset_name": "546f6b656e59" }, { "operation": { "burn": { - "quantity": 1 + "quantity": 27 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "asset_name": "546f6b656e4b" + "policy_script_template": "cosigner#0" }, { "operation": { "mint": { - "receiving_address": "", - "quantity": 9 + "quantity": 22 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e52" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 28 + "burn": { + "quantity": 9 } }, "policy_script_template": { @@ -1427,185 +2540,48 @@ } ] }, - "asset_name": "546f6b656e48" + "asset_name": "546f6b656e49" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 23 + "burn": { + "quantity": 0 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e5a" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e53" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 22 + "quantity": 5 } }, "policy_script_template": "cosigner#0" - } - ], - "metadata": { - "7": { - "map": [ - { - "k": { - "string": "󵳞󵚲󶕎" - }, - "v": { - "map": [ - { - "k": { - "string": "𨭓𥶟" - }, - "v": { - "map": [ - { - "k": { - "string": "󾢾窖" - }, - "v": { - "string": "􏭌" - } - } - ] - } - }, - { - "k": { - "string": "󺞲" - }, - "v": { - "map": [ - { - "k": { - "string": "𣜄㨋" - }, - "v": { - "int": 1 - } - } - ] - } - } - ] - } - }, - { - "k": { - "string": "󼧬􏀒" - }, - "v": { - "list": [ - { - "int": -1 - }, - { - "bytes": "5c55a80f6f0b5f25254550a61826f95657092f0a7f17" - } - ] - } - }, - { - "k": { - "string": "􀊐" - }, - "v": { - "bytes": "455e0a6a3f1805466500437e9fdf39037eda72353436f96824661e6ecc014e0412401e57560b072e3705772cc439610f" - } - } - ] - } - } - }, - { - "withdrawal": "self", - "delegations": [ - { - "join": { - "pool": "pool17dvg0ch8mmxvruhu7suqz7t0su4e0u94yewlknve7yf428egzug", - "stake_key_index": "3292" - } - }, - { - "quit": { - "stake_key_index": "12697" - } - }, - { - "quit": { - "stake_key_index": "15814" - } }, { - "quit": { - "stake_key_index": "5199" - } + "operation": { + "burn": { + "quantity": 27 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e47" }, - { - "join": { - "pool": "pool1xptlyjttsfqn6fmmuaxk8nh2tc49clceaj0hyk75kqn6769fxqd", - "stake_key_index": "7505" - } - } - ], - "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "mint_burn": [ { "operation": { - "mint": { - "receiving_address": "", - "quantity": 8 + "burn": { + "quantity": 1 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e5a" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 5 + "burn": { + "quantity": 21 } }, "policy_script_template": { @@ -1620,7 +2596,7 @@ { "operation": { "burn": { - "quantity": 11 + "quantity": 28 } }, "policy_script_template": { @@ -1628,9 +2604,6 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } @@ -1638,24 +2611,15 @@ { "operation": { "burn": { - "quantity": 4 + "quantity": 20 } }, "policy_script_template": "cosigner#0" }, - { - "operation": { - "mint": { - "quantity": 4 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" - }, { "operation": { "burn": { - "quantity": 20 + "quantity": 28 } }, "policy_script_template": { @@ -1663,17 +2627,15 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e55" }, { "operation": { - "burn": { - "quantity": 1 + "mint": { + "quantity": 18 } }, "policy_script_template": { @@ -1686,13 +2648,14 @@ "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e4b" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 30 + "quantity": 25 } }, "policy_script_template": { @@ -1705,45 +2668,49 @@ "active_until": 150 } ] - }, - "asset_name": "546f6b656e58" + } }, { "operation": { "burn": { - "quantity": 2 + "quantity": 29 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e4a" + } + ], + "metadata": { + "0": { + "map": [] + } + } + }, + { + "withdrawal": "self", + "delegations": [ + { + "quit": { + "stake_key_index": "4073" } }, { - "operation": { - "mint": { - "quantity": 0 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e57" + "join": { + "pool": "pool15yxjse2lnhdns5srnpursucmd7ecgxc833p6pd38rh9m6yu57lx", + "stake_key_index": "17223" + } }, + { + "quit": { + "stake_key_index": "26095" + } + } + ], + "mint_burn": [ { "operation": { - "mint": { - "receiving_address": "", - "quantity": 3 + "burn": { + "quantity": 13 } }, "policy_script_template": { @@ -1751,15 +2718,18 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] }, - "asset_name": "546f6b656e42" + "asset_name": "546f6b656e4f" }, { "operation": { - "mint": { - "quantity": 17 + "burn": { + "quantity": 9 } }, "policy_script_template": { @@ -1770,13 +2740,13 @@ } ] }, - "asset_name": "546f6b656e56" + "asset_name": "546f6b656e48" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 10 + "quantity": 16 } }, "policy_script_template": { @@ -1784,9 +2754,6 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } @@ -1794,7 +2761,7 @@ { "operation": { "burn": { - "quantity": 30 + "quantity": 22 } }, "policy_script_template": { @@ -1802,19 +2769,15 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] }, - "asset_name": "546f6b656e42" + "asset_name": "546f6b656e4c" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 15 + "burn": { + "quantity": 0 } }, "policy_script_template": { @@ -1828,8 +2791,9 @@ }, { "operation": { - "burn": { - "quantity": 17 + "mint": { + "receiving_address": "", + "quantity": 25 } }, "policy_script_template": "cosigner#0" @@ -1837,24 +2801,25 @@ { "operation": { "mint": { - "quantity": 13 + "receiving_address": "", + "quantity": 29 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e4d" + }, + { + "operation": { + "burn": { + "quantity": 12 + } }, - "asset_name": "546f6b656e4b" + "policy_script_template": "cosigner#0" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 3 + "burn": { + "quantity": 0 } }, "policy_script_template": "cosigner#0", @@ -1864,15 +2829,26 @@ "operation": { "mint": { "receiving_address": "", - "quantity": 11 + "quantity": 23 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { "operation": { - "burn": { - "quantity": 9 + "mint": { + "receiving_address": "", + "quantity": 2 } }, "policy_script_template": { @@ -1880,25 +2856,29 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] }, - "asset_name": "546f6b656e43" + "asset_name": "546f6b656e4a" }, { "operation": { - "burn": { - "quantity": 29 + "mint": { + "receiving_address": "", + "quantity": 26 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e50" + "asset_name": "546f6b656e44" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 27 + "quantity": 24 } }, "policy_script_template": { @@ -1906,9 +2886,6 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } @@ -1916,25 +2893,24 @@ { "operation": { "mint": { - "receiving_address": "", - "quantity": 18 + "quantity": 26 } }, "policy_script_template": "cosigner#0" }, { "operation": { - "burn": { - "quantity": 22 + "mint": { + "receiving_address": "", + "quantity": 6 } }, "policy_script_template": "cosigner#0" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 24 + "burn": { + "quantity": 8 } }, "policy_script_template": { @@ -1948,12 +2924,20 @@ } ] }, - "asset_name": "546f6b656e4b" + "asset_name": "546f6b656e43" }, { "operation": { "burn": { - "quantity": 11 + "quantity": 23 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 25 } }, "policy_script_template": { @@ -1961,19 +2945,14 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - }, - "asset_name": "546f6b656e47" + } }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 1 + "burn": { + "quantity": 15 } }, "policy_script_template": { @@ -1981,174 +2960,382 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - }, - "asset_name": "546f6b656e47" - } - ], - "metadata": { - "19": { - "int": 0 - } - } - }, - { - "withdrawal": "self", - "delegations": [ - { - "join": { - "pool": "pool1899wm5tjckw6p2548pfj79jp88c4h8au3cw6kgj3k8fzqthedel", - "stake_key_index": "16609" - } - }, - { - "join": { - "pool": "pool1j8x0ya3w8n7l5frs2wgdgjezj6tumnjsgwsx5ruwuxzucxwq85t", - "stake_key_index": "15893" - } - }, - { - "join": { - "pool": "pool1d9fspjuksulw7dcg2ed9dcjuhf33t3uwjxgz7ejrgcmeuak0v5v", - "stake_key_index": "26168" - } - }, - { - "join": { - "pool": "pool1egfwm7c58jmt56g2z2ycnvqf2ylun47af9d72k6ykm6yc2x47d7", - "stake_key_index": "27978" - } - }, - { - "quit": { - "stake_key_index": "14292" - } - }, - { - "join": { - "pool": "pool1pje6qnaq3xv463wjfd8mld5czec7e7gphkxjnjtgcu9ecm9a24v", - "stake_key_index": "10481" - } - }, - { - "join": { - "pool": "pool1l6nlzr64ervwxqa2w2vdez66gp0amxtnlmlgs49veyffjyectz5", - "stake_key_index": "29094" - } - }, - { - "quit": { - "stake_key_index": "7295" - } - }, - { - "join": { - "pool": "pool15fm9tnnvnmmqx264gg0m5cjve07af57h6xj8wh8zxg37y338qlw", - "stake_key_index": "18425" } }, { - "quit": { - "stake_key_index": "4735" - } + "operation": { + "burn": { + "quantity": 17 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e46" }, { - "join": { - "pool": "pool1zjtmp04e8gjew6gew455pm3nc0um45vcnu7gs8julm9du9a4jy4", - "stake_key_index": "18219" - } + "operation": { + "mint": { + "quantity": 1 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e59" }, { - "quit": { - "stake_key_index": "31837" - } + "operation": { + "burn": { + "quantity": 23 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e56" }, { - "join": { - "pool": "pool1p0dpsrpwj50phfdcxyc4zhffazypsxeh3kcs49fnckva2p9vr0r", - "stake_key_index": "29423" + "operation": { + "burn": { + "quantity": 26 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } }, { - "join": { - "pool": "pool15a0tkjplvatgfs9w778ge0uungzemrzgjnr8pt8mhu6agynmjcw", - "stake_key_index": "6738" - } - }, + "operation": { + "mint": { + "receiving_address": "", + "quantity": 23 + } + }, + "policy_script_template": "cosigner#0" + } + ], + "metadata": { + "21": { + "int": 0 + } + } + }, + { + "withdrawal": "self", + "payments": [ { - "quit": { - "stake_key_index": "2895" - } + "address": "", + "amount": { + "quantity": 9, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { - "join": { - "pool": "pool1c94frf2j5x25yknenmwcy4jk3kx9ev6nlt5pgl54lpkf59vcmrg", - "stake_key_index": "19705" - } + "address": "", + "amount": { + "quantity": 50, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 43, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "join": { - "pool": "pool103hqf9n8vsha659xs47z24a57fr5yx0qkheff33tyfmlgnh4lce", - "stake_key_index": "15467" - } + "address": "", + "amount": { + "quantity": 170, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 33, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 34, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 32, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "join": { - "pool": "pool1wx7f03rulw8ypkef6gz6k6uk5xpa4yfv5emst6qy4ge6q2wqnly", - "stake_key_index": "16041" - } + "address": "", + "amount": { + "quantity": 77, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 34, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "join": { - "pool": "pool1marphc8uawxm4qkdmr770n97dz2rn629dl8ev92uhxn8c6e8cth", - "stake_key_index": "14087" - } + "address": "", + "amount": { + "quantity": 36, + "unit": "lovelace" + }, + "assets": [] }, { - "quit": { - "stake_key_index": "17016" - } + "address": "", + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "assets": [] }, { - "join": { - "pool": "pool1w7dx2wg0x4gxwaj24q6luntythjm9yplarzly5l0jdgdxyxsm4r", - "stake_key_index": "22888" - } + "address": "", + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 42, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quit": { - "stake_key_index": "29319" - } + "address": "", + "amount": { + "quantity": 86, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 32, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 47, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quit": { - "stake_key_index": "28684" - } + "address": "", + "amount": { + "quantity": 153, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "quit": { - "stake_key_index": "29841" - } + "address": "", + "amount": { + "quantity": 245, + "unit": "lovelace" + }, + "assets": [] } ], "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 16 - } - }, - "policy_script_template": "cosigner#0" - }, { "operation": { "mint": { "receiving_address": "", - "quantity": 8 + "quantity": 1 } }, "policy_script_template": { @@ -2159,23 +3346,13 @@ } ] }, - "asset_name": "546f6b656e4f" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 18 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e52" + "asset_name": "546f6b656e56" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 17 + "quantity": 25 } }, "policy_script_template": { @@ -2189,13 +3366,12 @@ } ] }, - "asset_name": "546f6b656e4e" + "asset_name": "546f6b656e48" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 11 + "burn": { + "quantity": 3 } }, "policy_script_template": { @@ -2205,12 +3381,14 @@ "active_from": 100 } ] - } + }, + "asset_name": "546f6b656e45" }, { "operation": { - "burn": { - "quantity": 25 + "mint": { + "receiving_address": "", + "quantity": 8 } }, "policy_script_template": { @@ -2218,24 +3396,28 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e51" }, { "operation": { - "burn": { - "quantity": 7 + "mint": { + "receiving_address": "", + "quantity": 3 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e48" + "asset_name": "546f6b656e46" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 18 + "burn": { + "quantity": 22 } }, "policy_script_template": "cosigner#0" @@ -2243,7 +3425,25 @@ { "operation": { "burn": { - "quantity": 28 + "quantity": 11 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e45" + }, + { + "operation": { + "burn": { + "quantity": 24 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e44" + }, + { + "operation": { + "burn": { + "quantity": 27 } }, "policy_script_template": { @@ -2257,12 +3457,13 @@ } ] }, - "asset_name": "546f6b656e50" + "asset_name": "546f6b656e46" }, { "operation": { - "burn": { - "quantity": 25 + "mint": { + "receiving_address": "", + "quantity": 21 } }, "policy_script_template": { @@ -2270,25 +3471,28 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e49" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 18 + "quantity": 0 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e55" + "policy_script_template": "cosigner#0" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 22 + "quantity": 5 } }, "policy_script_template": { @@ -2296,6 +3500,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } @@ -2303,7 +3510,7 @@ { "operation": { "burn": { - "quantity": 28 + "quantity": 16 } }, "policy_script_template": { @@ -2311,34 +3518,13 @@ "cosigner#0", { "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e51" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 21 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", + }, { - "active_from": 100 + "active_until": 150 } ] - } - }, - { - "operation": { - "burn": { - "quantity": 4 - } }, - "policy_script_template": "cosigner#0" + "asset_name": "546f6b656e45" }, { "operation": { @@ -2352,15 +3538,17 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - }, - "asset_name": "546f6b656e59" + } }, { "operation": { "burn": { - "quantity": 8 + "quantity": 9 } }, "policy_script_template": { @@ -2368,78 +3556,56 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] }, - "asset_name": "546f6b656e4b" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 6 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "burn": { - "quantity": 12 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 21 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e48" - }, - { - "operation": { - "burn": { - "quantity": 12 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e58" - }, - { - "operation": { - "burn": { - "quantity": 10 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e54" + "asset_name": "546f6b656e50" }, { "operation": { - "burn": { - "quantity": 1 + "mint": { + "receiving_address": "", + "quantity": 9 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e47" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 19 + "quantity": 7 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e4d" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 10 + "quantity": 3 } }, "policy_script_template": { @@ -2447,14 +3613,18 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e58" }, { "operation": { - "burn": { - "quantity": 30 + "mint": { + "quantity": 7 } }, "policy_script_template": { @@ -2462,27 +3632,24 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] }, - "asset_name": "546f6b656e4f" + "asset_name": "546f6b656e4e" }, { "operation": { "burn": { - "quantity": 16 + "quantity": 12 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e52" + "asset_name": "546f6b656e53" }, { "operation": { - "mint": { - "quantity": 6 + "burn": { + "quantity": 7 } }, "policy_script_template": { @@ -2490,15 +3657,33 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] + } + }, + { + "operation": { + "mint": { + "quantity": 28 + } }, - "asset_name": "546f6b656e55" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { "operation": { - "burn": { - "quantity": 20 + "mint": { + "receiving_address": "", + "quantity": 10 } }, "policy_script_template": { @@ -2508,17 +3693,31 @@ "active_from": 100 } ] + } + }, + { + "operation": { + "burn": { + "quantity": 4 + } }, - "asset_name": "546f6b656e54" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e45" + }, + { + "operation": { + "mint": { + "receiving_address": "", + "quantity": 11 + } + }, + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e4c" } ], "metadata": { - "14": { - "list": [ - { - "list": [] - } - ] + "8": { + "string": "𡉢" } } }, @@ -2527,137 +3726,147 @@ "delegations": [ { "quit": { - "stake_key_index": "11936" + "stake_key_index": "9204" } }, { - "join": { - "pool": "pool1ceufwy7hh0vnz7qq7tcu4m92785l0kk7ckw3cchpuxepzm26hm0", - "stake_key_index": "2724" + "quit": { + "stake_key_index": "37" } }, { "join": { - "pool": "pool1pzxjaalsexhcauapk483r674fddj073yk3yvasc5wc26xvcdgne", - "stake_key_index": "6881" + "pool": "pool1q0a70zx6wjchk83ldda5spddjha8ggufrf4z0whcxwtjja922xm", + "stake_key_index": "32596" } }, { - "quit": { - "stake_key_index": "3530" + "join": { + "pool": "pool1gmymy2yd48g8xt4l93laxv2faffrpwt4d8cja0msuuplu7f5ufu", + "stake_key_index": "4369" } }, { "join": { - "pool": "pool12wvppall0mfu462xcf036u7hqpvep5vyuku75nxe6tcy2lktu6z", - "stake_key_index": "27626" + "pool": "pool1zhrvxn5c86j9hkl7x3mh99unwfwrp0eletjljlkfnpqk2nukde2", + "stake_key_index": "6664" } }, { "join": { - "pool": "pool1kvd06v4pua63x5cjxwuaed7ngyw8u30l39406lzj4vrdwle3dt4", - "stake_key_index": "10477" + "pool": "pool12wsk2l8qrj5drfug5n6m66p7ugz6p2wle4f9el82nj6aynudax7", + "stake_key_index": "1457" + } + }, + { + "quit": { + "stake_key_index": "30734" } }, { "join": { - "pool": "pool1wcx5xf724qy2rw2ez4l3gppja69xcjp3mdqvh0elzggywmnf00u", - "stake_key_index": "12046" + "pool": "pool1zvj2n2295ay9f7f7mrgus3heatdelr03hkhjhkrah0k6q0lsqvu", + "stake_key_index": "12296" } }, { "join": { - "pool": "pool1h36xmwm3ksj8gnpgrxy233vyaz07s2q524qjx2nqfyca6s3sxnz", - "stake_key_index": "31586" + "pool": "pool188egt4t7w2hg50u0tlrxumncewzvny6k658zqn8cg08jc4n0jkk", + "stake_key_index": "29024" } }, { "join": { - "pool": "pool195tzc0sxmn4756l03em9wutru0nd5l7y4097zxe7t4umx3s0z5t", - "stake_key_index": "13329" + "pool": "pool1h3xcjzwezcnzkgyyng5l495gfj5h6z8jmg7upzgl7wlnyvzty9l", + "stake_key_index": "16936" } }, { "join": { - "pool": "pool1e9v2zdc789dayfmhp3cukmzpjdpacxlcwj0h8ukt6kzqwc08m5y", - "stake_key_index": "7230" + "pool": "pool1pyjqvx4j79p77rfe6ldxash5454l8z0aghwyjt3apjauycc468f", + "stake_key_index": "2949" } }, { - "quit": { - "stake_key_index": "5298" + "join": { + "pool": "pool1y66ctkuuxahuk9jqnfk5jjpgsq423n6vumgea6n422s569e0lxf", + "stake_key_index": "6302" } }, { "quit": { - "stake_key_index": "5776" + "stake_key_index": "824" } }, { - "quit": { - "stake_key_index": "8269" + "join": { + "pool": "pool1gszgrwd80ztye4d8at387msjx68pql44ug63x52qd3j67qnhwwd", + "stake_key_index": "15795" } }, { - "quit": { - "stake_key_index": "3911" + "join": { + "pool": "pool1cc6ppcq0ktps50lmyfxrv0f0tktd5rl282wqjgrxppjgxhc9llr", + "stake_key_index": "14978" } }, { - "quit": { - "stake_key_index": "6954" + "join": { + "pool": "pool1y4cj72wjuaywckqdn5xpldqgt4fmu0zul052fc9rdytfsvn7lg6", + "stake_key_index": "3389" } }, { "quit": { - "stake_key_index": "19051" + "stake_key_index": "7770" } }, { - "quit": { - "stake_key_index": "18269" + "join": { + "pool": "pool1pwmzq5auqt3n3pcgyylavxx0xsfr65g7fsk620qylayucjhhnlq", + "stake_key_index": "27486" } }, { "quit": { - "stake_key_index": "517" + "stake_key_index": "25115" } }, { - "join": { - "pool": "pool1khjx8s24sxehl75aks6d6pgf0lgrt5kqdrpp8cf6vjgz53wckpt", - "stake_key_index": "9244" + "quit": { + "stake_key_index": "6345" } }, { - "quit": { - "stake_key_index": "22275" + "join": { + "pool": "pool1xe3n23ajafhf25nqw7nss7tfrawqvj840zz2qulgj7n6ztgrsf7", + "stake_key_index": "14096" } }, { "quit": { - "stake_key_index": "28695" + "stake_key_index": "20920" } }, { "join": { - "pool": "pool1kgal7uaswaw9yp4wtcnacyvsxvtk2cvcw678u5dd43u3zwuncpq", - "stake_key_index": "21764" + "pool": "pool17df4swq9mtlqs785ak0kf2z20f58nn5fa3dpf787x57cyvrh5lz", + "stake_key_index": "16175" } }, { "quit": { - "stake_key_index": "23002" + "stake_key_index": "15817" } }, { "quit": { - "stake_key_index": "22788" + "stake_key_index": "21468" } }, { "quit": { - "stake_key_index": "5654" + "stake_key_index": "16978" } } ], @@ -2665,41 +3874,13 @@ { "address": "", "amount": { - "quantity": 72, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 9, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 95, + "quantity": 138, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 9, + "asset_name": "546f6b656e43", + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] @@ -2707,142 +3888,43 @@ { "address": "", "amount": { - "quantity": 80, + "quantity": 3, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 102, + "quantity": 139, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e45", - "quantity": 45, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 222, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 19, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { "address": "", "amount": { - "quantity": 239, + "quantity": 147, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 79, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 40, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 112, + "quantity": 76, "unit": "lovelace" }, "assets": [] @@ -2850,64 +3932,18 @@ { "address": "", "amount": { - "quantity": 105, + "quantity": 8, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] } ], "mint_burn": [ - { - "operation": { - "burn": { - "quantity": 28 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - }, - "asset_name": "546f6b656e4c" - }, - { - "operation": { - "mint": { - "quantity": 16 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, { "operation": { "mint": { "receiving_address": "", - "quantity": 16 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e56" - }, - { - "operation": { - "burn": { - "quantity": 15 + "quantity": 10 } }, "policy_script_template": { @@ -2915,46 +3951,16 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - } - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 24 - } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } + "asset_name": "546f6b656e4d" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 1 - } - }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 24 + "quantity": 27 } }, "policy_script_template": { @@ -2969,25 +3975,10 @@ ] } }, - { - "operation": { - "burn": { - "quantity": 6 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, { "operation": { "mint": { - "quantity": 30 + "quantity": 1 } }, "policy_script_template": { @@ -2998,12 +3989,12 @@ } ] }, - "asset_name": "546f6b656e52" + "asset_name": "546f6b656e4c" }, { "operation": { "burn": { - "quantity": 18 + "quantity": 8 } }, "policy_script_template": { @@ -3011,33 +4002,16 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e53" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 22 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 27 + "quantity": 19 } }, "policy_script_template": "cosigner#0", @@ -3046,71 +4020,16 @@ { "operation": { "burn": { - "quantity": 19 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 1 + "quantity": 22 } }, "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e50" - }, - { - "operation": { - "burn": { - "quantity": 8 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 10 - } - }, - "policy_script_template": "cosigner#0" + "asset_name": "546f6b656e58" }, { "operation": { "burn": { - "quantity": 2 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 29 + "quantity": 0 } }, "policy_script_template": { @@ -3124,20 +4043,22 @@ } ] }, - "asset_name": "546f6b656e5a" + "asset_name": "546f6b656e4d" }, { "operation": { "mint": { - "quantity": 0 + "receiving_address": "", + "quantity": 25 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e50" }, { "operation": { "burn": { - "quantity": 0 + "quantity": 22 } }, "policy_script_template": { @@ -3148,75 +4069,31 @@ } ] }, - "asset_name": "546f6b656e45" - }, - { - "operation": { - "mint": { - "receiving_address": "", - "quantity": 28 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "asset_name": "546f6b656e51" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 12 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 3 + "quantity": 18 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e43" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 0 + "quantity": 17 } }, "policy_script_template": "cosigner#0" }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 8 + "burn": { + "quantity": 15 } }, "policy_script_template": { @@ -3230,29 +4107,13 @@ } ] }, - "asset_name": "546f6b656e56" - }, - { - "operation": { - "burn": { - "quantity": 19 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "burn": { - "quantity": 0 - } - }, - "policy_script_template": "cosigner#0" + "asset_name": "546f6b656e42" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 13 + "quantity": 14 } }, "policy_script_template": { @@ -3260,24 +4121,21 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] }, - "asset_name": "546f6b656e42" + "asset_name": "546f6b656e49" } ], "metadata": { - "17": { + "21": { "map": [ { "k": { - "string": "謽" + "string": "󺇴󹻒𦋼" }, "v": { - "string": "𩐳𗀣􂍑" + "list": [] } } ] @@ -3289,377 +4147,122 @@ "delegations": [ { "join": { - "pool": "pool1feecf2yt49ju3gnadfvrtw5w2j5k8s0fg3urcmdgz6ewjhu0dq9", - "stake_key_index": "2874" - } - }, - { - "join": { - "pool": "pool15u2rlg7ysfud2nzpngm2tkzse3zgxnmlcvqaye979taq56yc2av", - "stake_key_index": "29947" + "pool": "pool150e5j46vnqeetw0rnhhsvgvw788ny9tnuwa3ja5jgtelwwa5kqa", + "stake_key_index": "4653" } }, { "join": { - "pool": "pool1vds9vg8jfm2xsy4znc7dm5knpkugypjdh3w5smajjaxkjw0f4v8", - "stake_key_index": "15239" + "pool": "pool1thvs6rl5hm22q6pupuvzs0vrc0sfmfupmecy9qksk90x6pra6t4", + "stake_key_index": "2499" } }, { "quit": { - "stake_key_index": "22510" + "stake_key_index": "32584" } }, { "join": { - "pool": "pool1gg0ma43sl8669x3wqyfd69wun73k6up2llq738f5x8s8qhc84p8", - "stake_key_index": "23148" - } - }, - { - "quit": { - "stake_key_index": "22836" + "pool": "pool1uc9p2v40t0a8ykx5v62c96090tg6ff03wle0v79fw5ak5q2xn9r", + "stake_key_index": "29339" } }, { "join": { - "pool": "pool1qm3e44tn7vqsretwp3pu09s76dgr2kmela42zpz00hvtydcqev9", - "stake_key_index": "25224" - } - }, - { - "quit": { - "stake_key_index": "21829" + "pool": "pool1q72efrw9qdquyjg885f54a3fx7drtmdxz82wtja3s6hn2n8v42m", + "stake_key_index": "13645" } }, { "join": { - "pool": "pool12qd2fmnd80h6wdgqlsndw23wuv3nye5yjgu963t43433cm9fmg7", - "stake_key_index": "26652" - } - }, - { - "quit": { - "stake_key_index": "17471" + "pool": "pool1l9g0a6v5wu9neddfpmw3cqktkj89tudp45end77edy7vsj5d6ln", + "stake_key_index": "28973" } }, { "quit": { - "stake_key_index": "6777" + "stake_key_index": "11863" } }, { "join": { - "pool": "pool1d952wn7kv0w5jvyx0nwe7z0x7fj7fmzplhnayejkxumdgjnhhac", - "stake_key_index": "26255" + "pool": "pool1ckt3lzrlg5zdulakphnnmw46n3q268wqsre4d9qfapskglaqhv0", + "stake_key_index": "10221" } }, { - "quit": { - "stake_key_index": "199" + "join": { + "pool": "pool10ehkefuav5m0m5sszt0ju465ce0hwwsnp4rfs7kt076ujnlarx0", + "stake_key_index": "21620" } }, { "join": { - "pool": "pool1fwvwhwn6pj7fjesq54yhedggkh5aq4lwdwqadkpd2mp6gawldv5", - "stake_key_index": "29207" + "pool": "pool1mk49axfy7sdcg3w830yu93jyyeey6afrrmwqfwef5j8ww6k4u3f", + "stake_key_index": "12423" } }, { "quit": { - "stake_key_index": "7044" + "stake_key_index": "17589" } }, { - "join": { - "pool": "pool13kgtxt44zs05qlwgjtwly8486l8w69ynag64nm4lpfyzkk9esdd", - "stake_key_index": "26418" + "quit": { + "stake_key_index": "17711" } }, { "quit": { - "stake_key_index": "27764" + "stake_key_index": "28323" } }, { "join": { - "pool": "pool1dssf6awzena2dglnrtw8p3slxxk6ejyftwdz52vh2ffdcq6r99j", - "stake_key_index": "26771" - } - }, - { - "quit": { - "stake_key_index": "6064" + "pool": "pool12uh9u3vqe6ggarvupdwv870mhey9zfcu0gmh8nvq953p5nvdfaf", + "stake_key_index": "3720" } }, { "quit": { - "stake_key_index": "23582" + "stake_key_index": "7251" } }, { "join": { - "pool": "pool14jt46tp3kazc309y2mqxdnxsg6udaayr0dgtm7588m7jwzhv9ac", - "stake_key_index": "7639" + "pool": "pool1fnw4eh3s6l80zs7zwtdex9hkzj706sj8jg6rv2svgcgs6ecwtch", + "stake_key_index": "22476" } }, { "join": { - "pool": "pool14vv9rl5mmv3alpp9qejg2n5wk0tq38ujwzvwl3dump4lyrhngf8", - "stake_key_index": "29430" + "pool": "pool1lfapxgx46aly8ad0lxt5fym26s9hqgu58hdanl0luyey7u9f57k", + "stake_key_index": "16380" } }, { - "join": { - "pool": "pool1d3m3ssk97hu605nq9qk4lm3ymdfpzvc45zl7tvsa3yrngmnm5h9", - "stake_key_index": "24532" + "quit": { + "stake_key_index": "5177" } } ], "payments": [ - { - "address": "", - "amount": { - "quantity": 254, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 110, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 128, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 36, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 22, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 165, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 46, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - ], - "metadata": { - "18": { - "map": [ - { - "k": { - "string": "𥔌􌵻" - }, - "v": { - "list": [] - } - }, - { - "k": { - "string": "󰽾􁏗" - }, - "v": { - "int": 3 - } - }, - { - "k": { - "string": "􄀡哾" - }, - "v": { - "int": 1 - } - } - ] - } - } - }, - { - "withdrawal": "self", - "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", "", "", "", "", "", - "", - "", - "", - "", - "", - "" - ] - }, - { - "withdrawal": "self", - "delegations": [ - { - "join": { - "pool": "pool1wd63ep4gv9dhqsd594x50xcuccmgywj8gr68k98aajyt24awl4t", - "stake_key_index": "7836" - } - }, - { - "join": { - "pool": "pool1n8srxkfsgzfq8mgnd4c3uzv3gfcjtyy9wf3yyyp0s8e8qv2j3v3", - "stake_key_index": "1391" - } - }, - { - "quit": { - "stake_key_index": "1533" - } - }, - { - "quit": { - "stake_key_index": "32576" - } - }, - { - "quit": { - "stake_key_index": "12225" - } - }, - { - "join": { - "pool": "pool1g8dyx8tz8faz0qk6cyxv33m7mjkshqn6clpsxqxdp42n7ka8ewn", - "stake_key_index": "26694" - } - }, - { - "join": { - "pool": "pool1gzx2sc9qhlddyyc4sakwwnwxyxn9d0s9f5y86xm3whqggyrpwgk", - "stake_key_index": "1087" - } - }, - { - "quit": { - "stake_key_index": "15103" - } - }, - { - "quit": { - "stake_key_index": "490" - } - }, - { - "quit": { - "stake_key_index": "15042" - } - }, - { - "quit": { - "stake_key_index": "19125" - } - }, - { - "join": { - "pool": "pool1tyskea2v24sn0jje8at2ypexd7576sal2f8vcs0wxc455zp695z", - "stake_key_index": "30866" - } - }, - { - "join": { - "pool": "pool16pmvw37xlv4ake2cjv5mjtxtj9yq2fwpqalz27tuysu25acetk7", - "stake_key_index": "28973" - } - } + "", + "", + "" ], "mint_burn": [ { "operation": { "mint": { - "quantity": 21 + "receiving_address": "", + "quantity": 17 } }, "policy_script_template": { @@ -3667,18 +4270,16 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] - } + }, + "asset_name": "546f6b656e50" }, { "operation": { "mint": { "receiving_address": "", - "quantity": 6 + "quantity": 11 } }, "policy_script_template": { @@ -3691,14 +4292,36 @@ "active_until": 150 } ] + } + }, + { + "operation": { + "burn": { + "quantity": 21 + } }, - "asset_name": "546f6b656e4d" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { "operation": { "mint": { "receiving_address": "", - "quantity": 23 + "quantity": 25 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 3 } }, "policy_script_template": { @@ -3706,6 +4329,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } @@ -3713,7 +4339,7 @@ { "operation": { "burn": { - "quantity": 26 + "quantity": 8 } }, "policy_script_template": { @@ -3721,6 +4347,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } @@ -3728,16 +4357,15 @@ { "operation": { "mint": { - "quantity": 5 + "quantity": 28 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e42" + "policy_script_template": "cosigner#0" }, { "operation": { "burn": { - "quantity": 3 + "quantity": 19 } }, "policy_script_template": { @@ -3745,6 +4373,9 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } @@ -3753,23 +4384,35 @@ "operation": { "mint": { "receiving_address": "", - "quantity": 11 + "quantity": 25 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { "operation": { - "burn": { - "quantity": 6 + "mint": { + "receiving_address": "", + "quantity": 26 } }, - "policy_script_template": "cosigner#0" + "policy_script_template": "cosigner#0", + "asset_name": "546f6b656e43" }, { "operation": { "burn": { - "quantity": 27 + "quantity": 25 } }, "policy_script_template": { @@ -3783,18 +4426,24 @@ }, { "operation": { - "mint": { - "receiving_address": "", - "quantity": 14 + "burn": { + "quantity": 13 } }, - "policy_script_template": "cosigner#0", - "asset_name": "546f6b656e4c" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + }, + "asset_name": "546f6b656e50" }, { "operation": { "burn": { - "quantity": 0 + "quantity": 7 } }, "policy_script_template": { @@ -3811,8 +4460,9 @@ }, { "operation": { - "burn": { - "quantity": 26 + "mint": { + "receiving_address": "", + "quantity": 4 } }, "policy_script_template": { @@ -3823,100 +4473,120 @@ } ] }, - "asset_name": "546f6b656e55" - } - ], - "metadata": { - "11": { - "list": [ - { - "string": "乂𦐖" - }, - { - "list": [ - { - "list": [ - { - "string": "𢰈" - } - ] - }, - { - "list": [] - } - ] - }, - { - "map": [ - { - "k": { - "string": "􄭴𦗑" - }, - "v": { - "list": [] - } - } - ] - } - ] - } - } - }, - { - "withdrawal": "self", - "delegations": [ + "asset_name": "546f6b656e4a" + }, { - "quit": { - "stake_key_index": "7550" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 6 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "quit": { - "stake_key_index": "27426" - } + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_script_template": "cosigner#0" }, { - "quit": { - "stake_key_index": "18246" + "operation": { + "mint": { + "receiving_address": "", + "quantity": 15 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "quit": { - "stake_key_index": "8310" - } + "operation": { + "mint": { + "receiving_address": "", + "quantity": 24 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e56" }, { - "quit": { - "stake_key_index": "932" - } + "operation": { + "mint": { + "receiving_address": "", + "quantity": 20 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "asset_name": "546f6b656e56" }, { - "quit": { - "stake_key_index": "1817" + "operation": { + "burn": { + "quantity": 22 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "join": { - "pool": "pool1pf8qk0zdjtx8s56aefku77x3mr5j6yj50emqwfwwtn8yk3e0k2z", - "stake_key_index": "4324" - } + "operation": { + "burn": { + "quantity": 16 + } + }, + "policy_script_template": "cosigner#0" } - ], - "payments": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" ] } ] diff --git a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs index c36dc11cb4b..11e4e1e8ad4 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs @@ -1407,30 +1407,6 @@ instance Malformed (BodyParam (ApiConstructTransactionData ('Testnet pm))) where }|] , "Error in $.delegations[0]: key 'pool' not found" ) - , ( [aesonQQ| - { - "metadata": { "1": { "string": "hello" } }, - "validity_interval": { - "invalid_before": { - "quantity": 500, - "unit": "second" - } - } - }|] - , "Error in $['validity_interval']: parsing Cardano.Wallet.Api.Types.ApiValidityInterval(ApiValidityInterval) failed, key 'invalid_hereafter' not found" - ) - , ( [aesonQQ| - { - "metadata": { "1": { "string": "hello" } }, - "validity_interval": { - "invalid_hereafter": { - "quantity": 500, - "unit": "second" - } - } - }|] - , "Error in $['validity_interval']: parsing Cardano.Wallet.Api.Types.ApiValidityInterval(ApiValidityInterval) failed, key 'invalid_before' not found" - ) , ( [aesonQQ| { "payments": [{ diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 255d3da2163..61736334633 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -3397,11 +3397,8 @@ components: ApiValidityInterval: &ApiValidityInterval description: | -

status: ⚠ under development

+ Specify only invalid_before or invalid_hereafter or both type: object - required: - - invalid_before - - invalid_hereafter properties: invalid_before: *validityBound invalid_hereafter: *validityBound From da4a94555a00aac754a86ccdf052df62262d50c7 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 25 Apr 2022 15:29:35 +0200 Subject: [PATCH 07/31] some improvements --- .../Scenario/API/Shelley/TransactionsNew.hs | 76 ++++++------------- lib/core/src/Cardano/Wallet/Api/Server.hs | 1 + 2 files changed, 23 insertions(+), 54 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 31109a9ac6a..46aa0af9a41 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 @@ -46,6 +46,7 @@ import Cardano.Wallet.Api.Types , ApiDecodedTransaction , ApiDeregisterPool (..) , ApiExternalCertificate (..) + , ApiNetworkInformation , ApiPolicyId , ApiPolicyKey (..) , ApiRegisterPool (..) @@ -1127,6 +1128,13 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do it "TRANS_NEW_VALIDITY_INTERVAL_01b - Validity interval with slot" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx + rSlot <- request @ApiNetworkInformation ctx + Link.getNetworkInfo Default Empty + verify rSlot + [ expectSuccess + ] + let sl = getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + let payload = Json [json|{ "withdrawal": "self", "validity_interval": { @@ -1135,7 +1143,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "unit": "slot" }, "invalid_hereafter": { - "quantity": 500, + "quantity": #{sl + 10}, "unit": "slot" } } @@ -1251,12 +1259,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval 'unspecified'" $ \ctx -> runResourceT $ do - liftIO $ pendingWith - "Currently throws: \ - \parsing ApiValidityBound object failed, \ - \expected Object, but encountered String \ - \- to be fixed in ADP-1189" - wa <- fixtureWallet ctx let payload = Json [json|{ @@ -1270,7 +1272,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload verify rTx - [ expectResponseCode HTTP.status202 + [ expectResponseCode HTTP.status400 + , expectErrorMessage "parsing ApiValidityBound object failed, expected Object, but encountered String" ] it "TRANS_NEW_DECODE_01a - \ @@ -3060,10 +3063,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 10000, - "unit": "assets" - } + "quantity": 10000 } } }] @@ -3093,10 +3093,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 10000, - "unit": "assets" - } + "quantity": 10000 } } }] @@ -3128,10 +3125,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 10000, - "unit": "assets" - } + "quantity": 10000 } } }] @@ -3158,10 +3152,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 10000, - "unit": "assets" - } + "quantity": 10000 } } }] @@ -3186,10 +3177,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 9223372036854775808, - "unit": "assets" - } + "quantity": 9223372036854775808 } } }] @@ -3215,10 +3203,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 0, - "unit": "assets" - } + "quantity": 0 } } }] @@ -3250,10 +3235,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 50000, - "unit": "assets" - } + "quantity": 50000 } } }] @@ -3289,10 +3271,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 50000, - "unit": "assets" - } + "quantity": 50000 } } }] @@ -3324,10 +3303,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "mint" : { "receiving_address": #{destination}, - "amount": { - "quantity": 50000, - "unit": "assets" - } + "quantity": 50000 } } }] @@ -3350,7 +3326,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "burn" : { "quantity": 50000 - , "unit": "assets" } } }] @@ -3376,10 +3351,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , "operation": { "mint": { "receiving_address": #{destination} - , "amount": - { "quantity": 50000 - , "unit": "assets" - } + , "quantity": 50000 } } } @@ -3402,7 +3374,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "operation": { "burn" : { "quantity": 50000 - , "unit": "assets" } } }] @@ -3431,10 +3402,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , "operation": { "mint": { "receiving_address": #{destination} - , "amount": - { "quantity": 50000 - , "unit": "assets" - } + , "quantity": 50000 } } } diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index ad4462042ea..160f9901ce9 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -680,6 +680,7 @@ import qualified Data.Text.Encoding as T import qualified Network.Wai.Handler.Warp as Warp import qualified Network.Wai.Handler.WarpTLS as Warp + -- | How the server should listen for incoming requests. data Listen = ListenOnPort Port From c1f3a54481b3be5c0bd856ff66a516f53e771b16 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 25 Apr 2022 19:05:39 +0200 Subject: [PATCH 08/31] fist timelock minting working --- .../Scenario/API/Shelley/TransactionsNew.hs | 32 +++++++++++++++---- 1 file changed, 26 insertions(+), 6 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 46aa0af9a41..9ba4aa7d9fe 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 @@ -86,6 +86,7 @@ import Cardano.Wallet.Primitive.Types , NonWalletCertificate (..) , PoolId (..) , PoolOwner (..) + , SlotNo (..) , StakePoolMetadataHash (..) , StakePoolMetadataUrl (..) , decodePoolIdBech32 @@ -3247,11 +3248,16 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do mintAssetsCheck ctx wa tokenName' payload scriptUsed - it "TRANS_NEW_CREATE_10e - Minting assets with timelocks" $ + it "TRANS_NEW_CREATE_10e - Minting assets with timelocks \ + \successful as validity interval is included in time interval \ + \of a script" $ \ctx -> runResourceT $ do - -- TODO: ADP-1193 - liftIO $ pendingWith - "ADP-1193: Should work when interval validity is addressed" + + -- slot 0 sl+10 + -- |-----------> validity interval + -- + -- |--------------> script's timelock interval + -- sl+11 wa <- fixtureWallet ctx addrs <- listAddresses @n ctx wa @@ -3259,12 +3265,26 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let (Right tokenName') = mkTokenName "ab12" + rSlot <- request @ApiNetworkInformation ctx + Link.getNetworkInfo Default Empty + verify rSlot + [ expectSuccess + ] + let (SlotNo sl) = + getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + let payload = Json [json|{ + "validity_interval": { + "invalid_hereafter": { + "quantity": #{sl + 10}, + "unit": "slot" + } + }, "mint_burn": [{ "policy_script_template": { "all": [ "cosigner#0", - { "active_from": 120 } + { "active_until": #{sl + 11} } ] }, "asset_name": #{toText tokenName'}, @@ -3279,7 +3299,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let scriptUsed policyKeyHash = RequireAllOf [ RequireSignatureOf policyKeyHash - , ActiveFromSlot 120 + , ActiveUntilSlot (fromIntegral $ sl + 11) ] mintAssetsCheck ctx wa tokenName' payload scriptUsed From c0cce62d61f8f45fb53ba0bcb8dd725c9a07ffb6 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Tue, 26 Apr 2022 16:25:34 +0200 Subject: [PATCH 09/31] introduce lower bound to transaction context --- flake.lock | 1 - .../Scenario/API/Shelley/TransactionsNew.hs | 28 ++++++++++++----- lib/core/src/Cardano/Wallet.hs | 4 +-- lib/core/src/Cardano/Wallet/Api/Server.hs | 18 +++++------ lib/core/src/Cardano/Wallet/Transaction.hs | 7 +++-- .../src/Cardano/Wallet/Shelley/Transaction.hs | 31 +++++++++++++------ .../Cardano/Wallet/Shelley/TransactionSpec.hs | 6 ++-- 7 files changed, 59 insertions(+), 36 deletions(-) diff --git a/flake.lock b/flake.lock index 2c3fa7a9246..e05ddaad00a 100644 --- a/flake.lock +++ b/flake.lock @@ -148,7 +148,6 @@ "flake-utils": "flake-utils_5", "heist": "heist", "nixpkgs": [ - "emanote", "ema", "nixpkgs" ], 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 9ba4aa7d9fe..5e69346bdf8 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 @@ -1083,13 +1083,20 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectErrorMessage errMsg403NotEnoughMoney ] - it "TRANS_NEW_VALIDITY_INTERVAL_01a - Validity interval with second" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_01a - Validity interval with both second and slot" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx wb <- emptyWallet ctx addrs <- listAddresses @n ctx wb let destination = (addrs !! 1) ^. #id let amt = minUTxOValue (_mainEra ctx) + rSlot <- request @ApiNetworkInformation ctx + Link.getNetworkInfo Default Empty + verify rSlot + [ expectSuccess + ] + let sl = getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + let payload = Json [json|{ "payments": [{ "address": #{destination}, @@ -1100,11 +1107,11 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do }], "validity_interval": { "invalid_before": { - "quantity": 0, - "unit": "second" + "quantity": #{sl - 10}, + "unit": "slot" }, "invalid_hereafter": { - "quantity": 500, + "quantity": 50, "unit": "second" } } @@ -2940,6 +2947,13 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do @[ApiStakePool] ctx (Link.listStakePools arbitraryStake) Empty + rSlot <- request @ApiNetworkInformation ctx + Link.getNetworkInfo Default Empty + verify rSlot + [ expectSuccess + ] + let sl = getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + let payload = Json [json|{ "payments": [{ "address": #{destination1}, @@ -2965,11 +2979,11 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "metadata": { "1": { "string": "hello" } }, "validity_interval": { "invalid_before": { - "quantity": 0, - "unit": "second" + "quantity": #{sl - 1}, + "unit": "slot" }, "invalid_hereafter": { - "quantity": 1000, + "quantity": 30, "unit": "second" } } diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index bd4eecc4efd..18c4431d65b 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -2441,7 +2441,7 @@ mkTxMetaWithoutSel blockHeader txCtx inps outs = , slotNo = blockHeader ^. #slotNo , blockHeight = blockHeader ^. #blockHeight , amount = Coin.distance amtInps amtOuts - , expiry = Just (txTimeToLive txCtx) + , expiry = Just (snd $ txValidityInterval txCtx) } ourCoin @@ -2496,7 +2496,7 @@ mkTxMeta ti' blockHeader wState txCtx sel = , slotNo = blockHeader ^. #slotNo , blockHeight = blockHeader ^. #blockHeight , amount = Coin.distance amtInps amtOuts - , expiry = Just (txTimeToLive txCtx) + , expiry = Just (snd $ txValidityInterval txCtx) } ) where diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 160f9901ce9..5131cf15cba 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2006,7 +2006,7 @@ postTransactionOld ctx genChange (ApiT wid) body = do let txCtx = defaultTransactionCtx { txWithdrawal = wdrl , txMetadata = md - , txTimeToLive = ttl + , txValidityInterval = (Nothing, ttl) } (sel, tx, txMeta, txTime, pp) <- withWorkerCtx ctx wid liftE liftE $ \wrk -> @@ -2308,8 +2308,6 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do when (hereafter < before || isThereNegativeTime) $ liftHandler $ throwE ErrConstructTxWrongValidityBounds - let ttl = hereafter - (wdrl, _) <- mkRewardAccountBuilder @_ @s @_ @n ctx wid (body ^. #withdrawal) @@ -2319,7 +2317,7 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do Nothing -> pure (Nothing, Nothing, defaultTransactionCtx { txWithdrawal = wdrl , txMetadata = md - , txTimeToLive = ttl + , txValidityInterval = (Just before, hereafter) }) Just delegs -> do -- TODO: Current limitation: @@ -2345,7 +2343,7 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do pure (deposit, refund, defaultTransactionCtx { txWithdrawal = wdrl , txMetadata = md - , txTimeToLive = ttl + , txValidityInterval = (Just before, hereafter) , txDelegationAction = Just action }) let transform s sel = @@ -2788,7 +2786,7 @@ submitTransaction ctx apiw@(ApiT wid) apitx@(ApiSerialisedTransaction (ApiT seal (acct, _, path) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid let wdrl = getOurWdrl acct path apiDecoded let txCtx = defaultTransactionCtx - { txTimeToLive = ttl + { txValidityInterval = (Nothing, ttl) -- ADP-1193 get it from decodeTx , txWithdrawal = wdrl , txDelegationAction = delAction } @@ -2895,7 +2893,7 @@ joinStakePool ctx knownPools getPoolStatus apiPoolId (ApiT wid) body = do ttl <- liftIO $ W.getTxExpiry ti Nothing let txCtx = defaultTransactionCtx { txWithdrawal = wdrl - , txTimeToLive = ttl + , txValidityInterval = (Nothing, ttl) , txDelegationAction = Just action } (utxoAvailable, wallet, pendingTxs) <- @@ -3011,7 +3009,7 @@ quitStakePool ctx (ApiT wid) body = do ttl <- liftIO $ W.getTxExpiry ti Nothing let txCtx = defaultTransactionCtx { txWithdrawal = wdrl - , txTimeToLive = ttl + , txValidityInterval = (Nothing, ttl) , txDelegationAction = Just action } @@ -3279,7 +3277,7 @@ migrateWallet ctx withdrawalType (ApiT wid) postData = do mkRewardAccountBuilder @_ @s @_ @n ctx wid withdrawalType withWorkerCtx ctx wid liftE liftE $ \wrk -> do plan <- liftHandler $ W.createMigrationPlan wrk wid rewardWithdrawal - txTimeToLive <- liftIO $ W.getTxExpiry ti Nothing + ttl <- liftIO $ W.getTxExpiry ti Nothing pp <- liftIO $ NW.currentProtocolParameters (wrk ^. networkLayer) selectionWithdrawals <- liftHandler $ failWith ErrCreateMigrationPlanEmpty @@ -3288,7 +3286,7 @@ migrateWallet ctx withdrawalType (ApiT wid) postData = do forM selectionWithdrawals $ \(selection, txWithdrawal) -> do let txContext = defaultTransactionCtx { txWithdrawal - , txTimeToLive + , txValidityInterval = (Nothing, ttl) , txDelegationAction = Nothing } (tx, txMeta, txTime, sealedTx) <- liftHandler $ diff --git a/lib/core/src/Cardano/Wallet/Transaction.hs b/lib/core/src/Cardano/Wallet/Transaction.hs index bbff47c3e77..9b1f20334f6 100644 --- a/lib/core/src/Cardano/Wallet/Transaction.hs +++ b/lib/core/src/Cardano/Wallet/Transaction.hs @@ -363,8 +363,9 @@ data TransactionCtx = TransactionCtx -- ^ Withdrawal amount from a reward account, can be zero. , txMetadata :: Maybe TxMetadata -- ^ User or application-defined metadata to embed in the transaction. - , txTimeToLive :: SlotNo - -- ^ Transaction expiry (TTL) slot. + , txValidityInterval :: (Maybe SlotNo, SlotNo) + -- ^ Transaction optional starting slot and expiry (TTL) slot for which the + -- transaction is valid. , txDelegationAction :: Maybe DelegationAction -- ^ An additional delegation to take. , txPlutusScriptExecutionCost :: Coin @@ -400,7 +401,7 @@ defaultTransactionCtx :: TransactionCtx defaultTransactionCtx = TransactionCtx { txWithdrawal = NoWithdrawal , txMetadata = Nothing - , txTimeToLive = maxBound + , txValidityInterval = (Nothing, maxBound) , txDelegationAction = Nothing , txPlutusScriptExecutionCost = Coin 0 , txAssetsToMint = (TokenMap.empty, Map.empty) diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index ee712a84764..6dba3842c4d 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -337,8 +337,8 @@ constructUnsignedTx ) => Cardano.NetworkId -> (Maybe Cardano.TxMetadata, [Cardano.Certificate]) - -> SlotNo - -- ^ Slot at which the transaction will expire. + -> (Maybe SlotNo, SlotNo) + -- ^ Slot at which the transaction will optionally start and expire. -> RewardAccount -- ^ Reward account -> Coin @@ -370,8 +370,8 @@ mkTx ) => Cardano.NetworkId -> TxPayload era - -> SlotNo - -- ^ Slot at which the transaction will expire. + -> (Maybe SlotNo, SlotNo) + -- ^ Slot at which the transaction will start and expire. -> (XPrv, Passphrase "encryption") -- ^ Reward account -> (Address -> Maybe (k 'AddressK XPrv, Passphrase "encryption")) @@ -545,7 +545,7 @@ newTransactionLayer -> TransactionLayer k SealedTx newTransactionLayer networkId = TransactionLayer { mkTransaction = \era stakeCreds keystore _pp ctx selection -> do - let ttl = txTimeToLive ctx + let ttl = txValidityInterval ctx let wdrl = withdrawalToCoin $ view #txWithdrawal ctx let delta = selectionDelta txOutCoin selection case view #txDelegationAction ctx of @@ -597,7 +597,7 @@ newTransactionLayer networkId = TransactionLayer & sealedTxFromCardano' , mkUnsignedTransaction = \era stakeXPub _pp ctx selection -> do - let ttl = txTimeToLive ctx + let ttl = txValidityInterval ctx let wdrl = withdrawalToCoin $ view #txWithdrawal ctx let delta = selectionDelta txOutCoin selection let rewardAcct = toRewardAccountRaw stakeXPub @@ -2061,7 +2061,7 @@ withShelleyBasedEra era fn = case era of mkUnsignedTx :: forall era. Cardano.IsCardanoEra era => ShelleyBasedEra era - -> Cardano.SlotNo + -> (Maybe SlotNo, SlotNo) -> SelectionOf TxOut -> Maybe Cardano.TxMetadata -> [(Cardano.StakeAddress, Cardano.Lovelace)] @@ -2114,9 +2114,13 @@ mkUnsignedTx era ttl cs md wdrls certs fees mintData burnData allScripts = , Cardano.txFee = explicitFees era fees , Cardano.txValidityRange = - ( Cardano.TxValidityNoLowerBound - , Cardano.TxValidityUpperBound txValidityUpperBoundSupported ttl - ) + let toLowerBound from = case txValidityLowerBoundSupported of + Just lowerBoundSupported -> + Cardano.TxValidityLowerBound lowerBoundSupported from + Nothing -> Cardano.TxValidityNoLowerBound + in ( maybe Cardano.TxValidityNoLowerBound toLowerBound (fst ttl) + , Cardano.TxValidityUpperBound txValidityUpperBoundSupported $ snd ttl + ) , Cardano.txMetadata = maybe @@ -2180,6 +2184,13 @@ mkUnsignedTx era ttl cs md wdrls certs fees mintData burnData allScripts = ShelleyBasedEraMary -> Cardano.ValidityUpperBoundInMaryEra ShelleyBasedEraAlonzo -> Cardano.ValidityUpperBoundInAlonzoEra + txValidityLowerBoundSupported :: Maybe (Cardano.ValidityLowerBoundSupportedInEra era) + txValidityLowerBoundSupported = case era of + ShelleyBasedEraShelley -> Nothing + ShelleyBasedEraAllegra -> Just Cardano.ValidityLowerBoundInAllegraEra + ShelleyBasedEraMary -> Just Cardano.ValidityLowerBoundInMaryEra + ShelleyBasedEraAlonzo -> Just Cardano.ValidityLowerBoundInAlonzoEra + txMintingSupported :: Maybe (Cardano.MultiAssetSupportedInEra era) txMintingSupported = case era of ShelleyBasedEraShelley -> Nothing diff --git a/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs b/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs index 1b1a2a1c36f..4479f7389c3 100644 --- a/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs +++ b/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs @@ -1566,7 +1566,7 @@ binaryCalculationsSpec' era = describe ("calculateBinary - "+||era||+"") $ do addrWits = zipWith (mkByronWitness' unsigned) inps pairs fee = toCardanoLovelace $ selectionDelta txOutCoin cs Right unsigned = - mkUnsignedTx era slotNo cs md mempty [] fee + mkUnsignedTx era (Nothing, slotNo) cs md mempty [] fee TokenMap.empty TokenMap.empty Map.empty cs = Selection { inputs = NE.fromList inps @@ -1657,7 +1657,7 @@ makeShelleyTx era testCase = Cardano.makeSignedTransaction addrWits unsigned inps = Map.toList $ unUTxO utxo fee = toCardanoLovelace $ selectionDelta txOutCoin cs Right unsigned = - mkUnsignedTx era slotNo cs md mempty [] fee + mkUnsignedTx era (Nothing, slotNo) cs md mempty [] fee TokenMap.empty TokenMap.empty Map.empty addrWits = map (mkShelleyWitness unsigned) pairs cs = Selection @@ -1700,7 +1700,7 @@ makeByronTx era testCase = Cardano.makeSignedTransaction byronWits unsigned inps = Map.toList $ unUTxO utxo fee = toCardanoLovelace $ selectionDelta txOutCoin cs Right unsigned = - mkUnsignedTx era slotNo cs Nothing mempty [] fee + mkUnsignedTx era (Nothing, slotNo) cs Nothing mempty [] fee TokenMap.empty TokenMap.empty Map.empty -- byronWits = map (mkByronWitness unsigned ntwrk Nothing) pairs byronWits = map (error "makeByronTx: broken") pairs -- TODO: [ADP-919] From 7b027cdae1c20b0c140136cddd540264da1d9098 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Tue, 26 Apr 2022 19:57:40 +0200 Subject: [PATCH 10/31] refine integration test revert flock --- flake.lock | 1 + .../Scenario/API/Shelley/TransactionsNew.hs | 13 +------------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/flake.lock b/flake.lock index e05ddaad00a..2c3fa7a9246 100644 --- a/flake.lock +++ b/flake.lock @@ -148,6 +148,7 @@ "flake-utils": "flake-utils_5", "heist": "heist", "nixpkgs": [ + "emanote", "ema", "nixpkgs" ], 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 5e69346bdf8..923d2ce7e7e 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 @@ -1083,20 +1083,13 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectErrorMessage errMsg403NotEnoughMoney ] - it "TRANS_NEW_VALIDITY_INTERVAL_01a - Validity interval with both second and slot" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_01a - Validity interval with second" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx wb <- emptyWallet ctx addrs <- listAddresses @n ctx wb let destination = (addrs !! 1) ^. #id let amt = minUTxOValue (_mainEra ctx) - rSlot <- request @ApiNetworkInformation ctx - Link.getNetworkInfo Default Empty - verify rSlot - [ expectSuccess - ] - let sl = getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot - let payload = Json [json|{ "payments": [{ "address": #{destination}, @@ -1106,10 +1099,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do } }], "validity_interval": { - "invalid_before": { - "quantity": #{sl - 10}, - "unit": "slot" - }, "invalid_hereafter": { "quantity": 50, "unit": "second" From 33c7d9b80fc405bf4ba03300f769cbca2f07afcd Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 27 Apr 2022 18:02:14 +0200 Subject: [PATCH 11/31] add support of validity in decodeTx - part 1 --- lib/core/src/Cardano/Wallet.hs | 4 +- lib/core/src/Cardano/Wallet/Api/Server.hs | 5 +- lib/core/src/Cardano/Wallet/Api/Types.hs | 3 +- lib/core/src/Cardano/Wallet/Transaction.hs | 39 +- .../Api/ApiDecodedTransactionTestnet0.json | 33045 +++++++--------- .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 16 +- lib/core/test/unit/Cardano/WalletSpec.hs | 1 + .../Cardano/Wallet/Shelley/Compatibility.hs | 34 +- .../src/Cardano/Wallet/Shelley/Transaction.hs | 12 +- .../Cardano/Wallet/Shelley/TransactionSpec.hs | 14 +- specifications/api/swagger.yaml | 10 + 11 files changed, 15329 insertions(+), 17854 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 18c4431d65b..1ec968176f5 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -1808,7 +1808,7 @@ balanceTransactionWithSelectionStrategy throwE ErrBalanceTxZeroAdaOutput extractOutputsFromTx tx = - let (Tx {outputs}, _, _, _) = decodeTx tl tx + let (Tx {outputs}, _, _, _, _) = decodeTx tl tx in outputs guardConflictingWithdrawalNetworks @@ -2554,7 +2554,7 @@ submitExternalTx ctx sealedTx = traceResult trPost $ do tl = ctx ^. transactionLayer @k nw = ctx ^. networkLayer trPost = contramap (MsgSubmitExternalTx (tx ^. #txId)) (ctx ^. logger) - (tx, _, _, _) = decodeTx tl sealedTx + (tx, _, _, _, _) = decodeTx tl sealedTx -- | Remove a pending or expired transaction from the transaction history. This -- happens at the request of the user. If the transaction is already on chain, diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 5131cf15cba..3afbe0f323a 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2557,7 +2557,7 @@ decodeTransaction -> ApiSerialisedTransaction -> Handler (ApiDecodedTransaction n) decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do - let (decodedTx, toMint, toBurn, allCerts) = decodeTx tl sealed + let (decodedTx, toMint, toBurn, allCerts, interval) = decodeTx tl sealed let (Tx { txId , fee , resolvedInputs @@ -2613,6 +2613,7 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do (toApiAnyCert acct acctPath <$> allCerts) , metadata = ApiTxMetadata $ ApiT <$> metadata , scriptValidity = ApiT <$> scriptValidity + , validityInterval = interval } where tl = ctx ^. W.transactionLayer @k @@ -2795,7 +2796,7 @@ submitTransaction ctx apiw@(ApiT wid) apitx@(ApiSerialisedTransaction (ApiT seal $ W.submitTx @_ @s @k wrk wid (tx, txMeta, sealedTx) return $ ApiTxId (apiDecoded ^. #id) where - (tx,_,_,_) = decodeTx tl sealedTx + (tx,_,_,_,_) = decodeTx tl sealedTx tl = ctx ^. W.transactionLayer @k ti :: TimeInterpreter (ExceptT PastHorizonException IO) nl = ctx ^. networkLayer diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 3248c691196..e74d7b2aa76 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -346,7 +346,7 @@ import Cardano.Wallet.Primitive.Types.UTxO import Cardano.Wallet.TokenMetadata ( TokenMetadataError (..) ) import Cardano.Wallet.Transaction - ( AnyScript (..) ) + ( AnyScript (..), ValidityIntervalExplicit ) import Cardano.Wallet.Util ( ShowFmt (..) ) import Codec.Binary.Bech32 @@ -1289,6 +1289,7 @@ data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction , depositsReturned :: ![Quantity "lovelace" Natural] , metadata :: !ApiTxMetadata , scriptValidity :: !(Maybe (ApiT TxScriptValidity)) + , validityInterval :: !(Maybe ValidityIntervalExplicit) } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData diff --git a/lib/core/src/Cardano/Wallet/Transaction.hs b/lib/core/src/Cardano/Wallet/Transaction.hs index 9b1f20334f6..b6e352cab65 100644 --- a/lib/core/src/Cardano/Wallet/Transaction.hs +++ b/lib/core/src/Cardano/Wallet/Transaction.hs @@ -37,6 +37,7 @@ module Cardano.Wallet.Transaction , PlutusVersion (..) , TxFeeAndChange (..) , mapTxFeeAndChange + , ValidityIntervalExplicit (..) -- * Errors , ErrSignTx (..) @@ -109,17 +110,27 @@ import Control.DeepSeq import Control.Monad ( (>=>) ) import Data.Aeson.Types - ( FromJSON (..), Parser, ToJSON (..) ) + ( FromJSON (..) + , Parser + , ToJSON (..) + , camelTo2 + , genericParseJSON + , genericToJSON + ) import Data.Bifunctor ( bimap ) import Data.List.NonEmpty ( NonEmpty ) import Data.Map.Strict ( Map ) +import Data.Quantity + ( Quantity (..) ) import Data.Text ( Text ) import Data.Text.Class ( FromText (..), TextDecodingError (..), ToText (..) ) +import Data.Word + ( Word64 ) import Fmt ( Buildable (..), genericF ) import GHC.Generics @@ -128,6 +139,7 @@ import GHC.Generics import qualified Cardano.Api as Cardano import qualified Cardano.Api.Shelley as Cardano import qualified Cardano.Wallet.Primitive.Types.TokenMap as TokenMap +import qualified Data.Aeson.Types as Aeson import qualified Data.Map.Strict as Map data TransactionLayer k tx = TransactionLayer @@ -311,7 +323,12 @@ data TransactionLayer k tx = TransactionLayer , decodeTx :: tx - -> (Tx, TokenMapWithScripts, TokenMapWithScripts, [Certificate]) + -> ( Tx + , TokenMapWithScripts + , TokenMapWithScripts + , [Certificate] + , Maybe ValidityIntervalExplicit + ) -- ^ Decode an externally-created transaction. , updateTx @@ -547,3 +564,21 @@ mapTxFeeAndChange -- ^ The transformed fee and change mapTxFeeAndChange mapFee mapChange TxFeeAndChange {fee, change} = TxFeeAndChange (mapFee fee) (mapChange change) + +data ValidityIntervalExplicit = ValidityIntervalExplicit + { invalidBefore :: !(Quantity "slot" Word64) + , invalidHereafter :: !(Quantity "slot" Word64) + } + deriving (Generic, Eq, Show) + deriving anyclass NFData + +instance ToJSON ValidityIntervalExplicit where + toJSON = genericToJSON defaultRecordTypeOptions +instance FromJSON ValidityIntervalExplicit where + parseJSON = genericParseJSON defaultRecordTypeOptions + +defaultRecordTypeOptions :: Aeson.Options +defaultRecordTypeOptions = Aeson.defaultOptions + { Aeson.fieldLabelModifier = camelTo2 '_' . dropWhile (== '_') + , Aeson.omitNothingFields = True + } diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json index 052bc9081ad..5493433f92c 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json @@ -1,12 +1,11 @@ { - "seed": 3658396505643069002, + "seed": 7342326853424746843, "samples": [ { "withdrawals": [ { - "context": "ours", "amount": { - "quantity": 117, + "quantity": 83, "unit": "lovelace" }, "stake_address": "" @@ -14,14 +13,7 @@ { "context": "ours", "amount": { - "quantity": 88, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 39, + "quantity": 102, "unit": "lovelace" }, "stake_address": "" @@ -29,36 +21,35 @@ { "context": "ours", "amount": { - "quantity": 75, + "quantity": 52, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 222, + "quantity": 21, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 194, + "quantity": 63, "unit": "lovelace" }, "stake_address": "" }, { - "context": "ours", "amount": { - "quantity": 233, + "quantity": 222, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 128, + "quantity": 79, "unit": "lovelace" }, "stake_address": "" @@ -66,1358 +57,1425 @@ { "context": "ours", "amount": { - "quantity": 60, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 242, + "quantity": 234, "unit": "lovelace" }, "stake_address": "" }, { + "context": "ours", "amount": { - "quantity": 178, + "quantity": 219, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 76, + "quantity": 31, "unit": "lovelace" }, "stake_address": "" - }, + } + ], + "inputs": [ { - "context": "ours", - "amount": { - "quantity": 10, - "unit": "lovelace" - }, - "stake_address": "" + "id": "4d274a3e3f47d1160b29577209ba7863956d2c771c6914113bd5005a536f672c", + "index": 0 }, { - "amount": { - "quantity": 118, - "unit": "lovelace" - }, - "stake_address": "" + "id": "4343430f7249f411706c6f53a3bc11636fd7555a668c10630a621a4606204949", + "index": 0 }, { - "amount": { - "quantity": 21, - "unit": "lovelace" - }, - "stake_address": "" + "id": "1549017c5d1b529f290a4277726245570ff83dbe7c202a33e16a2907251f762f", + "index": 0 }, { - "context": "ours", + "address": "", + "id": "085c69400b4d3b64327866442d7db34b1e5942e9a54b2ca4041c377e1c397459", + "index": 20546, "amount": { - "quantity": 88, + "quantity": 218, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "6336", + "17418", + "18101", + "16431" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "amount": { - "quantity": 36, - "unit": "lovelace" - }, - "stake_address": "" + "id": "1284071f2e850622412c44472b3b0a037b207fbf18757bf2521da0417624506b", + "index": 0 }, { - "amount": { - "quantity": 147, - "unit": "lovelace" - }, - "stake_address": "" + "id": "437537687e01490e2e014411283eb455680b654d2b4754162ecf554356a32d68", + "index": 0 }, { + "address": "", + "id": "741d104f3c2d6f6e4733a0cb030c2e4a4c32e5737bb7526008d1544f31411704", + "index": 11329, "amount": { - "quantity": 121, + "quantity": 21, "unit": "lovelace" }, - "stake_address": "" - } - ], - "inputs": [ - { - "id": "483a46111d117d3273501b0a18516422c7df04186c4d069a7f7f4a1f515d3a2c", - "index": 0 - }, - { - "id": "243658197162387d12606d7f785b51d4c446844978164d5c3502197c3c12c818", - "index": 1 + "derivation_path": [ + "13202", + "5588", + "31076", + "24752", + "22292", + "25206", + "16966", + "22257", + "13086", + "26974", + "20839", + "25467", + "19530", + "17594", + "18758", + "9836", + "6332", + "20545", + "20308", + "10150", + "1756", + "32286", + "1491", + "8861", + "22422", + "9101", + "7614", + "13465", + "23878", + "7603", + "17411" + ], + "assets": [] }, { "address": "", - "id": "cac93a6a890e797360267e40586000002f040ac41a4c6e3b3832482a45023775", - "index": 9595, + "id": "e3043bf9ef766439cb312e0b3f262cab625d453469655047681100070f7d0d02", + "index": 13900, "amount": { - "quantity": 63, + "quantity": 216, "unit": "lovelace" }, "derivation_path": [ - "1424", - "20209", - "1082", - "6779", - "12846" + "4350", + "13538", + "848", + "22948", + "871", + "26591", + "123", + "16615", + "25381", + "28664", + "9490", + "3220", + "12275", + "17594", + "27531", + "8292", + "27745", + "20282", + "11417", + "19204", + "2191", + "7517", + "9609", + "24634", + "32608", + "2634", + "5015", + "20862" ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e45", - "quantity": 2, + "quantity": 5, "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 50, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "6b524d8a50147c220c1b4c3b013a50676e5a247f767b2dd041026d49b33f6e2f", + "index": 1 + }, + { + "id": "5220053a2217655511b0691a44507747173071007dac5030fe413d343b6776ec", + "index": 1 + }, { "address": "", - "id": "0eeb3e7237285eb51663e26f3a403f683b688bf3121776b90a1f43b49f6c4713", - "index": 26338, + "id": "43783fa67f5d434d137b19438b1c5c470b3a19063f2d185b3e0872399540783e", + "index": 8460, "amount": { - "quantity": 122, + "quantity": 105, "unit": "lovelace" }, "derivation_path": [ - "16126", - "27584", - "5572", - "16435", - "2287", - "24924", - "24056", - "23702" + "13498", + "4129", + "28758", + "22797", + "1097", + "12278", + "15872", + "8278", + "11181", + "484", + "15803", + "15583", + "18474", + "30935", + "18400", + "23946", + "23961", + "22419", + "56", + "28426" ], "assets": [] }, { - "id": "66e269751d351d637553206013165eeb596161405a7d7eae0e198b28489efa06", - "index": 0 - }, - { - "id": "58216c55172973003e2c4d5873f0a8bc1e256d04682b7b59756a19385928627c", + "id": "c50a04696968133663502fa693300e2f735939315a5c5d2e283356eb9b6b6542", "index": 1 }, { - "id": "4e61602f33495b09a4733a4413782e5649024ab84101533c5e296729e23f9412", + "id": "197e46714002381972e824647f621e5f5c6d4149103c01150e315921066b0908", "index": 1 }, { - "id": "41ea14410010e22967200a4d5672240e4b6836474469745c6167662c624e1f5f", - "index": 0 + "id": "2b0217116476437122077a5f45266205735b001d7a58527f749874784c3e6036", + "index": 1 }, { "address": "", - "id": "1668123a692a687a685946e27a527d466b21e14b1e08183d2a428d1d476e8349", - "index": 12092, + "id": "7a7f5b31124b6b3f507a292e271b4d8c2843446a2e342756685f4601726c4209", + "index": 28071, "amount": { - "quantity": 22, + "quantity": 65, "unit": "lovelace" }, "derivation_path": [ - "22673", - "18258", - "24839", - "18999", - "8037", - "25123", - "10649", - "32497" + "20973", + "17111", + "19551", + "3994", + "22936", + "13885", + "20683", + "14812", + "23695", + "10030", + "15018", + "8433", + "2229", + "2229", + "26488", + "15733", + "2245", + "6236", + "18466" ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e43", - "quantity": 21, + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 41, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "705407fa2772323882282c4e3953096c53145e54184b4b285f4dcf56fc0b481c", - "index": 1 - }, - { - "id": "767f77cd73a315414a922b345303563029122e74016129101521a6271b094938", - "index": 0 - }, { "address": "", - "id": "2b3a44207244182226765e7f1262135bc05d332fe77f306d541318fa71672d51", - "index": 7897, + "id": "1e2b163e5825f05f561f323c8da0316135530f031625902e0f1c5834707f6f38", + "index": 2841, "amount": { - "quantity": 101, + "quantity": 247, "unit": "lovelace" }, "derivation_path": [ - "20217", - "18588", - "7556", - "4860", - "21296", - "4715", - "30229", - "27412", - "21953", - "18872", - "22637", - "830", - "13303", - "19373", - "8030", - "30801", - "28833", - "18458", - "30346", - "16909", - "32337" + "15992", + "32213", + "30880", + "27519" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { "address": "", - "id": "e33fff725a624de15761deed185857617f095f264b082d645801685c2cdb3e31", - "index": 6995, + "id": "6f3e0e48699bf15b6c517f942bba09cf6f3b113f604b66793a6c2852310c908c", + "index": 22634, "amount": { - "quantity": 37, + "quantity": 82, "unit": "lovelace" }, "derivation_path": [ - "30171", - "32155", - "25792", - "18504", - "17663", - "20097" + "13787", + "24734", + "5413", + "1867", + "5722", + "10748", + "13678", + "7062", + "12338", + "8221", + "17342", + "21786", + "16553", + "1802", + "21248", + "15907", + "5971", + "4114", + "10645", + "2339", + "17950", + "26088", + "3531", + "21021" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { - "id": "3b7a1d6278631a57365c32201d6444040f697178a9b35375810410546a525079", + "address": "", + "id": "6445304d4e1e491e557b567702e83a3ea3485391750cbc0a5114045c28163a75", + "index": 11604, + "amount": { + "quantity": 206, + "unit": "lovelace" + }, + "derivation_path": [ + "28094" + ], + "assets": [] + }, + { + "id": "437a3235381106521c5cb1eab0402928031f04762e34510150427b2d6d294641", "index": 1 }, { - "id": "913d358b0f5463cd373e65724c6e12461e55327f765d653d522e553d0d1e5358", + "id": "0d1dc81a043e75120ef72d690d0e5d06054b5067d729156b6dd4333e6e1d1e7c", "index": 0 }, { "address": "", - "id": "1b3f6f102925223b470a276b18468eaa6a438270325e12051798929a37460094", - "index": 28583, + "id": "79765a610851737865073471431b0b620f712f850c4d3e063a007a0d5662e001", + "index": 31963, "amount": { - "quantity": 95, + "quantity": 96, "unit": "lovelace" }, "derivation_path": [ - "22058", - "2618", - "5533", - "4990", - "30500", - "4166", - "16129", - "25080", - "23648", - "19298", - "1872", - "21189", - "24689", - "31617", - "7171", - "8256", - "4365", - "6632", - "29559", - "22603", - "19691", - "14706", - "10593", - "19660", - "5649", - "24685", - "32747", - "8578", - "1600" + "12281", + "11954", + "13293", + "24865", + "13623", + "6330", + "29117", + "14344", + "15678", + "75", + "9895" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 32, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 21, + "quantity": 4, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e45", "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 27, + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "id": "7893104f2d141d423e3568106e4e507fcb4f3e377586612bb270783b414d7e3f", + "index": 27269, + "amount": { + "quantity": 106, + "unit": "lovelace" + }, + "derivation_path": [ + "23323", + "8066", + "5745", + "2141", + "18951", + "26741", + "31540", + "13185", + "18299", + "8672", + "26485", + "4183", + "29110", + "21391", + "123", + "1598", + "8135", + "9553", + "14665", + "18230", + "31903", + "22608", + "8630", + "10640", + "11875", + "14481", + "27836", + "28472", + "14516", + "21188", + "4978" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 16, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 34, + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "421f78612657473265535c6c9da3351f4d5550081f83672023555bd56ca71244", + "index": 0 + }, + { + "address": "", + "id": "ca6b73f93c3c164b17461c1e673d464b36507c6c3f6385156d0b124e0a2a540c", + "index": 1277, + "amount": { + "quantity": 23, + "unit": "lovelace" + }, + "derivation_path": [ + "21041", + "28661", + "4927", + "3698", + "5140", + "16570", + "32603", + "11519", + "25301", + "27625", + "3427", + "30172", + "8537", + "17201", + "5092", + "32750", + "22423", + "9745", + "30237", + "9850", + "20060", + "12612", + "7660", + "4138", + "12309", + "12842", + "809", + "27416", + "23218", + "13615" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 31, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] + }, + { + "id": "5a53780758323f036702389b045939037c216b4d0b5406960b45af3620188a46", + "index": 1 + }, + { + "address": "", + "id": "6c4330534a75c300067752d95b2a51a240099e2c093747783a58553b7f01cd1b", + "index": 25466, + "amount": { + "quantity": 35, + "unit": "lovelace" + }, + "derivation_path": [ + "19437", + "22641", + "16159", + "26491", + "7476", + "467", + "8454", + "13315", + "16331", + "20740", + "19457", + "25387", + "23376", + "2817", + "13186" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "id": "5a79523be9e771480e4c16273f14f80a3c6efc625f5a651a647d74608a6d3d1b", + "index": 12813, + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "derivation_path": [ + "6212", + "4698", + "28507", + "23348", + "29989", + "26456", + "12099", + "23956", + "18475", + "8632", + "31596", + "27747", + "20914", + "29500", + "2977", + "14944", + "25862", + "19904", + "12237", + "24436", + "10455", + "16136", + "13394" + ], + "assets": [] + }, + { + "id": "382a0b68353042a5d0416e1d728245d66b5bfc5d1bf7630d0e2f6d5e4a00374f", + "index": 1 } ], "collateral_outputs": [ { "address": "", "amount": { - "quantity": 185, + "quantity": 229, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 84, "unit": "lovelace" }, - "derivation_path": [ - "10315", - "21140", - "11005", - "14021", - "167", - "11010", - "21152", - "24150", - "32272", - "816", - "25608", - "14268", - "26147", - "34", - "17270", - "12554", - "6379", - "2134", - "7087", - "6063", - "28885", - "10774", - "25051", - "28380", - "9741", - "6294", - "350", - "14687", - "1676", - "6439" - ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 14, + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 30, + "quantity": 15, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 226, + "unit": "lovelace" + }, + "assets": [ { "asset_name": "546f6b656e45", - "quantity": 16, + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "derivation_path": [ + "13630", + "26635", + "8016", + "23336", + "26967", + "28786", + "11805", + "2478", + "13671", + "16867", + "9134", + "15747", + "21580", + "29271", + "28796", + "3460", + "22349", + "8649", + "16696", + "30592", + "24079", + "14645" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 226, + "unit": "lovelace" + }, + "derivation_path": [ + "11487", + "11998", + "1327", + "9059", + "22121", + "2221", + "3229", + "9518", + "20368", + "31777", + "6065", + "16157", + "27182", + "3790", + "21137", + "19914", + "16376", + "7237", + "21714", + "17408", + "3850", + "3046", + "5661", + "1713", + "2461" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 164, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 14, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e43", - "quantity": 6, + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 31, + "quantity": 24, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 18, + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 7, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 28, + "quantity": 21, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 31, + "quantity": 13, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "quantity": 3, "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - } - ], - "outputs": [ + }, { "address": "", "amount": { - "quantity": 120, + "quantity": 152, "unit": "lovelace" }, - "assets": [] - } - ], - "id": "5f776959ad0b112d155333670b62016f3c35614f0436672a2ffe53190f351210", - "deposits_taken": [ - { - "quantity": 136, - "unit": "lovelace" - } - ], - "burn": { - "tokens": [ - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "312bb30ca69d9089fc9b18a4aeb1062e52734ddd6d1689a9389d2aa7", - "assets": [ - { - "fingerprint": "asset1xwf8wd59fkypyyvmxnahzjsc08mxawn0d78x33", - "asset_name": "546f6b656e44", - "quantity": 140 - }, - { - "fingerprint": "asset1wnzz9qejhchlqnn77lluasqev4qvj878y0ynm2", - "asset_name": "546f6b656e49", - "quantity": 8806 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1rtp7j3tphvmwn3e4ml5ycjpxxglm0v8dfedwplsjg37dsw4pfj2", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "1ac3e94561bb36e9c735dfe84c4826323fb7b0ed4e5ae0fe12447cd8", - "assets": [ - { - "fingerprint": "asset1upng7de28azkylj4a2al9zrafeztsugzcxx44d", - "asset_name": "546f6b656e57", - "quantity": 8635 - }, - { - "fingerprint": "asset1xlf05vl5y0jkd4grjduxhtlxk7kk4srdhq42sg", - "asset_name": "546f6b656e4d", - "quantity": 903 - }, - { - "fingerprint": "asset1fvxvn4zcqyh69evtgeyau66pt07g0j6gtl4df7", - "asset_name": "546f6b656e4c", - "quantity": 65 - }, - { - "fingerprint": "asset10g0lqs373vk55cezdtdqe5c3jvgzysaldzw724", - "asset_name": "546f6b656e4b", - "quantity": 2551 - } - ] + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 156, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "0553d26d57115d92f05e1a1d2b1c9be995da58cb8fef67474e739901", - "assets": [ - { - "fingerprint": "asset1c8s8tt0xw3mx33kjlv5tmexaj295w6rwk9y2sq", - "asset_name": "546f6b656e41", - "quantity": 6038 - }, - { - "fingerprint": "asset1fgaufw69c4pks35g92xf4ttf0hddy5uq6zecuf", - "asset_name": "546f6b656e55", - "quantity": 2114 - }, - { - "fingerprint": "asset198elx3v2z4vwuf7mawvr33rwnwas9apvm9k39d", - "asset_name": "546f6b656e4e", - "quantity": 6145 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1l3wt4ega6s59tvdrjzr9xf3sre5pr969cka63g3m74x5uuqnf3s", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "fc5cbae51dd42855b1a390865326301e68119745c5bba8a23bf54d4e", - "assets": [ - { - "fingerprint": "asset13fay8y5yvsj66uv288ad2vgxhchjrn8mn2scwn", - "asset_name": "546f6b656e53", - "quantity": 2027 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1lp2k6ldf8r6af3p7aw04v7vzn4pmw4ds0xhc9vmdvchd5v32mxy", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "f8556d7da938f5d4c43eeb9f5679829d43b755b079af82b36d662eda", - "assets": [ - { - "fingerprint": "asset108ed5r5cvj8659aa3qszm6e4ueda4xuv573f3f", - "asset_name": "546f6b656e50", - "quantity": 2980 - }, - { - "fingerprint": "asset1d26l2xhmuc6tv3n8p5dwqxfll50u8cy7jfm2p4", - "asset_name": "546f6b656e57", - "quantity": 1370 - }, - { - "fingerprint": "asset1murk2n2a6kjypky68suqt7g2nctc3uxq8rt3jm", - "asset_name": "546f6b656e44", - "quantity": 4694 - }, - { - "fingerprint": "asset1rl947zyjm27dazcva4ffhpvharkku6v76q34e4", - "asset_name": "546f6b656e54", - "quantity": 1313 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh182km7wy3e8vzxxlas22c2ud3cdfga8rvd4qky7j2687yqj83hha", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "3aadbf3891c9d8231bfd82958571b1c3528e9c6c6d41627a4ad1fc40", - "assets": [ - { - "fingerprint": "asset1w9nx9xvfnly6rmf9fynzvtc9jvt5qsgqd66j7v", - "asset_name": "546f6b656e55", - "quantity": 7325 - }, - { - "fingerprint": "asset1jadavj8e7fxrazch8dtprlp6dtvpquajyc3kzw", - "asset_name": "546f6b656e42", - "quantity": 9199 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "48a64fc653bc8db1ec0591b860686191157958808b1c8361b29f2c5a", - "assets": [ - { - "fingerprint": "asset18etlfdnfs5fsevyz78nteu72w3qqr6z2urzfrj", - "asset_name": "546f6b656e57", - "quantity": 6265 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1qxz6rsjj7zd0xr2ctkpgcdhwaulnwmjyszxqg43u6phhj48jgkp", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "0185a1c252f09af30d585d828c36eeef3f376e44808c04563cd06f79", - "assets": [ - { - "fingerprint": "asset1j52hltpk4w8a05rye6q98fn88cmmxpnnwpq2xs", - "asset_name": "546f6b656e55", - "quantity": 7583 - }, - { - "fingerprint": "asset1dg7jtnhpdhhnr4hj737ecxm7p37twce2z4l73g", - "asset_name": "546f6b656e44", - "quantity": 6317 - }, - { - "fingerprint": "asset1633mx8z997yakcs5z6agzkyc8eqaf2vgl8nad8", - "asset_name": "546f6b656e4b", - "quantity": 6523 - }, - { - "fingerprint": "asset170aqg4yy8xqkzjpxnvyy8m4l70xdnkz6x73q2e", - "asset_name": "546f6b656e4f", - "quantity": 6262 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh196l4ht8asq9sesnpj26wl88t52uk2mwz3082wspt56sfvydfjnm", - "script_type": "native" + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "2ebf5bacfd800b0cc26192b4ef9ceba2b9656dc28bcea7402ba6a096", - "assets": [ - { - "fingerprint": "asset1emqsyp8mf83pd02856xxdjy90egzj2f5rw7jq8", - "asset_name": "546f6b656e42", - "quantity": 7277 - }, - { - "fingerprint": "asset1m9n6v9r7v88hg49s2alfvpw9940ep2dzl0qwwx", - "asset_name": "546f6b656e44", - "quantity": 17 - }, - { - "fingerprint": "asset1v05juld7j5ch2u5yu07lu75gx9mwl3hfpjrvus", - "asset_name": "546f6b656e45", - "quantity": 8562 - }, - { - "fingerprint": "asset1je83acsx8f6rtkg5x3auup0dqzq87nc8638svl", - "asset_name": "546f6b656e50", - "quantity": 1076 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "e1eec2e5d92a865679d47b7f71980713a4a1671fe83455e860669256", - "assets": [ - { - "fingerprint": "asset1wj80gn09cgkhkzw6c949upcqrq2yaz2gl4m20v", - "asset_name": "546f6b656e43", - "quantity": 7889 - }, - { - "fingerprint": "asset19tan7yancw6gzm0z02t0q9qshechsqpf8dt6gf", - "asset_name": "546f6b656e47", - "quantity": 3238 - }, - { - "fingerprint": "asset1h2v6t060j7yy79ckk8g9dtfn858pwmvpsf85xf", - "asset_name": "546f6b656e55", - "quantity": 3352 - }, - { - "fingerprint": "asset10x68yannakqaahs35qsayl3v96rejh7rv8h325", - "asset_name": "546f6b656e45", - "quantity": 1569 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh14kh5ellk3kd07tuq3c9wljexch6x5lyttp0a6rlt85wrkj393hk", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, - "policy_id": "adaf4cfff68d9aff2f808e0aefcb26c5f46a7c8b585fdd0feb3d1c3b", - "assets": [ - { - "fingerprint": "asset1plhyvesa52cmjt4rk2cv0luvl4spsl36ed7h6m", - "asset_name": "546f6b656e4a", - "quantity": 5443 - }, - { - "fingerprint": "asset19n52lcd7300y0q4luw0zl24zh2fn0dwstmahq6", - "asset_name": "546f6b656e59", - "quantity": 5016 - }, - { - "fingerprint": "asset19ssckxxktlml593tvpupmdu85klftm9auey4z0", - "asset_name": "546f6b656e4f", - "quantity": 7788 - } - ] + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 170, + "unit": "lovelace" }, - { - "policy_script": { - "script": "policy_vkh12yxe5ualwwvksvdlxs48esvg3pq2c0tcettnjlt37fe0wq536ue", - "script_type": "native" - }, - "policy_id": "510d9a73bf73996831bf342a7cc1888840ac3d78cad7397d71f272f7", - "assets": [ - { - "fingerprint": "asset1ct9ce3ln4ecc6xadkegxx9l9qnuxqva48wkk86", - "asset_name": "546f6b656e55", - "quantity": 7483 - }, - { - "fingerprint": "asset1hfe72msct7kyv6gul82ksclmctsn54qdl7838d", - "asset_name": "546f6b656e53", - "quantity": 3647 - }, - { - "fingerprint": "asset1nzh9yfjh75qnr0jyj5w0nvrt60uxx6pakar8hy", - "asset_name": "546f6b656e5a", - "quantity": 7492 - } - ] + "derivation_path": [ + "8459", + "10203" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 168, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh15fc89dmgyhj2ehw4lfews94urgxlcu2n4f4nhhslquvygggxuwm", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "a27072b76825e4acddd5fa72e816bc1a0dfc7153aa6b3bde1f071844", - "assets": [ - { - "fingerprint": "asset1n27v56fl74aafvaqasj2j7ul4fw007sy5xnalg", - "asset_name": "546f6b656e48", - "quantity": 6083 - }, - { - "fingerprint": "asset105rtv3k7xuu07qvyukdqzhfv965fe04r059s6c", - "asset_name": "546f6b656e4e", - "quantity": 8853 - } - ] + "derivation_path": [ + "20989", + "17128", + "29966", + "30186", + "7217", + "10111", + "32247", + "17276", + "10362", + "16945", + "12738", + "1303", + "10913", + "29760", + "21988", + "7031", + "1083", + "22934", + "20120" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 153, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1uf7shwp4967yng4luwftra4hutqadxcxavpljvd65cdh5mmj239", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "derivation_path": [ + "26965", + "16291", + "32464", + "21375", + "26221", + "8535", + "6970", + "32389", + "29505", + "9973", + "9301", + "31844" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "e27d0bb8352ebc49a2bfe392b1f6b7e2c1d69b06eb03f931baa61b7a", - "assets": [ - { - "fingerprint": "asset1q6vhe2cylzdv7e72et946rykd82hcpudkcy6ns", - "asset_name": "546f6b656e43", - "quantity": 2424 - }, - { - "fingerprint": "asset180mtzp82dhvqv3rr9txlymrsq09em3aeyswu38", - "asset_name": "546f6b656e45", - "quantity": 8399 - }, - { - "fingerprint": "asset1537829vuaxeegw85mylt6eyk4wgv2eglgjpzdd", - "asset_name": "546f6b656e4b", - "quantity": 5448 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh18e7y4n0342rl4wg4r8hmtzny2md8yakhpwvyef3seylk7asp0n3", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "3e7c4acdf1aa87fab91519efb58a6456da7276d70b984ca630c93f6f", - "assets": [ - { - "fingerprint": "asset13l0y2kw2rcd9ya9jk3v5pspf8lkzqayvlh4huu", - "asset_name": "546f6b656e41", - "quantity": 1094 - }, - { - "fingerprint": "asset18mxx5v75at726nrfwp8erqx8t3sqkkpq03vkxt", - "asset_name": "546f6b656e48", - "quantity": 783 - }, - { - "fingerprint": "asset14gsflcutd6tvkrsxxezhgtlk8sdcwrfqvd0xq0", - "asset_name": "546f6b656e51", - "quantity": 5942 - }, - { - "fingerprint": "asset123y98effsgmyx9xrrsfgqdy558fyg8d9jxz9mf", - "asset_name": "546f6b656e4f", - "quantity": 5190 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1d3yajs5y629kngq4lggslyxz4e67rrayglf7rfqrad73qvwpv5n", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "6c49d94284d28b69a015fa110f90c2ae75e18fa447d3e1a403eb7d10", - "assets": [ - { - "fingerprint": "asset1j9e3vhcmn62dn9ga9dlxyl4k5zc9vmh4v846ta", - "asset_name": "546f6b656e42", - "quantity": 2157 - }, - { - "fingerprint": "asset1ywmj365yl5krgv3zgk7unfvsqmg9cvs8rudnx4", - "asset_name": "546f6b656e45", - "quantity": 4971 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "d52aca8009398400a9994989f504a445feb2ae9e14e5da48f2e63cf8", - "assets": [ - { - "fingerprint": "asset1q85k3988lm9xppr2k034x0l58yalnd5jh6v6kt", - "asset_name": "546f6b656e42", - "quantity": 5280 - }, - { - "fingerprint": "asset1fykusw0n0gtv0xs2fg9y8td9wzeacs5lupvu4d", - "asset_name": "546f6b656e41", - "quantity": 1485 - }, - { - "fingerprint": "asset1yz3xcgc3w3rq6yfwew749vvk2un2grg6m4x0zq", - "asset_name": "546f6b656e4f", - "quantity": 4772 - }, - { - "fingerprint": "asset1nwst5w5p08dnfx3v2n0qyevvrd4kna93lef2dp", - "asset_name": "546f6b656e57", - "quantity": 1029 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "62d757adccb099bd92e7273cc0b47a84b17ddd10ab20a2b1032868ac", - "assets": [ - { - "fingerprint": "asset1agye72jtvp5qc72alhm53wh9v8all6ssu2h3eh", - "asset_name": "546f6b656e42", - "quantity": 451 - }, - { - "fingerprint": "asset1y4e69jjlvrg2m5csr3t8gddn0ujnwsdfsgsa9f", - "asset_name": "546f6b656e48", - "quantity": 6634 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh12qlhjt8r3m9djl7990vy5sgnuct4z3yyey3d008ycmguwckqz80", - "script_type": "native" + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "503f792ce38ecad97fc52bd84a4113e617514484c922d7bce4c6d1c7", - "assets": [ - { - "fingerprint": "asset196lmcpuptcxfrry8z4p2n77zz53f7dfpfth7uf", - "asset_name": "546f6b656e45", - "quantity": 4120 - }, - { - "fingerprint": "asset1yl88k5rt5cmmh5kp5d8vmqxx0gnxsdt79w66fg", - "asset_name": "546f6b656e58", - "quantity": 3840 - }, - { - "fingerprint": "asset19d2puvsx43ugqr425hnr3gf5v44j7frh324ep0", - "asset_name": "546f6b656e44", - "quantity": 6421 - }, - { - "fingerprint": "asset1laszdqgdxnrv700ecc4qcfacyldfaag2j34afj", - "asset_name": "546f6b656e56", - "quantity": 8376 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1faxpm9z5j7xd44e4xrxct5ynh4t9guj0csufgclskrjngln8qrc", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "4f4c1d9454978cdad73530cd85d093bd5654724fc4389463f0b0e534", - "assets": [ - { - "fingerprint": "asset18tr8pm9qtshkkc4pgu69s3ludpqwddqn9c253k", - "asset_name": "546f6b656e51", - "quantity": 6398 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "7948453dc32223cf21e51def97c4e3440fdc38044e2d690cb7bd8e05", - "assets": [ - { - "fingerprint": "asset1svvvn5lsu5cjm9e4nzu8uan6tzq3sgp8pmpy7h", - "asset_name": "546f6b656e47", - "quantity": 4522 - }, - { - "fingerprint": "asset1g6grpj4mx6w67cpjjcrh6jya6n9rfqsm8n5snm", - "asset_name": "546f6b656e55", - "quantity": 5904 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh182rmuqfp6c72337chpjhmlen65rurdtn89r2gfy5svtkzh2nfyl", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "3a87be0121d63ca8c7d8b8657dff33d507c1b5733946a42494831761", - "assets": [ - { - "fingerprint": "asset1wyepcwvsv6fzu0r4unxjszhnpxq4u8pwahr8u6", - "asset_name": "546f6b656e48", - "quantity": 6891 - }, - { - "fingerprint": "asset1amkxq030p07v93laxp5tfutfssva8gm9facpn8", - "asset_name": "546f6b656e51", - "quantity": 1474 - }, - { - "fingerprint": "asset12w5cahuagj3hxrfagzuhfqvqp8x4rzgkffre6k", - "asset_name": "546f6b656e56", - "quantity": 6358 - }, - { - "fingerprint": "asset1hqmnzhgves8g9najxaudsy00def9yjc9jkaqs8", - "asset_name": "546f6b656e59", - "quantity": 4737 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh12m7cyegqudgy2ad6fa07js5ywk4v3al2my9unw6pdynnvmmtjhk", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "56fd826500e3504575ba4f5fe9428475aac8f7ead90bc9bb41692736", - "assets": [ - { - "fingerprint": "asset1aadmws0swtul6lw6fq9d9p774j3jt6q9uqm5dn", - "asset_name": "546f6b656e51", - "quantity": 3307 - }, - { - "fingerprint": "asset136wsurkmzrufp5wa4xvsmdt0mmzywx6gjuvgz0", - "asset_name": "546f6b656e52", - "quantity": 8286 - }, - { - "fingerprint": "asset13wedadedcq493qdkral9a4pellklx73swr5qyk", - "asset_name": "546f6b656e51", - "quantity": 4080 - } - ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vk1zgw9j36svawnnecj99hnskgggykxspfpc5gpye6vdhn9gjf22g2sa64t72" - }, - "fee": { - "quantity": 149, - "unit": "lovelace" - }, - "certificates": [], - "deposits_returned": [ - { - "quantity": 193, - "unit": "lovelace" - }, - { - "quantity": 198, - "unit": "lovelace" - }, - { - "quantity": 229, - "unit": "lovelace" - }, - { - "quantity": 212, - "unit": "lovelace" - }, - { - "quantity": 184, - "unit": "lovelace" - }, - { - "quantity": 4, - "unit": "lovelace" - }, - { - "quantity": 155, - "unit": "lovelace" + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quantity": 110, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 226, + "unit": "lovelace" + }, + "assets": [] }, { - "quantity": 165, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 215, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "quantity": 18, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 6, + "unit": "lovelace" + }, + "derivation_path": [ + "31416", + "10274", + "28575", + "6716", + "29996", + "32159", + "24683", + "5542", + "25312", + "29067", + "1601", + "11520", + "15489", + "29107", + "18408", + "172", + "6348", + "21837", + "13660", + "695", + "12344", + "19219", + "10238", + "105", + "25010", + "17609", + "12495", + "10575", + "14491" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "quantity": 69, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "quantity": 94, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 156, + "unit": "lovelace" + }, + "assets": [] }, { - "quantity": 232, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 65, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quantity": 140, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 98, + "unit": "lovelace" + }, + "assets": [] }, { - "quantity": 200, - "unit": "lovelace" + "address": "", + "amount": { + "quantity": 156, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, - { - "quantity": 12, - "unit": "lovelace" - } - ], - "metadata": { - "22": { - "bytes": "5c6a615f9a0f4e" - } - }, - "collateral": [ { "address": "", - "id": "493111376e453b7608352e253112283b647b2e135d6d0d162748471633a70e24", - "index": 24547, "amount": { - "quantity": 162, + "quantity": 61, "unit": "lovelace" }, - "derivation_path": [ - "14602", - "26063", - "7195", - "26317", - "24042" - ], "assets": [] }, - { - "id": "431e6a0bf8040be62d70ee6961116a693d20570e55790c533f075c1a2a442d2e", - "index": 1 - }, { "address": "", - "id": "2a08507d3d5f793d1a53250b11613801436cfc5dffbd46e2ec47634e77137a7c", - "index": 13910, "amount": { - "quantity": 122, + "quantity": 206, "unit": "lovelace" }, "derivation_path": [ - "2761", - "29605", - "21788", - "7244", - "21643", - "1052", - "26275", - "11452", - "24868", - "3906", - "13404", - "27135", - "26699", - "14475", - "5698", - "29813", - "32369", - "21095", - "11484" + "28689", + "9560", + "32439", + "27766", + "15265", + "8904", + "27230", + "20069", + "27156", + "8959", + "14632", + "14770", + "29984", + "11353", + "30148" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, - { - "id": "78185b582e21fd222259437a49430a416c0b326858cfb30f1b4a7a0c737c085d", - "index": 0 - }, - { - "id": "743fa94a647a93280d4f48044157244652bac2dd020be566c65ba84a4873017e", - "index": 1 - }, { "address": "", - "id": "5b8c23552604236b56385e5eb8e2386546954f7f67654874e497775e5e017e56", - "index": 29151, "amount": { - "quantity": 105, + "quantity": 1, "unit": "lovelace" }, "derivation_path": [ - "25513", - "2689", - "715", - "17654", - "10178", - "8343", - "8407", - "28150", - "30991", - "14052", - "4951", - "16181", - "28129", - "9188", - "18469", - "5985", - "24551", - "19683", - "6340", - "22762" + "20462", + "5031", + "27380", + "18593", + "5329", + "16434", + "3315", + "22125", + "27055", + "6318", + "30533", + "29583", + "10728", + "2548", + "27883", + "15810", + "22519", + "21970", + "3090", + "12471", + "17360", + "6985", + "18464" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 49, + "asset_name": "546f6b656e43", + "quantity": 23, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 21, + "quantity": 22, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 54, + "asset_name": "546f6b656e41", + "quantity": 40, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 26, + "quantity": 12, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 10, + "quantity": 21, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 15, + "quantity": 25, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 10, + "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 2, + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "9a744d4b331be35a1e2f0e09033a655d0e5b773e6d4ff729076d2764665d820b", - "index": 1 - }, { "address": "", - "id": "ac221418d025065a1607532c3f600d220c12457a65ebe9674c654566554d5109", - "index": 18032, "amount": { - "quantity": 94, + "quantity": 222, "unit": "lovelace" }, - "derivation_path": [ - "13326", - "28812", - "17448", - "7620", - "5968", - "14734" - ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 3, + "quantity": 30, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] } ], - "mint": { + "script_validity": "valid", + "id": "755768010a7c7c6ed28641d97e0f772c3f7a404310353b227530a81572524746", + "deposits_taken": [ + { + "quantity": 20, + "unit": "lovelace" + }, + { + "quantity": 39, + "unit": "lovelace" + }, + { + "quantity": 25, + "unit": "lovelace" + }, + { + "quantity": 36, + "unit": "lovelace" + }, + { + "quantity": 85, + "unit": "lovelace" + }, + { + "quantity": 122, + "unit": "lovelace" + }, + { + "quantity": 249, + "unit": "lovelace" + }, + { + "quantity": 30, + "unit": "lovelace" + }, + { + "quantity": 222, + "unit": "lovelace" + }, + { + "quantity": 225, + "unit": "lovelace" + }, + { + "quantity": 72, + "unit": "lovelace" + }, + { + "quantity": 110, + "unit": "lovelace" + }, + { + "quantity": 105, + "unit": "lovelace" + } + ], + "burn": { "tokens": [ { "policy_script": { "script": { "all": [ - "policy_vkh1wmtj7r9rqzhaxwrxd8gmkq9378s8sarp6pgqfscqycqs7npzkur", + "policy_vkh1g3s5gfy36zjnk00fvywym3wvawtl30jwvrv373ufdqn0klxaawx", { "active_from": 100 } @@ -1425,102 +1483,36 @@ }, "script_type": "native" }, - "policy_id": "76d72f0ca300afd3386669d1bb00b1f1e0787461d05004c30026010f", + "policy_id": "4461442491d0a53b3de9611c4dc5cceb97f8be4e60d91f47896826fb", "assets": [ { - "fingerprint": "asset15rl7v6u5rpddz4jh55let50y9kqwmjh96gfskg", - "asset_name": "546f6b656e4f", - "quantity": 9729 - }, - { - "fingerprint": "asset1syvuf5syqme0hq9l3dz85hlme6t36t49amqnpe", - "asset_name": "546f6b656e44", - "quantity": 226 - }, - { - "fingerprint": "asset1srqtl3jq33m4qr5tuh6qz93dqq7pz9f94mlzcx", + "fingerprint": "asset1pm3dn3ndg52fev60ksfpt2k70dd7pr84930nt5", "asset_name": "546f6b656e49", - "quantity": 1586 - }, - { - "fingerprint": "asset12exj5sjh2v8ps9vt36aadqu0yfgtu0xu2mwrnz", - "asset_name": "546f6b656e4b", - "quantity": 4814 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1jstktcv423k87z8uc8y59pzt4ccjyfyj4u0a35ytrmh0ktks6eq", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "941765e195546c7f08fcc1c942844bae31222492af1fd8d08b1eeefb", - "assets": [ - { - "fingerprint": "asset1sd4kpnm77ghl8w26mzjxdv60rl94agzuglralr", - "asset_name": "546f6b656e42", - "quantity": 2568 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh16qedw2vs8d8x3eshmh5uxl6cpfy7asqptj5zdyz2xamfx3td5qa", - "script_type": "native" - }, - "policy_id": "d032d729903b4e68e617dde9c37f580a49eec0015ca826904a377693", - "assets": [ - { - "fingerprint": "asset16rf9sah6vd5c3uttdu85v3c96qy2t2qjy5m93d", - "asset_name": "546f6b656e50", - "quantity": 7275 + "quantity": 1989 } ] }, { "policy_script": { - "script": "policy_vkh1qaztl3tejqlef4wm4z37vs09ks3uul2kcl4g6l5qeek05p42s3y", - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "0744bfc579903f94d5dba8a3e641e5b423ce7d56c7ea8d7e80ce6cfa", + "policy_id": "128b0a5feb2116dc5c7d2a6333609ef0c5cd5fb2e035e7467deb7ca1", "assets": [ { - "fingerprint": "asset1zwkttc4pcejg6pvr3080k5ha69xkyekguag34w", - "asset_name": "546f6b656e49", - "quantity": 2076 + "fingerprint": "asset1jkahyytur8vvcda3ra0gswwmz6aw2vjda0fpff", + "asset_name": "546f6b656e4a", + "quantity": 1802 }, { - "fingerprint": "asset15kg0jhcwu4a0gxsjl2l24suzh2jp3x3vzhhuxy", - "asset_name": "546f6b656e4e", - "quantity": 9003 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1ppthdljr29lyjkkzw6e2rv2hf3ze3pv9q2rp0y9q48p2szzwlmm", - { - "active_from": 100 - } - ] + "fingerprint": "asset1jh0kxxsl66c06hrpupz22srvkl0w3wn675myf2", + "asset_name": "546f6b656e5a", + "quantity": 6607 }, - "script_type": "native" - }, - "policy_id": "085776fe43517e495ac276b2a1b1574c4598858502861790a0a9c2a8", - "assets": [ { - "fingerprint": "asset16vu24d3gwz6g3zfyv4zgvltg39vpzrfvhexr6j", - "asset_name": "546f6b656e49", - "quantity": 2004 + "fingerprint": "asset1dyvk3ml6gl0acrp37w49t53wj3za47jaew0jr2", + "asset_name": "546f6b656e4b", + "quantity": 785 } ] }, @@ -1528,438 +1520,635 @@ "policy_script": { "script": { "all": [ - "policy_vkh1cm844xu4k7e7ddp9lqvw9kdcq75qe98j0gd5k7v73mu5j4l3a00", + "policy_vkh169udl7kwa4txzg24mkd3han0pjw0axx2q3ndc0t82mzfjw7w2a5", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "c6cf5a9b95b7b3e6b425f818e2d9b807a80c94f27a1b4b799e8ef949", + "policy_id": "d178dffaceed56612155dd9b1bf66f0c9cfe98ca0466dc3d6756c499", "assets": [ { - "fingerprint": "asset1mvdrdrqg9thcvtczsyknrpp8x9twzslegfst92", - "asset_name": "546f6b656e42", - "quantity": 3880 + "fingerprint": "asset1pzgpmualhx5yut33randfjqn3hcswjwv2m6dug", + "asset_name": "546f6b656e54", + "quantity": 6074 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "8c990699842ae1bef9a70b7aa057e35ffd34e815cecdc523074ce340", + "policy_id": "82fcab60d702173c8545d097a70f1e178896b1918bd03f36ab1da3dd", "assets": [ { - "fingerprint": "asset1ypvnjs2xh6xjcuspc9vh6frusxwru9k0ehkffj", - "asset_name": "546f6b656e4d", - "quantity": 9368 - }, - { - "fingerprint": "asset1epcppwsxwlsesdlmpfjdkpf059ymh7hxfttyvd", - "asset_name": "546f6b656e49", - "quantity": 8391 + "fingerprint": "asset1cf8uq4kys8phpnhqdmq7hmqwd76qfge73gcc5g", + "asset_name": "546f6b656e46", + "quantity": 7245 }, { - "fingerprint": "asset168kpc0hmqayrk9uwf46wnzzyp7fml5ft7vku5s", - "asset_name": "546f6b656e52", - "quantity": 8869 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1q4y0v6jn7wmxrve2qtwxh3g4ljwvzg4yq9tnekg0v0gy29zcwas", - { - "active_from": 100 - } - ] + "fingerprint": "asset1nh0q2m3tdykmryz8g6paapm3xmejhncreqhh90", + "asset_name": "546f6b656e43", + "quantity": 488 }, - "script_type": "native" - }, - "policy_id": "0548f66a53f3b661b32a02dc6bc515fc9cc122a401573cd90f63d045", - "assets": [ { - "fingerprint": "asset16gel4vu866etdjw07wkgn98grg80mqe9k8t7ss", - "asset_name": "546f6b656e55", - "quantity": 8291 + "fingerprint": "asset1erhukcrtvg79vm7tqak3au6fcdv5wrhnhcp7t9", + "asset_name": "546f6b656e5a", + "quantity": 8271 }, { - "fingerprint": "asset1rsxfeeeddl2tgkw9ynms0cjj3q5zndqx7cv4j7", + "fingerprint": "asset1m2cfzpqvlxrct9tgeclvpzlxwxlm9x6sp7lxe5", "asset_name": "546f6b656e58", - "quantity": 2023 + "quantity": 9632 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh15rjd7q0rawyjfhmskx68pxylz7cfke2lhrkhzjswlxgtkvde92p", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, + "script": "policy_vkh1x8kt4vudg5mt7zajgmnxccrfvm8gsww2tws43svsq2xs52ee92y", "script_type": "native" }, - "policy_id": "a0e4df01e3eb8924df70b1b470989f17b09b655fb8ed714a0ef990bb", + "policy_id": "31ecbab38d4536bf0bb246e66c606966ce8839ca5ba158c190028d0a", "assets": [ { - "fingerprint": "asset13jdws0g6kvfcqn4c8f8uuwrc8lm3fq5y9q4d7s", - "asset_name": "546f6b656e4c", - "quantity": 5591 - }, - { - "fingerprint": "asset1n7kdmaf3p3ahjkx6959checw9r6arthdzwfu3x", + "fingerprint": "asset18lw7m2q5s0wd72kl9vt2d7ngkkdqgeq84zfgj5", "asset_name": "546f6b656e51", - "quantity": 9222 - }, - { - "fingerprint": "asset1jtyxgv4u8yx54lf38gjka4qcr93sqza2xqwcfr", - "asset_name": "546f6b656e4c", - "quantity": 4340 + "quantity": 7712 } ] + } + ], + "wallet_policy_key_index": "0H" + }, + "fee": { + "quantity": 253, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "deregister_pool", + "pool_id": "pool1u0qhqxgya6la7h42rvk0sxj0xndvhzs4f5xdgme0s6gz27xhr8t", + "retirement_epoch": 14141 + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1qehgvgyjjwnpya3wpcvacgejan8ep34rqmztl6zsz7c0wlstu68q2r3qwr", + "ed25519_pk14rvtgpvmc9pkuhy48sphtmny4mz07hnh6c5hfg2s5028rz4wm56qzvkqhf", + "ed25519_pk1zh8tevdy85jjtyuz6z0tslsd5pygtpx3l6cjf308umsu6ekltngq4mf2ed" + ], + "pool_pledge": { + "quantity": 244, + "unit": "lovelace" }, - { - "policy_script": { - "script": "policy_vkh12y0ph8s82ml0l6e3cczs9yaj5fvcfd3hlrt2a6z7tx5wwddm9hr", - "script_type": "native" - }, - "policy_id": "511e1b9e0756feffeb31c6050293b2a25984b637f8d6aee85e59a8e7", - "assets": [ - { - "fingerprint": "asset137z7mr9amptc7n6hus7tydrfcgw2twcdrcdja8", - "asset_name": "546f6b656e4a", - "quantity": 3760 - } - ] + "pool_cost": { + "quantity": 35, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "8997d7cfc72261cf5e39fe8cf1467a5f6fb084271a98ab99f8fff3aa", - "assets": [ - { - "fingerprint": "asset12t46qhkpa2x7vl99wjlzc330l5mzee0fxe09v3", - "asset_name": "546f6b656e4f", - "quantity": 1599 - }, - { - "fingerprint": "asset1hu524hd3hnuayuyvefw9axe6p5r4vdfuc227zy", - "asset_name": "546f6b656e54", - "quantity": 5225 - } - ] + "pool_id": "pool1setatc8ltqtwgnnksne37gt6xkrhyltrdzc8a9k2ghzh68qfzmh", + "pool_margin": { + "quantity": 84.19, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1e7flrhzgjnnr7l9ga8grp3zxrz8uzxld9w7s2e8eu28967geh7r", + "retirement_epoch": 17380 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool17ajqa5kkxyqyygeg3za2gpjpys7fqewtr3yeqmswq7vrjpuvzx8", + "retirement_epoch": 16892 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1gdp68zmftp9sqtzwnzw3zaaxx4e4rzquyezehd8xn2peqhjcyac", + "retirement_epoch": 24112 + }, + { + "certificate_type": "quit_pool_external", + "reward_account": "" + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "register_pool", + "pool_owners": [], + "pool_pledge": { + "quantity": 120, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "37ad8b6fe96c0539a877d206d24cc69b82aaf7b8371ce4f3c5425967", - "assets": [ - { - "fingerprint": "asset13fruj4g47a5q3xnm0fsug4rv4pclp2my365ac0", - "asset_name": "546f6b656e54", - "quantity": 4658 - } - ] + "pool_cost": { + "quantity": 61, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1du6etkwpt4j2s0wcg96dsqwwe6mgmhar9pa0tvyn0rprzaw5xys", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "6f3595d9c15d64a83dd84174d801ceceb68ddfa3287af5b09378c231", - "assets": [ - { - "fingerprint": "asset1es70xgxupqdschp2hjyptz23nqqu0jzy9w7zx9", - "asset_name": "546f6b656e5a", - "quantity": 7568 - }, - { - "fingerprint": "asset149x3clj5x4h7lffgchmjexyv997y6pghk9sm93", - "asset_name": "546f6b656e55", - "quantity": 9167 - }, - { - "fingerprint": "asset1t397vlt88n02339wdm2agp259vtuenszfwrgmc", - "asset_name": "546f6b656e56", - "quantity": 2133 - }, - { - "fingerprint": "asset1f2t4gfezy2sz6wumeus0vl40pry30vludw0vx9", - "asset_name": "546f6b656e43", - "quantity": 4809 - } - ] + "pool_id": "pool1gkerpfxh73g4ddhgwyzteyz2hdg3m0a4wng4p4q8kjrljk3n9vu", + "pool_margin": { + "quantity": 22.83, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1tq0v3z6889tqjm0ue8h5n80nrdl7q8gtmydr7qe26hq9378544ps7lmyyt", + "ed25519_pk1lclu6lyhqdnyqym2qth8af9um5ucatxwp5k0kraj5u57dj7n5vaqyp7ju4", + "ed25519_pk1jt66ga8l5wrxxcd05snp4wfsuug6tel2puprw76tnqrmsnmy6keqlh9c6a", + "ed25519_pk12czvg4za3jn268rmq3k74z6w62c0jrnj7stqj25efcqm8s62axkq0gwvv3" + ], + "pool_pledge": { + "quantity": 171, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "4c9ee6f9d006941a41bf0c06bf913c476877e46453da7d6ecce98401", - "assets": [ - { - "fingerprint": "asset12u4jddfns5prh7nl099xysaqlwe7ldl4u5xlys", - "asset_name": "546f6b656e4d", - "quantity": 1218 - }, - { - "fingerprint": "asset148yerh228kf9pwvyvger2dm6fgreltr5uq4m07", - "asset_name": "546f6b656e4b", - "quantity": 5294 - }, - { - "fingerprint": "asset1u63lj7g2d723puheztfwg7565q9ss9dhkx2nyc", - "asset_name": "546f6b656e5a", - "quantity": 1418 - }, - { - "fingerprint": "asset1m9tql9p2su4lv24sflay53f5fzq6q58w9ahrru", - "asset_name": "546f6b656e4f", - "quantity": 1760 - } - ] + "pool_cost": { + "quantity": 34, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1saylyay2rxr2q6vweh9g3npg428gye88tdc3ljae053qxg4l8dp", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "8749f2748a1986a0698ecdca88cc28aa8e8264e75b711fcbb97d2203", - "assets": [ - { - "fingerprint": "asset1cyzsnpfjqc3ye0umkr43csdkpr2ak6zrmt5asl", - "asset_name": "546f6b656e48", - "quantity": 1763 - }, - { - "fingerprint": "asset1r3es3lc2gtzh6quuqg6dx83u0d7xudt2pcu4vu", - "asset_name": "546f6b656e4e", - "quantity": 1858 - } - ] + "pool_id": "pool1sr0pf4ttvhkryw9dlj5294us4p7gj7rctpc0r30099kjux3fqdc", + "pool_margin": { + "quantity": 47.91, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1nnvpjcvumarlvrm4wm0jl6jxnmhhht40t00vmza4nf0dg50wn8wqyaj8tr", + "ed25519_pk1gtmc3yqhs2z6m3u98ff4qvyfy0k975tmevj5d8seyungl29lfqpq22ps59", + "ed25519_pk1vynuqlw8wsae7e28l7gh0k3g7z6kgu6kjnk04zuq4efk5996xz9qxv0jt6", + "ed25519_pk1mkwqlj72kgfn2p4vdk6t0gdtkcc38r388k0zr8av6a22gj6r4v6sndfn0e", + "ed25519_pk19qvcg6f3j2em8qmlk59edlc48jmtxhke9f4dmul8rvrl50r6k09qhm49pm", + "ed25519_pk1m34pevwv6ct702x6ttqdqgph30zv9aganjrfn5pnwxygvkjds2jqmkym62", + "ed25519_pk1pmxhqdpzg747qvgjeslggg6mk5czsvtm27fmdrr30tzaj7tlvxeqtj70qg", + "ed25519_pk1c3tspw32rjqtzwyvc64uxd5a5ryyqqnryes0c0kt4mnqrvzwl9fqwg07a9", + "ed25519_pk1jkqsss7y2u2ukjhttrvxz9er8scyvyvatpg32p4kvh4dlmjtwg4s6a4l3f", + "ed25519_pk13n5m85r82k0ssdfrhc96hjzf0r0syw6dvcpjzms3eczyy735lxss34cxcu", + "ed25519_pk1png9slfsumuceus5yvq8ypttp4waa0lxmp38crte9kq38vazlkhq7u5j53", + "ed25519_pk1vcpst5gugszyxv98hskz5ayj2xng070q46wp36fzw8fj7szxn20qytgmy4" + ], + "pool_pledge": { + "quantity": 144, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "d7d06cdbfb7e02833d050879b8c8ce98e2b0f487533220d1e55d6825", - "assets": [ - { - "fingerprint": "asset1v95fyh9q4g9h3ugkjdlkz8cadwnm9wls46nhzy", - "asset_name": "546f6b656e44", - "quantity": 5152 - }, - { - "fingerprint": "asset1nhzqhujlecyqu55pqrzfgxfvp96dc9845x3862", - "asset_name": "546f6b656e49", - "quantity": 3926 - } - ] + "pool_cost": { + "quantity": 169, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "1f778ad86327b153411ffb4b8dbaf1e00219e2f38aa5dddb03b81ece", - "assets": [ - { - "fingerprint": "asset1yzte3axfa3ttmmcav425n9vyzf367t2uw0ltj4", - "asset_name": "546f6b656e4b", - "quantity": 2945 - }, - { - "fingerprint": "asset1u92aqvurfh9909ke36gxdaa0dm8a045jgysn7g", - "asset_name": "546f6b656e47", - "quantity": 9521 - } - ] + "pool_id": "pool1plyfjn7ghh7wse7fnw3vrezawukgh3nsuffs8rctmteu73rkw6r", + "pool_margin": { + "quantity": 48.51, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1hjv8uzprerjxtxl88h0jzzm9gcunm0cjzt8eq4fdz2r7syxxgy9s9g34rz", + "ed25519_pk10x0hwnepw77khxa6lelgvfz0qw2udsdtn4w8p5qe4zhtr52gzydspafg29", + "ed25519_pk1dqrm9vzlgaul66w8u5mwy4yu298v2whu4jms7fkxwhz0a96qh5ms20equ9", + "ed25519_pk1622f4xw4gr5ep0g55saruj9ygcq4flplugjahnvcr3xnxvph9q7qf6gusn", + "ed25519_pk10vh8cecq40s5yr94nxc4qjcelqd4dn90s6jjwx7fng6jf3nkd24qzegjzq", + "ed25519_pk1dske90s00nctaangy24p5s4uj5n83utl0jh6ymzhkxss4vq8s7hsntem9w" + ], + "pool_pledge": { + "quantity": 166, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh126usmtwja48754nmj45x5zpsvu8we52r0pcjrckqalc55hpvx2j", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "56b90dadd2ed4fea567b95686a0830670eecd143787121e2c0eff14a", - "assets": [ - { - "fingerprint": "asset1fllu8240f3j2k2e6t9ljvzzyc93w3duyqdcdvx", - "asset_name": "546f6b656e46", - "quantity": 9230 - }, - { - "fingerprint": "asset1th8c7xzyj7fpe2kuk7k0ukkk8upcgdtqwzndyf", - "asset_name": "546f6b656e42", - "quantity": 6682 - }, - { - "fingerprint": "asset1mgp98kecfxwjlthxre05k0rd9tvsu773ehy6sk", - "asset_name": "546f6b656e48", - "quantity": 2161 - } - ] + "pool_cost": { + "quantity": 90, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "2a8378d3b56005d2d4f82869efec7499f3e2355e1fcd8c995cd8030a", - "assets": [ - { - "fingerprint": "asset15zduzgs66azafyyh6edlmnyklv0uk9nlcxdm3w", - "asset_name": "546f6b656e4d", - "quantity": 7423 - }, - { - "fingerprint": "asset19pjgxyr49dnnh9mkvr8ad940ds5sazphavch7t", - "asset_name": "546f6b656e5a", - "quantity": 5653 - } - ] + "pool_id": "pool1ywl7rexuexsah3phwdnl0xeu2y94r4ec2xkk2elw88jkvn3ynac", + "pool_margin": { + "quantity": 52.95, + "unit": "percent" + } + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1hamru65wv9y7h50f6qfppzjdx05ayn8l4wrk3m7gg27g54u5wxw", + "retirement_epoch": 1738 + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1fp9yg5jugtjgz7zmmgjhg4vu8qm7h3jp2ua38ect38pyt75nqp4q4s5af4", + "ed25519_pk1wuj9fjhahs8t8ec6x3r9pqrfznvn785nlgc2q94ky86lc6z538qqchmm4v", + "ed25519_pk17x3yjktgztlucaskx9fgj92wddxrz52zq7dh54lv0kwwfsevydysqhnp6m", + "ed25519_pk1u2kheljw8rd4lplahtg9cqfp9dqx8jhwrdxvsamxmq85uj2rfq2qn5scsm", + "ed25519_pk1ss0swj2va4dt93umgqcwksaug0tflj7y2pjrt5h6d7hgmeymfwuql0cu3h", + "ed25519_pk13srgtch2swu5al2w5crynzu3f2pcwhrdgc2d9k2vuvx93p7ssqgqh923qw", + "ed25519_pk109r0xtd3jujq7n5ry4wd9kg5234n872ekfy7fajvwwxqtlzj7auqrqa6uv", + "ed25519_pk1x6euy4p96jtna0kw6mrrs4s8nzpaucwgg00fdjj057dyrvtsrapq8ekna5", + "ed25519_pk158fesuvqhv8n43afkpkjd56y64gwnl35r4et3sxr6mrwmez7m37s2u6h4h", + "ed25519_pk1vjpk7de83077svk83vvudv9n2qa6uxxvepz30p97thvv6tthwqnsaa95f2", + "ed25519_pk17kk7p5a3a6ftlv267kmy86efwjx7gy4a7sdlqekg029djhjkdhnqtfv6c0", + "ed25519_pk1h7tsgnpcs95fzhprc3vw3r5ss4eev5t0rddhftam3sxl2jwuw07qqwch2s", + "ed25519_pk1xrw02ea4rzc2xpz8z8ja3jfxmmjs65qlgsus0t4wcdf08avsxdesdrgl3l", + "ed25519_pk1rqx8g65tpusvj5hwnd3lac79dmecw6uwk4mnu0dxu3ldstee5f5qvlvpks", + "ed25519_pk1vf8dewejq2qdye8xz9aqjmwzzg7qal56gz5yxhgmvpkv09zyc04sxwwsyu", + "ed25519_pk1njvmmrvaqs0x0h0aes70traaqnhr34gstexj6j9cf39zd49fmzas3h5ekf", + "ed25519_pk1wrlru7vggmzcpyqgqyvqa9azp5td5w0frkx8kdw575h5mar6csqquu9dca", + "ed25519_pk1edq562je4h4knltcrv97haf3qm67pgdxajlwkja8ckzeldc9uzys94nccc", + "ed25519_pk1r257cv7rjctwp7tkeawgzt8kyk0r9zes0flvfpsx8hxux9q7zzmqkajf5h", + "ed25519_pk1y98pe03zy27vezd3l6ge682lxuwse2qq0jyh7j0c3mgctqljh3eq3rpnmf", + "ed25519_pk1yragt8a75dqr8yzxuj7kfl9suv9pptskenu27qu6cec76cq04cjsq8z08j", + "ed25519_pk197gucpj8fkzh2jgwpjlqv3rjzr2evcp2lvjr00v8zcn4au7cg5fs30ntjd", + "ed25519_pk1349em7m738ga84qurzlwf8fc3g8renfn4yfaa37f5eyujk47vfgscvr4td" + ], + "pool_pledge": { + "quantity": 16, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "4770aec1252a2f4a7a2a2740247793686d88a6817784d096ed6fdba6", - "assets": [ - { - "fingerprint": "asset1xmzvjkwdelya7h4sqqgrlue8f8lzdy3w2fdw76", - "asset_name": "546f6b656e49", - "quantity": 8763 - }, - { - "fingerprint": "asset1vfzs4jnauy4h5lz6am5aewav204n2ldhnxm0mr", - "asset_name": "546f6b656e4b", - "quantity": 5193 - }, - { - "fingerprint": "asset18qrjpp8yp4edl7vwncxzvq754mpwq7k0m88f8a", - "asset_name": "546f6b656e45", - "quantity": 7085 - }, + "pool_cost": { + "quantity": 247, + "unit": "lovelace" + }, + "pool_id": "pool1wp4ksf5uy4600xcy40gp7dep85vsntd9kd7rsxgshhsvc7cyjj5", + "pool_margin": { + "quantity": 21.54, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1r82lmrhu7ylc0zt69q5je4qc6k5xhprc4x2uztmw02z37krf9pc", + "retirement_epoch": 16875 + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "3489", + "9238", + "4977", + "20251", + "28481" + ] + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1xed5ezjmxvalp6u0q6j6pad5jvhs2e6jddparlh7tkssjxakjn8qw8p2wv", + "ed25519_pk1cwl78yfx0v98p95wlxjlg0p3ptnrvnze74gq5n27lrk9jw6894lsfj32kp", + "ed25519_pk1u2gu8ycttk5yxa9reqnr25sq20jn95v6xzfwmh9vnvuyn0thmcdqjkhlk5", + "ed25519_pk15sdfelcgwsqz67d0p7mkkgncacwyjhrwpxtze2k3n8wxlsm6mw2sahrphq", + "ed25519_pk1q2xdkm559keepf7zyw5lnsrwtxfeg3tfqvuu0fmrh6853wyshyasu8lnur", + "ed25519_pk1lengdnn2v7vch5dapt8xjja29jc5udfg23lg043eqcvmswh2yj7q04ezc7", + "ed25519_pk19k2793azal8ps9qputd2aya5fah85z6xz3c62pq4tddkn2h3wresws904k", + "ed25519_pk1sv57fwd6tneqglv00men9ns2pm3065k3u84ct2hv99g82ew4cets7dwwpm", + "ed25519_pk1z039qm2gtc0wcrgzje958twhvghjg440lwtzk37q8phus0uwy9aqysfd88", + "ed25519_pk1jhl40atqvlz5zsch2dlsuqvdj3crd2u5vpcxz3f84wua06jess5qausr6v", + "ed25519_pk1r2gfune5zj2g9rcke2g5njz46seqw98apnm9ez0r4xu6v5a29jdqg3tmzw", + "ed25519_pk13d22k8mpernxkm64j72ws025q346l3t904v0qx4w7a2mlxqkksasxlfkx6", + "ed25519_pk1l490wug0aehg0jelg6pl39438sw032agvu2fda259nyt9tv4fc8smctssw", + "ed25519_pk1gdejgc0atp99a8f37097r372dhwjhrpqzn0uukkrt0dtvk7msy5q8p22nv", + "ed25519_pk1x7vfl0u2un6e6n6xfzhspsunjs3egu6q60a0q7pxz5flr0th53xs0ussac", + "ed25519_pk19dn59v9dj4qpeg76p7nf5nhsutmepyagtg8npx6vxllngumfwsxs0ndjsg", + "ed25519_pk16y6rsuns849042e9qfttcxxq8pzy95klnfyddcjp5j2k2xxaywpqun8n0w", + "ed25519_pk18y0nz4cggpx0m08fdc6n2ny7qy9v9n9f2w6y8ljypnzqgpsfnkqskrcsz0", + "ed25519_pk1hvd9rhprstpj4f0xave4005r4npvky4j8k0aa629ujyl967d4dsskzhrwy" + ], + "pool_pledge": { + "quantity": 17, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 215, + "unit": "lovelace" + }, + "pool_id": "pool16qxmgdht74mjacfdlev3ptrnhlr9wnmpjce7cgx0ztlkghk3xn2", + "pool_margin": { + "quantity": 2.45, + "unit": "percent" + } + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1x543pphvzr6ue78sgf8ejxq24w2hr05dhljpzk97ydpruk4rx3t", + "retirement_epoch": 25406 + }, + { + "certificate_type": "register_pool", + "pool_owners": [], + "pool_pledge": { + "quantity": 33, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 189, + "unit": "lovelace" + }, + "pool_id": "pool12m25xp54caeg67qnvq049qprrsd3grw66t3zj238z9e3qkh2kx2", + "pool_margin": { + "quantity": 33.18, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk133y38aysk67c8yn634vvd7gg2e3ql6m5pyx6tw4uzpet9m55h9qqjs2xru", + "ed25519_pk1zf7vyrl69cuvycv3s3en9dkcj3mfmqptps8awuzyjcfzfjv2z33swsc3z2", + "ed25519_pk1ua5um83qpvxvudyewexqpvuqgdwlyxz6fpde5u49uk8drmsg62qstehxf6", + "ed25519_pk14xs0c7zqzdxls9agtjemnxyyq24mwmd6ljazxvc5wn4nend0tazsqu8dx2", + "ed25519_pk1emhvt2hyf80vdznzgch470udqla0765ggpnlrejlk57pvzfjzc2s5ycca2", + "ed25519_pk1su8d9qcu5yxja9k7qgae8gpnfgw7pn5vlfdmmajjh9as5cvqlt2skfcrr8", + "ed25519_pk1wk7w3hq0d0zk0t8ft2ngdzl9dp4807d0udyhl7y34a8hepftmu0sh6zysr", + "ed25519_pk1svxdwpdwwx6c8g733snqgcw6vn86238sx448sxgyhgt42pnarzuspfr5u3", + "ed25519_pk1ldevwpk4a0qmqtzk7kmlynf7d64xgtmwku4jwr9tdy5gzyjuvzqst609hk", + "ed25519_pk1deexsajptnse5nstyp2hcqud8pmu7lf309s55ngwyq063tfpafzs2fpy38", + "ed25519_pk1nak9m75xuatxkssju42853yc0h7wrk6xhgm0chycna6rs2ugum6sayyrmp", + "ed25519_pk16kpp9v07yesrw6xl3g8zdg2ldsuflw9cquzm569jh7k6r05vyrfqy8psj2", + "ed25519_pk16awej3t22vkgtreryznelryshynfddauswtwdue0eldzw3q25faqpcujpn", + "ed25519_pk14amvq4zwu0xxzq5ftv2hs5rw0sfk3manfx769vq7zzepdlv4jgfss7dz4t", + "ed25519_pk1n3ng0va368gydmlart8mh80walt3t0ehml0l3shp82wm807l603qcg688f", + "ed25519_pk1czcda046ragqhjjnjcz46zl6c0ekswx22avg8qcf2arz2kvsj5cqaluvkg", + "ed25519_pk14t2gjkarlkd09urq38va3jjvwf40lrmjhunx33zvvgyumfwrlvhqkstpec", + "ed25519_pk1euatcg7525qxwgjkjzqlyh6q7e3xwvqxznn0lfkfwku6xtf8up9q5zmzyn", + "ed25519_pk1leks66u3w8xs0xv0le292wwutgajcxld2rrhjnykcze86vtqhe9sxu3grj", + "ed25519_pk1ru2djse9yu37fvkzqck5uwza0vk7far20hxqf5jfcnvr0ghcmyes70vmhv", + "ed25519_pk1h9kzn7z3p74y2c43udztycmc0ptsx5qmlzh5tlk8ru8txveqecfs7hz0lv", + "ed25519_pk1ccaxql89clxru28gnn8mlqz5j3zx9zanp36h09f3nlv8vt9ekfnsfwyuyg", + "ed25519_pk1zeec4m69vnf80pumfavpujwefd99sfarm5wq8g8tup7qvvwnk8gqm8wpdx", + "ed25519_pk1ujrrgf2mxfghw33m67mdynsl2l4w568d7w90k6wznqy527kkw9jq4z3q9h", + "ed25519_pk1c3sd8zllg925j73r7fy2yjdranaj0pu99kp2078d9jwgjqzf0rsq2gw5u0", + "ed25519_pk1kmdf0q830ek50k4q3c7hg8ym4zx8za874nnjdltqap8rq07xnu7suwsg6q", + "ed25519_pk1kjz9nl4enqkcmde9y3gexr4njdfjxdeaum0xfkj5l00m725hd26qkdtgpu", + "ed25519_pk1y72wsycu3776x5r4qxw4j5p59apg78e9fn73kjg5j2mqe0a3c4hs99chy6", + "ed25519_pk1yexppm7flk49yss5palvntttlh9csqn7k8t32pfxdgmwqtlfe7msf5fpkf" + ], + "pool_pledge": { + "quantity": 42, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 117, + "unit": "lovelace" + }, + "pool_id": "pool140fhaajd5duflr8pwhfu00r84j253qhl2r777n8652ay76ne9hs", + "pool_margin": { + "quantity": 94.63, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1zlm5d6yssgqm20489yy34m3dqs4rqvk6w7da0xkkj2clxrxzwxl", + "retirement_epoch": 19463 + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1k87u9nwnnt8u8jlgh0q65y6j0rs5pxmu6f6h94cekd8w7wmduzd", + "retirement_epoch": 12768 + }, + { + "certificate_type": "genesis" + } + ], + "deposits_returned": [ + { + "quantity": 65, + "unit": "lovelace" + }, + { + "quantity": 201, + "unit": "lovelace" + }, + { + "quantity": 245, + "unit": "lovelace" + }, + { + "quantity": 53, + "unit": "lovelace" + }, + { + "quantity": 160, + "unit": "lovelace" + }, + { + "quantity": 58, + "unit": "lovelace" + }, + { + "quantity": 45, + "unit": "lovelace" + }, + { + "quantity": 4, + "unit": "lovelace" + }, + { + "quantity": 180, + "unit": "lovelace" + }, + { + "quantity": 108, + "unit": "lovelace" + }, + { + "quantity": 175, + "unit": "lovelace" + }, + { + "quantity": 13, + "unit": "lovelace" + }, + { + "quantity": 103, + "unit": "lovelace" + }, + { + "quantity": 158, + "unit": "lovelace" + }, + { + "quantity": 231, + "unit": "lovelace" + }, + { + "quantity": 204, + "unit": "lovelace" + }, + { + "quantity": 86, + "unit": "lovelace" + }, + { + "quantity": 56, + "unit": "lovelace" + }, + { + "quantity": 8, + "unit": "lovelace" + }, + { + "quantity": 153, + "unit": "lovelace" + }, + { + "quantity": 227, + "unit": "lovelace" + }, + { + "quantity": 78, + "unit": "lovelace" + }, + { + "quantity": 250, + "unit": "lovelace" + }, + { + "quantity": 61, + "unit": "lovelace" + } + ], + "validity_interval": { + "invalid_hereafter": { + "quantity": 16301005, + "unit": "slot" + }, + "invalid_before": { + "quantity": 8815050, + "unit": "slot" + } + }, + "metadata": { + "11": { + "int": 0 + } + }, + "collateral": [ + { + "id": "360a6a5240095309c06c87211430761f3923763c3f7d8265365875365c542d51", + "index": 1 + }, + { + "address": "", + "id": "a5135c391f9877585d7a445150600c45684f4e91083d14ac8eb7e41746345a5c", + "index": 31968, + "amount": { + "quantity": 128, + "unit": "lovelace" + }, + "derivation_path": [ + "18280", + "24984", + "19644", + "19762", + "21387", + "26185", + "32624", + "25898", + "24436", + "7082", + "8164", + "25778", + "1080", + "17714", + "12344", + "24280", + "27033", + "21484", + "1074", + "20236", + "13255", + "22974" + ], + "assets": [] + }, + { + "id": "1b782a9d7c5de22e1120575a043e23304419a3581e716b705006f9183e243814", + "index": 0 + } + ], + "mint": { + "tokens": [ + { + "policy_script": { + "script": "policy_vkh16ppzp3mtz5y9za5vf8hdg36jngqkvmw6wpxfnn5aca0uufdjwgz", + "script_type": "native" + }, + "policy_id": "d04220c76b150851768c49eed447529a01666dda704c99ce9dc75fce", + "assets": [ { - "fingerprint": "asset1f5p42r0lfqpk423n7fc43lzygfr8cs6wdx68q3", - "asset_name": "546f6b656e59", - "quantity": 748 + "fingerprint": "asset1uwzsygy2qpv3evhp29pueee65czem4v9t8lrtz", + "asset_name": "546f6b656e58", + "quantity": 1887 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1xnlyl0t4y0xauk97ntwd9acpmqgtul5utkvl5azv6xwxjzm344m", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "34fe4fbd7523cdde58be9adcd2f701d810be7e9c5d99fa744cd19c69", + "policy_id": "74c2b16675794233bce01bf8b6bbbd6d9c4910d51e468c6e18a2c518", "assets": [ { - "fingerprint": "asset1tgxal20qehusykf0vtssptj4xmf7u02tdyrlrs", - "asset_name": "546f6b656e41", - "quantity": 1150 - }, - { - "fingerprint": "asset1mfmpaycsry4w4d4xjzdkwk7gmp40yl4mu34h66", - "asset_name": "546f6b656e4f", - "quantity": 9563 - }, - { - "fingerprint": "asset15dq4wuf3n0psmu4yha835u6mejuczxl77ttzyq", - "asset_name": "546f6b656e4d", - "quantity": 521 + "fingerprint": "asset1pkttypy8xt5nyutxwlayu09j39n4e3f20vl5wf", + "asset_name": "546f6b656e4e", + "quantity": 10000 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1dfxcwkn50amj9wys6nr89vfuvae0sgsmrmp6y7tuu8gzydjklhw", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "6a4d875a747f7722b890d4c672b13c6772f8221b1ec3a2797ce1d022", + "policy_id": "cf20f2d3bebc5782d25aba1054ba4e704c2f28775cd9cb0b4f6ea33d", "assets": [ { - "fingerprint": "asset1ryflkdfugfewwqk65ej6hrqkuksgp888mxt2e9", - "asset_name": "546f6b656e51", - "quantity": 1889 + "fingerprint": "asset1ry46lhged98zm6nq6plrgstjacpdzxu89h3693", + "asset_name": "546f6b656e4a", + "quantity": 1124 }, { - "fingerprint": "asset1n9972myxpe8z2ugcrv3u97nk3zht36u6nhfwee", - "asset_name": "546f6b656e4d", - "quantity": 5133 + "fingerprint": "asset1758ragyt04xr80eru6fxldnt4s75rqk7a9h6n5", + "asset_name": "546f6b656e45", + "quantity": 2593 }, { - "fingerprint": "asset1zkxeagf2wg73g4ut5njlfqy6d7cpzjsu2v400r", - "asset_name": "546f6b656e59", - "quantity": 1272 + "fingerprint": "asset1c84f6vjy8g6m4ewcuh7mp4szf9ne8tr9rjg075", + "asset_name": "546f6b656e51", + "quantity": 6985 }, { - "fingerprint": "asset1jw359wa2hg55zp65m2n3ch9kua2xkufk3r6nss", - "asset_name": "546f6b656e52", - "quantity": 4985 + "fingerprint": "asset1mm4asze8chnlerlpr3hztrs0muz3au9hylmtx7", + "asset_name": "546f6b656e5a", + "quantity": 9216 } ] }, @@ -1968,27 +2157,130 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "29c3c38ea1b6d219599b87f0e8ba85c0d710901e1a23e9eb63964440", + "policy_id": "ce43ebb8484478be6a4c733ff42f5fa965c5e0cd6d4f57729474e0bd", "assets": [ { - "fingerprint": "asset1mwrrkamznw5ha6cex9fs052fl8hqp5aqcr5mtk", - "asset_name": "546f6b656e53", - "quantity": 961 - }, + "fingerprint": "asset1ynu6mf74rp4egca0c0tmu6x0x8vudphsv3gnfv", + "asset_name": "546f6b656e59", + "quantity": 1697 + }, { - "fingerprint": "asset1zm2jt97vj9ptwm6tg27t9cl45p7wmnrkae6qff", - "asset_name": "546f6b656e48", - "quantity": 2053 + "fingerprint": "asset1ml7jzrcyvr8hwqdq57mvgn6t8tuqccj3tc6huj", + "asset_name": "546f6b656e45", + "quantity": 8239 }, { - "fingerprint": "asset1tfmk0qq9n4acxus3p7l07pg0ktzlwsgeydhznn", - "asset_name": "546f6b656e4b", - "quantity": 3479 + "fingerprint": "asset1xmadkjvrsd05fmyqlgyrmt8lneuxjuhavvjqgd", + "asset_name": "546f6b656e57", + "quantity": 1806 + }, + { + "fingerprint": "asset1f2g8p7jla8xqg57twsuf760jlryeuaq2kgdu7r", + "asset_name": "546f6b656e4d", + "quantity": 1181 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "30d92452ab004f41c450a36facc167640f3645d23ba4807e7d98a2e8", + "assets": [ + { + "fingerprint": "asset1rk0gv39ujpss05ummz4ql32qlk0p2aw5yc9wdj", + "asset_name": "546f6b656e4d", + "quantity": 8453 + }, + { + "fingerprint": "asset15k36pwusmxk50y555frnuf6h6c5lujltp2wld0", + "asset_name": "546f6b656e43", + "quantity": 6312 + }, + { + "fingerprint": "asset1mh2vc6kk7ztzh32hjrhen7l27dk4jdr37s8062", + "asset_name": "546f6b656e59", + "quantity": 2513 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "e8f2d4ca985ba05c7593c3b7fe0d274434c9e54f6ba9cd0c03c95452", + "assets": [ + { + "fingerprint": "asset1zzex3aq4ccjctzqr50r32h49gzactdx0k7tkpf", + "asset_name": "546f6b656e50", + "quantity": 7134 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1etnh0df07tjqul86sa3a2xz0p3fmgdgteur3ks82m6f6u9grfhe", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "cae777b52ff2e40e7cfa8763d5184f0c53b4350bcf071b40eade93ae", + "assets": [ + { + "fingerprint": "asset1pahtvq0gg62psuyyk7vqv0tt0yk5ucdl8zw26y", + "asset_name": "546f6b656e53", + "quantity": 6872 + }, + { + "fingerprint": "asset17s3mljrk9ejzmkz30fxjkum6h3kldej4zhq6ul", + "asset_name": "546f6b656e42", + "quantity": 2110 + }, + { + "fingerprint": "asset1dem9rlez4urkv2vwpavtqxnalh7832r2s68p0m", + "asset_name": "546f6b656e51", + "quantity": 4974 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1ykryvux70fknpfurnq7735dqclnztltn4nrj0y5kvct6z8krmgd", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "25864670de7a6d30a783983de8d1a0c7e625fd73acc72792966617a1", + "assets": [ + { + "fingerprint": "asset1sq4svwtsasujr0wv4ym0fj3wc45kx2amk9v5h5", + "asset_name": "546f6b656e46", + "quantity": 9041 }, { - "fingerprint": "asset1rv72kl85aft5wzz4tua8xslg608yf92j9w6t42", + "fingerprint": "asset1uc4q29n0uhy8zhjuanyvzd377qx5xq8alpmfjs", "asset_name": "546f6b656e52", - "quantity": 4263 + "quantity": 6389 + }, + { + "fingerprint": "asset160mndy09j7m96z4pr7m0hpajc4ztlm8v6g2gcr", + "asset_name": "546f6b656e4e", + "quantity": 505 } ] }, @@ -1996,25 +2288,105 @@ "policy_script": { "script": { "all": [ - "policy_vkh1umnh783g59mr066m05ms4cg8nw6qccv7j7g434d9vzpfzjsmak3", + "policy_vkh1vwuqaenytjfs5n7ejqftenxk2madc0aqlmyqklgkqhsw6ut8uw7", { "active_from": 100 + }, + { + "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "e6e77f1e28a17637eb5b7d370ae1079bb40c619e979158d5a5608291", + "policy_id": "63b80ee6645c930a4fd99012bcccd656fadc3fa0fec80b7d1605e0ed", "assets": [ { - "fingerprint": "asset1jcqwcmgv7lyrm5h0wmqwykmatru7r74v363ykx", - "asset_name": "546f6b656e54", - "quantity": 8032 + "fingerprint": "asset133v5t3cwd0pcg3zks3l28rvqf3nwpxvltcajsu", + "asset_name": "546f6b656e45", + "quantity": 9995 }, { - "fingerprint": "asset1lnn2rjkylxs7yggj0ll0gzk362cftj0m9yncy0", - "asset_name": "546f6b656e4d", - "quantity": 982 + "fingerprint": "asset1wv570m5jhwqvrhwh0lm2crjeaa2yygv9nk24t3", + "asset_name": "546f6b656e52", + "quantity": 7471 + }, + { + "fingerprint": "asset1am5dzlpljrmtaw6ujkype42txc9mxa27sldkjn", + "asset_name": "546f6b656e45", + "quantity": 952 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1rm7y3su38s2lm7qhawwcpe6xugrt2dxzhgv2lwfndcznklz44ht", + "script_type": "native" + }, + "policy_id": "1efc48c3913c15fdf817eb9d80e746e206b534c2ba18afb9336e053b", + "assets": [ + { + "fingerprint": "asset1ymaknst4mda7vy35rs2wnzva5a9vludjlkeu8d", + "asset_name": "546f6b656e51", + "quantity": 3396 + }, + { + "fingerprint": "asset13twnumqcnac7pcydyasps5nt82jdjyvzrhpw5w", + "asset_name": "546f6b656e55", + "quantity": 5604 + }, + { + "fingerprint": "asset1g67cujwpl778lultvyngfznex5gfdyhfzqzz4g", + "asset_name": "546f6b656e48", + "quantity": 2098 + }, + { + "fingerprint": "asset1vmq9tg75yg4caqef0nsg2gm85pqafww2vqhvx7", + "asset_name": "546f6b656e47", + "quantity": 4376 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "8fed8d25652d6d5332b5c79e3493099b352d1b0fdb585cf10a30f0d8", + "assets": [ + { + "fingerprint": "asset1r9mayx0p4h6ed8hm59g5umrmd4mvfxwh3ry8fr", + "asset_name": "546f6b656e4f", + "quantity": 8512 + }, + { + "fingerprint": "asset10f7u680jaz7aat3qnhj22n7q6wnnc0pr2y4jrl", + "asset_name": "546f6b656e56", + "quantity": 1420 + }, + { + "fingerprint": "asset1gl9x0mave7fye3stxf2uqvzr6jhrvfdmvdwdfg", + "asset_name": "546f6b656e44", + "quantity": 7197 + }, + { + "fingerprint": "asset1fak2h8u60tjhnmv00yhfaarqwxk455qdxxy8ss", + "asset_name": "546f6b656e4e", + "quantity": 6640 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh160x4yk96trs007gjwt3yvvpvyrw8ua7elq7wahp0lxp9q26qzvy", + "script_type": "native" + }, + "policy_id": "d3cd5258ba58e0f7f91272e246302c20dc7e77d9f83ceedc2ff98250", + "assets": [ + { + "fingerprint": "asset1pk0c44dk3uy6xg7du8pqc9j6yz63png0htpuh5", + "asset_name": "546f6b656e4e", + "quantity": 6721 } ] }, @@ -2023,43 +2395,107 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "518feadf5df2c4a31fe8e1cb49dc209c4d89d4a0a47e9b5cbba4cad4", + "policy_id": "045c01ac5868e8c5f24d6a3e9a24ce3428803db4c4a20b7178fda11b", "assets": [ { - "fingerprint": "asset1rjdfmdec96trxgccjqfzn809c28ez63jcvpuxx", + "fingerprint": "asset1ggv9ztcrsakp4yp27vsgpnhg3s42zcvv6w0g9h", + "asset_name": "546f6b656e49", + "quantity": 4985 + }, + { + "fingerprint": "asset1kfhrs8ww5tzr469w6kakrall969qa3yw7eq0m7", + "asset_name": "546f6b656e43", + "quantity": 9783 + }, + { + "fingerprint": "asset1zul42wp656umcvcxeejvsethe83nuyafna3uxs", "asset_name": "546f6b656e56", - "quantity": 9531 + "quantity": 1449 } ] }, { "policy_script": { - "language_version": "v1", + "script": { + "all": [ + "policy_vkh16rq6nm9nr4g4xv3t63tr8k3tnt8kqwhgvummlgrtxvvk7twxjjp", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "d0c1a9ecb31d5153322bd45633da2b9acf603ae86737bfa06b33196f", + "assets": [ + { + "fingerprint": "asset1nl5r6zum5jrnc4tft9dh69hzfjnww7wxh8pjkt", + "asset_name": "546f6b656e48", + "quantity": 4101 + } + ] + }, + { + "policy_script": { + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "615195c01e2e67df78b9b08b909ec8f96beb3de179559d200023e1ef", + "policy_id": "6f8a55f8a0af6f2d78d4f719c4c0680d634671cb988ce856eb6f996c", "assets": [ { - "fingerprint": "asset1cunqw9p669wk5m8g472s305fj3lt73lyz8jz76", - "asset_name": "546f6b656e4b", - "quantity": 2484 + "fingerprint": "asset1e567mhm5hywfr7gt98vf55dzlqapuzjxxxpjr5", + "asset_name": "546f6b656e52", + "quantity": 7706 }, { - "fingerprint": "asset1vy9h8lhwrprgj5q9tj4w9zpsmrh79qham367k4", - "asset_name": "546f6b656e45", - "quantity": 6218 + "fingerprint": "asset1ru9q7sl2sdjm3jxpupr9vxn78av9hec8ggmznr", + "asset_name": "546f6b656e54", + "quantity": 2453 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "f517ad872488c2dc60502509e25ed9aed1f96c5638bc00a5b1d89e9f", + "assets": [ + { + "fingerprint": "asset18zqs9ku3fq7w9f6dlcnn5lgpgk456twp0hl76d", + "asset_name": "546f6b656e55", + "quantity": 6429 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "27b3a7ff00b8737c9f76e7876d889b3f6e32353da0686282f5a73781", + "assets": [ + { + "fingerprint": "asset18kn8g4nmyz3gkzgqeg44t02sz6rwa7egsfykuu", + "asset_name": "546f6b656e55", + "quantity": 4981 } ] } ], - "wallet_policy_key_index": "0H" + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1gex5c3p79c3suvu6w5c77ydkq003chjg744n8ztjq3msvcqsy8jsjcl2fc" } }, { "withdrawals": [ { + "context": "ours", "amount": { - "quantity": 110, + "quantity": 199, "unit": "lovelace" }, "stake_address": "" @@ -2067,505 +2503,496 @@ { "context": "ours", "amount": { - "quantity": 126, + "quantity": 130, "unit": "lovelace" }, "stake_address": "" - }, + } + ], + "inputs": [ { - "amount": { - "quantity": 80, - "unit": "lovelace" - }, - "stake_address": "" + "id": "48211d020670127974522b0b5b7a40771125005e5012487666465350c9636b66", + "index": 0 }, { + "address": "", + "id": "41276fe30eda1c16567ea16816d25c0fe52139350f4f549bde5fff0ccf0c7f02", + "index": 9882, "amount": { - "quantity": 120, + "quantity": 228, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "2621", + "5655", + "28957", + "7322" + ], + "assets": [] }, { + "address": "", + "id": "151376511f1d04608268263f746b2e325caa6c5439ba627d0027574c83607160", + "index": 2228, "amount": { - "quantity": 71, + "quantity": 149, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "22556", + "1715", + "28705", + "3369", + "29060", + "12593", + "16572", + "28307", + "17398", + "4097", + "30524", + "21890", + "23779", + "27360", + "29219", + "22904", + "5462", + "15798", + "32298", + "2463", + "17312", + "657", + "31809", + "10668" + ], + "assets": [] }, { + "address": "", + "id": "55545c65033f5c5a0f050572786616195da40f7257825256490b0e11645c3142", + "index": 26520, "amount": { - "quantity": 4, + "quantity": 98, "unit": "lovelace" }, - "stake_address": "" - }, + "derivation_path": [ + "25498", + "8367", + "14843" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + ], + "collateral_outputs": [ { - "context": "ours", + "address": "", "amount": { - "quantity": 6, + "quantity": 155, "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 57, - "unit": "lovelace" - }, - "stake_address": "" + "derivation_path": [ + "8015", + "2767", + "13104", + "19900", + "20022", + "27898", + "29072", + "31978", + "31609", + "10011", + "9126", + "27767", + "27082", + "26348", + "29727" + ], + "assets": [] } ], - "inputs": [ + "outputs": [ { "address": "", - "id": "0028b16f66083e516e6a16724a2e48626c04482c5e4733a2713d434c3d3c7a17", - "index": 19073, "amount": { - "quantity": 242, + "quantity": 145, "unit": "lovelace" }, "derivation_path": [ - "3189" + "14132", + "27153", + "12257", + "19506", + "26332", + "22418", + "5627", + "29631", + "15705", + "4978", + "16580", + "22336", + "26863", + "13764", + "12678", + "10683", + "989", + "17459", + "6018", + "29580", + "26307", + "19484", + "7193", + "8477", + "31523", + "7303", + "22702", + "26039", + "14374", + "20147" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, + } + ] + }, + { + "address": "", + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", - "id": "1a349419320c3c4b0a15b71a0666524a2235090038612456444c2e59575c0a4b", - "index": 23577, "amount": { - "quantity": 243, + "quantity": 41, "unit": "lovelace" }, "derivation_path": [ - "25086", - "23609", - "12696", - "29388", - "15856", - "3676", - "18944", - "27065", - "821", - "1697", - "3510", - "16991", - "9700", - "2390", - "1249", - "1880", - "3171", - "27264", - "24885", - "2098", - "2020", - "18296", - "10759", - "1348", - "21723", - "12977", - "2857", - "27875" + "17121", + "11329", + "30084", + "27158", + "24601", + "9955", + "17311", + "720", + "25881", + "14260", + "11037", + "13449", + "11130", + "14320", + "22250", + "24798", + "27866", + "32143", + "3023", + "21953", + "11834", + "24474", + "5434", + "24518", + "21164", + "30272" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "id": "7d1d5e22103d544839468c577f66201e75082fb30cfe019b622230734e2d13d0", - "index": 1 + "address": "", + "amount": { + "quantity": 181, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "id": "852501186d2d466b33206e2449e22c147b5448556b34271c5b1b6316b1353475", - "index": 1 + "address": "", + "amount": { + "quantity": 123, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "id": "bc2c504c037d34091d3a4c353a3b78646e148a2063c8755e4024bf6d432f1128", - "index": 0 + "address": "", + "amount": { + "quantity": 195, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "address": "", - "id": "116e762134227f34005d236768450c2f5a6f0a652e79684ca05d7b4960317c04", - "index": 18890, "amount": { - "quantity": 99, + "quantity": 118, "unit": "lovelace" }, "derivation_path": [ - "6957", - "27646", - "3025" + "24496", + "17945", + "26605", + "20608", + "24203", + "22034", + "22313", + "6536", + "1261", + "14915", + "14771", + "8514", + "17725", + "18626", + "1981", + "3696", + "24811", + "32529", + "21741", + "11398", + "5147", + "1786", + "18500" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 14, + "asset_name": "546f6b656e42", + "quantity": 29, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 8, + "quantity": 2, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 9, + "asset_name": "546f6b656e44", + "quantity": 14, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 2, + "quantity": 25, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 11, + "quantity": 28, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", + "quantity": 45, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 40, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 5, + "quantity": 39, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 12, + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "id": "787b4521d713c2035a7577247b578162795842de447a692238460b4bdf54c130", - "index": 0 - }, - { - "address": "", - "id": "2f6952513c318a6f8f083d37008e473c496c474d13506a041b083b234a45303c", - "index": 1165, - "amount": { - "quantity": 56, - "unit": "lovelace" - }, - "derivation_path": [ - "32249", - "24907", - "19847", - "30550", - "25158", - "23953", - "26899", - "12249", - "4102" - ], - "assets": [ + }, { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "35b53020141722d0606d2fe983412a633dc3726f49613e18667d794e36e52183", - "index": 1 - }, { "address": "", - "id": "0b193c72686d5908576d718b385c406869783811356f0b201d074675715b7c6d", - "index": 28419, "amount": { - "quantity": 213, + "quantity": 251, "unit": "lovelace" }, "derivation_path": [ - "428", - "24732", - "29037", - "1198", - "4253", - "11808" + "18188", + "27314", + "5435", + "16753", + "15738", + "20060", + "31585", + "2902", + "27304", + "18498", + "32287", + "814", + "8386", + "11574", + "2370", + "27002" ], "assets": [] }, { "address": "", - "id": "065d1c292d531177b03d1b1a0e273b5d18435b4e07e8c3015234252a572a796f", - "index": 20070, "amount": { - "quantity": 19, + "quantity": 93, "unit": "lovelace" }, - "derivation_path": [ - "23142", - "15796", - "12908", - "22417" - ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", - "id": "26272a15ec431f4d57772f7a5a775c3d3fe90d01133935b95e13554c58315b21", - "index": 11360, "amount": { - "quantity": 223, + "quantity": 75, "unit": "lovelace" }, "derivation_path": [ - "5913", - "31122", - "1445", - "29911", - "4253", - "9878", - "2275", - "6308", - "1929", - "29421", - "5588", - "26184", - "5089", - "19239", - "32684" + "12185", + "31459", + "2677", + "14315", + "17218", + "2442", + "23591", + "15973", + "13042", + "13211", + "7942", + "27987", + "29308", + "10371", + "26676", + "29825", + "31173", + "6288", + "30381", + "8051", + "22206", + "16594", + "5948", + "23127", + "24521", + "17240", + "28306", + "20441" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e45", - "quantity": 18, + "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, - { - "id": "63ca0d5c465a7025b5d0317d225a75204ad812c70165611d15176f340a5c6a0e", - "index": 1 - }, - { - "id": "412400a928a94d22506066751d3c7734791e1f7a486622418c1144dc392c3957", - "index": 1 - }, { "address": "", - "id": "476e9377fd2941515a35486d29a6f61a0b6a1f2e262a2ad971777000593c682d", - "index": 11070, "amount": { - "quantity": 178, + "quantity": 76, "unit": "lovelace" }, - "derivation_path": [ - "30136", - "19288", - "3773", - "4789", - "21975", - "10653", - "14468", - "3834", - "18618", - "5921", - "25977", - "24414", - "24630", - "2744", - "1447", - "31363", - "13305", - "4334", - "11591", - "16910", - "22442", - "1962", - "27619", - "11311", - "26598", - "23508", - "29595", - "24184", - "26105", - "8325" - ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 22, + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 4, + "asset_name": "546f6b656e45", + "quantity": 23, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 18, + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 37, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "id": "195944b160535f356039175a2d3d3a2b8d1753a90944516b234778875e0f2e5d", - "index": 1 - }, - { - "id": "ce29c82df27555636d2128922a0b7c2978a5453416025a1a522a95c151053a73", - "index": 0 - }, - { - "address": "", - "id": "ee48527c4278403e734c296a4e2d062ea6334d2d465c1b5e6b782e323e1e6d2b", - "index": 3642, - "amount": { - "quantity": 122, - "unit": "lovelace" - }, - "derivation_path": [ - "19233", - "11765", - "9012" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "id": "71467c276c0b58171c22707a6071030c958255f30768268ae1e0bb641a125258", - "index": 0 - }, - { - "id": "46250c73231c2c1657011f7c40132b7b966656561d7a217b86192c1d047ec575", - "index": 1 - }, - { - "id": "315c593030262b100c513a1336211b7660567c154ac8332f1c4527e26c31526c", - "index": 0 - }, - { - "id": "642a9b38a5d6e952085f0470b409632f5c7c137927d354437cc81d466a007b4a", - "index": 0 - } - ], - "collateral_outputs": [], - "outputs": [ - { - "address": "", - "amount": { - "quantity": 148, - "unit": "lovelace" - }, - "derivation_path": [ - "1999", - "11811", - "1746" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 43, + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 20, + "quantity": 22, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -2573,69 +3000,48 @@ { "address": "", "amount": { - "quantity": 146, + "quantity": 239, "unit": "lovelace" }, "derivation_path": [ - "31010", - "961", - "13272", - "5194", - "15236", - "27586", - "8290", - "9626", - "27709", - "27724", - "3329", - "21653", - "13185", - "952", - "26000", - "4790", - "25895", - "26447", - "9426", - "2731", - "1847", - "3739", - "8027", - "16433", - "14805", - "27703", - "29316", - "3139", - "14833", - "23124", - "20262" + "7778", + "20638", + "2527", + "30659", + "4251", + "31318", + "16161", + "23800", + "30233", + "19443", + "10883", + "9209", + "28437", + "13964", + "13498", + "4042", + "6691", + "12236", + "19796", + "2061", + "8699", + "27298", + "26645", + "30635", + "31570" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, + "asset_name": "546f6b656e43", + "quantity": 17, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", "amount": { - "quantity": 121, + "quantity": 132, "unit": "lovelace" }, "assets": [] @@ -2643,132 +3049,94 @@ { "address": "", "amount": { - "quantity": 241, + "quantity": 86, "unit": "lovelace" }, "derivation_path": [ - "22743", - "21279", - "24023", - "32599", - "16813", - "9722", - "29910", - "3281", - "26064", - "18868", - "8274", - "22666", - "25632", - "21281", - "20968" + "20909", + "22641", + "24687", + "9571", + "32529", + "17832", + "7353", + "1724", + "21756", + "32591", + "31484", + "30751", + "21753", + "11795", + "3594", + "30336", + "27483", + "14845", + "1290", + "8247", + "18482", + "21615", + "6822" ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 252, - "unit": "lovelace" - }, "assets": [] }, { "address": "", "amount": { - "quantity": 136, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 149, + "quantity": 75, "unit": "lovelace" }, "derivation_path": [ - "18304", - "27389", - "31661", - "10386", - "30727", - "16671", - "17209", - "29464", - "7088", - "32239", - "30408", - "8771", - "1539", - "16092", - "25127", - "2215", - "10525", - "15494", - "25408", - "4069", - "4862", - "13108", - "14364", - "22026", - "1515", - "3797", - "25263" + "27467", + "5217", + "29634", + "31908", + "18362", + "29838", + "26655", + "14313", + "29711", + "17930", + "10781", + "12871" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, + "asset_name": "546f6b656e41", + "quantity": 10, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", "amount": { - "quantity": 131, + "quantity": 147, "unit": "lovelace" }, "derivation_path": [ - "8257", - "18892", - "21932", - "16547" + "32331", + "27995", + "1749", + "3768", + "17498", + "19117", + "22364", + "147", + "26205", + "27640", + "5049", + "30872", + "2992", + "31242", + "30924", + "14676" ], "assets": [] }, { "address": "", "amount": { - "quantity": 53, + "quantity": 58, "unit": "lovelace" }, "assets": [] @@ -2776,34 +3144,104 @@ { "address": "", "amount": { - "quantity": 180, + "quantity": 105, "unit": "lovelace" }, "derivation_path": [ - "21084", - "26662", - "28159", - "178", - "32333" + "23438", + "2404", + "28706", + "2574", + "12043", + "20043", + "11476", + "18841", + "2918", + "17517", + "14981", + "23101", + "5726", + "15410", + "7337", + "9060", + "3007", + "31244", + "21430", + "827", + "19907", + "12730", + "32422" ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 182, + "quantity": 112, "unit": "lovelace" }, + "derivation_path": [ + "18878", + "14171", + "2653", + "8153", + "15905", + "16386", + "25398", + "10598", + "16260", + "28826", + "18091", + "10135", + "12225", + "17721", + "1470", + "25172", + "31067", + "19396", + "28379", + "30016", + "12565", + "2318", + "25158", + "29087", + "27583", + "20112", + "4658", + "1442", + "10584", + "18562", + "3803" + ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 17, + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -2811,646 +3249,24 @@ { "address": "", "amount": { - "quantity": 63, + "quantity": 198, "unit": "lovelace" }, "assets": [] + } + ], + "id": "40727b6c126d723f7f6073570e0324e316511e16113e4c56342c1a5038411566", + "deposits_taken": [ + { + "quantity": 82, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 205, - "unit": "lovelace" - }, - "derivation_path": [ - "25323", - "12322", - "16451", - "10004", - "14586", - "5000", - "26841", - "31220", - "4036", - "27964", - "10246", - "26571", - "6805", - "22447", - "10825", - "4994", - "10569", - "13146", - "16977", - "4943", - "1840", - "15078", - "21827", - "560", - "13386", - "13931", - "11422", - "29641", - "23899" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "quantity": 10, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 181, - "unit": "lovelace" - }, - "derivation_path": [ - "21967", - "12628", - "25992", - "23626", - "3771", - "17043", - "16339", - "12446", - "13019", - "152", - "26067", - "7180", - "7721", - "18714", - "4628", - "11524", - "32718", - "11846", - "4941", - "11200", - "16495", - "15664", - "23477", - "23566", - "14045", - "26919", - "1572", - "23349", - "15048", - "6862" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 188, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 111, - "unit": "lovelace" - }, - "derivation_path": [ - "10260", - "21890", - "2165", - "19174", - "1659", - "21231", - "4046", - "4159", - "23413", - "23219", - "26644", - "19403", - "23736", - "6066", - "19426", - "20974", - "10652", - "23016", - "12996", - "15943", - "9742", - "28785", - "30283", - "1699" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 81, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 146, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 180, - "unit": "lovelace" - }, - "derivation_path": [ - "24839", - "24467", - "18693", - "4312", - "6952", - "14854", - "6074", - "22749", - "3421" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 203, - "unit": "lovelace" - }, - "derivation_path": [ - "32099", - "28090", - "16436", - "15355", - "31737", - "28291", - "3636", - "17544", - "22966", - "14904", - "18510", - "19791", - "8667", - "19014", - "2883", - "2522" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 33, - "unit": "lovelace" - }, - "derivation_path": [ - "23546", - "2491", - "20194", - "8242", - "16779", - "9288", - "27582" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 166, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 219, - "unit": "lovelace" - }, - "derivation_path": [ - "17693", - "9838", - "2758", - "20031", - "17481", - "1451", - "27438", - "18811", - "13652", - "29510", - "13805" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 44, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 33, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 35, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 51, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "derivation_path": [ - "4294", - "8090", - "22357", - "16961", - "11636", - "20329", - "27153", - "29370", - "25281", - "5065", - "4665", - "15181", - "20015", - "31577", - "12626", - "25537", - "12801", - "1662", - "31883", - "1009", - "26127", - "14818" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 169, - "unit": "lovelace" - }, - "derivation_path": [ - "7873", - "22206" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "derivation_path": [ - "1548", - "9488", - "29847", - "30274", - "20314", - "8872", - "6891", - "2981", - "13252", - "975", - "27261", - "5869", - "31259", - "1205", - "19825", - "27783", - "17090" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 46, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 244, - "unit": "lovelace" - }, - "derivation_path": [ - "18540", - "6421", - "17162", - "27112", - "21514", - "27278", - "6271", - "3812", - "4679", - "28081", - "251", - "27443", - "3021", - "31741", - "22531", - "32621", - "12250", - "15930", - "15243", - "21666", - "10892", - "7765", - "16011", - "31275", - "16511", - "9624", - "29339", - "10683" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 37, - "unit": "lovelace" - }, - "derivation_path": [ - "14702", - "15994", - "2001", - "24265", - "13786", - "5334", - "1965", - "20580", - "15917", - "21735", - "17391", - "12208", - "3557", - "24404", - "15285", - "9960", - "4863", - "8189", - "20706", - "10296", - "31535", - "20536", - "14893", - "23238", - "6656", - "9163" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - ], - "script_validity": "invalid", - "id": "0167794000822a4249347f61326742581e4a5b4b795fe3132d70372f7312e90f", - "deposits_taken": [ - { - "quantity": 73, - "unit": "lovelace" - }, - { - "quantity": 210, - "unit": "lovelace" - }, - { - "quantity": 97, - "unit": "lovelace" - }, - { - "quantity": 205, - "unit": "lovelace" - }, - { - "quantity": 74, - "unit": "lovelace" - }, - { - "quantity": 190, - "unit": "lovelace" - }, - { - "quantity": 218, - "unit": "lovelace" - }, - { - "quantity": 254, + "quantity": 186, "unit": "lovelace" } ], @@ -3461,17 +3277,27 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "bd9bc2487ca2cdbbd13fbdb909ab0d9f496feda44dd6032455a7d6e1", + "policy_id": "8d5508bdf85484e4a80caa5e20a821e6b7b1983d4929a15332c3094a", "assets": [ { - "fingerprint": "asset1rhhtdzxda04vp0ck6hmfatej5cczt3u9nn07d8", - "asset_name": "546f6b656e42", - "quantity": 7539 + "fingerprint": "asset1c2p06has2frugkpph9jv9c2wde9r0awthrhsj9", + "asset_name": "546f6b656e55", + "quantity": 3419 }, { - "fingerprint": "asset1c3gukfzpy03wrskawe00zjvjq2gtujeq7u9ft6", - "asset_name": "546f6b656e44", - "quantity": 2608 + "fingerprint": "asset1t68pt9sv3muhen7847ufxjhh9jhtpy3dh5x64a", + "asset_name": "546f6b656e55", + "quantity": 2961 + }, + { + "fingerprint": "asset1j0gxc4995jfe5qts548wmlr5p0mhej2r5rhpht", + "asset_name": "546f6b656e43", + "quantity": 8596 + }, + { + "fingerprint": "asset10mxng03s26t4mp6h8jlfvz9wfzapp3nvznp673", + "asset_name": "546f6b656e4b", + "quantity": 338 } ] }, @@ -3479,117 +3305,81 @@ "policy_script": { "script": { "all": [ - "policy_vkh1k4fp3fekeklfvnurc86tlqwy5yt3ejgjffln6wqqpk6rjwrfnem", + "policy_vkh15ru3czqxd3tknpg32tfc7q86fktxzkmxxggz4k5mqvuskwpc84z", { "active_from": 100 }, { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "b55218a736cdbe964f83c1f4bf81c4a1171cc9124a7f3d38000db439", - "assets": [ - { - "fingerprint": "asset1htzezjrqzwyf7ldyarryt38tldwhh6kqjs3jlu", - "asset_name": "546f6b656e58", - "quantity": 819 - }, - { - "fingerprint": "asset1gkkal57rma2rp4pw8wshq6q0uh77f9zgmt6xxz", - "asset_name": "546f6b656e52", - "quantity": 2262 - }, - { - "fingerprint": "asset19z5ew6yx2v0dnv3ee2wgasgjm5rlqp6u4fsez6", - "asset_name": "546f6b656e50", - "quantity": 7239 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "active_until": 150 + } + ] + }, + "script_type": "native" }, - "policy_id": "749c50d381740c2b289f3463ea46d9544bcff629869261ccfff127db", + "policy_id": "a0f91c08066c5769851152d38f00fa4d96615b6632102ada9b03390b", "assets": [ { - "fingerprint": "asset1c70hlewmg4s7vs7z8ahlc0cmr4dfaq6rtuz7ue", - "asset_name": "546f6b656e47", - "quantity": 7826 + "fingerprint": "asset1cr5rlelq7jl2cl4n3y6u8sjtkn3le280ue3yxt", + "asset_name": "546f6b656e4c", + "quantity": 6149 }, { - "fingerprint": "asset1r9dg2pl3jan9pyfusyn6kl9j3jtlwemcl7v3wu", - "asset_name": "546f6b656e47", - "quantity": 578 + "fingerprint": "asset103c4ypsmt7rqyxn653n8rkqsshteurc2yyjs5v", + "asset_name": "546f6b656e43", + "quantity": 1632 }, { - "fingerprint": "asset137xh2xqs6c4y8fgxmnezr53vxeu4ktqwtvflep", + "fingerprint": "asset1lc229v8cva3svxveq5awsxr7jas3ee6fdd2zzn", "asset_name": "546f6b656e49", - "quantity": 7852 + "quantity": 5268 }, { - "fingerprint": "asset17hfk35ce0levv8nayqkwwxqcsxysryr7ph4anq", - "asset_name": "546f6b656e54", - "quantity": 5321 + "fingerprint": "asset1xx034a9khcy5upqrjjf5lqh7wctrf5u68kut3l", + "asset_name": "546f6b656e57", + "quantity": 2201 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1a4u7k8z0crvuw3lkyxm2kgf7szgex64372atzg38t4y2jeaaz33", - { - "active_from": 100 - } - ] - }, + "script": "policy_vkh1ww6krj2uh78fyn49ejewrzfyhnvf2lrvv5yg6m68epyrk3ecfg2", "script_type": "native" }, - "policy_id": "ed79eb1c4fc0d9c747f621b6ab213e8091936ab1f2bab122275d48a9", + "policy_id": "73b561c95cbf8e924ea5ccb2e18924bcd8957c6c65088d6f47c8483b", "assets": [ { - "fingerprint": "asset177vaecfwj9kl5s0mvg5vq749z8z6em9x2s0h8u", - "asset_name": "546f6b656e54", - "quantity": 7301 - }, - { - "fingerprint": "asset1pakukzvfek0kgjxdrpmrj75w9wrtr5l5pza67t", - "asset_name": "546f6b656e56", - "quantity": 6380 + "fingerprint": "asset1z79yaapntm0dfxtcs2ts5fv8es7ajkm83pzya8", + "asset_name": "546f6b656e4c", + "quantity": 9308 }, { - "fingerprint": "asset1pv5zjpd28hs3h3s4nfu04r5t5apnwtt732t84w", - "asset_name": "546f6b656e4d", - "quantity": 9180 + "fingerprint": "asset1u9se90xkslhey33np6798d7g79hv29h7da7hmr", + "asset_name": "546f6b656e55", + "quantity": 7199 }, { - "fingerprint": "asset13c9yhh6w2ex57r5shd8ndfsf494c5wmxkj80am", - "asset_name": "546f6b656e58", - "quantity": 4027 + "fingerprint": "asset1s6szet76sgcd03mpndhqmf2g2uldgnfdtwqwgr", + "asset_name": "546f6b656e57", + "quantity": 4918 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh12k3h02dmur5ekrqllatrttm83ew8agjsngseacq7clzssuwl8p3", + "script_type": "native" }, - "policy_id": "21cf1ffbfc3de067a3a7bfe82f185bc3d31eda01702c16f32f507971", + "policy_id": "55a377a9bbe0e99b0c1fff5635af678e5c7ea2509a219ee01ec7c508", "assets": [ { - "fingerprint": "asset1qrxxl6fjqgy5p7r9l2xwm88qv7x4axxk0mkjwt", - "asset_name": "546f6b656e49", - "quantity": 7567 + "fingerprint": "asset1d88x8rwzpur6pljesw332dnfqprvehxycgmh6u", + "asset_name": "546f6b656e4b", + "quantity": 9933 }, { - "fingerprint": "asset150s4qcvyhn7a2ukqa23f8s4y6j4nujslh5vxzx", - "asset_name": "546f6b656e4a", - "quantity": 1799 + "fingerprint": "asset1kz4vzjz0l5fsrh5pl75x3z8ls3yvsa7e7v2wp8", + "asset_name": "546f6b656e45", + "quantity": 3267 } ] }, @@ -3597,47 +3387,39 @@ "policy_script": { "script": { "all": [ - "policy_vkh1eckm45nazvsmea4zr5k5phe25srpruu425w5suw02qatwsmvw9e", + "policy_vkh1cak342s0rjlzcmgl0jeqxqpyudjp6vnh79rysk8ycu5654yn4v0", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "ce2dbad27d1321bcf6a21d2d40df2aa40611f395551d4871cf503ab7", + "policy_id": "c76d1aaa0f1cbe2c6d1f7cb2030024e3641d3277f1464858e4c729aa", "assets": [ { - "fingerprint": "asset1sa4kjcp6k228czrmyf4j320g29mwc3pf6chv6c", - "asset_name": "546f6b656e48", - "quantity": 9531 + "fingerprint": "asset1rmgdxautd37yv480q00sj0v53k6hhu9sdwraxc", + "asset_name": "546f6b656e43", + "quantity": 1913 + }, + { + "fingerprint": "asset13h6rsaqekxggfqhr79wz5qglcxcmawzt7akdfj", + "asset_name": "546f6b656e47", + "quantity": 3702 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "238739705f6b0e1b49f39d2b2d273bccfa8aa0b709e746c755ac5355", + "policy_id": "c473520b4555eaa58d3f43f616eba151bfb440604d7435b6e7d930c8", "assets": [ { - "fingerprint": "asset1nut4jm7m2hylng54pzumt50l7q8z4r3flfq6z2", - "asset_name": "546f6b656e51", - "quantity": 7530 - }, - { - "fingerprint": "asset1vp9pvnxvlzhwtrqym5su76scwxagumqh9zmp6w", - "asset_name": "546f6b656e52", - "quantity": 915 - }, - { - "fingerprint": "asset1l3jkvq4yu47nwpyv8qy6hdqzawptg92fap7m4j", - "asset_name": "546f6b656e41", - "quantity": 3 + "fingerprint": "asset1wawrdun6lsl0yqcwy5kevz2uqpxz7zpn87q0z8", + "asset_name": "546f6b656e48", + "quantity": 5174 } ] }, @@ -3646,41 +3428,56 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "7d2bfc876d06bc4bdb7477a5f9e55b1bf8cc4e67b7857889835c1b90", + "policy_id": "658583b14a94b303ed4f519f5ee117426a40dfc68bc89b9edb98a2a7", "assets": [ { - "fingerprint": "asset1xajavnmvtevyt5rr36ysq73yvhkkda0k9035cm", - "asset_name": "546f6b656e4f", - "quantity": 2726 + "fingerprint": "asset14hlmd6g3zcl4f772mt5xw7jf208y7wvrgyuftr", + "asset_name": "546f6b656e55", + "quantity": 4725 + }, + { + "fingerprint": "asset1sd758n4r3r3fgxl0dvv8484y9cdsfev9sk9w4z", + "asset_name": "546f6b656e4a", + "quantity": 8409 + }, + { + "fingerprint": "asset1skh25wf43ha5hqf4u25s33ae3rtpvfv2kxdwn3", + "asset_name": "546f6b656e46", + "quantity": 5521 + }, + { + "fingerprint": "asset13gu6nw7ys7k9k3gvtxm9j5zpcdh9fyt2yu3f04", + "asset_name": "546f6b656e41", + "quantity": 7647 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "441f7227d511aedb60e6f221ead3c7c9b98d3c87b1aae00c6482a4a0", + "policy_id": "b65711ad7e9b149d554fc5adb7bd803daa8cba1380ce6c8c9a16daac", "assets": [ { - "fingerprint": "asset14l8j0d6lkw6knp625cc36hqp78xw35j4q924sp", - "asset_name": "546f6b656e4c", - "quantity": 1959 + "fingerprint": "asset13y2vha55uawp3kxql9kew55mr09y9cg8ene7ca", + "asset_name": "546f6b656e41", + "quantity": 5811 }, { - "fingerprint": "asset1vhcrk55jeenwa6lf6rcvmkvuwnqc5jqu05zwk3", - "asset_name": "546f6b656e57", - "quantity": 8831 + "fingerprint": "asset1nmlruepaedkrqgfmsm75d36462engt8jf3q05j", + "asset_name": "546f6b656e55", + "quantity": 7702 }, { - "fingerprint": "asset1528xf87ywh7g7fvy64pu73dsryj940dwqrlfaz", - "asset_name": "546f6b656e51", - "quantity": 5778 + "fingerprint": "asset14v7z4rqc467qea9z32lpz2q6tlfu4ngwaa4s8l", + "asset_name": "546f6b656e49", + "quantity": 2544 }, { - "fingerprint": "asset1fvl0prq4tqgvkfynsuuayd723g8paff3agjwar", - "asset_name": "546f6b656e48", - "quantity": 9212 + "fingerprint": "asset14d236f38ulgamej870zqapa53gcqy73djmk4dp", + "asset_name": "546f6b656e4c", + "quantity": 9091 } ] }, @@ -3689,22 +3486,17 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "50bc2a0534cb4da1b2ae730608b10df4500c9d016f71b7bbeda6091c", + "policy_id": "63463b16bad980697d728d5b615da7896dcbbc046c80a8aacfdf3457", "assets": [ { - "fingerprint": "asset19ht6nhh5nyr0p8vypdqj2auavwzllhcrttkkgj", - "asset_name": "546f6b656e57", - "quantity": 1925 - }, - { - "fingerprint": "asset1wfv6xn23dgy69pn8023c2sku5xxr7jumt8gxe5", - "asset_name": "546f6b656e4b", - "quantity": 7955 + "fingerprint": "asset1zgftnzjlcn7yrvl69v200teqrdkjemg0lq8eta", + "asset_name": "546f6b656e47", + "quantity": 6520 }, { - "fingerprint": "asset1smcny22eadkcc6w3crhc939c5s6n99jks6l79w", - "asset_name": "546f6b656e52", - "quantity": 273 + "fingerprint": "asset1g98f5qyqxtne5sq9vtxdjdq8ly3ng0tsqvsp0u", + "asset_name": "546f6b656e54", + "quantity": 3367 } ] }, @@ -3713,51 +3505,57 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "c1d6e3b27d92fd106243e19b735211fa3f184bc4abd995b05f80c750", + "policy_id": "6f72487b185350de9aa1491424e9d7c15ba871151f5c1e4fd354296c", "assets": [ { - "fingerprint": "asset1jv2hfalxcxc4830cyxhzvuyanqhxyn22dz8d2u", - "asset_name": "546f6b656e4c", - "quantity": 9182 - }, - { - "fingerprint": "asset1v5qxkvmd7llfpyp05h6fy0rlwffzaja9flharv", - "asset_name": "546f6b656e59", - "quantity": 4888 + "fingerprint": "asset15ha38kfd0pk9aruaz8x22n4qyk8uqlpqlcvxrc", + "asset_name": "546f6b656e53", + "quantity": 4251 }, { - "fingerprint": "asset13qcslmn2u6n27kx60etczy8ssgrcvlguc4pher", - "asset_name": "546f6b656e41", - "quantity": 5393 + "fingerprint": "asset15u6gf50e7fd28s4cmm7ltgnn4n2wl60ag94v9s", + "asset_name": "546f6b656e58", + "quantity": 4300 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh16cmhe7vst29g84x4ll47d7ywl9k32jewvkuvpx58y2jr7wka7y2", + "script_type": "native" }, - "policy_id": "763ea2927e97af28b26c1c838915797356e7623bd090b91d952c9626", + "policy_id": "d6377cf9905a8a83d4d5ffebe6f88ef96d154b2e65b8c09a8722a43f", "assets": [ { - "fingerprint": "asset12yv8fdma8ygtm4xmh003x5gjzp2ar2eu7d5235", + "fingerprint": "asset1qhhguyrpck0g78xqf6z5qxuxe5ey5fwgpjrk4s", "asset_name": "546f6b656e4f", - "quantity": 8272 - }, - { - "fingerprint": "asset1wasuuldrnyy7td26lrzcejfp3vuajwjpyx0we9", - "asset_name": "546f6b656e4e", - "quantity": 7192 + "quantity": 3418 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1ltyaus8jcw6tp7m3zsgmelh4twxwnzw6l2ajxd5l4t74w3qnqq9", + { + "active_from": 100 + } + ] }, + "script_type": "native" + }, + "policy_id": "fac9de40f2c3b4b0fb711411bcfef55b8ce989dafabb23369faafd57", + "assets": [ { - "fingerprint": "asset1jmfyh2ts70rkpjm2k9pyadr2vemhkzpawryvsu", - "asset_name": "546f6b656e4e", - "quantity": 7571 + "fingerprint": "asset19prwdj88haha6je5x4rpyaktgeaducca9a6tpg", + "asset_name": "546f6b656e44", + "quantity": 485 }, { - "fingerprint": "asset1sc799d9dp0nyq2yene70sf8vx6nn48c2jmhxhm", - "asset_name": "546f6b656e51", - "quantity": 9026 + "fingerprint": "asset1rgctett9cvapmjqplrxky2zjduzk09pvm2wncx", + "asset_name": "546f6b656e56", + "quantity": 7842 } ] }, @@ -3765,35 +3563,33 @@ "policy_script": { "script": { "all": [ - "policy_vkh1efzfyh0g3hkx0zz4jkcmlt0782g9sx54eatg658edfv4ktce5zl", + "policy_vkh15vha345lzqe72dhrx5cv8c2l3gxaepg5y4avum02jgpc5n4h402", { "active_from": 100 + }, + { + "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "ca44925de88dec67885595b1bfadfe3a90581a95cf568d50f96a595b", + "policy_id": "a32fd8d69f1033e536e33530c3e15f8a0ddc8514257ace6dea92038a", "assets": [ { - "fingerprint": "asset105hsdttn4et6at8f9nhn4ze6md76akqktsd6mu", + "fingerprint": "asset1apukvez0wu94k2qmrcs9dcq654hhqz696zq4aq", "asset_name": "546f6b656e53", - "quantity": 599 - }, - { - "fingerprint": "asset1m9usdw37n5wjuxst9xwks4myx7u2nle9xkpmls", - "asset_name": "546f6b656e50", - "quantity": 9846 + "quantity": 6448 }, { - "fingerprint": "asset1wtnm2r3q9hgsvq83neftpu0j9sk9yjhescukcv", - "asset_name": "546f6b656e58", - "quantity": 3800 + "fingerprint": "asset1j5pehuyc2dffqcrwjl8p2m3lkkxy45uhga9t6t", + "asset_name": "546f6b656e55", + "quantity": 5571 }, { - "fingerprint": "asset1ew64d823lq9khjmr84j64ula3fdea7vtrdq8yr", - "asset_name": "546f6b656e4d", - "quantity": 1441 + "fingerprint": "asset13xku8d8k2eljgr5379u0pxxzll95sjcxx59yu6", + "asset_name": "546f6b656e50", + "quantity": 9494 } ] }, @@ -3801,7 +3597,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1edrphwe0xvjxksydva700nngvut56hhv8q3sdutm6qavgquvk53", + "policy_vkh1dr2uq3f9qvareg2yw9ve3lg67zm30qlda682quxnzndtsj5wjn0", { "active_from": 100 }, @@ -3812,113 +3608,171 @@ }, "script_type": "native" }, - "policy_id": "cb461bbb2f33246b408d677cf7ce6867174d5eec382306f17bd03ac4", + "policy_id": "68d5c04525033a3ca144715998fd1af0b71783edee8ea070d314dab8", "assets": [ { - "fingerprint": "asset12fsf0654shhrzeylayxzv3w7nhg9rt6rmyy2vk", - "asset_name": "546f6b656e4c", - "quantity": 6327 + "fingerprint": "asset17me5nguju0525e6ekllctreplwhnjz4ecxcpta", + "asset_name": "546f6b656e43", + "quantity": 3866 }, { - "fingerprint": "asset1d539ec9jpa6zyx382tcmyr7pr30czujmjqapj4", - "asset_name": "546f6b656e45", - "quantity": 8465 + "fingerprint": "asset134555zdxtctagmq6uqh6lqnfda4t49hdhzprmt", + "asset_name": "546f6b656e58", + "quantity": 3110 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "cdbdd20277e74e8e3a03c5db9234863d3255e5fde0dff7ddb18af759", + "assets": [ + { + "fingerprint": "asset1729zhxkwd70dszlj3pw2lhfytw7v8r578h0w99", + "asset_name": "546f6b656e4f", + "quantity": 1367 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1jepde40gn8l674j0nj8qrgvr7q75e679la9t5p4nlwcpkc5ut6r", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, + "script_type": "native" + }, + "policy_id": "9642dcd5e899ffaf564f9c8e01a183f03d4cebc5ff4aba06b3fbb01b", + "assets": [ { - "fingerprint": "asset1rp426ah0zjdpamqreaa3jlsejheu78m0kucq65", - "asset_name": "546f6b656e53", - "quantity": 4952 + "fingerprint": "asset169khr59e55jycn9x45epcd49h9cvqf72tw5hkj", + "asset_name": "546f6b656e46", + "quantity": 403 }, { - "fingerprint": "asset1fh504y98j9vsygpeg37zmet4vw9lge5ez6rvq0", - "asset_name": "546f6b656e4c", - "quantity": 9240 + "fingerprint": "asset1ad8p7sjt6n4vdxq9u7w3pecezu35ng03yhpujf", + "asset_name": "546f6b656e45", + "quantity": 5555 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "9623a5762ed13ff303b08984013a4a48457ed9d75f593258e82b8087", + "policy_id": "9ebf624c7139a34557746ce1c5a9b305dd0d42f720a024605ee9be06", "assets": [ { - "fingerprint": "asset1gayhkrcr7hd2kgp379qsvvm8uksj83xas4untc", - "asset_name": "546f6b656e50", - "quantity": 3318 + "fingerprint": "asset15xjf4hrqt6vs5ddvkxj2t23289mk26nfpq35ud", + "asset_name": "546f6b656e57", + "quantity": 3092 + }, + { + "fingerprint": "asset1vh50xe4ntfdm98sx8gj7dej83f98w6z5nzh26n", + "asset_name": "546f6b656e41", + "quantity": 1648 } ] }, { "policy_script": { - "script": "policy_vkh1ufjvq85pst6dyj89czz45tl7dcxrdp6vqxpdc0qvq9aps8f8dy9", + "script": { + "all": [ + "policy_vkh1y5m5urdfgh0cp72w7tngzltjd6v9um6rpmrv4vlkp6k2kcek9fa", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, "script_type": "native" }, - "policy_id": "e264c01e8182f4d248e5c0855a2ffe6e0c36874c0182dc3c0c017a18", + "policy_id": "25374e0da945df80f94ef2e6817d726e985e6f430ec6cab3f60eacab", "assets": [ { - "fingerprint": "asset1njq9zdn59ygerv2dqt2u3mz6l9mn6g385llxrv", - "asset_name": "546f6b656e4a", - "quantity": 6685 + "fingerprint": "asset1834y8wsnvnqs0c3vrcyt0zrqahzukz2enhw2j5", + "asset_name": "546f6b656e56", + "quantity": 2393 }, { - "fingerprint": "asset1kstppterp4cn6a49sn02fykl7wmt7fsrnkpk6r", - "asset_name": "546f6b656e51", - "quantity": 2740 + "fingerprint": "asset1fpljr9nqrv8jwq3545zfhxplj7m9xw4ml7nnv4", + "asset_name": "546f6b656e55", + "quantity": 2097 + }, + { + "fingerprint": "asset1k8qk0wafyxk26n6ax2jvd854n2mcfeu3j8m7dd", + "asset_name": "546f6b656e55", + "quantity": 6457 + }, + { + "fingerprint": "asset17v05q25mg4ytlhwpvkfrv0gsuncg78807kh52u", + "asset_name": "546f6b656e57", + "quantity": 4376 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh173gxwjlnrnk46g398m48lnd2c5gwzgsf9r2mjnhjmwkpu0tdph8", + "script_type": "native" }, - "policy_id": "abea8fb61df4719f07ada85fdc77005aecd093da67ca5b2a91a71209", + "policy_id": "f450674bf31ced5d22253eea7fcdaac510e1220928d5b94ef2dbac1e", "assets": [ { - "fingerprint": "asset1z2ql9pew7tvrc4gxjyjuakp3p7l9z9404cv3yq", + "fingerprint": "asset18stu827cl00vz0467xm7m55m8szz8uzc4yz7ve", "asset_name": "546f6b656e4c", - "quantity": 7610 + "quantity": 8805 }, { - "fingerprint": "asset1nk42fumena30yzgqn2wn8a02u72cz5p5t8trz7", + "fingerprint": "asset1ykf220vl2s5nam32vp3ql7qshl94q5tsaw0xfk", "asset_name": "546f6b656e48", - "quantity": 5491 + "quantity": 1876 }, { - "fingerprint": "asset1kdhvwtvrka4q7dgd7f6xj7d3h5c4t2eywm46nx", - "asset_name": "546f6b656e5a", - "quantity": 8387 + "fingerprint": "asset135fenn9wcj94gr6pa0p4p08pmr56sfd9qxq42l", + "asset_name": "546f6b656e53", + "quantity": 5688 }, { - "fingerprint": "asset1wpc65dq9xmfatdyakx4df4leg4axh265usvv0r", - "asset_name": "546f6b656e58", - "quantity": 4162 + "fingerprint": "asset19ll6hf2qwj7m7urpn3muhp0etvsehyf5ucrxme", + "asset_name": "546f6b656e47", + "quantity": 6477 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "219378206b54e99e86eb0ce21b374689b708bb2fc6817e70b0be6f4e", + "policy_id": "90bbb9c10186e89bcb892fe37dcc881e320f923257258e4d6378a465", "assets": [ { - "fingerprint": "asset1ftz3ps4r6xkrchueulzjt5g4c7wjk4x6gnzl0v", - "asset_name": "546f6b656e57", - "quantity": 9170 + "fingerprint": "asset1kwa62x57w3xglfawptrdqhsewug4uu6z06yfrc", + "asset_name": "546f6b656e4c", + "quantity": 2845 }, { - "fingerprint": "asset1elahsg3qdehln6vdrsxluwtspjsat8d7093j47", - "asset_name": "546f6b656e4b", - "quantity": 2968 + "fingerprint": "asset17ck9yu2lk0zq5qgqrgh4c4uwnuus62k5fnj7ul", + "asset_name": "546f6b656e54", + "quantity": 3454 }, { - "fingerprint": "asset160c43arnemcdwa8w52t60tph6yydca0s94vtnv", - "asset_name": "546f6b656e59", - "quantity": 319 + "fingerprint": "asset10g942cl3ug63zkcxmua6qtzg64dpn0yevyukap", + "asset_name": "546f6b656e4a", + "quantity": 8035 } ] }, @@ -3926,59 +3780,78 @@ "policy_script": { "script": { "all": [ - "policy_vkh1m3cxq7h8gvlf4jr5pl5s8q9trgdwc7k7dayt4m5xpysnjfse8jr", + "policy_vkh1nuezl8zfwv5w24c940tnh6g0dhgy40vwh0urt8ggtwfwyauh6s7", { "active_from": 100 + }, + { + "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "dc70607ae7433e9ac8740fe90380ab1a1aec7ade6f48baee86092139", + "policy_id": "9f322f9c497328e55705abd73be90f6dd04abd8ebbf8359d085b92e2", "assets": [ { - "fingerprint": "asset1qr6lkxz020w56t4980jcfanqh3cdk99lmmgkrz", - "asset_name": "546f6b656e56", - "quantity": 8041 + "fingerprint": "asset16lcwduxhava420qct83cjktf8f7fgzx4mn6p6d", + "asset_name": "546f6b656e59", + "quantity": 2438 }, { - "fingerprint": "asset1nytahjep688t9p66ege8cx3h8jkxtfxdfwk6z6", - "asset_name": "546f6b656e57", - "quantity": 4758 + "fingerprint": "asset1yvdvpvd64ncz0ylt20pdws2ygzss6muxs4zgpp", + "asset_name": "546f6b656e47", + "quantity": 6755 }, { - "fingerprint": "asset1ylrj0hvyy2nr7zzjqz6nww0q8s2hufex760ztj", + "fingerprint": "asset1pxkxsdprafqyq7padnuqpc8h0lnxua66hrwm5y", + "asset_name": "546f6b656e4f", + "quantity": 1202 + }, + { + "fingerprint": "asset1dhlrpczelmzdfpp98dun8h6k98d2a9svwvuch5", "asset_name": "546f6b656e59", - "quantity": 3293 + "quantity": 6227 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1ayway96v2jz7lhawahgcet7lvd00wkmwrnf38m39tna6ztes8dy", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "3cb3b0dd7bc46029fa715836a408578689c576632b8f24617148b263", + "policy_id": "e91dd2174c5485efdfaeedd18cafdf635ef75b6e1cd313ee255cfba1", "assets": [ { - "fingerprint": "asset1kmtrdu9jqj2nwzlre8q5wvq9c8urqf5jamdu6s", - "asset_name": "546f6b656e48", - "quantity": 7036 - }, - { - "fingerprint": "asset17h377j3hdyc3nf0kzffm6xnk72alz552xy95cj", - "asset_name": "546f6b656e42", - "quantity": 16 - }, + "fingerprint": "asset1qv6hjp0anhruexn66dpw9r0k36q39kkpkrc2h2", + "asset_name": "546f6b656e53", + "quantity": 7682 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "bb44a488d040e42a62fd223623adba0d2c29c9b03726ea5bd6c032b1", + "assets": [ { - "fingerprint": "asset1adz5t98wcah2ft3jz2sfsgfknu6m6tfcdpeqs9", - "asset_name": "546f6b656e42", - "quantity": 3839 + "fingerprint": "asset1mk3ualc862nrewtjeavj3sn22t7ygmhse20eut", + "asset_name": "546f6b656e4f", + "quantity": 9151 }, { - "fingerprint": "asset1fwkk0lkpcsc8d3fe6qqf7d2hfljyqsnqfsqagf", - "asset_name": "546f6b656e47", - "quantity": 1895 + "fingerprint": "asset1rwyka4htkzy9muu8a9d7wpz5wh6wsra8djlusm", + "asset_name": "546f6b656e4c", + "quantity": 9573 } ] }, @@ -3986,44 +3859,52 @@ "policy_script": { "script": { "all": [ - "policy_vkh1lpeclfrajvmyyqry5srfmvmarr3syhd5zak5nzahlwvvxre3kwt", + "policy_vkh14pqn3qtehndm5ga4cs3am7xmrxfmdxy0q7cd2tzk7gwd5xnhhqu", { "active_from": 100 + }, + { + "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "f8738fa47d9336420064a4069db37d18e3025db4176d498bb7fb98c3", + "policy_id": "a841388179bcdbba23b5c423ddf8db1993b6988f07b0d52c56f21cda", "assets": [ { - "fingerprint": "asset1hutt8fptwr8agrg5z0gd7ctzhzl67j9rgfsfa3", - "asset_name": "546f6b656e49", - "quantity": 5831 + "fingerprint": "asset1ym8c79hdn7crvsha5jyptvltlnsm7cu444jwre", + "asset_name": "546f6b656e54", + "quantity": 5707 }, { - "fingerprint": "asset1le7w87p20l69xdl9cpqrnp682zt0flkhvjdcf3", - "asset_name": "546f6b656e45", - "quantity": 2679 + "fingerprint": "asset1wcq0v5u2gv2cp4ncwjd670r6rg2sfpe3xsws3z", + "asset_name": "546f6b656e56", + "quantity": 2114 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh1r0eyl8klr03vmjaxd9jsamv9ladedsnxnal73d2jm3t3xlnhclj", + "script_type": "native" }, - "policy_id": "59d32efa217c42340701e380c6d8271d283a6a390e39c8b819f0b095", + "policy_id": "1bf24f9edf1be2cdcba669650eed85ff5b96c2669f7fe8b552dc5713", "assets": [ { - "fingerprint": "asset1wpd3lzmxtke33hhqrc9uc9rruesd60jar5r6qg", - "asset_name": "546f6b656e49", - "quantity": 5864 + "fingerprint": "asset1qffk3p3nx6e8nf99ehvg0hqyzhpjkujdv8znte", + "asset_name": "546f6b656e54", + "quantity": 7488 }, { - "fingerprint": "asset19ze54l8dmwf7fnqxex3zwl02cgg4mkx5xpfe84", - "asset_name": "546f6b656e55", - "quantity": 44 + "fingerprint": "asset14tv7wltke70k87hnpty0wl0fh5w4ehyw99jxd2", + "asset_name": "546f6b656e4a", + "quantity": 1587 + }, + { + "fingerprint": "asset1037df5y5exwryfnm2aq0eyusr27gzl7x2kf8k5", + "asset_name": "546f6b656e44", + "quantity": 1656 } ] }, @@ -4032,954 +3913,674 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "36757babc8409b0bc2ecaa6844c5500732af9896652712d67055d514", + "policy_id": "a40f51cc9979bda018454a7df944e381a9d16fda1ccc92a0ffea353b", "assets": [ { - "fingerprint": "asset10us35lq5hfn23z9gfhakaq5k66ua4kqm6reu3x", - "asset_name": "546f6b656e4a", - "quantity": 6134 + "fingerprint": "asset1kzc07kjr4rgpnr0wfg83g7cpgwxf0ha7yqrcdr", + "asset_name": "546f6b656e4d", + "quantity": 2042 }, { - "fingerprint": "asset1ar9ldxvlw2wlxylcnytugmpr32a8ceu6s9vun3", - "asset_name": "546f6b656e57", - "quantity": 4959 + "fingerprint": "asset1g0naup9exeypcmxe4amhme4uckcu6ydnh3eren", + "asset_name": "546f6b656e4b", + "quantity": 3082 + }, + { + "fingerprint": "asset1y3jqsflewk0v5s5u6f04fc6xksvh0fwqg9r9xp", + "asset_name": "546f6b656e47", + "quantity": 323 } ] } ], "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1fkqrv02dx5tt7v449p7jkvewqqfk6mckcmp9zv3sxy5nxvajzn8" + "wallet_policy_key_hash": "policy_vkh1zj9zwr3lgf8s3thjyegqkvp9zqzs234g2s2x7c3y9dsy2w826fa" }, "fee": { - "quantity": 48, + "quantity": 243, "unit": "lovelace" }, - "certificates": [], - "deposits_returned": [ - { - "quantity": 203, - "unit": "lovelace" - }, - { - "quantity": 237, - "unit": "lovelace" - }, - { - "quantity": 161, - "unit": "lovelace" - }, - { - "quantity": 45, - "unit": "lovelace" - }, - { - "quantity": 211, - "unit": "lovelace" - }, - { - "quantity": 205, - "unit": "lovelace" - }, - { - "quantity": 124, - "unit": "lovelace" - }, - { - "quantity": 4, - "unit": "lovelace" - }, - { - "quantity": 43, - "unit": "lovelace" - }, - { - "quantity": 68, - "unit": "lovelace" - }, - { - "quantity": 66, - "unit": "lovelace" - }, - { - "quantity": 143, - "unit": "lovelace" - }, - { - "quantity": 138, - "unit": "lovelace" - }, - { - "quantity": 65, - "unit": "lovelace" - }, - { - "quantity": 87, - "unit": "lovelace" - }, - { - "quantity": 100, - "unit": "lovelace" - }, - { - "quantity": 119, - "unit": "lovelace" - }, - { - "quantity": 90, - "unit": "lovelace" - }, + "certificates": [ { - "quantity": 187, - "unit": "lovelace" + "certificate_type": "quit_pool", + "reward_account_path": [ + "11535", + "24197", + "31086", + "14498", + "5160" + ] }, { - "quantity": 78, - "unit": "lovelace" + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1lwv5p6qmf5k6fhy4c86xthex9zrffmm4knsetfw5a7p7gwv6j7sqgv2c2p", + "ed25519_pk1rt9ec2dlzukd2vl5fh7lxmfpd6hrxqxhrd4f4qvgcdngghnt87ms4ftf93", + "ed25519_pk1ehf9q5surj0gzdj269rwrptty7g2kc5cly3r5v9v6enhwxav0lgsq5qk6w", + "ed25519_pk182rxjnajm802eqrsxce3qqrzdenf853863cguckgzj0unvrhz99sunuq7s", + "ed25519_pk19mchywsfnu6sz7armup2k96rwaevc2cm28kcjfxd4eew5gdku8vsj530qj", + "ed25519_pk1dtlf5nsd25h7avlvhwfasx2mphfl0sc7dqprcdl3nmgnqddehhvs62v9f3", + "ed25519_pk1rzjdw37862zn6f8axf8wr5356a52ghemd7k5chcngdgem9l3jw2secmgyx", + "ed25519_pk1254acde5chmmwelfezuvjze87y29ahnm8e7s5zz059um0ac22y2swd0lqz", + "ed25519_pk1phjtfuzc5hnta8m6ls7hwzrenhl7x5r3q4ls6tf85h9qg90xr4aqd68x64", + "ed25519_pk1rjcy6yz577qk5w2avy3xfsn9frvtyz82mnmqea80ggpzewq7eunsa43d8u", + "ed25519_pk1x3yrhaj326p2nfyn9l3f2jn4yk0zypw2eysskj5xyzu78f7cp04qld8zdv", + "ed25519_pk1udp6nwxxx5ev4kz4cdjxsnac5ur0ahempwyef3yvrl7c5j445tpsltwru3", + "ed25519_pk13cxmqz05xj75y79dqa92s3ly50y4pw2l5wqp0j30fzt589swc6dqq5frn4", + "ed25519_pk10latqu9xsxq3d9y9vqpm0xqnthz3hxaggztqkph5s59k9tsqwpxqdgwgu5", + "ed25519_pk154k8ee84awqhcfa9wndpjfzgedd75v9q6dksyt6ec4uefv65zdssze4w6z", + "ed25519_pk1cmnf6jfkksyscs97z73st0sezm4q4xp9xwamp7xkan0jwmc4qt8q7cql0p", + "ed25519_pk1zhcwpwgxr4zcwjxy3k7q3r0jjuxg62mkmmdkm8k0eq67wuck35rsxdptge", + "ed25519_pk1za2p80kge66uy9pefwgnh5m0qznh8h6j3ad0908qq8l5e6klk98qvnk8tg", + "ed25519_pk1zyh3rnp5p2d2tndk2wyquvemcd4pv70asamp26sljhfptg06nwssr7uya3", + "ed25519_pk1resfkkgqlmhxsc3566jry4npztvx0wh9dwhwagqz7qv0ps2mtkfq4kjqky", + "ed25519_pk1ewm9ghvgs8tq23mawysk2a3nlvcfemthkger3wd2xq249pumc5xspkmrjq", + "ed25519_pk1hyuk7n4t74mkuwev7z09y9zrguwvj85qspny4mar33p5g7xwmkvq2mg6ck" + ], + "pool_pledge": { + "quantity": 28, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 107, + "unit": "lovelace" + }, + "pool_id": "pool1cffgcj8krh0mnqnh4kwgxr55hqfvzt2yfr6cj56p2hjrgz53j8u", + "pool_margin": { + "quantity": 97.29, + "unit": "percent" + } }, { - "quantity": 145, - "unit": "lovelace" + "certificate_type": "deregister_pool", + "pool_id": "pool1va7g7zde9t4mntqlqly7rxalc9ldmhdt8umwq90crtjugyyxdml", + "retirement_epoch": 21598 }, { - "quantity": 92, - "unit": "lovelace" + "certificate_type": "register_reward_account", + "reward_account_path": [ + "1983", + "11336", + "17613", + "23155", + "22438" + ] }, { - "quantity": 52, - "unit": "lovelace" + "certificate_type": "genesis" }, { - "quantity": 24, - "unit": "lovelace" + "certificate_type": "register_reward_account", + "reward_account_path": [ + "18636", + "999", + "19233", + "11763", + "653" + ] }, { - "quantity": 109, - "unit": "lovelace" + "certificate_type": "deregister_pool", + "pool_id": "pool1hrfxpxs5egh2yh09dj7m7g4x6dtt2rt2tdtvxge43p35qtwy3j9", + "retirement_epoch": 3514 }, { - "quantity": 217, - "unit": "lovelace" - } - ], - "metadata": null, - "collateral": [ - { - "address": "", - "id": "524778451dc018644d869406d01e02e67c7631585e26cab2c7402e0a6b241127", - "index": 32289, - "amount": { - "quantity": 167, - "unit": "lovelace" - }, - "derivation_path": [ - "10294", - "9953", - "29339", - "11625", - "29372", - "13082", - "18579", - "16637", - "4282", - "18143", - "6652" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 36, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } + "certificate_type": "join_pool", + "pool": "pool1juk97tzlfv8kg235y0xnquq20l320sr8h73xc54xcarfz54flef", + "reward_account_path": [ + "15933", + "19357", + "21757", + "19790", + "23949" ] }, { - "address": "", - "id": "38730335a817092a0678367e7e90683f4d7e49566b311264785a4b411a2ce927", - "index": 17587, - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "derivation_path": [ - "9814", - "6644", - "3513", - "31106", - "26467", - "27028", - "2749", - "14379", - "18006", - "1113", - "19477", - "10376", - "3600", - "18856", - "23007" - ], - "assets": [] - }, - { - "address": "", - "id": "359d2d53215a4a470d669f366f2656415a4145496d7319161823858c0a8a4848", - "index": 31994, - "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "derivation_path": [ - "27245", - "2338", - "24244", - "20251", - "28271", - "392", - "31016", - "15612", - "26609", - "17298", - "5464", - "26614", - "19100", - "5994", - "17319", - "2597", - "17491", - "24839", - "19873", - "5668", - "3935", - "19154", - "24119", - "16238", - "28687", - "189", - "18794", - "16189", - "18848", - "26232", - "25725" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "certificate_type": "genesis" }, { - "id": "efde38301b3d11e7635c03046107150f096500e51b7c38022320840c7e450356", - "index": 1 + "certificate_type": "join_pool_external", + "pool": "pool17z647dat0rq2yk2s6gv8a9007xmnqnzfj4dqehxdgsagk4a3wjj", + "reward_account": "" }, { - "id": "0dc710600553609725055023de2b565e28001ae759a27cbd3953172364862a04", - "index": 0 + "certificate_type": "register_reward_account_external", + "reward_account": "" }, { - "address": "", - "id": "6f3d690f44306c2a7c07035c50365d7e6337ce0e61a94b511063096464246a36", - "index": 16856, - "amount": { - "quantity": 219, - "unit": "lovelace" - }, - "derivation_path": [ - "8821", - "6741", - "27924", - "4991", - "16339", - "12601", - "12435", - "17404", - "9514", - "29499", - "31819", - "7465", - "30860", - "19663" - ], - "assets": [] + "certificate_type": "deregister_pool", + "pool_id": "pool1reeha0grkkf9k4s9p2sasaylthznvuemhw3jec7ym28962hr380", + "retirement_epoch": 18701 + } + ], + "deposits_returned": [ + { + "quantity": 91, + "unit": "lovelace" }, { - "address": "", - "id": "754c73556415691d1a7e5c7753657940442b87924454366b58774c2b8d82772b", - "index": 391, - "amount": { - "quantity": 96, - "unit": "lovelace" - }, - "derivation_path": [ - "18882", - "17048", - "23276", - "32517", - "15468", - "5740", - "13686", - "4005", - "10976", - "20947", - "17603", - "30834", - "7002", - "8878", - "28243", - "30137", - "26639", - "6436", - "10454", - "19724", - "29167", - "30386", - "26663", - "13249", - "25755", - "15937", - "8401", - "19510", - "1563", - "25514" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 216, + "unit": "lovelace" }, { - "id": "400a062f3c7061115123d16c3cc75171661121043d2c9c1159765651753a6a3e", - "index": 0 + "quantity": 245, + "unit": "lovelace" }, { - "id": "63a76452393698331c3e7b646d4a4fe24b500829114f33764e61795746635277", - "index": 0 + "quantity": 80, + "unit": "lovelace" }, { - "id": "560f4a705673f40f25512ab6295f2e07a5697312390c53035b245b6179321142", - "index": 0 + "quantity": 209, + "unit": "lovelace" }, { - "id": "48309d067a38876f5759068f517c4a79350a20765126392c717beb3127c835da", - "index": 0 + "quantity": 56, + "unit": "lovelace" }, { - "id": "6a1a4f455ce1bd62b712646c4c3e042e3f755d6403782028097a04207b4cb60d", - "index": 1 + "quantity": 141, + "unit": "lovelace" }, { - "address": "", - "id": "35ac143b6b593d157fff160c7062a6652b2774705a6e50ec630b25ff70554f03", - "index": 31084, - "amount": { - "quantity": 170, - "unit": "lovelace" - }, - "derivation_path": [ - "7626", - "26520", - "30926", - "32342", - "11947", - "599", - "29577", - "30546", - "20996", - "17102", - "10746", - "15461", - "12355", - "14209", - "6288", - "21169", - "7239", - "31235", - "6260", - "5226", - "3261", - "24271", - "29254", - "24963", - "2486", - "17754", - "13726", - "9705", - "1870" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 69, + "unit": "lovelace" }, { - "address": "", - "id": "0d476c3fb67b5f5c38e55e033a5f6d2e4f7e651b2274a504154c6745663f040f", - "index": 16178, - "amount": { - "quantity": 155, - "unit": "lovelace" - }, - "derivation_path": [ - "21065", - "19490", - "11357", - "23875", - "9786", - "31472", - "25687", - "2695", - "3926", - "5953", - "26859", - "4217", - "1671", - "11707", - "21710", - "18795", - "4280", - "4210", - "16292", - "4152", - "32128", - "23806", - "11884", - "20621", - "22497", - "11830", - "8763" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "quantity": 250, + "unit": "lovelace" }, { - "address": "", - "id": "092251152b505b144b3e4657074b6f3a6b44362a3e1b205611115b2a9a585c56", - "index": 5276, - "amount": { - "quantity": 148, - "unit": "lovelace" - }, - "derivation_path": [ - "12063", - "9321", - "9407", - "4411", - "7899", - "31647", - "10734", - "11905", - "9710", - "18116", - "23441", - "17311", - "6028", - "2187", - "21558", - "21119", - "15160", - "23695", - "31811", - "19829", - "31788", - "17321", - "27794", - "13700" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 40, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 207, + "unit": "lovelace" }, { - "id": "425c01e7515d7813316c0800558512130b3c0c000833584619791724596f706e", - "index": 1 + "quantity": 242, + "unit": "lovelace" }, { - "address": "", - "id": "2a2d064f2954900e0144a34e285e5ba3246b3a79073369d47221713e30655968", - "index": 7347, - "amount": { - "quantity": 88, - "unit": "lovelace" - }, - "derivation_path": [ - "30524", - "30099", - "17145", - "4365", - "1935", - "6475", - "16149", - "16119", - "25151", - "15102", - "11300", - "25289", - "21990", - "16477", - "3327", - "949", - "11462", - "16637", - "13114", - "28905", - "20274", - "13255", - "18922", - "6733", - "22927", - "26875", - "20718", - "5434" - ], - "assets": [] + "quantity": 227, + "unit": "lovelace" }, { - "id": "02751945624d6b180142587b62575f365f4514dd7a513f174c2d200658694d29", - "index": 0 + "quantity": 195, + "unit": "lovelace" }, { - "id": "5d67212f573a0d0b075d4c131e32eb2946242a56015a09625ca39e0c102f7f39", - "index": 1 + "quantity": 250, + "unit": "lovelace" }, { - "address": "", - "id": "287e5d6a46073620201b4b27101b064c56227dfa09434d29ea6e196b5569b621", - "index": 19193, - "amount": { - "quantity": 247, - "unit": "lovelace" - }, - "derivation_path": [ - "1666", - "4462", - "205", - "7378", - "18069", - "15110", - "4818" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "quantity": 31, + "unit": "lovelace" }, { - "id": "201b7e4166771f3ee17417095c195e97466354afaa306cef92fd5b5359687368", - "index": 0 + "quantity": 218, + "unit": "lovelace" }, { - "id": "1d903065477e50a1704eca0dcf0f352a7b5f56182e2111d2663c275767361369", - "index": 1 + "quantity": 25, + "unit": "lovelace" }, { - "address": "", - "id": "4255db3d2a01451547c24262260d2078156d3c7a2e0c1d3037370ad6154fbc21", - "index": 4729, - "amount": { - "quantity": 32, - "unit": "lovelace" - }, - "derivation_path": [ - "23215", - "19643", - "9147", - "30810", - "18703", - "16820", - "2703", - "20667", - "5930", - "6058" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 38, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "quantity": 181, + "unit": "lovelace" }, { - "address": "", - "id": "40431a310e6a1c0c7d2f64294a4c597eb80d6b3752554e640b08c8675b43001c", - "index": 8325, - "amount": { - "quantity": 205, - "unit": "lovelace" - }, - "derivation_path": [ - "30435", - "10691", - "17701", - "185", - "18842", - "2494", - "19573", - "3287", - "24754", - "10634", - "28707", - "2754", - "21687", - "24066", - "21105", - "18370", - "15023", - "22142", - "14297", - "9699", - "24983", - "17828", - "7750", - "23950", - "12032", - "5498", - "4356" - ], - "assets": [] + "quantity": 198, + "unit": "lovelace" + }, + { + "quantity": 113, + "unit": "lovelace" }, + { + "quantity": 39, + "unit": "lovelace" + } + ], + "metadata": { + "17": { + "int": 0 + } + }, + "collateral": [ { "address": "", - "id": "0d69284c1de8d54075136a74c97b2b370e720d4c4927e31d274f6e5747c55d6a", - "index": 1365, + "id": "4a0d0708507e035ca1545a1a5b50272b14b82a5a31463abc1bd9687f7ed75150", + "index": 24005, "amount": { - "quantity": 254, + "quantity": 27, "unit": "lovelace" }, "derivation_path": [ - "12009", - "220", - "32409", - "20289", - "3789", - "1139", - "10253", - "19056", - "24909", - "11402", - "3268", - "2929", - "8547", - "32516", - "1761", - "3219", - "15361", - "19280", - "21375", - "6541", - "11238", - "4228", - "11944", - "27387", - "15791" + "31331", + "20262", + "2628", + "4531", + "11911", + "11919", + "13919", + "25205", + "9229", + "11537", + "31283", + "29396", + "13028", + "15771", + "16494", + "12927", + "31556", + "11095", + "28645", + "6790", + "20288", + "26174", + "11112", + "25744", + "24059", + "7664", + "16854", + "25883", + "922", + "31840" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 4, + "asset_name": "546f6b656e43", + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", - "id": "5c225ba0644e473145a7525845115b390f9c2a3ea6e8363d0603342c546f480e", - "index": 31643, - "amount": { - "quantity": 252, - "unit": "lovelace" - }, - "derivation_path": [ - "26456" - ], - "assets": [] - }, - { - "id": "664c234b526d243e987c043d37548b057e420c4b432b0c0c6767703a77687324", - "index": 1 - }, - { - "address": "", - "id": "3f340046761b46484a17056340233c60330700c777ab71072278104234280c18", - "index": 22314, - "amount": { - "quantity": 164, - "unit": "lovelace" - }, - "derivation_path": [ - "1262", - "9095", - "27571", - "26807", - "16769" - ], - "assets": [] - }, - { - "address": "", - "id": "b25a015b7fda770d38945c2a6914a0c2cf3023dd275974d33d54757111221296", - "index": 7720, + "id": "07326b00374f72754072731833846f640a50207f9f0a4c0a7a69365b4c4546e3", + "index": 11275, "amount": { - "quantity": 219, + "quantity": 157, "unit": "lovelace" }, "derivation_path": [ - "17803", - "7575", - "6148", - "16362", - "19457", - "17773", - "15986", - "9140", - "30149", - "15674", - "14188", - "8176" + "17143", + "28163", + "17068", + "28557", + "29456", + "5182", + "29113", + "18844", + "1396" ], "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e43", - "quantity": 26, + "quantity": 6, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 25, + "asset_name": "546f6b656e45", + "quantity": 57, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 20, + "asset_name": "546f6b656e45", + "quantity": 8, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 48, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 5, + "asset_name": "546f6b656e45", + "quantity": 33, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - }, - { - "id": "2f5a6e2c293938141d907303532b0ac3291d1c4d2b225ad0060a4d03363d192f", - "index": 0 } ], "mint": { "tokens": [ { "policy_script": { - "script": "policy_vkh1kvxvm4fs7duh7p39fss86vkegq3yh70k8as8jnh89fr0cljwdsj", + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "6a3b477a0aa261a370fdbc7c179108c66def6037cdc8473cfd3ee7f4", + "assets": [ + { + "fingerprint": "asset19sh55wphpxdhlvj4ssn9vy3rezna8mujx37dhs", + "asset_name": "546f6b656e4c", + "quantity": 681 + }, + { + "fingerprint": "asset17amfp3cet05khh44z243fz8uqdtucl4x3wjclc", + "asset_name": "546f6b656e52", + "quantity": 9425 + }, + { + "fingerprint": "asset17mxn502204ymt98un5840ryngr6mnxh3ylfy0m", + "asset_name": "546f6b656e43", + "quantity": 9679 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1l3u5tl472hl253zqjl32enj634dt33xfsren66x2nyt8qm05wu0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "fc7945febe55feaa444097e2acce5a8d5ab8c4c980f33d68ca991670", + "assets": [ + { + "fingerprint": "asset1agrfydns9kewtcs6zk9m7eyclwmpupl97t6tqp", + "asset_name": "546f6b656e53", + "quantity": 3235 + }, + { + "fingerprint": "asset1n9nm3xqlq6jpvnek3qcqrmqly6xlem40esvlqp", + "asset_name": "546f6b656e5a", + "quantity": 7375 + }, + { + "fingerprint": "asset1hp5jah9la4hyk05uqdqryeghwk8jshsne5u6lj", + "asset_name": "546f6b656e4f", + "quantity": 1578 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1gqvk5a5fxa09plkhy35ayy4gw0vdccjs8hs0utugvslxcyaq440", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "40196a7689375e50fed72469d212a873d8dc62503de0fe2f88643e6c", + "assets": [ + { + "fingerprint": "asset12y0yq4m4fd5zf44efmtu0zmvhqle76yl4k5vlx", + "asset_name": "546f6b656e47", + "quantity": 6088 + }, + { + "fingerprint": "asset19qjd7rct3xk0jt8mrrt29ny52m53nw03g9dy2q", + "asset_name": "546f6b656e4b", + "quantity": 9668 + }, + { + "fingerprint": "asset1g3d89h94e33u54lj3jtepysf2p69fwqdzdkr3h", + "asset_name": "546f6b656e48", + "quantity": 5587 + }, + { + "fingerprint": "asset10r6snl658garr55hk0ttk3n9va52wy3xnat6hh", + "asset_name": "546f6b656e42", + "quantity": 6815 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1hykvcyxxrsve4jet85u9am6kup9jm2ap4ze5amax54q9yk97nfr", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "b92ccc10c61c199acb2b3d385eef56e04b2daba1a8b34eefa6a54052", + "assets": [ + { + "fingerprint": "asset12x09kkrx2fammz0w2xn2ce969crdxgh0pyluev", + "asset_name": "546f6b656e4b", + "quantity": 6346 + }, + { + "fingerprint": "asset15xty67hf9h703wru52p78qy9ccrqhtgkxgh3rz", + "asset_name": "546f6b656e46", + "quantity": 4544 + }, + { + "fingerprint": "asset1anye5rpt2s3apgqtk2szl3m4aphejlhekd7qjp", + "asset_name": "546f6b656e4b", + "quantity": 7188 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "dbdc7237d3512a1dd736a58b24399d9e14b580268e99ce2dea956e8c", + "assets": [ + { + "fingerprint": "asset1fkvltks3stflp63hceukn94yzq6q5cga4jg47v", + "asset_name": "546f6b656e4c", + "quantity": 6052 + }, + { + "fingerprint": "asset1hq0gsc94cxvy9k8fvedqlqq5j6s5yejf3syq0z", + "asset_name": "546f6b656e58", + "quantity": 1261 + }, + { + "fingerprint": "asset19yfjxu0hw4v7vp4nap4tdaas5w6p5zulerqej4", + "asset_name": "546f6b656e52", + "quantity": 7245 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "b7b75e79ec63a6310b175e17b070a817f1f8a93d7cd41f4057c7a1ff", + "assets": [ + { + "fingerprint": "asset1s5ztcwund8e8tupvzn04y579j0me5npx2zhetq", + "asset_name": "546f6b656e42", + "quantity": 1539 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "c27bd73caaaff02017004d81a93ed638d056fea9096bcbe092bb4dc1", + "assets": [ + { + "fingerprint": "asset1f82j78wqhas4c3lw7nrpmy24n7m0anrca70xpp", + "asset_name": "546f6b656e54", + "quantity": 5674 + }, + { + "fingerprint": "asset1hk3t3mx29hyc5k3zrjphcmghnn85hmeh5pz3jh", + "asset_name": "546f6b656e48", + "quantity": 1100 + }, + { + "fingerprint": "asset1k3env5qt65u4qhqhljsmtulz7nskkppj3y9stu", + "asset_name": "546f6b656e44", + "quantity": 3197 + }, + { + "fingerprint": "asset1yskltluzvulkda4fkvmzgahe5yg806qh69657w", + "asset_name": "546f6b656e5a", + "quantity": 7367 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "ad6d9bb0a847584fd85ebc47b73c61727b0c5a5330274d8aba2aa07d", + "assets": [ + { + "fingerprint": "asset1nfmyqcmefycznrq2s8a4r65d4uy09588vv94vg", + "asset_name": "546f6b656e43", + "quantity": 6974 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1ztvudxpr3xasarxevg88lu7r3w9a49v9q27ryxfm3weryr6m2tc", "script_type": "native" }, - "policy_id": "b30ccdd530f3797f06254c207d32d940224bf9f63f60794ee72a46fc", + "policy_id": "12d9c6982389bb0e8cd9620e7ff3c38b8bda958502bc32193b8bb232", "assets": [ { - "fingerprint": "asset15rsxmmg5zvx9yc24thfpk0ts7zujasdqrduuz3", - "asset_name": "546f6b656e59", - "quantity": 4359 + "fingerprint": "asset1ht2g3k3jtezz03xjl9zkpye7zx9qafgmramdfm", + "asset_name": "546f6b656e53", + "quantity": 3243 }, { - "fingerprint": "asset1zqx09hctaph6rnhum32r70xceuqtx8u4rdstwa", - "asset_name": "546f6b656e59", - "quantity": 514 + "fingerprint": "asset18yvcgtqetuzh0cvrgwlme3ptsxfdh248jkv7g3", + "asset_name": "546f6b656e4c", + "quantity": 3391 }, { - "fingerprint": "asset1un34q4ej7dmvdmj9qx9gpvjdumty9rzx67kyrn", - "asset_name": "546f6b656e4e", - "quantity": 6163 + "fingerprint": "asset1j6e54f59xs43v9ry7tndsusp8rralg67e83phn", + "asset_name": "546f6b656e4d", + "quantity": 7781 + }, + { + "fingerprint": "asset1vxfqgzscdxqwj7fy9kkzyr2at2tw59nkqxq334", + "asset_name": "546f6b656e45", + "quantity": 9984 } ] }, { "policy_script": { - "script": "policy_vkh1yeqx9tjwpk5jguzyrc6tgpz27t2kx3t8nmfkaetve2qgkte4men", + "script": { + "all": [ + "policy_vkh1wsn5qz5v60qw7ykc0hnu4c8322h4d0furw8yvcrw7zzrc8jxarv", + { + "active_from": 100 + } + ] + }, "script_type": "native" }, - "policy_id": "264062ae4e0da92470441e34b4044af2d56345679ed36ee56cca808b", + "policy_id": "7427400a8cd3c0ef12d87de7cae0f152af56bd3c1b8e46606ef0843c", "assets": [ { - "fingerprint": "asset1dm6df9qlsjgz9zzdzhwsl4437mhqv05m3l7le8", - "asset_name": "546f6b656e4a", - "quantity": 75 + "fingerprint": "asset1wq6lqegn6j3npsh0frthxxqrfrxpvrt0fcefzj", + "asset_name": "546f6b656e46", + "quantity": 9085 + }, + { + "fingerprint": "asset129whf7x9n7cur6jxlg4rnhumnleyfgmkpuuw4d", + "asset_name": "546f6b656e45", + "quantity": 3259 + }, + { + "fingerprint": "asset1gvy4mstg9ufayxmxvz9c5axt8l52mu3rh0gy6r", + "asset_name": "546f6b656e59", + "quantity": 7150 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1pd855awy7fk2fh0hnhqezdjnnjppyu4kexd4jf5wzu32z0sy28m", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "0b4f4a75c4f26ca4ddf79dc19136539c821272b6c99b59268e1722a1", + "assets": [ + { + "fingerprint": "asset1m0ul4dfdv98n2pf3h646h9dfpscqf6ydvs05qj", + "asset_name": "546f6b656e57", + "quantity": 1949 + }, + { + "fingerprint": "asset1f8depsu5tfxg6p4xmf3g0tqpcuhhner9473y8j", + "asset_name": "546f6b656e4d", + "quantity": 1385 + }, + { + "fingerprint": "asset1lz0zxrppkdf97m6384fmmgx0gp3qclzcx0pym5", + "asset_name": "546f6b656e43", + "quantity": 2357 + }, + { + "fingerprint": "asset1pw0yyk9ec06g4l5ltzvq60r936g3q5laz0dphu", + "asset_name": "546f6b656e54", + "quantity": 5054 } ] }, @@ -4988,12 +4589,12 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "8ce47e9acb5f7f13db9b3f6e80215a55a89a0a8756bc2fc34b8e93f3", + "policy_id": "39ff5d408efd6fbb79bc83e08ee860728a659f893659504a13bec78c", "assets": [ { - "fingerprint": "asset1jwcm4q90yqhx2xd3x5txzex968g72ucwhx0zfh", + "fingerprint": "asset1yyd0dnxfaywm0k45enh4npeyjj0tljhl094ecy", "asset_name": "546f6b656e47", - "quantity": 7476 + "quantity": 571 } ] }, @@ -5001,33 +4602,49 @@ "policy_script": { "script": { "all": [ - "policy_vkh1f2eczrnc5fjq9eduu43lu0wa5pkjjm7r7l4v43m7w06duvmw0pn", + "policy_vkh1m3f9da2377mcaylhxx2yjhwnm8rtmk9yv4x0my4rct9862l7twn", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "4ab3810e78a26402e5bce563fe3ddda06d296fc3f7eacac77e73f4de", + "policy_id": "dc5256f551f7b78e93f73194495dd3d9c6bdd8a4654cfd92a3c2ca7d", "assets": [ { - "fingerprint": "asset1rnelsa2pchsz47nuhdcgxql0vndhcgkkc5zzsh", + "fingerprint": "asset1ch7uxjfvrtzr80ejfm3343d2h6499cegw0lr25", "asset_name": "546f6b656e4d", - "quantity": 8251 + "quantity": 7220 }, { - "fingerprint": "asset1k7u3zkf065pp8zg4yvyc5cthqwg4v4s6y5z8fs", - "asset_name": "546f6b656e4a", - "quantity": 7423 + "fingerprint": "asset1jk6fgcsjcnugpfeazzrvderkea36mmz9snvm03", + "asset_name": "546f6b656e4d", + "quantity": 949 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh159n5vye9yzkt4ywml000qtu60rkprumarqg5qezj6vjdsadw4n5", + "script_type": "native" + }, + "policy_id": "a16746132520acba91dbfbdef02f9a78ec11f37d1811406452d324d8", + "assets": [ + { + "fingerprint": "asset149ye0rj2306lqs958285z7yshwp6j7lvrvry0x", + "asset_name": "546f6b656e45", + "quantity": 7253 }, { - "fingerprint": "asset1y4pdpkeypugtatavqq0av2m4dgedn8zvje4e3p", - "asset_name": "546f6b656e58", - "quantity": 5681 + "fingerprint": "asset1jqlzq9jcg490gdfg4rk6tfgzcf5zm9wtaezftj", + "asset_name": "546f6b656e47", + "quantity": 2310 + }, + { + "fingerprint": "asset1jkh68yqhhnj8znk5nx0kdn3cdvxwn3rtxzpp6t", + "asset_name": "546f6b656e52", + "quantity": 7808 } ] }, @@ -5035,7 +4652,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh176hn3xs4te5w0283petdknxem2ranwh4tvm5hgy35ulrq3r356f", + "policy_vkh1ne75lujkfs72m6vuaxfm4t5h332vul67d0dfaqfh8fpm5hqefnv", { "active_from": 100 } @@ -5043,22 +4660,27 @@ }, "script_type": "native" }, - "policy_id": "f6af389a155e68e7a8f10e56db4cd9da87d9baf55b374ba091a73e30", + "policy_id": "9e7d4ff2564c3cade99ce993baae978c54ce7f5e6bda9e81373a43ba", "assets": [ { - "fingerprint": "asset1jlerwqlkf54347pjmnlkp9v4s3gy5e3y0rl8fj", - "asset_name": "546f6b656e57", - "quantity": 5603 + "fingerprint": "asset1yxqnvz2xw68j43ggfdkqky00hphg3rxe4u5d6v", + "asset_name": "546f6b656e50", + "quantity": 88 }, { - "fingerprint": "asset1l8n869cz95kqgzrvxmnxvfdef54298gv8gme9h", - "asset_name": "546f6b656e49", - "quantity": 2387 + "fingerprint": "asset10uc6a53fru6v9jzcyss4ue820dq30sjca96nrd", + "asset_name": "546f6b656e50", + "quantity": 4060 }, { - "fingerprint": "asset1kd9ja24tpn0mxz7u8fjj0xq6fmxyz4lez44ksp", - "asset_name": "546f6b656e4c", - "quantity": 3103 + "fingerprint": "asset146tvnznn80g24lx53xx2lnzjr0utv47x2a2wue", + "asset_name": "546f6b656e51", + "quantity": 8663 + }, + { + "fingerprint": "asset18vqmk5pvq968j39csdrrzs5yxdfjfr79y4k2py", + "asset_name": "546f6b656e58", + "quantity": 4845 } ] }, @@ -5067,75 +4689,186 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "b3b6898bda1040155cd7fddb23506d23c493a9cb4f85b92e6a5fe346", + "policy_id": "c9180a0a8ccd4fe443a36083a9cfd8b9d2cc241e23f7365e2d68cb05", + "assets": [ + { + "fingerprint": "asset1kerxsn8qh94gq65yppu7knlw73vmcd2su28slj", + "asset_name": "546f6b656e47", + "quantity": 3527 + }, + { + "fingerprint": "asset1jft3lhdggpwdry838vprryggf82cpnzfmaxpud", + "asset_name": "546f6b656e57", + "quantity": 9337 + }, + { + "fingerprint": "asset1y0n7ry69vk9l8xy08tzl7ay9w4ys5m4yhf0nsv", + "asset_name": "546f6b656e59", + "quantity": 6398 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1c44ws9hw2wfp490rzh062ll62jjlc2m5gq9xwjumvup86j53kx4", + "script_type": "native" + }, + "policy_id": "c56ae816ee53921a95e315dfa57ffa54a5fc2b74400a674b9b67027d", + "assets": [ + { + "fingerprint": "asset1yae89qhev3ngp4g96jjmld0azugu5zn37fqqmm", + "asset_name": "546f6b656e58", + "quantity": 2798 + }, + { + "fingerprint": "asset10wv2ju2hagt3u6sm28gmu2cudcp0n554ewcz9n", + "asset_name": "546f6b656e55", + "quantity": 2427 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1umvv6p2h676zrfe79c5mrcjyzvvkaaaskqexuqfpzfha7javmgn", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "e6d8cd0557d7b421a73e2e29b1e24413196ef7b0b0326e0121126fdf", "assets": [ { - "fingerprint": "asset1yd2a0lz749m336a20dwnyrx2hs8arhjddwsm9e", + "fingerprint": "asset1wr6jedmuh2zjqd60ut6jvkpgcuvuph4csp8588", "asset_name": "546f6b656e4b", - "quantity": 9008 + "quantity": 9081 }, { - "fingerprint": "asset1gr4jg274wd5vu387fjukkcgrfemcycelhul0tp", - "asset_name": "546f6b656e42", - "quantity": 9416 + "fingerprint": "asset132zfhv80jm8qhrf8udl0hfqa7gp87zyvl5tkhz", + "asset_name": "546f6b656e56", + "quantity": 5114 }, { - "fingerprint": "asset1m0huur9e8megjjxshv6puftntvtgnqgvzzdzem", - "asset_name": "546f6b656e4e", - "quantity": 4227 + "fingerprint": "asset17trm456yj9z6lqpdmuf7uaf9vepu27g4p9wch9", + "asset_name": "546f6b656e59", + "quantity": 1425 }, { - "fingerprint": "asset18q75ja7dlcrn96fe9wdh4n73l9ygl7wjmexnzh", + "fingerprint": "asset1w2amyz8v5gnvgud8nqxgcdpfrtx2p3ezrel834", "asset_name": "546f6b656e43", - "quantity": 5074 + "quantity": 6946 } ] }, { "policy_script": { - "script": "policy_vkh1wu87guxjzgvr46u5vh5haw8rq6jmchkpd8x4zgajtwdz29508rn", + "script": { + "all": [ + "policy_vkh1fjzrrs0gh2za2a4wxpdfe0d69g8u0rty8lz3n899zzr3yrjhyrc", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, "script_type": "native" }, - "policy_id": "770fe470d212183aeb9465e97eb8e306a5bc5ec169cd5123b25b9a25", + "policy_id": "4c8431c1e8ba85d576ae305a9cbdba2a0fc78d643fc5199ca5108712", "assets": [ { - "fingerprint": "asset1evl6n53gg9pd2652wfr7kwr253g2x9h7kjkdz5", - "asset_name": "546f6b656e4e", - "quantity": 4334 + "fingerprint": "asset13vhrl439ug2h4jlh54jynadkqm0tweu9hu9m6h", + "asset_name": "546f6b656e44", + "quantity": 7175 }, { - "fingerprint": "asset176x494y7u88r5k7wfmzcr66l5q9y2252uv9dq5", - "asset_name": "546f6b656e56", - "quantity": 6433 + "fingerprint": "asset1e62ms79z3jv2mu5wt3y2s77k3acrzsuw9veddq", + "asset_name": "546f6b656e57", + "quantity": 1546 }, { - "fingerprint": "asset1fql3q4pdkrkcgzxhuzjzt35e82k5w50g23snan", - "asset_name": "546f6b656e4f", - "quantity": 9648 + "fingerprint": "asset1r0de8g90easr6xczf293k60y8x83ux8svmhn59", + "asset_name": "546f6b656e52", + "quantity": 6712 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh1gmdkj3g0kf32qg0xf3lkmccr3aagwtjrx0cml2l4ste57llnjq7", + "script_type": "native" }, - "policy_id": "34d8b853a2b527430f7576cf1f3b5d8252a647c89db6a18877624248", + "policy_id": "46db69450fb262a021e64c7f6de3038f7a872e4333f1bfabf582f34f", "assets": [ { - "fingerprint": "asset1vug420zd0xsyc2zx2jsxakyugwxwxl2nynklpe", - "asset_name": "546f6b656e4f", - "quantity": 6101 + "fingerprint": "asset10sns65xa8ydf4u48ypz8ze5lwxdccuam2uu85n", + "asset_name": "546f6b656e43", + "quantity": 7315 + }, + { + "fingerprint": "asset1ftf54vh5q0msql9hx4cf00l2k0szt3p7n09an2", + "asset_name": "546f6b656e4c", + "quantity": 71 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1vqd4f0tam4tuvz0eq46rwfgl5undnsm25h9fee9r97037f9cncw", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, + "script_type": "native" + }, + "policy_id": "601b54bd7ddd57c609f9057437251fa726d9c36aa5ca9ce4a32f9f1f", + "assets": [ { - "fingerprint": "asset1upgkrw6sq3ph5vchcp53d2gkrrv29cr626ul5n", + "fingerprint": "asset1s8uf6zf2d8k9psle7lh7fydrv2j4xs20u0lp2x", "asset_name": "546f6b656e44", - "quantity": 9456 + "quantity": 4829 }, { - "fingerprint": "asset179h5n48zysuzpu8uf3wx32lkgjkqldysyfe8fg", - "asset_name": "546f6b656e4c", - "quantity": 7091 + "fingerprint": "asset1tczynuqjgs8kvedrgfnut3kuuklvaldlzlzr2s", + "asset_name": "546f6b656e52", + "quantity": 6319 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "7b041a465ff7b6eba46cc384a2ecaa91b83ef7763db55e40e7b6f759", + "assets": [ + { + "fingerprint": "asset1x789pafyl8zkptk586w269pkakqszwvc6z7rdf", + "asset_name": "546f6b656e58", + "quantity": 9371 + }, + { + "fingerprint": "asset1rk2j67xv5ym8jmmp804vfmwnaffn0zaa9jfjy4", + "asset_name": "546f6b656e4b", + "quantity": 7560 + }, + { + "fingerprint": "asset1fpk2m0g5dzuuq5xayrnv9urxp260ns6x7992pk", + "asset_name": "546f6b656e59", + "quantity": 7754 } ] }, @@ -5143,7 +4876,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1k7zw0v2l59dvf8kndyfc8yvss422zhe53m7p8dxwsxcd29n7j93", + "policy_vkh1hc3tmxcjxwkthjukq3pa9vtfr7ajfns4f83xtc72t3l67s6v23c", { "active_from": 100 }, @@ -5154,12 +4887,36 @@ }, "script_type": "native" }, - "policy_id": "b784e7b15fa15ac49ed369138391908554a15f348efc13b4ce81b0d5", + "policy_id": "be22bd9b1233acbbcb960443d2b1691fbb24ce1549e265e3ca5c7faf", "assets": [ { - "fingerprint": "asset18433990rdhm56lw4lpcte94hzuz5j0axx28u8n", - "asset_name": "546f6b656e50", - "quantity": 6384 + "fingerprint": "asset15rl8v352z9hf4fk2yf2u7kqq3tntxhh20fm6zs", + "asset_name": "546f6b656e47", + "quantity": 9489 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1ad9xqma9jk2tslyl7tc0p5r4qktdgtheza5kzpsv0w5pshu7dfw", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "eb4a606fa59594b87c9ff2f0f0d0750596d42ef9176961060c7ba818", + "assets": [ + { + "fingerprint": "asset1nc6s0gxld38kjtv58vq35q2uvv50xydh078ep3", + "asset_name": "546f6b656e56", + "quantity": 1160 } ] }, @@ -5168,22 +4925,72 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "62021f44652b979e6f821331f2f7174227c15a244ad6d51a755363ba", + "policy_id": "f5cb175036bcf4d534beecfde98396ea940d4d53e2fd4c405ff9f387", "assets": [ { - "fingerprint": "asset1vuc4dkzymzpxrlfr2wlq4th9u6y3jmzlzdw5na", - "asset_name": "546f6b656e4c", - "quantity": 525 + "fingerprint": "asset1z8ck0auq32yn058z6fnvcmkeww2pn8v6agrekx", + "asset_name": "546f6b656e45", + "quantity": 2817 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1hhf303n7pult22pmsvaheak3v9va8w6894atrfful6tq6xtxj8j", + "script_type": "native" + }, + "policy_id": "bdd317c67e0f3eb5283b833b7cf6d16159d3bb472d7ab1a53cfe960d", + "assets": [ + { + "fingerprint": "asset1khkaapuqm6q2cu48zk2es05x89vppykm62nz6n", + "asset_name": "546f6b656e4e", + "quantity": 8905 + }, + { + "fingerprint": "asset1a0m6zgcrh45svufj9hyjmk4wc4w2qefzl9exux", + "asset_name": "546f6b656e4d", + "quantity": 7299 + }, + { + "fingerprint": "asset1kmx6p665g4ua6ucnvvkj6j2ud87hmj8w30k9gd", + "asset_name": "546f6b656e47", + "quantity": 1166 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1rqpmxu7x6g5jrhufetanxuxkkgef06x550uplkljajxdyfalq2u", + { + "active_from": 100 + } + ] }, + "script_type": "native" + }, + "policy_id": "1803b373c6d22921df89cafb3370d6b23297e8d4a3f81fdbf2ec8cd2", + "assets": [ { - "fingerprint": "asset1zetuuaewtwegx5fz5wv259x2n3glhxqhdg22r3", + "fingerprint": "asset1lp4545mjup6xtrkfs5skm6q72lmg2nj55saaxc", "asset_name": "546f6b656e58", - "quantity": 7121 + "quantity": 3531 }, { - "fingerprint": "asset1s4cttvpaqfyw4tc0mgzhqqjph50jcn4ea37zrn", - "asset_name": "546f6b656e45", - "quantity": 5260 + "fingerprint": "asset1462w4a6swt7pe0mxfhfwexd3ch2uptpay9h2q0", + "asset_name": "546f6b656e44", + "quantity": 492 + }, + { + "fingerprint": "asset13ll69ra2k8aqqjkuajfea68he0e79fj00txg67", + "asset_name": "546f6b656e4b", + "quantity": 7172 + }, + { + "fingerprint": "asset1mkuwp0aa08zhcth0w0nm3wj2qz5gypyqq7c7eu", + "asset_name": "546f6b656e54", + "quantity": 5359 } ] } @@ -5194,1789 +5001,1321 @@ { "withdrawals": [ { - "context": "ours", - "amount": { - "quantity": 204, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 83, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 116, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 43, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 19, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 65, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 149, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 193, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 211, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 133, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 130, - "unit": "lovelace" - }, - "stake_address": "" - } - ], - "inputs": [ - { - "address": "", - "id": "771eef5744124f61b41ba5c4651772230e4ffb567535f8167e3075142d6d8b64", - "index": 15164, - "amount": { - "quantity": 129, - "unit": "lovelace" - }, - "derivation_path": [ - "928", - "13540", - "1203", - "15912", - "20545", - "18251", - "7482", - "27060", - "10523", - "13604", - "25775", - "16374", - "18872", - "30100", - "3728", - "13859", - "24170", - "24744", - "22698", - "31221", - "2616", - "13688", - "23619", - "233" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 44, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "id": "17260e6a552fbb6f6e2c7f3b794b8a537b505d3b0a671225558e0b26ab637e01", - "index": 0 - }, - { - "id": "3273780423691d36756f614e58e01c184e3f3f0e5f504b1b120a2f2edb71f549", - "index": 0 - }, - { - "id": "15a25b584a68698f461a603bf9eb536c11283c635f5b39386d78037f485a33eb", - "index": 1 - }, - { - "id": "744037435a3d2224575a64f938db33ee7e447146456c482a6e7487424fab696d", - "index": 0 - }, - { - "id": "56093a410b7f185f6f76394db16a7d0569730e09774e7a0215463652237a654c", - "index": 1 - }, - { - "id": "27701d0a513edc5f3a1e21376e22217000434c72482e0128076312603f074c71", - "index": 1 - }, - { - "address": "", - "id": "6ec3356a06110c11271d21563a7a7c2f620f3d2c6fe64b38774456fc7015574c", - "index": 28875, - "amount": { - "quantity": 47, - "unit": "lovelace" - }, - "derivation_path": [ - "22216", - "24538", - "32544", - "9797", - "16981", - "14270", - "31833", - "32372", - "27681", - "22814", - "1680", - "17143", - "27523", - "15213", - "19046", - "7952", - "7878", - "20508", - "6286", - "5580", - "17477", - "21912", - "19328", - "27123", - "9313", - "29377", - "26148", - "21919", - "8264" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "id": "8c70fc501f1f0f517c5c394b2778046f2d3d6a6d135d2c60d70b1d356c2de76a", - "index": 31319, - "amount": { - "quantity": 233, - "unit": "lovelace" - }, - "derivation_path": [ - "24750", - "21980", - "29486", - "26828", - "28322", - "6088", - "19274", - "17710", - "10614" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "id": "0c3a52926d680a7d1d7a2f7540673cb1704c20737676311e343c534a45640b20", - "index": 1 - }, - { - "id": "6d5c351a5f506c797841404d573a4d675e1c54376c5810fb171075120f36586d", - "index": 1 - }, - { - "address": "", - "id": "22704d7b5658207044661f1c4b5b1d1409215b5e31572232404921311522082a", - "index": 14084, "amount": { - "quantity": 146, + "quantity": 42, "unit": "lovelace" }, - "derivation_path": [ - "8713", - "15368", - "23144", - "4361", - "4219", - "25712", - "17664", - "21530", - "30556", - "3346", - "4582", - "19089", - "16467", - "10740", - "25734", - "3056", - "13149", - "3789", - "28275", - "30426", - "25181", - "12107", - "27920", - "23524", - "8411", - "11780", - "28383", - "11469", - "27594" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - ], - "collateral_outputs": [], - "outputs": [ + "stake_address": "" + }, { - "address": "", "amount": { - "quantity": 110, + "quantity": 241, "unit": "lovelace" }, - "derivation_path": [ - "16447" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 187, + "quantity": 101, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 108, + "quantity": 60, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 124, + "quantity": 138, "unit": "lovelace" }, - "derivation_path": [ - "31857", - "30460", - "11909" - ], - "assets": [] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 156, + "quantity": 0, "unit": "lovelace" }, - "derivation_path": [ - "1339", - "28961", - "17275", - "1233", - "12499", - "15649", - "21855", - "14326", - "23874", - "20419", - "18327", - "18325", - "22390", - "30236", - "16811", - "6243", - "1601", - "8366", - "3162", - "18537", - "25463", - "16414", - "21390", - "16331", - "17480" - ], - "assets": [] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 138, + "quantity": 206, "unit": "lovelace" }, - "derivation_path": [ - "7732", - "29007", - "24443", - "3604", - "15158", - "11537", - "13932", - "26176", - "8419", - "20158", - "19262", - "8801", - "11560", - "30837", - "3343", - "22150", - "4640", - "25980", - "13001", - "379", - "12020", - "18096", - "14262", - "2376", - "9252", - "15401", - "20187", - "16045" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 48, + "quantity": 219, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 31, + "quantity": 188, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 122, + "quantity": 151, "unit": "lovelace" }, - "derivation_path": [ - "22682", - "20043", - "26574", - "22095", - "101", - "22962", - "19994", - "25971", - "22630", - "16327", - "417", - "16462", - "25307", - "22580", - "19707", - "16455", - "4972", - "31016", - "18137", - "5263", - "22516", - "15575", - "32027", - "1202", - "12606", - "29482", - "6138", - "20938" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 103, + "quantity": 74, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 158, + "quantity": 192, "unit": "lovelace" }, - "derivation_path": [ - "8890", - "17525", - "255", - "25317", - "9582", - "2911", - "27104", - "3947", - "3035", - "23522", - "31783", - "21700", - "25515", - "17748" - ], - "assets": [] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 112, + "quantity": 77, "unit": "lovelace" }, - "assets": [] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 228, + "quantity": 95, "unit": "lovelace" }, - "derivation_path": [ - "4858", - "370", - "28223", - "15915", - "29993", - "25746", - "10686", - "23628" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 62, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 178, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 54, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 36, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 64, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 46, + "quantity": 132, "unit": "lovelace" }, - "derivation_path": [ - "19977", - "31313", - "9266" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 17, + "quantity": 129, "unit": "lovelace" }, - "derivation_path": [ - "31764", - "27159", - "31138", - "28615", - "26110", - "28210", - "2036", - "16633", - "4923", - "4698", - "1640", - "21833", - "14512", - "20293", - "26010", - "30043", - "27282", - "22919", - "4155", - "25044" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 32, + "quantity": 143, "unit": "lovelace" }, - "derivation_path": [ - "15864", - "12422", - "27757", - "26603", - "31338", - "13362", - "9852", - "16060", - "13353", - "20080", - "22714" - ], - "assets": [] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 165, + "quantity": 132, "unit": "lovelace" }, - "derivation_path": [ - "25981", - "30536", - "21382", - "22426" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 43, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 172, + "quantity": 23, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 36, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 120, + "quantity": 149, "unit": "lovelace" }, - "derivation_path": [ - "32300", - "21522", - "20421", - "14478", - "11968", - "28024" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 54, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 138, + "quantity": 85, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, + { + "context": "ours", + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ { "address": "", + "id": "2f500e4bfd04784d78cee540a9362b5f504abc60664a4b81da0cb861720c6160", + "index": 27172, "amount": { - "quantity": 129, + "quantity": 143, "unit": "lovelace" }, + "derivation_path": [ + "1816", + "4745" + ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] - } - ], - "id": "7036330f3e5b5f52155a675e70f02e6ea87c6d2a4829d50e6e266b260b95c51d", - "deposits_taken": [ - { - "quantity": 234, - "unit": "lovelace" - }, - { - "quantity": 197, - "unit": "lovelace" - }, - { - "quantity": 172, - "unit": "lovelace" - }, - { - "quantity": 108, - "unit": "lovelace" - }, - { - "quantity": 32, - "unit": "lovelace" - }, - { - "quantity": 97, - "unit": "lovelace" - }, - { - "quantity": 87, - "unit": "lovelace" - }, - { - "quantity": 238, - "unit": "lovelace" - }, - { - "quantity": 130, - "unit": "lovelace" - }, - { - "quantity": 244, - "unit": "lovelace" - }, - { - "quantity": 137, - "unit": "lovelace" - }, - { - "quantity": 69, - "unit": "lovelace" }, { - "quantity": 80, - "unit": "lovelace" + "id": "408f7d7b6e2f83dfdb65f2066d0f403f7d47642c426a9ef05c8554311dfd0cf0", + "index": 0 } ], - "burn": { - "tokens": [ - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "3bd50e8f700f80089320814475b7e8a87503a4bf35240102d61dd2f3", - "assets": [ - { - "fingerprint": "asset1x865zaltyvltedeg5xdv45n0u3z8exe3nx6h4p", - "asset_name": "546f6b656e5a", - "quantity": 1698 - }, - { - "fingerprint": "asset1sk92uprfhhsymyxuwdepmxj9d74l9znnhrszjh", - "asset_name": "546f6b656e54", - "quantity": 1813 - }, - { - "fingerprint": "asset104m2klapwp5dhmxmhk6mmzx8krdg40euhthclg", - "asset_name": "546f6b656e5a", - "quantity": 6081 - }, - { - "fingerprint": "asset1adtv75mhfyey2qlcu6eygn0fke880fqfw6ncwh", - "asset_name": "546f6b656e58", - "quantity": 2183 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh18mtq9aae32u72u2zqwfs7q0usgtgnlz6fvsycj333vsrzquu5fg", - "script_type": "native" - }, - "policy_id": "3ed602f7b98ab9e5714203930f01fc821689fc5a4b204c4a318b2031", - "assets": [ - { - "fingerprint": "asset1tw69umtl5zrklns53gkm7g9w2t4623y35anaff", - "asset_name": "546f6b656e55", - "quantity": 8299 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "86c0d34ec16f2b54f4343a434eb5affea0a1a7f7fb94632a86c95147", - "assets": [ - { - "fingerprint": "asset1w04e0rv3v6ehx3y36ctjkdhcsnklgtmt2ezmau", - "asset_name": "546f6b656e44", - "quantity": 8467 - } - ] + "collateral_outputs": [ + { + "address": "", + "amount": { + "quantity": 77, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1ja3zn5ya888mry9xcxf5s0n5k4jjta893yrglrgjg797qzju4m0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "976229d09d39cfb190a6c193483e74b56525f4e589068f8d12478be0", - "assets": [ - { - "fingerprint": "asset1n8upq3lhw3drz58863xkn75jhlrx4aq8el5s6x", - "asset_name": "546f6b656e59", - "quantity": 7267 - }, - { - "fingerprint": "asset1pfcfl82jd9v5vet5tcseqt6cc2jyh3kt4224sh", - "asset_name": "546f6b656e56", - "quantity": 6415 - }, - { - "fingerprint": "asset13a02maeszsas6yqyl7tdrx3x7r9zfrkru670pu", - "asset_name": "546f6b656e56", - "quantity": 9234 - }, - { - "fingerprint": "asset1x8dy35y94443njvpqx3ek79aktmhp9fcs6ts98", - "asset_name": "546f6b656e52", - "quantity": 5992 - } - ] + "assets": [] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 229, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh15y2e7llygsrrfc2fn5xzc3c083zv37kvpt05ujv28n86qkxr9ds", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "a1159f7fe4440634e1499d0c2c470f3c44c8facc0adf4e498a3ccfa0", - "assets": [ - { - "fingerprint": "asset1xvn60tq4nhvjjlsxzn7j58pr9wd8xywq4ewnyr", - "asset_name": "546f6b656e57", - "quantity": 8595 - }, - { - "fingerprint": "asset1fw0em380sa0rzh8jv5v80y90f4434vfu05rkug", - "asset_name": "546f6b656e52", - "quantity": 828 - }, - { - "fingerprint": "asset100p3vm8ts9xxx8a83duclrkpyf2uxg83fqaqnr", - "asset_name": "546f6b656e4a", - "quantity": 3615 - }, - { - "fingerprint": "asset1vj242q5gwsec0pwpdj64vfjgc6hju4p0eukt6p", - "asset_name": "546f6b656e4d", - "quantity": 4640 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1w60803pmkfy06c437ulv0u2n376yfu67sysevy64ccctxmpc2c9", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "769e77c43bb248fd62b1f73ec7f1538fb444f35e8121961355c630b3", - "assets": [ - { - "fingerprint": "asset1lsgqdc9gj5p5cak7ctuk45dt9k0glrj93y9x73", - "asset_name": "546f6b656e4a", - "quantity": 5904 - }, - { - "fingerprint": "asset1jy3d483w8mpsfg8stysx7crvrn8kpf5tlhgnwu", - "asset_name": "546f6b656e4c", - "quantity": 3864 - }, - { - "fingerprint": "asset1s9l9m003txw08uwmj407vfevuapst57su49jrs", - "asset_name": "546f6b656e51", - "quantity": 6444 - }, - { - "fingerprint": "asset13ea6c7zmpngjfjjnvur3863dadqe685nucyasg", - "asset_name": "546f6b656e54", - "quantity": 1354 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "a55e771b2152dbc041c26dffe0ed74570732e38aea7353a45169c6fd", - "assets": [ - { - "fingerprint": "asset1q737f4pq2284mx6fywa4jla50cqz99cs88j04t", - "asset_name": "546f6b656e4e", - "quantity": 1389 - }, - { - "fingerprint": "asset1zpnpdanfh8v8fkcm6g2r4vun6uvmvvvdsztduk", - "asset_name": "546f6b656e50", - "quantity": 2824 - } - ] + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 192, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "derivation_path": [ + "3612", + "22360", + "20799", + "29690", + "10193", + "8460", + "13175", + "1197", + "28085", + "10109", + "24614", + "4579", + "20897", + "12297", + "913", + "30163", + "19925", + "10131" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "39538f5db363deb9324e9bb3e4f2d4c8b6ea1aeb4413127e4b578d4d", - "assets": [ - { - "fingerprint": "asset1mp2aesvlme8z7v0gy4prw5jykxld9q7ewk6p7m", - "asset_name": "546f6b656e50", - "quantity": 7504 - }, - { - "fingerprint": "asset1vrxmy6dt5rtyrtnkv4j0qntf6msw2lmpkyghml", - "asset_name": "546f6b656e54", - "quantity": 170 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "2256b3c4b1a432ee65b1b79cce7a0e1067c98a925536abe0913d23a5", - "assets": [ - { - "fingerprint": "asset10y3agqmj57mvxg79gsd9awus8f5hywsuw2eedq", - "asset_name": "546f6b656e56", - "quantity": 9044 - }, - { - "fingerprint": "asset1p2x27e7pqaks0fz8vc8l4rx3r8kk08dp0wl6ym", - "asset_name": "546f6b656e50", - "quantity": 581 - }, - { - "fingerprint": "asset1cy90ehgjwxpwgl5gefpxpdmrvn6u87aa6scr2f", - "asset_name": "546f6b656e57", - "quantity": 2357 - } - ] + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 122, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1ea02arygtawltzpwt586fydrz8jveqfxrjggd8j9vk97s43a792", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "cf5eae8c885f5df5882e5d0fa491a311e4cc81261c90869e45658be8", - "assets": [ - { - "fingerprint": "asset1aej37wdgc4mkxkuntjxvts7e533ek7y72dd29c", - "asset_name": "546f6b656e54", - "quantity": 6457 - } - ] + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 172, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "c86169105453221026a42bdf4f6d5a7554ee9dfc9a8123fb36fafa12", - "assets": [ - { - "fingerprint": "asset1glp7njsu2ukdcp2mlzmp3rnnw9w4jcn457sq2y", - "asset_name": "546f6b656e4e", - "quantity": 9742 - } - ] + "derivation_path": [ + "29503", + "32163", + "25049", + "11460", + "7871", + "8093", + "19104", + "32454", + "2551", + "26470", + "23870", + "13781", + "13961", + "2978", + "2879", + "28426", + "12909", + "23861", + "11169", + "12335", + "21200", + "14292", + "1856", + "28365", + "15840", + "3364", + "4933", + "21832" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 54, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1gxqespfef2epnhx0th6g6p5k3sgxtxxdgs3qjk724fyh2wy47dn", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "41819805394ab219dccf5df48d06968c106598cd4422095bcaaa4975", - "assets": [ - { - "fingerprint": "asset104jsuxctgk5tv55luhsf9hz5wvyszt0c0v46me", - "asset_name": "546f6b656e57", - "quantity": 6083 - } - ] + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 123, + "unit": "lovelace" }, - { - "policy_script": { - "script": "policy_vkh1ppkg3vxcnvclrvckqxwtytqqydfpa2qudwnrxtpq0ee2qf3m0g2", - "script_type": "native" - }, - "policy_id": "086c88b0d89b31f1b316019cb22c0023521ea81c6ba6332c207e72a0", - "assets": [ - { - "fingerprint": "asset1t5t0l8we63vdnle9yny254cny2dvg6q6505v94", - "asset_name": "546f6b656e48", - "quantity": 8547 - }, - { - "fingerprint": "asset1ufnjwfdfp8x7gndz9sryaq62wlj2ye2yqtkyjr", - "asset_name": "546f6b656e4f", - "quantity": 8275 - }, - { - "fingerprint": "asset13yxhcmxat57qsve8u6ktnw5wuw0zcempj0g0cn", - "asset_name": "546f6b656e43", - "quantity": 1701 - } - ] + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 166, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1k38tgeyz8n3f6sph0c37eettrt8unmzwua3ezelscd6pss65mff", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "b44eb464823ce29d40377e23ece56b1acfc9ec4ee7639167f0c37418", - "assets": [ - { - "fingerprint": "asset1c8yrsuhk5pa8ejfwshs804lukt2wg3xn0lnxha", - "asset_name": "546f6b656e4b", - "quantity": 1776 - } - ] + "assets": [] + } + ], + "script_validity": "valid", + "id": "435a65445a452a3e53417e4d04701c253d273f5d6c3e68561fa85f3374561d41", + "deposits_taken": [], + "burn": { + "tokens": [], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk18ev8xp3nwdwhgffw0fh8yqqz34fzuhfesa5kxukf0plj9sphfyjq7vek3x" + }, + "fee": { + "quantity": 195, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "join_pool", + "pool": "pool1cd7z87ah4vxvxfhughty6ujvky09g2k8ldxx0rh6y7qrynygtq3", + "reward_account_path": [ + "997", + "20579", + "3349", + "292", + "17947" + ] + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool16d7gqgqapcm43jk42dr5gmzlpuuwgyqslvlzqsqs368uvn3l56t", + "retirement_epoch": 3618 + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1dp72hurcw4recjh47stay7qpv3cydcwrfnpx2rt3tds62zhxzeasjcr6fh", + "ed25519_pk1zfg62jamm2jdmzqkq40x7p69vvqc2yh6z89as85pw6xafeern47sdpqz7e", + "ed25519_pk12n3l8myw7ecf3nxwukx2hmmwwcqw5m07fdhdh9676uayd36ej67qqk9qyv", + "ed25519_pk1kk0sr7jmhx6txp5fxj849ngkvemavm9shvdthczhagu40jekd9rsvcnu6r", + "ed25519_pk104d6775kn82fxahrvp9dnxvl03mvt4vqlea3mkwq88wa70gwk8dsncattf", + "ed25519_pk15gqha9mmfx2y85t8nlfz4l00jagyxhnw5wwuxcw7x9l93qsuz79qpn7wu5", + "ed25519_pk1n2cm00329uv564sud2pljj4994ju8adjdagwjqpzn4wa7mpw9qfqmu9e0f", + "ed25519_pk1vnd97mns8rmp3pfnumjn5qzasfuungpf3vy6pcl76jpln8sxzf7qcanjma", + "ed25519_pk13muyacdrdlk300wyfawrya28azll27ylc80jyz437hq8hynehudq67rg7j", + "ed25519_pk1c3sxedrw85f8w4k3yfyd8a94eg60ypjhs79erjanca4fvynrtcmq8ua8lr", + "ed25519_pk1w3saed5jv4s5s3f30v3c4tpy8lrj9lwa57tjhc5rszlwsn3a2m2snmdjfd", + "ed25519_pk1mnfp82ndk5mfvr0tdp9kcsrq49dal0vlee65m2zesfudlhnv2amqc82s83", + "ed25519_pk15qpjuu2n8hva96s7dweg4yh9h8t5gq9scm7uf4cw4zu5wl6v7jtstfa2h4", + "ed25519_pk10rnladwupnh65hsd9lg3rast04v68vdupfqgg5mgfxp468rdptgsc2cuz6", + "ed25519_pk1vc536yvxk3r9x3lx7kz3jfmx9mq57w29nmqffcdm8y47ceawgr7sktq00w", + "ed25519_pk155wteagaj8cnpvluxdyxy9cjpmhtnwk7e98gp8s3mx8y82majncs3y4dp9", + "ed25519_pk1kh48ku4gvuphd8ngcd23p5m3pmmz94wt5ehe3sx8lnl3cv9h3n2qdk0kzc", + "ed25519_pk15udsp7ncuukpwcma392fd97su9mql9qjr7u8vge0vut5njusdfpsd8exue", + "ed25519_pk1j7zp7782xsfpkmhmzrxfm2rr20np693rh4u5ne25syct282xrmysx8hcax", + "ed25519_pk1tesj3schjq7hmrlm0sjc67xaucuhrx0tdzd6kc3fahyltqc4e87sna37m0", + "ed25519_pk1xmcj49u0tddavmcdwt52hs5w637sl3pzkyf5sm7rh9a04ychqmdslh3464", + "ed25519_pk1z9sjxrs8euvhw8wa905nfp50eqh8rzat2pzrg05l36v3eqsp2wzqenk32c", + "ed25519_pk1sj22gn32d7nrw0pvmshs7ed59w60vwwasx2nnx4glc0cd4pfvt8q58hcqq", + "ed25519_pk1zht77j8makak53eg73r52rvgpzxs8jn9659a50agm8u97ffm8kcqmm8xyf", + "ed25519_pk1yj6xfyuc5lzcg60m0d2z35345g0jrynwqz7edxl64hz5964nvwrse4h8u9", + "ed25519_pk19mpwpflnffq57ffyvq6cnwmchz33hxna94gxkfdd28qyfv6arflq8he5xz", + "ed25519_pk12ec2kkm2ntj0l8j72208yk09kp59udrvqhw09flg9j2hfsew69dsk5c9ww", + "ed25519_pk106v93fuz5rx4ttha5jux63fxuuth60fgqqdp6znhv4hzxnlgql5sj8qhyh", + "ed25519_pk13kq7rp5k4aay0auje6ht9qre3tpmxd445lreru2qx73852aa3n7q7h8e0q" + ], + "pool_pledge": { + "quantity": 4, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh167h9hqrjw0nta68y8vk6xhtul44ggwu698jryt9zq9uzkvqn4ls", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "d7ae5b807273e6bee8e43b2da35d7cfd6a843b9a29e4322ca201782b", - "assets": [ - { - "fingerprint": "asset12r39x6yzqfvegpwpl85hslk98npctx6d5hma6x", - "asset_name": "546f6b656e46", - "quantity": 1042 - } - ] + "pool_cost": { + "quantity": 193, + "unit": "lovelace" }, - { - "policy_script": { - "script": "policy_vkh1m90c392800gs0xu30ffjgkvpj4nm266v7lmalgm69g386398a35", - "script_type": "native" - }, - "policy_id": "d95f8895477bd1079b917a532459819567b56b4cf7f7dfa37a2a227d", - "assets": [ - { - "fingerprint": "asset1z8pnhy39c5hq70vj75ltm38tdm2ym889wxssee", - "asset_name": "546f6b656e43", - "quantity": 9356 - } - ] + "pool_id": "pool1mnsnht7hwjtkqg2cdjerkpaxuvkxaqv8yla73ghy0a59jv8vj2r", + "pool_margin": { + "quantity": 62.89, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1fzkqq4a485fsh3mxwxn2pq03325wyj0krhd550e7y96kzwhu3adqpw268g", + "ed25519_pk1qn59fagg8kf40jellarfh7z5j749e5h2kpcgsde703v3z62pz62s59lf7q", + "ed25519_pk1c0e2exh9d7xwj0zh7sylultn7q7gnp0aqhl46dhfumnyf56xp35skugluy", + "ed25519_pk1z46xn4sl9ehpxmgm852wve9d8mrg6m3praf6jslf8rr25cv4da0svjep67", + "ed25519_pk1jqtnhnjk7nj2z7pkd9hvrzkv5fljygd5ph6zawsfgagvkg5de49qndwshu", + "ed25519_pk1rwpxum85yy9e42jqr8sw9v5yl0t5khnnqzy0ck08kp4gtfwt2qjqfnnvz7", + "ed25519_pk1ang6zwrxneksw9ljcxfuz4raxt724lhfxdyxz7ah74n9wzpzyxtsnell7n", + "ed25519_pk19tllxj5s4lrn7shfyhpug3t2jgxpqdz3mc5pjv8e5fzktkvjk2qqs2akmn", + "ed25519_pk1sn2pqldfglkjdaf7wldhm3wcq64ewhju2fnyld3wm7wjg8ekpfusq8q0hu", + "ed25519_pk1puxqxxuhk5ejc9dwvpush6f3gtyjpttj047zr95azw5edtmvdhasnxuwtu", + "ed25519_pk1fheg6uzxprd5r3ux5tkdc5752gc4z2g0763jzefcjlfyrnj2g7eq0539tf", + "ed25519_pk107ka9tclsullcl2hcls5ksav2m4r0zlewqatgp8c62as9jkgvuwqz54sgs", + "ed25519_pk1wmnkdjx9tdwd8ww6ankygsnnxkmn7vg3vqq0dct7wzyvwe7gtpnsrhw7g6", + "ed25519_pk10cr8wyv2rr7a4qvnk26mdunecdg92j908s2qcwmwwkg936q9jyzqnfxcrl", + "ed25519_pk1qhmqpfkdreqnzuy32gl2f6lt4837ushk4sceam20x8rtjn64d8vqald64z", + "ed25519_pk1hm6x9klqvg5ldm9804mm89dulxgh2n5sgrj03atql3fflh72zk3s62lwh8", + "ed25519_pk1e7g6umrpqm8hagd5qf5xj73q58x2c7ganhxrpt8874t5sm7np2rs7w9ktd", + "ed25519_pk1skj3f7vye7npga55aat5wcxs489hjhqx6xqauphr7jflcu322ywswqup8l", + "ed25519_pk1dr8kdpe9zu70y372qfll02jc65jkkhyd32au4n05wt3gf26ue0qqh4rp5h", + "ed25519_pk1lpt34eenqyrywhzeuvqna7alzyqt87esujv2jzj3wh8zq0k8z45qgsghnh", + "ed25519_pk1rhf8tw3w8j4at75x0cr0m7smd5n885ukvzghgwkp9xlsjk7pn9dq6esnhu", + "ed25519_pk14ezn0u5t6p6qr470v65j2zx32tsh05wew55gsdqcru0f56a698ss7kxlfv", + "ed25519_pk19gylrmt8cajzdy7cnx0055vz8jz9t0p3u6zn9lxzex52g256lq7q0dgm5k", + "ed25519_pk14pq6rgak0ch5f3u25ssjv3t038ykqsv2h604z4vzy9dzzawghnaq0rpkxq", + "ed25519_pk164tc7pax557qf8agdym6v34fqadlduyjx5ek7x6z67wm9jz337pq9jacyl" + ], + "pool_pledge": { + "quantity": 122, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "ed77c6e07811567e06b785e7bbf52b2348f405714f5307c75921a671", - "assets": [ - { - "fingerprint": "asset1mvmm55a07hsnp2266vl2evnsfx8pkdcyzzlwd7", - "asset_name": "546f6b656e51", - "quantity": 9859 - }, - { - "fingerprint": "asset1pe7hv2smn8n5qx4efvuc78ycuj9up5jt50m3hd", - "asset_name": "546f6b656e48", - "quantity": 9861 - }, - { - "fingerprint": "asset1gqduxsgemk4sve7p2znnz87ueae4xxek43p8lk", - "asset_name": "546f6b656e4b", - "quantity": 7819 - } - ] + "pool_cost": { + "quantity": 31, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "05082bb50f9213f7587b75aeb7442a5bc4036887a90336e3535f7a69", - "assets": [ - { - "fingerprint": "asset12palpxaydwl4vchalmeuq0kd70p2cl4s8uedgm", - "asset_name": "546f6b656e4e", - "quantity": 9590 - }, - { - "fingerprint": "asset19k2nand95pzrc4armq385dlpqvs45uw23mvlnx", - "asset_name": "546f6b656e51", - "quantity": 2331 - } - ] + "pool_id": "pool17mr9j36ltggsgmf8mfmx84g82734fgeqq3g97p2zcawf7s62mfs", + "pool_margin": { + "quantity": 26.65, + "unit": "percent" + } + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "quit_pool_external", + "reward_account": "" + }, + { + "certificate_type": "join_pool_external", + "pool": "pool18vdc2hg2tqf2gld0075gyd2sp3paxq2z6zghs792s7agqxvxlv2", + "reward_account": "" + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1gkdv8he2zpauzls6elayuhryjun7rz8x7ft2sedead5vwwdzml6", + "retirement_epoch": 27045 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool16wjanrtttjmrt965trvqv844dkmq4mmsyfyxhm4l0l45xx5ke0k", + "retirement_epoch": 24620 + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool16vcdd99790vjp7xdhrjzuqd38yz7udxvxj4tcc50nnpeyec4kep", + "retirement_epoch": 2067 + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk17f7dl9ucd53th6hvmdgdxnczc5f5hf4wqagr4xj040a2j5hcj7xq9ekwsf", + "ed25519_pk12c2d0yts3zlj79lnt9x07qtwlnh4pn46yqpg6rqhcfyma3w6ea3saeve0w", + "ed25519_pk1vcuyq3mrsyhyj6ln7253jyrdreu9vx59e03mp2rxc73rsdmyuucsq3wey2", + "ed25519_pk1tygk64mdtew62kqp46sk30nz4r3g9ar45rpppkrzljjfuk7rrxwsx89n2s", + "ed25519_pk180lmws0e8z84kp6tmqhu6vkv5efyyf34mekh062p4renv07p36cqnk9xw3", + "ed25519_pk198zvd96ssy8m2w3fdx4sapvcprlkq8j9zskl0rec3d6aa5v3fk7qvdm3as", + "ed25519_pk1vejvwuyj7ewte7skzh37cz355mah06j5sj8trw63dkus5r37twlstxu35g", + "ed25519_pk1fgy5q4v3lhhwjfpr8ef5cazpz44fwdrd9fh6rqq977me2ymt2pmqp0x6ar", + "ed25519_pk1y3rpa6cmg9ynu6fnmlh72z2d4697tgl404u2l0ddm98fwgdltffsnux4kx", + "ed25519_pk16mkvw7y42gqrwtx63dmkh8tltptud6j9q2d6fp0w93hamesgnzfspp7gf3", + "ed25519_pk18x0tqgnev97p46akyvx6jfafhrdclgkdp6tuj6r7rvzdfsdprx9s6rrcsp", + "ed25519_pk1xf2ce847f477qde02945qdkyy6kzs6q0k8zymyqzqdeey6nkmjuq29tcu3", + "ed25519_pk1c582gqs72kva0q4rfs0v2qm999kr28p62emmqqjyj9sqpddqsscsq0sk3c", + "ed25519_pk1eza52m5d4ax9aw42805hn33tq25xv692dpwyhs2djrrha25mqxnqzycx4q", + "ed25519_pk1rkcdeuqtfp355ddym376cexppwl6z3766kny3vfurq2tq32xdljspfzjvk", + "ed25519_pk14pptyf3f05w6hvlez49824szdqj69f8rzdw304mnf8uuah2x00jsw9urhs" + ], + "pool_pledge": { + "quantity": 162, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 123, + "unit": "lovelace" + }, + "pool_id": "pool18nusg6x5kd69uet947ytd5h96g6t36tfulqeggy4vvfh2fd35w7", + "pool_margin": { + "quantity": 90.22, + "unit": "percent" } - ], - "wallet_policy_key_index": "0H" - }, - "fee": { - "quantity": 137, - "unit": "lovelace" - }, - "certificates": [ + }, { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1q3few4u2kzucm2jhdpqkqt2s5nw0mq8jzf2hw7gvejkkvrjju2rsg88jus", - "ed25519_pk14h0zwdwrda82yz5krn24ftw2qccwagk3fckv4u4vswn3aaupwq4qdj7jmm", - "ed25519_pk1yuq5ve3gst9pha2klwdp7euk69apjgyw3vsx7ta3pqsn5urh9wnqfd8m44", - "ed25519_pk12e29nptyhl28fztu0zc22vwvxjnr0j6gn30y3wwn2s7nl26uur7qrlgyrn" + "ed25519_pk16zau7nlhl2d2prsjy8ysvsjpjt6d2tahx3hysu43yywjfg7tujcsx9l5v8", + "ed25519_pk1mv33eegnvz3ptuh5jvefq32pqyp3z6808u0ngpnyrmxeutu3hmps6lkpep", + "ed25519_pk14cnqzrj9srffj3wgr96cy5txrh2hnpnj7w7uqxauy84j39ep4rgqh6tf2q", + "ed25519_pk1jylkpmg0y8pzp7a4a9yunehgux8da4lf9x03g944c87940ufjeksgfpntf", + "ed25519_pk19f8dt7kaz0cv2vns0n59sp4dmnvglj2tg7tnrpfr8hfxnsez8nfsd6525x", + "ed25519_pk1jcl2cv3ujnw5c7kza45h83ve6ajrw6jgj3ann98j6tt5jveazvhqnwetze", + "ed25519_pk1lu9zh8vv7htzdmyfdp3wje9s3938z8g86usryxrw02h4qtuzmcvsdydln0", + "ed25519_pk1xeehn8wpegu66sacu979gj95uww0pwq9dcd4e7jq0wlzcfkl3tns70juas", + "ed25519_pk1c5dfmc3lnqlecm5mzhpf9yee95na7drq56x38rguh3qc36ehd6tqde60m8", + "ed25519_pk1zxuvaz7jhqgh8hmlne04n206df9kr5atqsv2052am3vdzne8jwgsw248d7" ], "pool_pledge": { - "quantity": 148, + "quantity": 190, "unit": "lovelace" }, "pool_cost": { - "quantity": 63, + "quantity": 245, "unit": "lovelace" }, - "pool_id": "pool1kpls5gl2pf0zgeavkf60d3wrar3wdk0zue89f56kd25qc2attg0", + "pool_id": "pool10z4aatkc0kjgpq4vsm9d8kmm9zu8wg4kz4qudhlk7lf77d70t6w", "pool_margin": { - "quantity": 85.37, + "quantity": 52.56, "unit": "percent" } }, { - "certificate_type": "genesis" + "certificate_type": "deregister_pool", + "pool_id": "pool1hcq5esd68syy9xqadzca2atc53u0enxsxxffhgjs40rzkqugc4z", + "retirement_epoch": 12125 }, { - "certificate_type": "mir" + "certificate_type": "deregister_pool", + "pool_id": "pool1zxmp7qctzeu83450jfpfmrzj2y6p4cgm47czzqcv3sx52u9xufn", + "retirement_epoch": 13884 }, { - "certificate_type": "mir" + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1xdzexcgp6kae98ltv08rca0utr25s0nwl3pamdt5p0t6249zymfq8r0zsw", + "ed25519_pk17xgu9ttatps34rwc444agl4wgtwjdhgukta9lwt9c3cg8qknqdmsthm4we", + "ed25519_pk1m8xu3eu90dr7cfhe5l93grt6yxckq6k0ykdprhrt40h2gh4p8fhs3d7z0a", + "ed25519_pk18jdxuauz9antd38uprh5ztx3x9uhk7ecj95n0z2le35errym24yqtyt869", + "ed25519_pk1kdp8u5mvlnlku79pqwlazzx8dkhzwrdpx9lnf3vvvylje22aevzqka38tr", + "ed25519_pk18j55pqstmavglhcmu59exgtyqyg2z9rpd6krw3uzcx3grxmwmtusq2v2rn", + "ed25519_pk164rfa50a39hyfymhl6qvdzrry3gttdz5vsw95ys2mcc90hwuxu5sq9aj87", + "ed25519_pk12nd37gkhrzuvyw8y55kt5c78czuj7f7zvjsyk34sunjt7wzrwa4s870knf", + "ed25519_pk17y2cd7tjgp2sljzjsj8utcxpu43yqzvk3eny3ght0znv405uypksksv0gu", + "ed25519_pk1pfp04l94kjkgk2e4780ruf7j30exfe97hh5vuqnecslq4jt5u8sslfslvk", + "ed25519_pk1g9vuxepr7rjaerz48c8l2jaezdm44nazeufg26cjdmh3q0v875pq6mqwqp", + "ed25519_pk1ee65a6xdc65tktn740hnphmsrm4qn9c8wt9xu9c56k0cpcu7kh7svs97kg", + "ed25519_pk1hw3gxhpr8sxwq85f2jexx4ngjzddaj067xy7zqtuvmusdaz2atmqjnm95n", + "ed25519_pk1f97padd3nt4r9qrr7pwmlqqkumsw6lqxxh37kw46kmqk7ht3v9dsh4duae", + "ed25519_pk1v6x23apwcm3defj0f76cqrj4ddzep6tyldgw0qwzqmyg3cq9wnlqyvzmeh", + "ed25519_pk1ttdu9ecnlgvvey2df04y5wt60c9rv7ucz9a7yjz377kjt0rqmhgq84kyd8", + "ed25519_pk1sx5qyl38z33rwn0n4hs35zd07yerffdr0dvp6kt0x4e4gam32qdqsqc6pu", + "ed25519_pk1dxer5r0s5npn2ersyaj82l2wz3g6cnd62hltqhduk0mgdzgxu54sh5wh9e", + "ed25519_pk1jel4xdm80mmn4fd8960rzz8kpaqdr20sxp837dvt0t5zyx65qrvqnsk7tt", + "ed25519_pk1qkyp6hd6qvyvjpdvpwz0gaufdnmvl3whnfpvsdfpk5823qxj45nq7m4vwt", + "ed25519_pk1tf25ecv0r5vjlkjv5rhdn63ty2czz6uav5w7ul64rhsa337y4ppq9z5ztz" + ], + "pool_pledge": { + "quantity": 80, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 87, + "unit": "lovelace" + }, + "pool_id": "pool10jmj72mzw0a6lqy6lzg8vx7j07ueds35su7zezsn4wvzqzxhdpc", + "pool_margin": { + "quantity": 38.66, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1xr6ge6lsdd4klfdj2mhm45aharyw335vtyplh0hltfytj0w3h9j", + "retirement_epoch": 31057 + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" } ], "deposits_returned": [ { - "quantity": 250, + "quantity": 159, "unit": "lovelace" }, { - "quantity": 12, + "quantity": 51, "unit": "lovelace" }, { - "quantity": 41, + "quantity": 206, "unit": "lovelace" }, { - "quantity": 178, + "quantity": 122, "unit": "lovelace" }, { - "quantity": 128, + "quantity": 53, "unit": "lovelace" }, { - "quantity": 223, + "quantity": 246, "unit": "lovelace" }, { - "quantity": 42, + "quantity": 77, "unit": "lovelace" }, { - "quantity": 171, + "quantity": 20, "unit": "lovelace" }, { - "quantity": 149, + "quantity": 136, "unit": "lovelace" }, { - "quantity": 33, + "quantity": 28, "unit": "lovelace" }, { - "quantity": 162, + "quantity": 135, "unit": "lovelace" }, { - "quantity": 45, + "quantity": 169, "unit": "lovelace" }, { - "quantity": 230, + "quantity": 98, "unit": "lovelace" }, { - "quantity": 153, + "quantity": 35, + "unit": "lovelace" + }, + { + "quantity": 228, + "unit": "lovelace" + }, + { + "quantity": 167, + "unit": "lovelace" + }, + { + "quantity": 184, + "unit": "lovelace" + }, + { + "quantity": 132, + "unit": "lovelace" + }, + { + "quantity": 155, + "unit": "lovelace" + }, + { + "quantity": 90, + "unit": "lovelace" + }, + { + "quantity": 50, + "unit": "lovelace" + }, + { + "quantity": 118, + "unit": "lovelace" + }, + { + "quantity": 77, + "unit": "lovelace" + }, + { + "quantity": 255, + "unit": "lovelace" + }, + { + "quantity": 42, + "unit": "lovelace" + }, + { + "quantity": 35, + "unit": "lovelace" + }, + { + "quantity": 49, "unit": "lovelace" + } + ], + "metadata": { + "16": { + "bytes": "19259d140e2625755078060e28625e2375f06c59111124ae60333e410a63430d0e039723740a135d732c" + } + }, + "collateral": [ + { + "id": "6d334902106d5a3721c84a3e4a201bf21720a1495a5966b251721d361446575f", + "index": 1 + }, + { + "address": "", + "id": "120f646f5a2e4e58396134540de25ce530567b5ea22fbed575fa3e63308a215f", + "index": 1249, + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "derivation_path": [ + "2269", + "581", + "127", + "27724", + "173", + "7308", + "31777", + "18987", + "29575", + "1033", + "12415", + "23699", + "9597" + ], + "assets": [] + }, + { + "id": "1a62bc3d0a7751f27624604213556c6a870f51408d33393e5c7f86187c23532e", + "index": 1 + }, + { + "address": "", + "id": "5c37505c812e4428e917844f2b6e2f5f6e6c4b2ead257f015eec0d62303e4d47", + "index": 13155, + "amount": { + "quantity": 78, + "unit": "lovelace" + }, + "derivation_path": [ + "11316", + "11199", + "26121", + "8604", + "16228", + "8596", + "19879", + "14079", + "17401", + "27984", + "12665", + "19432", + "22238", + "257", + "28339", + "28476", + "28876", + "17742", + "27194", + "7092", + "3494" + ], + "assets": [] + }, + { + "id": "1a6b2728655c3c7a223c4dd263fe2605451128ef2140712c11ac643a3c4c3044", + "index": 1 + }, + { + "id": "507b7453e304894327543bf8346a1c05135f3d361273150544731e238a6c7e71", + "index": 1 + }, + { + "id": "6bf7194d2934624a36f030a56ba6417858dd356a3d23202a73120d5c1df60f1a", + "index": 1 + }, + { + "id": "5d0d12197d4c2c2f700b50187d739101f81255eb6c4c42286b67555fd0a9417e", + "index": 0 + }, + { + "address": "", + "id": "559d607e38024f694fdf97ee212c2514222b095206665f587a0f2c5d6a4dc453", + "index": 4121, + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "derivation_path": [ + "29740", + "13026", + "22382", + "7836", + "10231", + "31574", + "1458", + "12203", + "2278", + "11712", + "3014", + "10342", + "14170", + "16342", + "8193", + "15217", + "13869", + "20866", + "19735", + "18023", + "25151", + "6454", + "19564", + "2512", + "9278", + "4584", + "21154", + "31098" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "id": "1a362e340099284e6045216a5a29387e3a08343a29242d4ffb4f526074b98f6b", + "index": 1 + }, + { + "id": "fa0b58adc329387e193a0a0e2129256a4f02612a301c79d44a08010e1978a123", + "index": 0 + }, + { + "address": "", + "id": "57154726027a6c487c59f6205b6c12c46cfa3838103452320f617c87260a1aaf", + "index": 5562, + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "derivation_path": [ + "23451", + "5635", + "19971", + "31022", + "11739" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "085a354a45335fc844373e77c018243f67172ea40071797501d96abd20077e3e", + "index": 1 + }, + { + "address": "", + "id": "0c403b51c7256e05201090541e7f5d651ab9174b0d05290d195835707023f9fe", + "index": 16443, + "amount": { + "quantity": 122, + "unit": "lovelace" + }, + "derivation_path": [ + "18389", + "25676", + "18170" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "id": "165a6c461ff201427e3bf61fc33d6c182c181f4c347b254516703e523cae9834", + "index": 730, + "amount": { + "quantity": 90, + "unit": "lovelace" + }, + "derivation_path": [ + "1313", + "2833", + "18301", + "24792", + "30649", + "4433", + "23815", + "12517", + "18871", + "19400", + "9439", + "1297", + "19761", + "15514", + "28323", + "19906", + "736", + "22112", + "899", + "23941", + "9786", + "10558", + "621", + "4859", + "7487", + "28308", + "7665", + "26939" + ], + "assets": [] + }, + { + "address": "", + "id": "e6363a7f77beddea535f701d02752277d4952d2460113c039f595a4127713660", + "index": 28484, + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "derivation_path": [ + "18798" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "quantity": 17, - "unit": "lovelace" + "address": "", + "id": "6637ba01574536270a37207b764a51256c6e3d104c768f757b0a1d3a01be4b32", + "index": 617, + "amount": { + "quantity": 253, + "unit": "lovelace" + }, + "derivation_path": [ + "19042", + "13659", + "5955", + "13123", + "5437", + "26881", + "25789", + "32561", + "16774", + "3406", + "15240", + "10336", + "29757", + "11657", + "24970", + "13160", + "18453", + "1175" + ], + "assets": [] }, { - "quantity": 155, - "unit": "lovelace" + "address": "", + "id": "080c444a72fa4411441c17764bd50a3e3b0fa62e29078843681d468136343676", + "index": 23035, + "amount": { + "quantity": 167, + "unit": "lovelace" + }, + "derivation_path": [ + "19764", + "28362", + "401", + "30082", + "20307", + "12995", + "32354", + "27221", + "16017", + "21207", + "734", + "6808", + "6009", + "17719", + "18890", + "22476", + "27680", + "2926", + "3519" + ], + "assets": [] }, { - "quantity": 166, - "unit": "lovelace" + "id": "3733090e04752c343240441d437d0b780e3732577e724a479d5c671a708f1508", + "index": 1 }, { - "quantity": 248, - "unit": "lovelace" + "id": "762ebc3d2733279864711d02566adeb00805531d5031040831191a133101ee28", + "index": 1 }, { - "quantity": 196, - "unit": "lovelace" + "id": "702b4169660b73706953ef3c6909664d3a79594632fd3087146a0c544478070e", + "index": 0 }, - { - "quantity": 167, - "unit": "lovelace" - } - ], - "metadata": { - "27": { - "map": [] - } - }, - "collateral": [ { "address": "", - "id": "72703a78116a7a110eaf6a7263753c71094d6779ef08e05e6445334803333333", - "index": 31051, + "id": "7a0c3c2e51611b7627af5b02762522770e4e12653e752d24d02849892b1f4401", + "index": 3450, "amount": { - "quantity": 95, + "quantity": 187, "unit": "lovelace" }, "derivation_path": [ - "23603", - "7481", - "3967", - "9125", - "4941", - "28487", - "13058", - "12594", - "26578", - "16134", - "27207", - "29165", - "6333", - "4024", - "19946", - "13183", - "4579", - "7188", - "14219", - "24533", - "26965", - "8171", - "14420", - "12142", - "20834", - "4442", - "21842" + "5569", + "32125", + "15945", + "22633", + "20643", + "20535", + "24247", + "20902", + "7625", + "28079", + "8756", + "32489", + "32160", + "14687", + "5014", + "13637", + "21021", + "13405" ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { - "id": "51205b573b4e2e751e68867d3f2a5b1d74c250024a584f774e210b26ef3f7943", - "index": 0 + "id": "077f56bcf63218145b113b5f56186f0e1cdf2d9a2864f7060524345f47377568", + "index": 1 + }, + { + "id": "64bb0752570a31020935ed172f3c5136b92b2308247d581036124e336c292b73", + "index": 1 }, { "address": "", - "id": "2262ba1a09510b9c9d5920327f31365a1e2c3fb9067403726a6f7088496b6431", - "index": 3864, + "id": "5427096c1174644350770e37f20d381008b8ad1a416e497c8d657b494c7f321b", + "index": 2077, "amount": { - "quantity": 188, + "quantity": 225, "unit": "lovelace" }, "derivation_path": [ - "31802", - "8615", - "5541", - "19735", - "29099", - "18644", - "1215" + "28695", + "19549", + "29261", + "4186", + "23379", + "15743", + "1432", + "17947", + "14060", + "27247", + "32034", + "24935", + "1176", + "8190", + "19257", + "31599", + "14435", + "1035", + "1018", + "9819", + "19992", + "26500", + "3439", + "11296", + "3876", + "6671", + "29184", + "9318", + "30971", + "16138" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e42", - "quantity": 44, + "asset_name": "546f6b656e45", + "quantity": 8, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "4f583df64445d40b6f373c401d1521546346ef7d331cdc1cc2212d7ca526d96f", - "index": 20688, - "amount": { - "quantity": 204, - "unit": "lovelace" - }, - "derivation_path": [ - "8883", - "25006", - "23168", - "22125", - "16844", - "28659", - "13044", - "29533", - "31588" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "id": "4a31516c2c636d94356a9c4c6f537b0c5d545c0ce267f856d74c7470451b2318", - "index": 26044, + "id": "263a175664145f377749aa4701434967946c761433545052502011312c5a2ad1", + "index": 15023, "amount": { - "quantity": 3, + "quantity": 40, "unit": "lovelace" }, "derivation_path": [ - "10472", - "15460", - "7567", - "12400", - "14093", - "23603", - "6972", - "19726", - "31891", - "20607", - "29276" + "16233", + "22290", + "19907", + "25050", + "6123", + "29564", + "28102", + "32696", + "16609", + "21694", + "23139", + "32324", + "17392", + "28868", + "10319", + "28094", + "20765", + "27487", + "6408" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] } ], "mint": { "tokens": [ - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "90312d02048b2fe8fbe36927b2988df92ba2a1f177e3df5ad860594a", - "assets": [ - { - "fingerprint": "asset1etwwm523jk82jkrs6w2mgulznzdteufyqj75tf", - "asset_name": "546f6b656e47", - "quantity": 3752 - }, - { - "fingerprint": "asset1l4hw9ppdzrrdv32uu34098fw58xv50wmtaue8q", - "asset_name": "546f6b656e49", - "quantity": 7476 - }, - { - "fingerprint": "asset10ledmy2n0yxaces4dvhl7wdgrhm9kl6pe2wq43", - "asset_name": "546f6b656e47", - "quantity": 3601 - }, - { - "fingerprint": "asset12nenyxnffta6n8jaft7dn5lsr4l9yrqvg0zvfh", - "asset_name": "546f6b656e41", - "quantity": 849 - } - ] - }, { "policy_script": { "script": { "all": [ - "policy_vkh1v2xx26mck8tqt4mnc073lvymgnzrnv2jyx53l5zu6v2nx260mxd", + "policy_vkh1atpcanmptxmuz9df4mkdej8a27kml7t7epgen98uchh570hxj4x", { "active_from": 100 } @@ -6984,170 +6323,50 @@ }, "script_type": "native" }, - "policy_id": "628c656b78b1d605d773c3fd1fb09b44c439b15221a91fd05cd31533", - "assets": [ - { - "fingerprint": "asset1ruayalc9pxhfsp0t29p7nxlz5vc7n7m9j4g9ac", - "asset_name": "546f6b656e55", - "quantity": 188 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "2330cf39d5c9dcf7fa2eafa04783d877353ec0b34edd9c200f6f4906", - "assets": [ - { - "fingerprint": "asset10d7je738uwf2jsxt9kakzzecxacyr2l5davrjg", - "asset_name": "546f6b656e42", - "quantity": 60 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "c4505373232496f6fd10242590a1f0c7ea2cf9ae74fd10d4e79506cd", + "policy_id": "eac38ecf6159b7c115a9aeecdcc8fd57adbff97ec8519994fcc5ef4f", "assets": [ { - "fingerprint": "asset1zxgfvne7x6slsnpdvnnmvwwkess0wxzz7w2smk", - "asset_name": "546f6b656e4e", - "quantity": 679 + "fingerprint": "asset1x0xk90vswqnz8nrxp2vrc0v7uvquvvr0pma3dl", + "asset_name": "546f6b656e47", + "quantity": 8408 }, { - "fingerprint": "asset1y4ff7lp9zzc38gh5j0767ued6sk88gtd9ul6s7", - "asset_name": "546f6b656e4c", - "quantity": 9778 + "fingerprint": "asset105zxzz8lscalgppp8e8h8lq8eth9sy26kxzapy", + "asset_name": "546f6b656e5a", + "quantity": 9062 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1nhm8al2yzm905k66zww7thcynyfnevu7reqql4xsysnck4awdyn", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, + "script": "policy_vkh1sshd3fz73hz50jsjmce3mpafxts253v4kfk44z4mg0xzuyuxuyd", "script_type": "native" - }, - "policy_id": "9df67efd4416cafa5b5a139de5df0499133cb39e1e400fd4d024278b", - "assets": [ - { - "fingerprint": "asset145n4v6e5wuljsxzdclwd77caajy095vqq3ts8l", - "asset_name": "546f6b656e41", - "quantity": 4229 - }, - { - "fingerprint": "asset13jjgd876pe3wvjngavc66uk09de6hmh0s68agh", - "asset_name": "546f6b656e57", - "quantity": 8528 - }, - { - "fingerprint": "asset1ugz43usd7rwzk5dyfh02szg8rpg7s67xqeqkdd", - "asset_name": "546f6b656e44", - "quantity": 9718 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "327c74da567fe097e362e911755a1c439e011a4e8e20d17b447b66ff", - "assets": [ - { - "fingerprint": "asset1f2eenwhmdwsnrkvhs9tfcwmqjsn2t9dp0w7d8q", - "asset_name": "546f6b656e44", - "quantity": 5170 - }, - { - "fingerprint": "asset10kpc7f4nhcl34p0nhqfj3rh7aehsp0cld52fu0", - "asset_name": "546f6b656e53", - "quantity": 7806 - }, - { - "fingerprint": "asset1dl4m900rxxqzk9v9r586u349jpf37rwxnv2grv", - "asset_name": "546f6b656e4d", - "quantity": 9131 - }, - { - "fingerprint": "asset17ks0r6wwpgfl2f6cydpgk5rvq9tqlxhtkm5gwd", - "asset_name": "546f6b656e4a", - "quantity": 4777 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "1edc379a1a634cc19505b9ff314a363192fcb862bacc629889bf6f51", - "assets": [ - { - "fingerprint": "asset1nc5wja3wm57hnv2gth32ka99vx847wec4fj382", - "asset_name": "546f6b656e41", - "quantity": 7061 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "74973509b41c5b5b7a0ec9fe0a443ca04552a812c6295f4e2f35ebd7", - "assets": [ - { - "fingerprint": "asset13q00jx4svvqaxnzgzt0cuugzdx9sqq77mrhdlp", - "asset_name": "546f6b656e59", - "quantity": 2517 - }, + }, + "policy_id": "842ed8a45e8dc547ca12de331d87a932e0aa4595b26d5a8abb43cc2e", + "assets": [ { - "fingerprint": "asset1ss23epmawuhcke73rsjem4km8hw50388zay3jj", - "asset_name": "546f6b656e41", - "quantity": 8569 + "fingerprint": "asset173tcvn0fxcv60y6tf6df09qf4y34nga9f7kf8m", + "asset_name": "546f6b656e51", + "quantity": 9839 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "ccea46848d8b22be16e1ae723286c6c2742f0e9ef576182dad21d3a1", + "policy_id": "e6881cf0cc5e926b4a393087f88b29a05acfd99f94f2d35438a539ab", "assets": [ { - "fingerprint": "asset1v03d3pqxj39yajzh4qn8svy6045fkd4lw4enyy", - "asset_name": "546f6b656e4c", - "quantity": 4686 - }, - { - "fingerprint": "asset1fhnej46d2vvuw2w7ar8ykeekrk5ucq53mvnaln", - "asset_name": "546f6b656e54", - "quantity": 8326 - }, - { - "fingerprint": "asset1vdxr5sxkv4d84jgyss08kz07x53svxaqfn4vg9", - "asset_name": "546f6b656e42", - "quantity": 8466 + "fingerprint": "asset1f058ehwgq3lfquzzzx7w4rxhsq27qhuw0yr5ar", + "asset_name": "546f6b656e50", + "quantity": 543 }, { - "fingerprint": "asset1ex6zkz7tk5wd9jhfw79y7my550u0qucs3ntq08", - "asset_name": "546f6b656e45", - "quantity": 1381 + "fingerprint": "asset1vdzv3n6vaaljhnd5afdf0y9lpmp4eafdl4pwzm", + "asset_name": "546f6b656e4b", + "quantity": 1790 } ] } @@ -7159,22 +6378,7 @@ "withdrawals": [ { "amount": { - "quantity": 249, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 63, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 216, + "quantity": 240, "unit": "lovelace" }, "stake_address": "" @@ -7182,7 +6386,7 @@ { "context": "ours", "amount": { - "quantity": 73, + "quantity": 120, "unit": "lovelace" }, "stake_address": "" @@ -7190,7 +6394,7 @@ { "context": "ours", "amount": { - "quantity": 125, + "quantity": 75, "unit": "lovelace" }, "stake_address": "" @@ -7198,28 +6402,14 @@ { "context": "ours", "amount": { - "quantity": 188, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 180, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 8, + "quantity": 135, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 160, + "quantity": 1, "unit": "lovelace" }, "stake_address": "" @@ -7227,855 +6417,1215 @@ { "context": "ours", "amount": { - "quantity": 170, + "quantity": 229, "unit": "lovelace" }, "stake_address": "" + } + ], + "inputs": [ + { + "id": "8d107a4af85d484a69e04a496b5d2c171c726624ee586e2829057c45744fae2f", + "index": 0 }, { - "amount": { - "quantity": 216, - "unit": "lovelace" - }, - "stake_address": "" + "id": "59636a25070d0c6e6a10525e1755fe796d735b0ba1164f6f285c383a3f59e621", + "index": 0 }, { + "address": "", + "id": "711267473c205a3e16720921293d4c884274c938266f0d754e9198ce489065b2", + "index": 32584, "amount": { - "quantity": 249, + "quantity": 163, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "12453", + "21377", + "30419", + "14290", + "23953", + "22577", + "21985", + "8914", + "23433", + "32225", + "17148", + "6975", + "23596", + "9005", + "25319", + "32723", + "19818", + "16726", + "31449", + "2889", + "25331", + "17877", + "17829", + "3040", + "28579", + "17672", + "31953" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { + "address": "", + "id": "637060504f124bc96c8f78462da7484f2014153f59c95f6a0935022e7c00294e", + "index": 199, "amount": { - "quantity": 112, + "quantity": 208, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "3135", + "22425", + "4168", + "8683", + "9978", + "22520", + "11034", + "30587", + "4113", + "21109", + "32709", + "32697", + "27073", + "30500", + "32764", + "13020", + "7450", + "9716", + "4317", + "29507", + "22110", + "14241", + "18928", + "11662" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { + "address": "", + "id": "44281fbf4ce9686b75a867a530a03c35bd46615346c2510073687676bc75141b", + "index": 25393, "amount": { - "quantity": 51, + "quantity": 99, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "29001", + "28015", + "17254", + "2486", + "25537", + "27990", + "7175", + "32417", + "15821", + "297", + "24007" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { + "address": "", + "id": "353e1b4ba2343a1b03205a2a65219b501235352f23f516283005326b67011ec2", + "index": 16261, "amount": { - "quantity": 26, + "quantity": 230, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "2555", + "10666", + "27277", + "26579", + "14897", + "21306", + "23520", + "19331", + "1090", + "1092", + "19610", + "23010", + "17704", + "2954", + "11068", + "30331", + "9846", + "24844", + "10071", + "32704" + ], + "assets": [] }, { - "context": "ours", - "amount": { - "quantity": 179, - "unit": "lovelace" - }, - "stake_address": "" + "id": "0a3830767373066abd1124fc56f522185b0f012e7357446e474e2a7e9672f97e", + "index": 1 }, { - "amount": { - "quantity": 37, - "unit": "lovelace" - }, - "stake_address": "" + "id": "4fb556fe3e776b646fa5765e76025d3c734126a822056b464d454152522e1746", + "index": 1 }, { + "address": "", + "id": "65a471a3d46a1b02222f3c224d1c7c5e2d7c430e1e501e246e3a56f57a003404", + "index": 28772, "amount": { - "quantity": 94, + "quantity": 87, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "15725", + "23898", + "26428", + "24723", + "4470", + "20793", + "28797", + "24968", + "17781", + "25653", + "2715", + "14446", + "8509", + "13704", + "25275", + "32189", + "25088" + ], + "assets": [] }, { + "address": "", + "id": "5105231742594e25132a30641d09053756b36b7d2a051e38287c7f240074a66b", + "index": 20006, "amount": { - "quantity": 111, + "quantity": 194, "unit": "lovelace" }, - "stake_address": "" + "derivation_path": [ + "14834", + "4477", + "18171", + "28468", + "25940", + "21174", + "19754", + "6053", + "11710", + "24105", + "28027", + "6957", + "2888", + "457", + "8590", + "26197" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] } ], - "inputs": [ - { - "id": "006f0304793c915e0c531a6b577b0d055511c65c0a1c247c4456413517420621", - "index": 0 - }, + "collateral_outputs": [ { "address": "", - "id": "174822b50f244b6a7f5a7c25753a6c0b6f2a08166e7c2f5b490c286a5e742328", - "index": 11468, "amount": { - "quantity": 242, + "quantity": 152, "unit": "lovelace" }, - "derivation_path": [ - "29866", - "28821", - "1880", - "19615", - "31958", - "14625", - "7089", - "7308", - "3004", - "28931", - "7788", - "29763", - "28943", - "557", - "32218", - "6811", - "7973", - "10384", - "22396", - "9973", - "28212", - "1567", - "17523", - "15680", - "7951", - "22791", - "30717", - "14543", - "10944" - ], "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 62, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - }, - { - "id": "354001c102c603641bcc353b3f20384e727a774e756a8a2a18390f7a0326568d", - "index": 0 - }, - { - "address": "", - "id": "113e516a604560492357f53929592c7165841e0f67720a2e602b0e3a324f9e54", - "index": 19536, - "amount": { - "quantity": 38, - "unit": "lovelace" - }, - "derivation_path": [ - "30944", - "32048", - "24731", - "29797", - "22699", - "14049", - "12271", - "8785", - "27518", - "13288", - "18696", - "2436", - "27574", - "22421", - "25989", - "5398", - "16123", - "10860", - "28960", - "25928", - "3111", - "484", - "8482", - "9445", - "30807", - "29758", - "23935", - "6259" - ], - "assets": [] - }, + } + ], + "outputs": [ { "address": "", - "id": "2100683f4b31227e63493e10e51d64423330140742100f3928752a1a575d3081", - "index": 19512, "amount": { - "quantity": 190, + "quantity": 98, "unit": "lovelace" }, - "derivation_path": [ - "27007", - "675", - "18432", - "18984", - "17546", - "25520", - "4643", - "11613", - "30349", - "20480", - "31183", - "23134", - "793", - "8441" - ], "assets": [] }, - { - "id": "580b0c78566b7a7e08327512669304077129797302325a5b0a78a3b9bec3e36f", - "index": 1 - }, { "address": "", - "id": "7b2d324d570749516866aa235c58306f2b573d1e0b5b395e20217f8a38790341", - "index": 26388, "amount": { - "quantity": 171, + "quantity": 249, "unit": "lovelace" }, - "derivation_path": [ - "23762" - ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 27, + "asset_name": "546f6b656e43", + "quantity": 21, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 10, + "asset_name": "546f6b656e45", + "quantity": 15, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 26, + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 43, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 1, + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 11, + "quantity": 2, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 26, + "quantity": 15, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e42", - "quantity": 19, + "quantity": 30, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 7, + "asset_name": "546f6b656e42", + "quantity": 11, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "54780158681c1d35023e0875b6574c1918449021398b4f6a4b620cc2480350e2", - "index": 15776, "amount": { - "quantity": 21, + "quantity": 35, "unit": "lovelace" }, "derivation_path": [ - "5746", - "26743", - "28589", - "13283", - "10503", - "20279", - "27731", - "22435", - "2316", - "13005", - "7450" + "11098", + "1510", + "9822", + "14570", + "2512", + "11555", + "26098", + "3826", + "16449", + "23023", + "4811", + "15153", + "26452", + "25427", + "16746", + "9823", + "19460", + "18542", + "6708", + "8189", + "22015" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", - "id": "7311582f05c07e474a4578104432fe4f843a1170367f355a43377b2d79532437", - "index": 29904, "amount": { - "quantity": 207, + "quantity": 19, "unit": "lovelace" }, - "derivation_path": [ - "8884", - "11652", - "18746", - "6630", - "21001", - "23780", - "12715", - "16520", - "16048", - "19691", - "32058", - "12289", - "32410", - "3968", - "20378", - "28324", - "20380" - ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e41", "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "3b575c5e6945455b1b74070603295242726c2a25273c21242c7a460f0056b710", - "index": 1 - }, - { - "id": "a92c535f5f3c5c404b2c28332b1e74e2c7c864aa28f3121d357f5a5b59766f73", - "index": 1 - }, - { - "id": "1a2e64050c38734634694f3073030179686c2216376cda56e43e1f2c4476665c", - "index": 1 - }, { "address": "", - "id": "3ce62e7b71665f0c12c1683a507b4668337b9bb77b3125635d3108783407562e", - "index": 13488, "amount": { - "quantity": 122, + "quantity": 102, "unit": "lovelace" }, "derivation_path": [ - "28588", - "14475", - "27189", - "7627" + "18899", + "11411", + "22435", + "1126", + "6621", + "3219", + "30586", + "28867", + "11832", + "23547", + "482", + "14284", + "27036", + "20674", + "30872", + "22954", + "24154", + "11064", + "4897", + "31118", + "11390", + "30463", + "16296", + "13041", + "16884", + "24253", + "8389" ], - "assets": [] - }, - { - "id": "fb25043d55f30e60415089c90d007454fa456c37311a5b5c7d7605d21a00b84e", - "index": 1 - }, - { - "id": "3c4e683e9756654c2f2981136f34496776707ddb7239511852ce4a181d201e79", - "index": 1 + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "address": "", - "id": "3d3ff800394670086f13645e0859849c1e6b3f3e146e3f185b5e160cc1c67806", - "index": 26524, "amount": { - "quantity": 160, + "quantity": 50, "unit": "lovelace" }, "derivation_path": [ - "15166", - "22453", - "28017", - "14506", - "1168", - "8943", - "12099", - "16835", - "31781", - "17134", - "1722", - "18885" + "26808", + "22974", + "3803", + "21201", + "30739", + "9563", + "25675", + "29330", + "14928", + "29388" ], "assets": [] }, { "address": "", - "id": "3b347e7b508f70f8061e6c093035d4e654751574504fac4a604d7540300c477e", - "index": 1318, "amount": { - "quantity": 94, + "quantity": 144, "unit": "lovelace" }, "derivation_path": [ - "2751", - "32633", - "11621", - "729", - "21907", - "10375", - "16558", - "2877", - "20088", - "29980", - "13682" + "7913", + "21177", + "30914", + "4523", + "21874", + "16582", + "20479", + "22394", + "31991", + "12556", + "131", + "10594", + "25055", + "10709", + "6795", + "26793", + "21580", + "21072", + "11404", + "24987", + "25633", + "8169", + "23713", + "30427", + "5217", + "9795", + "16094", + "8589", + "8481", + "22906", + "15444" ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] + } + ], + "id": "28d16c8216d75f024b0f74399b6a3577726d78610066e11375ea093d300fb951", + "deposits_taken": [ + { + "quantity": 29, + "unit": "lovelace" + }, + { + "quantity": 66, + "unit": "lovelace" + }, + { + "quantity": 72, + "unit": "lovelace" + }, + { + "quantity": 235, + "unit": "lovelace" + }, + { + "quantity": 250, + "unit": "lovelace" + }, + { + "quantity": 4, + "unit": "lovelace" + }, + { + "quantity": 216, + "unit": "lovelace" + }, + { + "quantity": 149, + "unit": "lovelace" + }, + { + "quantity": 189, + "unit": "lovelace" }, { - "address": "", - "id": "6f98756416741d46c93e510cc36b55683c5bcf2665f594890e1b6e5959036f36", - "index": 13148, - "amount": { - "quantity": 190, - "unit": "lovelace" - }, - "derivation_path": [ - "26869", - "19601", - "23077", - "6957", - "933", - "30996", - "12164", - "19719", - "8852", - "6412", - "23915", - "4422", - "13730", - "13952", - "31842" - ], - "assets": [] + "quantity": 35, + "unit": "lovelace" }, { - "id": "40454d5567151446112f8f097f5a5717ef2041965e8a7c0c62277b026d48074c", - "index": 0 + "quantity": 61, + "unit": "lovelace" }, { - "address": "", - "id": "7b0550566460114b543c39432f0c1e5c14343a72077b741cf9565f49ac0b411f", - "index": 4596, - "amount": { - "quantity": 67, - "unit": "lovelace" - }, - "derivation_path": [ - "9668", - "14906", - "27220", - "24857", - "11042", - "14613", - "31143", - "30879", - "29766", - "12587", - "9018", - "4253", - "6514", - "10654", - "1981", - "4150", - "28607", - "13663", - "12348", - "31938", - "29527", - "19912", - "1767" - ], - "assets": [] + "quantity": 86, + "unit": "lovelace" }, { - "id": "9c72340c7e28445ae6466c1c6afa4b1811694b2659364b2c70407f6b23773e54", - "index": 0 + "quantity": 1, + "unit": "lovelace" }, { - "id": "694ac45c01b83b0a495d38334a692d72546eb962db0662b8183e8f491f517e7a", - "index": 1 + "quantity": 233, + "unit": "lovelace" }, { - "id": "47442eb570074d722b0f23596d366e143e6c3f76ee372a6c5579156e0a204757", - "index": 0 + "quantity": 208, + "unit": "lovelace" }, { - "address": "", - "id": "309d7d34d931224f0301442f612a5f09c37d66380a3e5e057e1183735655203e", - "index": 1099, - "amount": { - "quantity": 183, - "unit": "lovelace" - }, - "derivation_path": [ - "20236", - "30921", - "17851", - "5389", - "16955", - "3252", - "2038", - "24627", - "27042", - "15311", - "882", - "17442", - "2239", - "19895", - "22236", - "5446", - "22954", - "5355" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "quantity": 145, + "unit": "lovelace" }, { - "address": "", - "id": "352c3c8e7766d8553d813d1b6f4c4e1b5c485078c3f00d6b45237a35202d5e52", - "index": 16333, - "amount": { - "quantity": 236, - "unit": "lovelace" + "quantity": 184, + "unit": "lovelace" + } + ], + "burn": { + "tokens": [ + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1rmp0ma8s54wdacxvpxlj9nqkyxc8qllk2ezyz8u2apzyu9s8fzh", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "1ec2fdf4f0a55cdee0cc09bf22cc1621b0707ff65644411f8ae8444e", + "assets": [ + { + "fingerprint": "asset1xj3nf79rn00dgfk8pdnyd5c8j40f66g22nltl4", + "asset_name": "546f6b656e49", + "quantity": 6944 + }, + { + "fingerprint": "asset1h7l2er927j08neqfvgjkdhuxzjj8ys6u0mafcd", + "asset_name": "546f6b656e45", + "quantity": 1011 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1rhgukvue798r78ywpaje4scmq36sv74373m23e8pqy9avy7x40p", + "script_type": "native" + }, + "policy_id": "1dd1cb3399f14e3f1c8e0f659ac31b0475067ab1f476a8e4e1010bd6", + "assets": [ + { + "fingerprint": "asset1dygjshlmsnlxqz9km0m6ud05f2cqhj94gulve9", + "asset_name": "546f6b656e4e", + "quantity": 711 + }, + { + "fingerprint": "asset1kc6w7z6gmjhwdtk0xvzszw8dwwgsqr0dnjjcum", + "asset_name": "546f6b656e47", + "quantity": 7552 + }, + { + "fingerprint": "asset1m7r44pavcjngyuyy8ssduldswjqarmwutyq0zx", + "asset_name": "546f6b656e41", + "quantity": 7922 + }, + { + "fingerprint": "asset1p8cer9y3sfnsz3xswhvzhkqrthjvs5jajn270k", + "asset_name": "546f6b656e43", + "quantity": 311 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "cb17907d5c788782f49cdcf91fcdf42668de6d052ca1c8293b056312", + "assets": [ + { + "fingerprint": "asset123xm7r98myw80lm56ns7gf3mt4y49eq449d8m9", + "asset_name": "546f6b656e4f", + "quantity": 3722 + }, + { + "fingerprint": "asset1pkz9g5x4sz5a8qt4khh7leh46lzllt0e9wg83t", + "asset_name": "546f6b656e56", + "quantity": 5903 + }, + { + "fingerprint": "asset12kvnv872dhg73xz05dcux45ce8qj3ueckx6rw7", + "asset_name": "546f6b656e4e", + "quantity": 1064 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1f65cgsnulldmd3hrqgz2730azqkkc464gm5hh3uhaeaq70nrhvc", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "4ea984427cffdbb6c6e30204af45fd102d6c575546e97bc797ee7a0f", + "assets": [ + { + "fingerprint": "asset1h3dg9aeraate2amxpa47hgvcu4ukq8e8jqptx9", + "asset_name": "546f6b656e4f", + "quantity": 1311 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "d8d2ee5da5bd381f6458b3fa7fedbd11ee7c2ea8ae3b3c22f83107b0", + "assets": [ + { + "fingerprint": "asset1n5qndd28vwhs7psfne4dhd8u7a7uqa6lkcurmj", + "asset_name": "546f6b656e54", + "quantity": 2865 + }, + { + "fingerprint": "asset1d68jtdwy5l2n2256fgnlmq5rmzptducz5qd540", + "asset_name": "546f6b656e41", + "quantity": 5517 + }, + { + "fingerprint": "asset1xjrdu4zz655ma0y8w4mcwaxqrhwlu6wqm0v3mp", + "asset_name": "546f6b656e52", + "quantity": 4688 + }, + { + "fingerprint": "asset139jdn39rs88ygvr7htqwu0al79a6j7p7zu5pgf", + "asset_name": "546f6b656e4a", + "quantity": 7851 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh13az94ucn64parr82uh8pkyzff2hvjec969sxpm0k24sq7tyk0q0", + "script_type": "native" + }, + "policy_id": "8f445af313d543d18ceae5ce1b10494aaec96705d16060edf655600f", + "assets": [ + { + "fingerprint": "asset13qhsqmkph2hujgdsz39cqjkm7xqtfj3wx0gptj", + "asset_name": "546f6b656e57", + "quantity": 3126 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "7d9d263dd21d6ba43b803c72ec204c67e16750fb52a7d9d01409e231", + "assets": [ + { + "fingerprint": "asset1pelg2nkymshdhjt0fl76dx6ejj6e9tlczfe966", + "asset_name": "546f6b656e4a", + "quantity": 9046 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1u4fxvnzjkxzlv4hd56c7drxaqzxsxsulhg95xr4lk5dpqlljnld", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "e552664c52b185f656eda6b1e68cdd008d03439fba0b430ebfb51a10", + "assets": [ + { + "fingerprint": "asset1q58gq82thwpsc3tvrsvhxj3z5hw2nfxnezn5eq", + "asset_name": "546f6b656e52", + "quantity": 8974 + }, + { + "fingerprint": "asset1tk7au09wy2p09ezeq242ajl5hdcdt7gz9k0yrn", + "asset_name": "546f6b656e55", + "quantity": 551 + }, + { + "fingerprint": "asset13j6f852z5pcmp6fzf6xjrakj3lylrakz8p7v7l", + "asset_name": "546f6b656e55", + "quantity": 7748 + }, + { + "fingerprint": "asset15svuzxu044lh4h84qjsd80n8us0kr5tgy29npr", + "asset_name": "546f6b656e4f", + "quantity": 7476 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "8dfeacd1357f7d8fb7866ff05ae5576eacfe0d6cae79646559671d08", + "assets": [ + { + "fingerprint": "asset19wc9hvq7yxzxa3z6xjawwsls5ec35284n5gjfv", + "asset_name": "546f6b656e51", + "quantity": 1142 + }, + { + "fingerprint": "asset1ges27w97mr6p9pwy2ezr5uj92yg2vq4ayu4338", + "asset_name": "546f6b656e44", + "quantity": 835 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "82ae61d5b27c95fbd0ec5be97cc9d951e7dd7abb774f6a88f099e636", + "assets": [ + { + "fingerprint": "asset1qytt4vefu562ap62dt2gaq82fw3e5j2v4ndfrh", + "asset_name": "546f6b656e50", + "quantity": 9346 + }, + { + "fingerprint": "asset1lsfg5vlurpgnqjrfsl3k8md08kl0yu5969zy65", + "asset_name": "546f6b656e56", + "quantity": 4689 + }, + { + "fingerprint": "asset1qnamu79tm08gg8h29tpqprmlp9c9ukxffmv4r2", + "asset_name": "546f6b656e55", + "quantity": 8929 + }, + { + "fingerprint": "asset1a4y9ejpuf8al0zm3k8ugytatvvdfaqvzamantc", + "asset_name": "546f6b656e44", + "quantity": 8461 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1h7lwl685ukdmfm7lre5uy6z2wgkrz8mwm6yck5yu7075swp0nt3", + "script_type": "native" + }, + "policy_id": "bfbeefe8f4e59bb4efdf1e69c2684a722c311f6ede898b509cf3fd48", + "assets": [ + { + "fingerprint": "asset1ul7ny3f8pgk9nwjjyff5rxt4vp57j6f0vjla2p", + "asset_name": "546f6b656e44", + "quantity": 9568 + }, + { + "fingerprint": "asset1n7zkf4esn6yp27pxsctsaqapgj368d3yq4uenp", + "asset_name": "546f6b656e4f", + "quantity": 1688 + }, + { + "fingerprint": "asset1kpwv2tqz5k4kuhg3mjhp5uwjzlsp7mlwfa6cz9", + "asset_name": "546f6b656e4a", + "quantity": 1927 + } + ] }, - "derivation_path": [ - "20070", - "11960", - "1234", - "30984", - "5079", - "10284", - "30268", - "29645", - "22945", - "8402" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "id": "366a404d6f121d8b0a1e2fd44e29bb1a09dc105c644e0534b16bb161664b21d1", - "index": 0 - }, - { - "id": "112c0eee0941042b7498707a50620e623a613c2a4b6b841f64de6d98831e217b", - "index": 1 - }, - { - "id": "3c0d2e732246321f6d1c47230efedd182878e53c251642798374436340247056", - "index": 0 - }, - { - "address": "", - "id": "d45597345176501ac175697d4e197460f04cb5197c0e352e546b332e0a13040a", - "index": 31772, - "amount": { - "quantity": 139, - "unit": "lovelace" + "policy_id": "d236086a1d17e5b2125174d0414c7dfa0bf1ff9090ab7359a245d1b5", + "assets": [ + { + "fingerprint": "asset1zm7zjlav303zlkjp4dvh0jjgy9xet5q6fmjhlv", + "asset_name": "546f6b656e42", + "quantity": 98 + }, + { + "fingerprint": "asset1gv82y55nqgw76tuelldvk76vk5axj295pxw8xx", + "asset_name": "546f6b656e41", + "quantity": 1085 + } + ] }, - "derivation_path": [ - "11288", - "32607", - "31853" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + { + "policy_script": { + "script": "policy_vkh1dn566cyc0tjd5vszph7z93qj8wqxym24efjpnaszr63yz3cw2fw", + "script_type": "native" }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "6ce9ad60987ae4da32020dfc22c4123b80626d55ca6419f6021ea241", + "assets": [ + { + "fingerprint": "asset1rqext9e69klprzvhry6l0t4hl56fnejj0xu980", + "asset_name": "546f6b656e4c", + "quantity": 3566 + }, + { + "fingerprint": "asset1gpvmsg5kumtpatl2al5wd4qpyms2720vkqgyy2", + "asset_name": "546f6b656e43", + "quantity": 5385 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh12fec5l4s85ggd4a0mcfuqk0m9096sf5ufhy04tnfhp5tu5a9lw3", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - ], - "collateral_outputs": [ - { - "address": "", - "amount": { - "quantity": 170, - "unit": "lovelace" + "policy_id": "52738a7eb03d1086d7afde13c059fb2bcba8269c4dc8faae69b868be", + "assets": [ + { + "fingerprint": "asset13vwzzts9fjm3gx3kk2r2hwrxd7qgryjv5425hc", + "asset_name": "546f6b656e48", + "quantity": 1184 + }, + { + "fingerprint": "asset1vqsfd0h50kud2ukp22xcqzurtwuxc6nymaww5q", + "asset_name": "546f6b656e49", + "quantity": 653 + }, + { + "fingerprint": "asset12qms2gupwpzsue4th6dy2pwkpk0yvpqf63aegk", + "asset_name": "546f6b656e51", + "quantity": 6005 + } + ] }, - "derivation_path": [ - "26792", - "4021", - "10421", - "8196", - "19783", - "4345", - "5112", - "5038", - "2970", - "9053", - "1940", - "3596", - "20024", - "2731", - "16841" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - ], - "outputs": [], - "script_validity": "valid", - "id": "76745148150339d94e7a036d4f5109ad3a1e40685b13527c4974687be7306d14", - "deposits_taken": [ - { - "quantity": 97, - "unit": "lovelace" - }, - { - "quantity": 166, - "unit": "lovelace" - }, - { - "quantity": 105, - "unit": "lovelace" - }, - { - "quantity": 177, - "unit": "lovelace" - }, - { - "quantity": 209, - "unit": "lovelace" - }, - { - "quantity": 109, - "unit": "lovelace" - }, - { - "quantity": 47, - "unit": "lovelace" - }, - { - "quantity": 64, - "unit": "lovelace" - }, - { - "quantity": 74, - "unit": "lovelace" - }, - { - "quantity": 171, - "unit": "lovelace" - }, - { - "quantity": 183, - "unit": "lovelace" - }, - { - "quantity": 241, - "unit": "lovelace" - }, - { - "quantity": 112, - "unit": "lovelace" - }, - { - "quantity": 6, - "unit": "lovelace" - }, - { - "quantity": 241, - "unit": "lovelace" - }, - { - "quantity": 121, - "unit": "lovelace" - }, - { - "quantity": 4, - "unit": "lovelace" - }, - { - "quantity": 26, - "unit": "lovelace" - }, - { - "quantity": 231, - "unit": "lovelace" - }, - { - "quantity": 141, - "unit": "lovelace" - }, - { - "quantity": 191, - "unit": "lovelace" - }, - { - "quantity": 57, - "unit": "lovelace" - }, - { - "quantity": 95, - "unit": "lovelace" - }, - { - "quantity": 75, - "unit": "lovelace" - }, - { - "quantity": 102, - "unit": "lovelace" - }, - { - "quantity": 72, - "unit": "lovelace" - }, - { - "quantity": 57, - "unit": "lovelace" - }, - { - "quantity": 241, - "unit": "lovelace" - } - ], - "burn": { - "tokens": [ { "policy_script": { - "language_version": "v1", + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "f0620e56d07177627ba088817e994b5324bf2137d51875c1615c81d8", + "assets": [ + { + "fingerprint": "asset1e0e54tsvj92c9l6z29fs5m92gjcdglqdmuwuy9", + "asset_name": "546f6b656e45", + "quantity": 2546 + }, + { + "fingerprint": "asset1etsjcjc5qvhdd6uyqf56wkt95vswhj434rl208", + "asset_name": "546f6b656e4b", + "quantity": 4172 + }, + { + "fingerprint": "asset15qrqlaqqefygcz8zj4kdw89ynhxnrppsdh05a0", + "asset_name": "546f6b656e4a", + "quantity": 8409 + }, + { + "fingerprint": "asset1ztzdseyz4k6x3p60t2y4x408puqruhtyqnmatv", + "asset_name": "546f6b656e51", + "quantity": 1414 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "08b70ad6a360a41ece717428cbb2b6eb6f8824a4c7c025943f8719b5", + "assets": [ + { + "fingerprint": "asset1kr0le079en9rqt98m9c9hfktady0cf22h9me0j", + "asset_name": "546f6b656e41", + "quantity": 2739 + }, + { + "fingerprint": "asset1rysjw2h47d97lv5ws03k5pvzst33x299q2p4yq", + "asset_name": "546f6b656e44", + "quantity": 441 + } + ] + }, + { + "policy_script": { + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "81696df255f7e954a3c63f5a8b59bf3a1adb94df89305f4ba1fcd528", + "policy_id": "9259caba64f5aa2e21f94ebf0d9e5da1e724f4339b15d0e808aab5d0", "assets": [ { - "fingerprint": "asset105nngaytuhejkru6elxpa0c2zdfq363sfeeplu", - "asset_name": "546f6b656e4a", - "quantity": 2309 + "fingerprint": "asset1ku5fkecac80hamdwl27m0qyl4zhx65rcmmj3ws", + "asset_name": "546f6b656e47", + "quantity": 3253 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1m0mmarx5j689teqwv99f0693sgvsp9wlqeuewzvzvwjnzt3uvd5", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, + "script": "policy_vkh1fjp6dhe70qhkh8k8ducn9ujma70r0dwyyhks7dd8k2fts0hru6z", "script_type": "native" }, - "policy_id": "dbf7be8cd4968e55e40e614a97e8b182190095df067997098263a531", + "policy_id": "4c83a6df3e782f6b9ec76f3132f25bef9e37b5c425ed0f35a7b292b8", "assets": [ { - "fingerprint": "asset1y6qtet5h89fpzcmjee6ae0uqfcww6uyl8zysy5", - "asset_name": "546f6b656e48", - "quantity": 1780 + "fingerprint": "asset1jztp7agwcurwejj8qst5kr8z3wd02la0anzy44", + "asset_name": "546f6b656e49", + "quantity": 7024 }, { - "fingerprint": "asset1ljew9n8h2g7rk6z5p73eg6wn8t8t85dclw9puv", - "asset_name": "546f6b656e4b", - "quantity": 9032 + "fingerprint": "asset1nt56xzhz06zyhl7zckj8apv5q4nmnc267n58z7", + "asset_name": "546f6b656e45", + "quantity": 7285 }, { - "fingerprint": "asset1m3x9z5jgxa503n8wzk2g9du75zdepnat0wgeth", - "asset_name": "546f6b656e41", - "quantity": 8895 + "fingerprint": "asset1uv3q2p3veyuk68ta9apggent2yp4p7ktx2kc05", + "asset_name": "546f6b656e51", + "quantity": 7649 }, { - "fingerprint": "asset1uydv2uxhxmpdtkcng6s6clpfweg2t8dfk8f2cy", - "asset_name": "546f6b656e5a", - "quantity": 2470 + "fingerprint": "asset1aclxhh4fts22pp2myjtzlc56tmm95g593ft4xg", + "asset_name": "546f6b656e41", + "quantity": 9787 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1q0t0pr8djdfwd794k0tdtj38l0wq2ps9dj5737afyc94g4l0h4k", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "03d6f08ced9352e6f8b5b3d6d5ca27fbdc0506056ca9e8fba9260b54", + "policy_id": "04ea3ae9e6acc8b1ba92f3b590935ee90aaa027716e1265004cbd652", "assets": [ { - "fingerprint": "asset1jt9y78kvlrjv877y5pnk637dlu2sd3umtfwgf2", - "asset_name": "546f6b656e49", - "quantity": 1028 + "fingerprint": "asset1ahas0apm62umx7cu0juw2e92rln38y2w5exxxd", + "asset_name": "546f6b656e54", + "quantity": 9122 }, { - "fingerprint": "asset1yyw64aps8jj49ajntpvzuavj0l00che2x8ujx2", - "asset_name": "546f6b656e52", - "quantity": 4957 + "fingerprint": "asset1gyq087nm0nw0rutsvpyxd6ehnyt4e2tkwqpv63", + "asset_name": "546f6b656e4e", + "quantity": 8269 + }, + { + "fingerprint": "asset1zzrla4k5tnrmes6aatw48pqxnhvutq3xsp5v9x", + "asset_name": "546f6b656e4b", + "quantity": 6166 } ] }, { "policy_script": { - "script": "policy_vkh14vwdnumrhpwxxxx2da24vz29k2wwtgjnrxksm8c4j5zc66r56c0", + "script": "policy_vkh1kdjeutzsyljywz8ltwxdyxyjvqrm45hj30x7dpwyycnlu64je39", "script_type": "native" }, - "policy_id": "ab1cd9f363b85c6318ca6f55560945b29ce5a25319ad0d9f1595058d", + "policy_id": "b3659e2c5027e44708ff5b8cd218926007bad2f28bcde685c42627fe", "assets": [ { - "fingerprint": "asset178ahr8fnfw45dnt3mezfnnh2q9ljf2lmstxzmu", - "asset_name": "546f6b656e58", - "quantity": 4459 + "fingerprint": "asset10nqjy3qmsvk5zrm400980x2f5zansr0rk7n47r", + "asset_name": "546f6b656e52", + "quantity": 1042 + }, + { + "fingerprint": "asset1vvan668mdzn4mqenlh8r9d9recjs7vf7qcu8wv", + "asset_name": "546f6b656e47", + "quantity": 132 }, { - "fingerprint": "asset1l2ugjxz6g60kdtntsytrpc99a5ch0qt57mrzw6", + "fingerprint": "asset1vem9wyphp9hzauyma6lcgppatt0jhlxkhdzj36", "asset_name": "546f6b656e48", - "quantity": 4560 + "quantity": 7908 } ] }, @@ -8084,12 +7634,17 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "4b0f1283658e32042b89c46d4666a32171c03882048d82673fdd588f", + "policy_id": "3253c8a48f5aa41609880552d9e222a6eddd736f5ca765a4dd25d3a0", "assets": [ { - "fingerprint": "asset1eftmqv6vvwcyt4zp5kd4pdzm7d8fhn2lkutcrg", - "asset_name": "546f6b656e49", - "quantity": 5674 + "fingerprint": "asset15vhe29p95qly3zhkr02lptsa7nu0xpks25hluy", + "asset_name": "546f6b656e57", + "quantity": 7989 + }, + { + "fingerprint": "asset1sjnakgjuznla5x950qnwkaf9d2h68jya7jtw3e", + "asset_name": "546f6b656e48", + "quantity": 1326 } ] }, @@ -8098,22 +7653,22 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "353f30de850fc672aca4f0c9af0a8045077b4e8529e2bd48c89b361d", + "policy_id": "34c080b6e9b7d68a83decd78838fb30fdc0d2f1a38cd2ba7ff5b34ba", "assets": [ { - "fingerprint": "asset1scdz5gs50uazgv7sqx9zlkppreqs503pj6lgz0", - "asset_name": "546f6b656e4e", - "quantity": 6796 + "fingerprint": "asset1n95t75mr9ajhxv89avmuvz9pc7qjstpvwc4xmq", + "asset_name": "546f6b656e54", + "quantity": 6168 }, { - "fingerprint": "asset1wed4mc5zlrkfytqgtfuafflkemd2pfsxvddlvl", - "asset_name": "546f6b656e47", - "quantity": 4231 + "fingerprint": "asset1rdtjwpcr542x2gywxq5m4wgzsjg4fjz3w42qsv", + "asset_name": "546f6b656e4c", + "quantity": 8939 }, { - "fingerprint": "asset132f5plsvzjstg99aa0jpchaxwsmm5u0g6q7sm0", - "asset_name": "546f6b656e58", - "quantity": 5607 + "fingerprint": "asset103epl96lw920hgyn5tzgu4xj934r2j6lvddvvd", + "asset_name": "546f6b656e4a", + "quantity": 6792 } ] }, @@ -8121,88 +7676,194 @@ "policy_script": { "script": { "all": [ - "policy_vkh1da62nlwryq0tz50keel22rkmd98e0anzv3gqucfd3ylfws2slvw", + "policy_vkh1hy83s340z22cpp96j5ytfw4d8q7uz0uhgygrkndfyjk0jh2fgsc", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "6f74a9fdc3201eb151f6ce7ea50edb694f97f66264500e612d893e97", + "policy_id": "b90f1846af12958084ba9508b4baad383dc13f9741103b4da924acf9", "assets": [ { - "fingerprint": "asset1tx9jjk7eftkjjexf0w8yumyauvck55ve2sp8qu", - "asset_name": "546f6b656e58", - "quantity": 9318 - }, - { - "fingerprint": "asset1wsxxsdn7rmfy9xlmslmwnfuftdkgucxlzwn7x7", + "fingerprint": "asset17fyz69hhklhj8saguyypfgydy6qrkmg4kzpfwc", "asset_name": "546f6b656e55", - "quantity": 6949 + "quantity": 3629 }, { - "fingerprint": "asset15620pw6m9ygh3xpzsqljf3zgmzyenp7rtc9pju", - "asset_name": "546f6b656e51", - "quantity": 2441 + "fingerprint": "asset1wf0p2ul7gwww49wg6p5n75pe7mh2fxcwkljqp0", + "asset_name": "546f6b656e41", + "quantity": 8795 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1quawpuherafszwjx4gw32sf285d3uvt3px6mg692r6u6j7xg57l", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, + "script_type": "native" + }, + "policy_id": "073ae0f2f91f53013a46aa1d15412a3d1b1e317109b5b468aa1eb9a9", + "assets": [ { - "fingerprint": "asset1ch6u0ke7nah9p5s5fuptnqvsfd9c49m2f2ewk0", - "asset_name": "546f6b656e46", - "quantity": 4763 + "fingerprint": "asset1pvwntphdh0nja3mq2q5ec54x4qlew3jm9nlxgy", + "asset_name": "546f6b656e4e", + "quantity": 961 } ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1r2esuejaws85z4ndycej7hcqrcn87wnpya0nw9j0lc33el9qzs4q2uv8vr" + }, + "fee": { + "quantity": 188, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1ygjlfr9wp2x3lefrp7mj3ltqf0vdwed4f2ned393mexx3vzqmcas5nlhf9", + "ed25519_pk160ghanumm3l0kj04jjzuhjp5gva84z5t0jvkkd522ahk2x06y6fqyh9yd6", + "ed25519_pk13fr7yjvrvunupfh09w57zavr0c3yw5xlag0nn3uunynxwp6ajafszu3ath", + "ed25519_pk1wwmc2s6udeqhzcsfhdvcf4tfczrtted6dzctlqakxslr53lcf60q6e8x6w", + "ed25519_pk1sa6gxte7k85dtcxyvswjdzan2f3j95adc0nd7vcec93msz9cxlcqn2s2w5", + "ed25519_pk1l3esrhl3l0ww9et6thzcq6rhw2k330nzrg0uex7fszkqy3g35dhq2gls3n", + "ed25519_pk14gpy90sr9qd7afur5sey32lxu55t6c6yxw0hzktddvahfr52txrq0qt6z0", + "ed25519_pk127dvzddfxl6awmhtea0df8uwlc3r7zhve6klhfjc5hjcht3d94tqykd9ph", + "ed25519_pk1z5376kjmnuqak7fx2m9kntfnuuud4jg4f2h63fzsxlvwwjntu0vqulpnrw", + "ed25519_pk14n3k20q26hd8yuw3zqtrjvs0vzhp9uvvqpmvphplpz22y7d62wxqu57a4l", + "ed25519_pk1x4yzy4h2nqawnx7kd2qqk3agu206f7dt2nudjsu2fkh0yax72t6s82phcq", + "ed25519_pk1rpnllk38zgvg7utp7qat4vtaycqaymev0h8h8z4n6epsv6wsqudsvq8wz2", + "ed25519_pk1q3tnqnsu4wmewawgx60u2uf5dpq8htgegj3ntnpux27k97zz64kqm8q23v", + "ed25519_pk1qa4y3f84dcfyp28v9lcmxsmstlagqv9s89mv3umj483w3t4w0gtq5y9s8q", + "ed25519_pk1trmgewa6mqja3q5c2m0y9qnjgjcu5a2c63yqvacpkkyye0lrndkqxem9z3", + "ed25519_pk1aukgqf4s3wh037drywadnshwuup7h6zs4uzjp0zuys9qwszhujhqzh6yau", + "ed25519_pk18umvw88d5frhuqlymu94hkpfrmumq0v500yax5r4czm9qcs5y7nstq4ggl", + "ed25519_pk1t8uh34dscvyhyj7kltfeh8uehmxcy0c4sdkxe2qn74lst5q0hwkq6s0an6", + "ed25519_pk158mpg37zp97t38nk29n3ceqpyj9vq7zl40nmt5vhn3utxu4yp38qp6ks2f" + ], + "pool_pledge": { + "quantity": 126, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 104, + "unit": "lovelace" }, + "pool_id": "pool1vxslv9csvgp9w8mjguprmh9ncpzeuwludy0hp9nrmue5snrrrdk", + "pool_margin": { + "quantity": 89.64, + "unit": "percent" + } + }, + { + "certificate_type": "quit_pool_external", + "reward_account": "" + } + ], + "deposits_returned": [ + { + "quantity": 108, + "unit": "lovelace" + }, + { + "quantity": 243, + "unit": "lovelace" + }, + { + "quantity": 9, + "unit": "lovelace" + }, + { + "quantity": 93, + "unit": "lovelace" + }, + { + "quantity": 57, + "unit": "lovelace" + }, + { + "quantity": 94, + "unit": "lovelace" + }, + { + "quantity": 17, + "unit": "lovelace" + }, + { + "quantity": 78, + "unit": "lovelace" + }, + { + "quantity": 86, + "unit": "lovelace" + } + ], + "metadata": { + "23": { + "bytes": "38e92b0f544a5668655406776d5967187f113571e5270c173007" + } + }, + "collateral": [], + "mint": { + "tokens": [ { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "fc7b99e33c35641af32ef7c8acb0bcc0d59b33528e6235caac2c3f68", + "policy_id": "3abfde70226eccce0fcad4f151ae51c449b9157b52ba59e04985ef45", "assets": [ { - "fingerprint": "asset1rpz5877ljtadagnyhlczc29ugk7dzmyj6qkfdr", - "asset_name": "546f6b656e53", - "quantity": 9623 + "fingerprint": "asset19ea3k4qqfvrfxw842mju5jrvz6kamnjkrdc3k2", + "asset_name": "546f6b656e4d", + "quantity": 1331 }, { - "fingerprint": "asset19rsjwjm6e7k3jcajlzyljsngwgjk9jg9uvfgw9", - "asset_name": "546f6b656e5a", - "quantity": 716 + "fingerprint": "asset1jrw04q6plht8u08efh7h2sptvml330lys62d0s", + "asset_name": "546f6b656e58", + "quantity": 2271 }, { - "fingerprint": "asset1ewu6usrfsfjfls25rrnxxdc8mjl0ce7t4k2vvf", - "asset_name": "546f6b656e52", - "quantity": 3969 + "fingerprint": "asset1kmkpgus9mxnc8y8eyxv6ur326xpxrn7e3uvssh", + "asset_name": "546f6b656e42", + "quantity": 7916 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh18ztfjtcl8czp6ky6h6fm43dq6dcxat0m5nrx9mjh8tp4j94lvz8", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "3896992f1f3e041d589abe93bac5a0d3706eadfba4c662ee573ac359", + "policy_id": "f4034cb55eab59d129e41140c88774564e05e5f205486155cc2426f2", "assets": [ { - "fingerprint": "asset1py9u7sm8h9v96cql4peym2uhafkcfz47zmpeh9", + "fingerprint": "asset1gnjdrtf3yd655p5hsyqvljeupu0nrz464nzet9", "asset_name": "546f6b656e43", - "quantity": 7981 + "quantity": 1514 }, { - "fingerprint": "asset19hna7972v7x3ezfu3zhj25g6fkmvk9t2fzddk7", - "asset_name": "546f6b656e41", - "quantity": 8046 + "fingerprint": "asset106yepufgnkfg45p6lwf6fm365szvg9jcxsvdyc", + "asset_name": "546f6b656e46", + "quantity": 6092 + }, + { + "fingerprint": "asset1w30v6w6dshsd233a5ej0unyalnd6y3j7jx6vst", + "asset_name": "546f6b656e52", + "quantity": 2117 } ] }, @@ -8211,72 +7872,79 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "d0f627febc7adfa87fd48e2d9eb7a56edaa99d218c36b8779a9c082b", + "policy_id": "d6d0bacdae3f1052d8e917397d75385175c3664800b4f33b3d8bba59", "assets": [ { - "fingerprint": "asset1p5zqt0jczyuxx366r5ln9rtn9n3skk3a5zf7zq", - "asset_name": "546f6b656e53", - "quantity": 1080 + "fingerprint": "asset1n26e2f2pd2e0an693usrha5flgqrknm852hmm0", + "asset_name": "546f6b656e52", + "quantity": 772 }, { - "fingerprint": "asset19whq7gs0dyl3d7zfg5256e4nc4aa868hrknvxh", - "asset_name": "546f6b656e45", - "quantity": 9682 + "fingerprint": "asset1qctqskztgyypcm8ezcweu83p4g52vawlp0e0kx", + "asset_name": "546f6b656e41", + "quantity": 5279 }, { - "fingerprint": "asset1aczsrnqpl3glcrpaz69u2jcc95qv808g7jhjyy", - "asset_name": "546f6b656e4e", - "quantity": 830 + "fingerprint": "asset1kprvtup4phhlfp4zwm3pmmhfjl676aaxsjpk2w", + "asset_name": "546f6b656e54", + "quantity": 5364 + }, + { + "fingerprint": "asset1dm0w4nklaccuy22eu3wa6grg6rvj0qjmksk4gz", + "asset_name": "546f6b656e42", + "quantity": 5524 } ] }, { "policy_script": { - "script": "policy_vkh1c3fv2gnjgacvjs3srrezg6shf0336x0er2ue2hmk3mfhyn9w4m6", - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "c452c522724770c9423018f2246a174be31d19f91ab9955f768ed372", + "policy_id": "98a16f397793a6e9924d807768399e3e12918ef79a896e3565554dfe", "assets": [ { - "fingerprint": "asset13c9dvv0gqpffevltkvu33wgj9ya39qk42rkmgp", - "asset_name": "546f6b656e58", - "quantity": 1662 + "fingerprint": "asset1f52wygglj9asf5zmln274swj38k6p969qf7z8p", + "asset_name": "546f6b656e43", + "quantity": 6211 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1hcpp2nvhj6xa4jrsar6dgun478fs9xrgfyg2rrus6fm3qc0xy6x", - { - "active_from": 100 - } - ] - }, + "script": "policy_vkh1ud5q7qcpquy760sl8wst743j9hukjyz2dduvy48w9yukwj9rdwf", "script_type": "native" }, - "policy_id": "be02154d97968ddac870e8f4d47275f1d30298684910a18f90d27710", + "policy_id": "e3680f03010709ed3e1f3ba0bf56322df969104a6b78c254ee293967", "assets": [ { - "fingerprint": "asset1wkr6syhz2y2tlu2q2q2pmnerrng8ypkclfql93", - "asset_name": "546f6b656e58", - "quantity": 5549 + "fingerprint": "asset15p5cw5q3dae5lvwa0uc9rqaz9x5ae4cxselc93", + "asset_name": "546f6b656e4c", + "quantity": 8607 }, { - "fingerprint": "asset1kujsp60m22t67dad5vayrzka69wunjn88f85t8", - "asset_name": "546f6b656e4b", - "quantity": 514 - }, + "fingerprint": "asset1cx5w5aj9lwch3w3lplyc0sv32cvvc4s3g698qf", + "asset_name": "546f6b656e41", + "quantity": 7143 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "a981288d43a3f940433cdb0b84f3eea23217ee5156c9e0fc72ee2be8", + "assets": [ { - "fingerprint": "asset1vxt8mawp2hkaltf4trhshqytpkjpd4ezg5dl5h", - "asset_name": "546f6b656e53", - "quantity": 6686 + "fingerprint": "asset1shww7gjl630xh9yml4p5aqp2n8tgs2zgfvkvdj", + "asset_name": "546f6b656e55", + "quantity": 1112 }, { - "fingerprint": "asset1lszq8dvxq8whnxe4zzh3ztarp8h8spzqe8axdv", - "asset_name": "546f6b656e4a", - "quantity": 5535 + "fingerprint": "asset17fh6p39j0xn8p2d28300zpae4fh7cfs6afgfrl", + "asset_name": "546f6b656e59", + "quantity": 586 } ] }, @@ -8284,7 +7952,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1z2eqljaxc3862kwf6j6ax2enpmwse6ej9c6rg6mcvxmhcs2ukgs", + "policy_vkh1ylh8wdrjstjdmksmrq5k439lm297e9vd9rsmrm582anngdy09lp", { "active_from": 100 }, @@ -8295,36 +7963,41 @@ }, "script_type": "native" }, - "policy_id": "12b20fcba6c44fa559c9d4b5d32b330edd0ceb322e34346b7861b77c", + "policy_id": "27ee77347282e4ddda1b18296ac4bfda8bec958d28e1b1ee87576734", "assets": [ { - "fingerprint": "asset138s4wdfmg66kjftz8cwmyxxkadk52hsmzhnk7e", - "asset_name": "546f6b656e54", - "quantity": 1841 + "fingerprint": "asset12803gpj556ny9gxyl0kh8v8y4740pdt2q3fnef", + "asset_name": "546f6b656e43", + "quantity": 6063 }, { - "fingerprint": "asset1hggyqpv2lsllhgcmw57yj75lyjzaepuww75kua", - "asset_name": "546f6b656e4d", - "quantity": 6291 + "fingerprint": "asset1pyyvf4xwcsnkdvwsw9cej0sdleds5m82r95zu7", + "asset_name": "546f6b656e46", + "quantity": 1770 + }, + { + "fingerprint": "asset1aky70j69pfu9y3m9qnm2rhcvd3fks39cekc407", + "asset_name": "546f6b656e47", + "quantity": 1635 } ] }, { "policy_script": { - "script": "policy_vkh1q9lj3xajqz5edfx8dzqcn8w272k47jd554eyy40z0v2dg994rhe", - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "017f289bb200a996a4c76881899dcaf2ad5f49b4a5724255e27b14d4", + "policy_id": "8dff40f8f04f980ce87a3831f239a8b832f7580ce5ea6f21a1a1609b", "assets": [ { - "fingerprint": "asset12acrkqanngj8lxnp9qq8zmapee0nxapl25sr9e", - "asset_name": "546f6b656e55", - "quantity": 973 + "fingerprint": "asset122kmuee2u2tuytjmzp80nj2tcgp52selduhshw", + "asset_name": "546f6b656e47", + "quantity": 7263 }, { - "fingerprint": "asset17sjpk68lydl7xjsumlrpf2uav3t8rxpkva86qh", - "asset_name": "546f6b656e44", - "quantity": 5295 + "fingerprint": "asset1f2splgtcnmfyaw776y5q5064qpq8yqkayx0d3s", + "asset_name": "546f6b656e59", + "quantity": 3583 } ] }, @@ -8333,50 +8006,57 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "271cac26f786778f30e9e15f783b2b7677021d492e9a4b7e5921a727", + "policy_id": "dae3beafb960e1b30968401833f426c28a031bbe17b1265f0d443721", "assets": [ { - "fingerprint": "asset19qej9xwq20edlavp2zjw8letclevpcvhsezx7p", - "asset_name": "546f6b656e55", - "quantity": 9423 + "fingerprint": "asset102wlkeeu6pyx33geufqe3qhjeq6tw99xtn5lve", + "asset_name": "546f6b656e56", + "quantity": 570 }, { - "fingerprint": "asset189khrzdn4408xrrc03uh96f3488yfcnrd9awt6", - "asset_name": "546f6b656e5a", - "quantity": 4653 + "fingerprint": "asset1qknxkq93l8927wz2cdyrwhmwq0am6wf7hr0tpr", + "asset_name": "546f6b656e47", + "quantity": 1024 + }, + { + "fingerprint": "asset1xjml2d35v6x23r7djqq8nvm2asjf73cvce4srn", + "asset_name": "546f6b656e54", + "quantity": 1117 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1yh708sysdwqzf28n0r3zw9pcqcq9v7an5002mmfu64h46wnfcue", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "15eb2eefcf9d3a4ec5a971732cf37388763800e49a6a1dd747de0c0e", + "policy_id": "25fcf3c0906b8024a8f378e22714380600567bb3a3deaded3cd56f5d", "assets": [ { - "fingerprint": "asset18n0rplyufpwe5jlqx34sznrafxlx4hserjrshk", - "asset_name": "546f6b656e57", - "quantity": 484 - }, - { - "fingerprint": "asset1yjztk78t8ut7usavlrpatgdgjutj3h64lhrvwe", - "asset_name": "546f6b656e56", - "quantity": 286 + "fingerprint": "asset1gmnl34pky9zskqzkmrr2rkrncn6ln7negvkvkw", + "asset_name": "546f6b656e58", + "quantity": 2723 } ] }, { "policy_script": { - "script": "policy_vkh17zjhe480j0khzugl6ug3kn9qnuzut00ejhr76rz4rtwvw0rz54p", + "script": "policy_vkh1r8xvjh7v57w38wwmd7aqq82nks7c8n0gutevtx35kc8cvwp3jrl", "script_type": "native" }, - "policy_id": "f0a57cd4ef93ed71711fd7111b4ca09f05c5bdf995c7ed0c551adcc7", + "policy_id": "19ccc95fcca79d13b9db6fba001d53b43d83cde8e2f2c59a34b60f86", "assets": [ { - "fingerprint": "asset1f0hpc0qc82hxdtqmhy454h8ljgjr2xcraspsjk", - "asset_name": "546f6b656e46", - "quantity": 7006 + "fingerprint": "asset172h2mpfqptcut9hnzc649xcyv6py3ynjpu66yh", + "asset_name": "546f6b656e4f", + "quantity": 318 } ] }, @@ -8384,7 +8064,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1whxgj9t5zjjrtk954l7527waweq5gfgfp5klm7qvn00hs7a36fg", + "policy_vkh16x49k4k7jtx7xcypes2f4jveezdq84vkpcr593fcasx2vjfuaaa", { "active_from": 100 }, @@ -8395,51 +8075,60 @@ }, "script_type": "native" }, - "policy_id": "75cc89157414a435d8b4affd4579dd76414425090d2dfdf80c9bdf78", + "policy_id": "d1aa5b56de92cde36081cc149ac999c89a03d5960e0742c538ec0ca6", "assets": [ { - "fingerprint": "asset170cg23a77jkdhrz4gam8trgusx0xgmkyf6xdg7", - "asset_name": "546f6b656e4c", - "quantity": 6577 + "fingerprint": "asset1lpfrj2aezvszwad3gtrkpa5gg3j8pw8l6vdwwh", + "asset_name": "546f6b656e47", + "quantity": 9536 }, { - "fingerprint": "asset1fwcyyfsm7g83de3n5d89hwysykez32znczdn0z", - "asset_name": "546f6b656e42", - "quantity": 3134 - }, + "fingerprint": "asset1e5ge3lyzx3hlczqwufgxextvnh0qzd0d9r4lxv", + "asset_name": "546f6b656e55", + "quantity": 9020 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "eb41accc71d2718383d26e0ddd77e4ce02765cca41c62e58243f2f11", + "assets": [ { - "fingerprint": "asset1ztcyan56p2lkurelz7etgxqkl5v7c5fsqwv7gq", - "asset_name": "546f6b656e53", - "quantity": 6621 + "fingerprint": "asset13805swcap6j0085xc6k87g7e00qmeuamff544h", + "asset_name": "546f6b656e43", + "quantity": 6294 } ] }, { "policy_script": { - "script": "policy_vkh1f6tqn4tja43e9kp5w3dupk0sa4j3fuedmlu44u04ra5lk35axyz", - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "4e9609d572ed6392d834745bc0d9f0ed6514f32ddff95af1f51f69fb", + "policy_id": "5b949e7c57efcb0457a111bc783edcaa66ad91f791accdbaa44114c4", "assets": [ { - "fingerprint": "asset12f7jdqlhagtrnsmhmxq67r7sdez0g9fk5drluw", - "asset_name": "546f6b656e55", - "quantity": 46 + "fingerprint": "asset14pq48ufajteqsgdrf6hdxt5q5t2lkln3u6lplm", + "asset_name": "546f6b656e46", + "quantity": 4023 }, { - "fingerprint": "asset17gj29sgru5wq6p6hw2jz53qh0wg8a7lc2tuasj", + "fingerprint": "asset1prv4cncprccateksxhs6g6vja7sxqnm2puyyyj", "asset_name": "546f6b656e47", - "quantity": 5024 + "quantity": 1880 }, { - "fingerprint": "asset1t9xl8lnn82xnfrnnk4l3lv05mgx7a8dxhqzhsw", - "asset_name": "546f6b656e48", - "quantity": 5609 + "fingerprint": "asset1k23e86rz64s66t8tqmt5ta8mawwwtvlpgtnx4e", + "asset_name": "546f6b656e47", + "quantity": 6860 }, { - "fingerprint": "asset14cmkv3f9faesupq0yde8jgsaafm9wzz9nq6k2w", - "asset_name": "546f6b656e57", - "quantity": 7663 + "fingerprint": "asset1mkc2h5cm69rl5x02p4ru2g95pjsxg3jqej48d5", + "asset_name": "546f6b656e51", + "quantity": 6382 } ] }, @@ -8448,46 +8137,56 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "d13953d101d0ea70a21348aad43141dca8cab27a2fa6d4ff3368ec68", + "policy_id": "7c0c8d759d6efd14eb62ddc0d958d8468d50fa3312d4da606938a2df", "assets": [ { - "fingerprint": "asset1svm5taeyjm32cv3rfhtcfmcaad6sg3js2mu35x", - "asset_name": "546f6b656e4e", - "quantity": 831 + "fingerprint": "asset17r22txpuzk5afykrxjw0fa2gcew5098a80pwdk", + "asset_name": "546f6b656e57", + "quantity": 1626 }, { - "fingerprint": "asset1zpupjz43gnj9e7esynapkjej0rd9a4fsdvhvv6", - "asset_name": "546f6b656e43", - "quantity": 9229 + "fingerprint": "asset1uxwmgvfnewvmwnmaqcwyyat59t3ea9urrunmx9", + "asset_name": "546f6b656e4e", + "quantity": 6173 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1pjaqm5skzxt0w79sh5eeqdc4tgxzl5xhm9nvskyzpfnukce5p4s", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - "policy_id": "36a15301f029ca3cc206d9347fb67f14679716c214d8f3c422ed0648", + "policy_id": "0cba0dd2161196f778b0bd339037155a0c2fd0d7d966c858820a67cb", "assets": [ { - "fingerprint": "asset1j63p6nffhd9cd053ujqszq4jha6j02qmg7v8n3", - "asset_name": "546f6b656e50", - "quantity": 2418 + "fingerprint": "asset128zdd2mjmcymz8tkzmjqucd282uvuv67rjquk7", + "asset_name": "546f6b656e54", + "quantity": 8680 }, { - "fingerprint": "asset1z6rwva2rdfgueh0j52jgmjcmgtejswgvheh263", - "asset_name": "546f6b656e4d", - "quantity": 4925 + "fingerprint": "asset15vwgvw0z5vk2ayak9g49jes5uzak8yakp9hz33", + "asset_name": "546f6b656e46", + "quantity": 4554 }, { - "fingerprint": "asset12fmymfvtrghncpwmmgurx4gdyda3xl7567dass", - "asset_name": "546f6b656e51", - "quantity": 3701 + "fingerprint": "asset17r86ltdqec4uc9xjmq2fextluc0e9eyqah83n5", + "asset_name": "546f6b656e4c", + "quantity": 564 }, { - "fingerprint": "asset1xlqjyv7rt4zx5scr82zqx793vjgljct56wajh8", - "asset_name": "546f6b656e44", - "quantity": 6552 + "fingerprint": "asset1p9xjfzzr57sf2n6mysxeqrxdxmvlhu7gaczj0q", + "asset_name": "546f6b656e59", + "quantity": 3082 } ] }, @@ -8495,988 +8194,857 @@ "policy_script": { "script": { "all": [ - "policy_vkh1j95h87c4chflf02ffenk6gfgfwyc6wemvjsasrrymh4gvhxvr2l", + "policy_vkh106erek4d38sjqmpdg2mgq06pchgqf2re5v5c0qh46dnuvmx07n6", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "916973fb15c5d3f4bd494e676d21284b898d3b3b64a1d80c64ddea86", + "policy_id": "7eb23cdaad89e1206c2d42b6803f41c5d004a879a3298782f5d367c6", "assets": [ { - "fingerprint": "asset19mgsm4mqjns74vtvgqd9grm26zx0dcf0c4dddf", - "asset_name": "546f6b656e52", - "quantity": 3899 + "fingerprint": "asset17hut7kw4uzuj7tclvpseefsechscyvw7fm3xdl", + "asset_name": "546f6b656e47", + "quantity": 5136 }, { - "fingerprint": "asset1up3cdyj4c5jh9q0tnqllarcwdnfyk7wqmdvp34", - "asset_name": "546f6b656e58", - "quantity": 7615 + "fingerprint": "asset1ztsh52qmw5uz49fs57s8sgc7h33uyf2djd8p0a", + "asset_name": "546f6b656e47", + "quantity": 9488 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": "policy_vkh1rth2twkeea784v3guy2cstdrjcuw8w7wkrnqvff9wealv64wtll", + "script_type": "native" }, - "policy_id": "c9e14664a440c8c9b83d29fe615608b18b4ff774a339c88f6744dc11", + "policy_id": "1aeea5bad9cf7c7ab228e115882da39638e3bbceb0e6062525767bf6", "assets": [ { - "fingerprint": "asset1ldgnlkne7u0cp45xl0jmrfrrcgqvllpfxugghr", - "asset_name": "546f6b656e52", - "quantity": 2341 + "fingerprint": "asset12szew0jf3vdquxmcxk85rls7xvppqgpvfdtx4j", + "asset_name": "546f6b656e57", + "quantity": 6160 }, { - "fingerprint": "asset14pmzkn7vz04jpmpke8h9qcuafszkkqyue9jutn", - "asset_name": "546f6b656e45", - "quantity": 8931 + "fingerprint": "asset1d5p4t8xyzmz479q0dwzh6w2h9x2jd00r87ymnx", + "asset_name": "546f6b656e46", + "quantity": 7125 }, { - "fingerprint": "asset12ugs8m62qm707h7pkj07f8vsfvvysl8rpv8vgj", - "asset_name": "546f6b656e59", - "quantity": 4406 + "fingerprint": "asset1lalp22dvu4wa46wuye8n9lcyptff9tdgt9vl9y", + "asset_name": "546f6b656e55", + "quantity": 8 }, { - "fingerprint": "asset13nzmncfttd2l6u88mrf8nev6ntdts3wc8gp9zm", - "asset_name": "546f6b656e53", - "quantity": 2167 + "fingerprint": "asset18avm0wwn5dy54s0euyumam9nzevjlsqr6cqzr0", + "asset_name": "546f6b656e4a", + "quantity": 5054 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh14jpegr64h20hmmckyzu3crg4xejnd9cdc5ck07kujff87ff4n9k", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - "policy_id": "f2432d917067c13f38d3ab28b3387400d4b3cb30b50a69277afc2b0f", + "policy_id": "ac83940f55ba9f7def1620b91c0d15366536970dc53167fadc92527f", "assets": [ { - "fingerprint": "asset1rwjet833p6egyeq7jud9pdt5se8u2k440y2s2p", - "asset_name": "546f6b656e46", - "quantity": 1051 + "fingerprint": "asset1ff7zqpavclk043ywg34lccn8n247k767wvh5j3", + "asset_name": "546f6b656e59", + "quantity": 6190 + }, + { + "fingerprint": "asset1pn3rrln2ekwejgqnycl9ftwhuhxmwfetzexet0", + "asset_name": "546f6b656e50", + "quantity": 9466 } ] }, { "policy_script": { - "script": "policy_vkh130rzwun4ptdaykma6zd2xwaee64pavuwpakhzr46fyne7l94x69", + "script": { + "all": [ + "policy_vkh1sqd75tln885y9wzmmgjacp3uuhyvva2ure6w30e7wqmyq8jeu3x", + { + "active_from": 100 + } + ] + }, "script_type": "native" }, - "policy_id": "8bc62772750adbd25b7dd09aa33bb9ceaa1eb38e0f6d710eba49279f", + "policy_id": "801bea2ff339e842b85bda25dc063ce5c8c6755c1e74e8bf3e703640", "assets": [ { - "fingerprint": "asset1289yd2yla5m58y3vp7w0mjyz7rujatva9jys89", - "asset_name": "546f6b656e44", - "quantity": 9634 - }, - { - "fingerprint": "asset1ufwdelmjvj9dh5a3f8h9g06td3pygmf0pm5n2m", - "asset_name": "546f6b656e48", - "quantity": 6069 + "fingerprint": "asset1duxj4xffw6gyh2dkwhmrsm0ru4pd53jem64q6k", + "asset_name": "546f6b656e59", + "quantity": 4470 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "bff34aac4d6297b2a6cd39691b2620a7aa691f044db2af842b3f57fc", + "policy_id": "0d0101bde5b81962bcc4d4a17c1ee027bbbdf595878a28142352f9e9", "assets": [ { - "fingerprint": "asset1jjtr5lw4t5ylz69h5xxq2gm0j65vgfqmpmqelt", - "asset_name": "546f6b656e56", - "quantity": 9512 + "fingerprint": "asset19zk36m0ztsr8l987awhkq8yr9rxl2gp5c50c48", + "asset_name": "546f6b656e4e", + "quantity": 5728 }, { - "fingerprint": "asset1ju623s9gvpfvyqkvhqzfch4na48x3c75euyhj2", - "asset_name": "546f6b656e48", - "quantity": 5197 + "fingerprint": "asset17td4l624wuca73m68zjpnw3us4v0nvh0c2n062", + "asset_name": "546f6b656e50", + "quantity": 9929 + }, + { + "fingerprint": "asset1ajef9xexzqpyftq946eyz7jth7gkvatguky3vc", + "asset_name": "546f6b656e59", + "quantity": 9196 } ] }, { "policy_script": { - "script": "policy_vkh1h6he4rcnjf0jfnl72uel23kgc4al642pagtachyk99f455wx052", - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "beaf9a8f13925f24cffe5733f546c8c57bfd5541ea17dc5c9629535a", + "policy_id": "5e483f076a4f9b735405e78d047ee968cc036ae521b0bf83e182ef6b", "assets": [ { - "fingerprint": "asset1kzerg56aj55s2vkm2v5n82epdzd59p0v2sknly", - "asset_name": "546f6b656e4f", - "quantity": 3449 + "fingerprint": "asset1v2yy8ddk63d05aa3eyxu594r9n6typgjmfyeq0", + "asset_name": "546f6b656e47", + "quantity": 404 } ] }, { "policy_script": { - "script": "policy_vkh1aerzze6qm8pnzs5yyukltvuq3sc6dln0ru87a2e860vgq3ckpv8", + "script": "policy_vkh18zreeu4df0ngx2nmrsfjsrfcdgaem9nxjlfgt94rqlclc4ge4hy", "script_type": "native" }, - "policy_id": "ee46216740d9c3314284272df5b3808c31a6fe6f1f0feeab27d3d880", + "policy_id": "38879cf2ad4be6832a7b1c13280d386a3b9d966697d28596a307f1fc", "assets": [ { - "fingerprint": "asset1tmyf80dqttl6u73gkar0marltt6u7vupf7aprv", - "asset_name": "546f6b656e4d", - "quantity": 5853 + "fingerprint": "asset1fuasu7sax2sh7juwg4ww53nwl0tjfv8yepf8xm", + "asset_name": "546f6b656e59", + "quantity": 7529 }, { - "fingerprint": "asset1dx2zm4l0gpsgxefa54u4m089pmysyamzq9vmjx", - "asset_name": "546f6b656e54", - "quantity": 578 + "fingerprint": "asset1dpwudezl658dgcun9s4kqhnqk8l9ytv3h9dlfj", + "asset_name": "546f6b656e48", + "quantity": 6218 }, { - "fingerprint": "asset192kn5xr56qrwjcy6sv434mklpylxtqte7hyug7", - "asset_name": "546f6b656e4d", - "quantity": 6265 + "fingerprint": "asset1tlqnhlfkmynzhapuslyz72je3y8ef7jg6erlmr", + "asset_name": "546f6b656e58", + "quantity": 7145 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1aets5utuq0xa3ta75mv945nvh2ahzldlv5xu586lmgxdu4h6x70", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, + "script": "policy_vkh1yrl5j5x5jj0j4ujamssjg75pahhlm5vplg50q0et06khqvxwm8e", "script_type": "native" }, - "policy_id": "ee570a717c03cdd8afbea6d85ad26cbabb717dbf650dca1f5fda0cde", + "policy_id": "20ff4950d4949f2af25ddc21247a81edeffdd181fa28f03f2b7ead70", "assets": [ { - "fingerprint": "asset194k5can5gz2jp8s2tmcv8ep3zvx6352lprrhac", - "asset_name": "546f6b656e58", - "quantity": 93 + "fingerprint": "asset1wv6lsxz7wesgusg2ch2cunjqqfn5d6futrfmrl", + "asset_name": "546f6b656e46", + "quantity": 3733 }, { - "fingerprint": "asset18xq9srmq4vzd23cq6nlgrth6jrk43gjwn3kx5w", - "asset_name": "546f6b656e4b", - "quantity": 290 + "fingerprint": "asset145gj38r8sjesu92e952l9akr7a6lxk4luxxqw6", + "asset_name": "546f6b656e50", + "quantity": 4554 }, { - "fingerprint": "asset12k3m6ztpzsva6799ustcnfxxpqth487qp892qu", - "asset_name": "546f6b656e48", - "quantity": 2325 + "fingerprint": "asset1snqx70u5ppq40ae987e8et6m9k79anayftxtq7", + "asset_name": "546f6b656e41", + "quantity": 9103 + }, + { + "fingerprint": "asset1m0l7mmaazk0pktlkchm3l34gpsn2apqlwu2t97", + "asset_name": "546f6b656e51", + "quantity": 1263 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh149xqm7m9fhqyaelsagum7lxttft3yxm074glyw9244vaxze8yj0", + "script_type": "native" + }, + "policy_id": "a94c0dfb654dc04ee7f0ea39bf7ccb5a57121b6ff551f238aaad59d3", + "assets": [ + { + "fingerprint": "asset1m2vzqw5pwtu5662x8km2d628szv9zd6jqqg538", + "asset_name": "546f6b656e56", + "quantity": 5962 }, { - "fingerprint": "asset1hut5l6g9y29ah65t58u0gr69rl44yd8fk9tf6f", + "fingerprint": "asset1k5fnr0ux8xzah59vrz33h5qtgv4x7x54ykur6y", "asset_name": "546f6b656e58", - "quantity": 7677 + "quantity": 4099 } ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vk1jeuzgrnrpc9hjc2jwvdh6ljmzdhjuf22ffh8vh2m8cnkznstz4vq37cgms" - }, - "fee": { - "quantity": 52, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "deregister_pool", - "pool_id": "pool19c3p0l2rf7vgep9slg9dkcl8a8prnfl8pqsyy6fszuzccmpg3vp", - "retirement_epoch": 18529 - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "quit_pool", - "reward_account_path": [ - "30269", - "2037", - "2486", - "25519", - "16204" - ] - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "genesis" - }, - { - "certificate_type": "register_reward_account_external", - "reward_account": "" - } - ], - "deposits_returned": [ - { - "quantity": 189, - "unit": "lovelace" - }, - { - "quantity": 19, - "unit": "lovelace" - }, - { - "quantity": 233, - "unit": "lovelace" - }, - { - "quantity": 119, - "unit": "lovelace" - }, - { - "quantity": 5, - "unit": "lovelace" - }, - { - "quantity": 196, - "unit": "lovelace" - }, - { - "quantity": 102, - "unit": "lovelace" - }, - { - "quantity": 136, - "unit": "lovelace" - }, - { - "quantity": 46, - "unit": "lovelace" - }, - { - "quantity": 89, - "unit": "lovelace" - }, - { - "quantity": 114, - "unit": "lovelace" - }, - { - "quantity": 141, - "unit": "lovelace" - }, - { - "quantity": 147, - "unit": "lovelace" - }, - { - "quantity": 110, - "unit": "lovelace" - }, - { - "quantity": 1, - "unit": "lovelace" - }, - { - "quantity": 183, - "unit": "lovelace" - }, + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh173zvj0x0etks67mm6w5segr4rek0nq8y8vggvj4ywhdaundmu7s", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "f444c93ccfcaed0d7b7bd3a90ca0751e6cf980e43b10864aa475dbde", + "assets": [ + { + "fingerprint": "asset17g0qq40dl33z6c9naprz2g9lpfj0pjlvt2fjxj", + "asset_name": "546f6b656e44", + "quantity": 4503 + }, + { + "fingerprint": "asset186c5x2wmshweeyd4292ef27kt0up50sywnkwtn", + "asset_name": "546f6b656e47", + "quantity": 70 + }, + { + "fingerprint": "asset106qqs62qgq50nf9jzltazn8yvdxjker566d0zv", + "asset_name": "546f6b656e52", + "quantity": 356 + }, + { + "fingerprint": "asset1nkrkn002dda6sf2urwcvsfpx7chukvsdtehsx8", + "asset_name": "546f6b656e51", + "quantity": 5998 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1umx3tyqsr73tzs799rjze6qjn5j3duka7ny0yc6w4ctm562a9r7", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "e6cd1590101fa2b143c528e42ce8129d2516f2ddf4c8f2634eae17ba", + "assets": [ + { + "fingerprint": "asset1uyym09r65tk29yxq7wyqw5zqx8emr5eswlnujc", + "asset_name": "546f6b656e4a", + "quantity": 4605 + }, + { + "fingerprint": "asset157398vvehprlm60dwa96z39frefcvc05repwsr", + "asset_name": "546f6b656e52", + "quantity": 3035 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1s2aazc4qstrs39c8qzwfjy99yf8mr5ugr7a9uep0zpr0ytkpf8p", + "script_type": "native" + }, + "policy_id": "82bbd162a082c7089707009c9910a5224fb1d3881fba5e642f1046f2", + "assets": [ + { + "fingerprint": "asset1zqy0j04vken6mlctmjryqrv72p7zx4gjk5a409", + "asset_name": "546f6b656e58", + "quantity": 1346 + } + ] + } + ], + "wallet_policy_key_index": "0H" + } + }, + { + "withdrawals": [ { - "quantity": 84, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 44, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 200, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 84, - "unit": "lovelace" - } - ], - "metadata": { - "11": { - "bytes": "06aa78296c7a175765983015d6736cd753709f14704f1a66343cc663153e03747548716867796814181c2a6a7870" - } - }, - "collateral": [ - { - "id": "4022307b3e27c03c23ad05e722735a6635dc4b0e647906061dd71370206e1fa3", - "index": 0 + "amount": { + "quantity": 242, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "0b7e3c71301a14654bcd032e117b1b0c23321a6c56165c460b3966012b474d08", - "index": 20245, + "context": "ours", "amount": { - "quantity": 185, + "quantity": 48, "unit": "lovelace" }, - "derivation_path": [ - "30735", - "30897", - "17389" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 48, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "id": "5877d811144236290f2d10365c271d64190b3836f125b7615225aa346d60576f", - "index": 0 + "amount": { + "quantity": 176, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "511e2e2dd07d1c1b3f1d115d355b586e40225f42556896552bb02a0fc80c9021", - "index": 8018, + "context": "ours", "amount": { - "quantity": 94, + "quantity": 93, "unit": "lovelace" }, - "derivation_path": [ - "32578", - "29968", - "31774", - "18190", - "31261", - "437", - "25210", - "32187", - "19861", - "23067", - "30751", - "16943", - "13514", - "17209", - "19027", - "10621", - "25147", - "11425", - "23125" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "id": "775f141661354e6d2510564d0070692119567a0d39072231f01c7a626e796136", - "index": 0 + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "c07d7c78807463051a730006ae5d030b405c31440814792401483e6f2b6bd050", - "index": 1 + "amount": { + "quantity": 135, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "31a46d205965682f757b401d1565703e326e020e3f0dd141747263657e2c3b57", - "index": 1 + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "52533c776157236510fb0b49461c481a3c161f0743220fab24527b0b3357c72f", - "index": 10958, + "context": "ours", "amount": { - "quantity": 110, + "quantity": 199, "unit": "lovelace" }, - "derivation_path": [ - "1573", - "31633", - "10589", - "610", - "17110", - "17042", - "25832", - "22177", - "13690" - ], - "assets": [] + "stake_address": "" }, { - "id": "746846712e2c13105e5a1103222a6a1868741c116f78cd1b0fcf688b1e682954", - "index": 0 + "amount": { + "quantity": 202, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "227e160c507415b5c85c122a08443f2b700f19b35b0f6728637549e72713c105", - "index": 24056, + "context": "ours", "amount": { - "quantity": 17, + "quantity": 73, "unit": "lovelace" }, - "derivation_path": [ - "1834", - "7075", - "32174", - "16139" - ], - "assets": [] + "stake_address": "" }, { - "address": "", - "id": "496135095e057ab47b3d77222c4574830a5c427f0af9c8770e482657097c3f3f", - "index": 16644, + "context": "ours", "amount": { - "quantity": 194, + "quantity": 113, "unit": "lovelace" }, - "derivation_path": [ - "9967", - "5750", - "27782", - "17313", - "11252", - "24235", - "4029", - "7697", - "6755", - "26455", - "29177", - "25183", - "23740", - "11573", - "15175", - "24730", - "15114" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "stake_address": "" }, { - "address": "", - "id": "39f24823242045b4713ae01950dd30201e14351724e72a81cf09495c45384a0d", - "index": 23724, "amount": { - "quantity": 173, + "quantity": 144, "unit": "lovelace" }, - "derivation_path": [ - "19339", - "167", - "2386" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 32, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, + "stake_address": "" + } + ], + "inputs": [], + "collateral_outputs": [ { "address": "", - "id": "ec4ade671006f00328392950346d45774a36db2b26093c4df03a2c54482f5815", - "index": 32501, "amount": { - "quantity": 234, + "quantity": 19, "unit": "lovelace" }, - "derivation_path": [ - "5587", - "13299", - "7687", - "25877", - "18083", - "106", - "31170", - "29464", - "11040", - "11909" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, + "assets": [] + } + ], + "outputs": [ { "address": "", - "id": "2e65681e3b14cc78c4465f4a6f06327c0e0a612258211b46232336696d2e67d2", - "index": 22208, "amount": { - "quantity": 220, + "quantity": 122, "unit": "lovelace" }, "derivation_path": [ - "18768", - "27408", - "1476", - "20294", - "15401", - "31596", - "30774", - "25102", - "20788", - "7546", - "25237" + "737", + "4968", + "22015", + "17237", + "24009", + "22945", + "27268", + "27898", + "27926", + "248", + "19628", + "2659", + "27591", + "25674", + "7122", + "24641", + "25631", + "646", + "5882", + "15280", + "11327", + "23259", + "7288", + "10679", + "17778", + "13320" ], "assets": [] }, - { - "id": "11405255b646627e3c0d4e5b7b7c27d4345c23348f57344f5a3a72293dc03f30", - "index": 1 - }, { "address": "", - "id": "1b583b0d2860f46b71aa0704252c703c1d3d373a054724fdb5672a0935454763", - "index": 4450, "amount": { - "quantity": 165, + "quantity": 111, "unit": "lovelace" }, - "derivation_path": [ - "10199", - "25914", - "26704", - "18037", - "32545", - "4399", - "11659", - "31530", - "21923", - "13540", - "8377" - ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "1f2530590c4104565c497547a42062787e5034bf7b68316d541d422c4ad42d3e", - "index": 12141, "amount": { - "quantity": 78, + "quantity": 135, "unit": "lovelace" }, "derivation_path": [ - "14278", - "4512", - "29662", - "24179", - "1019", - "15504" + "7633", + "30811", + "8734", + "5508", + "30555", + "4211", + "28093" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "assets": [] }, { "address": "", - "id": "1f6a8d2f6d4f5d6a7372634a6368736a45314c3a684e77372b2405346b9e156b", - "index": 27828, "amount": { - "quantity": 64, + "quantity": 205, "unit": "lovelace" }, "derivation_path": [ - "32414", - "3272", - "8440", - "17598", - "31392", - "24712", - "31923", - "1390", - "26701", - "6796", - "9408", - "2931", - "13683", - "21709", - "358", - "8665", - "31418", - "18306", - "8040", - "28207", - "11649", - "29887" + "29714", + "4499", + "26847", + "7140", + "15536", + "18635", + "2879", + "23991", + "13155", + "13000", + "9131", + "1093", + "22242", + "21699", + "28418", + "25019", + "22575", + "9228", + "18788", + "22658", + "19117", + "20465", + "11876", + "31652", + "27068", + "23714", + "28479", + "13355" ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", - "id": "067c34584d5f260c9c35431e1052aa11125b167c046562891a6b60fce36657a3", - "index": 18519, "amount": { - "quantity": 198, + "quantity": 46, "unit": "lovelace" }, - "derivation_path": [ - "16503", - "4424", - "20260", - "22471", - "24351", - "517", - "16866", - "15002", - "30005", - "20890", - "8662", - "9492", - "4664", - "31700", - "2376", - "14592", - "20735", - "13411", - "2092", - "26701", - "24331", - "4377", - "28990", - "29135", - "18913", - "16401", - "30729", - "18737", - "30013", - "33", - "6070" - ], "assets": [] }, { "address": "", - "id": "09092385002959d71109e7610f076a7be03177265f985c9ddce71770ed571340", - "index": 1758, "amount": { - "quantity": 89, + "quantity": 3, "unit": "lovelace" }, "derivation_path": [ - "3892", - "10954", - "20690", - "5242", - "8090", - "22170", - "25187", - "17914", - "18292", - "16560", - "13663", - "16017", - "12264", - "31771", - "31499", - "30483", - "2068", - "14067", - "25317", - "1867", - "21810" + "31972", + "21128", + "17316", + "25650", + "32444", + "5400", + "30690", + "18536", + "16880", + "4566", + "29358", + "30876", + "30766", + "22342", + "19777", + "30908", + "8632", + "24111", + "6503", + "29474", + "2760", + "12828", + "16373", + "15265", + "22837" ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "address": "", - "id": "4a1830156d5e3a6f5e4d074a41065e7b1c721e094318653730775576306f057e", - "index": 26647, "amount": { - "quantity": 236, + "quantity": 32, "unit": "lovelace" }, - "derivation_path": [ - "23593", - "26525", - "4592", - "3648", - "9930", - "19144", - "26585" - ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, + "asset_name": "546f6b656e42", + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 20, + "asset_name": "546f6b656e42", + "quantity": 30, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, + "quantity": 29, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 6, + "asset_name": "546f6b656e41", + "quantity": 12, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 22, + "quantity": 29, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 26, + "asset_name": "546f6b656e41", + "quantity": 13, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 44, + "quantity": 22, "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "6c497329c81a425756596ca626f1780c25c80c10421f5c6b5d7f7248f43e220c", - "index": 1 + "address": "", + "amount": { + "quantity": 109, + "unit": "lovelace" + }, + "assets": [] }, { "address": "", - "id": "3f0c126832d20b7c3a35090d7aea3e2178664f7c14b7043645ee14222225442e", - "index": 31664, "amount": { - "quantity": 124, + "quantity": 149, "unit": "lovelace" }, "derivation_path": [ - "8393", - "14881", - "810", - "32506", - "7481", - "25027", - "18096", - "31207", - "22987", - "24146", - "12612", - "4047", - "6254", - "4542", - "31020", - "19579", - "551", - "6904", - "16630", - "5718", - "18035", - "1992", - "16713" + "11900" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 19, + "asset_name": "546f6b656e42", + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 5, + "quantity": 38, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 18, + "quantity": 11, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 30, + "quantity": 12, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 1, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 26, + "quantity": 8, "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, + } + ] + }, + { + "address": "", + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 32, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 92, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { - "id": "274795b07602f3431d152f5a2b05566c32031a50134ddf055948231cf030262c", - "index": 0 + "address": "", + "amount": { + "quantity": 35, + "unit": "lovelace" + }, + "derivation_path": [ + "8397", + "8725", + "16888", + "31460", + "21438", + "10450", + "28387", + "7469", + "27089", + "7458", + "29814", + "16547", + "18330", + "16502", + "32246", + "276", + "4070", + "5592", + "6344", + "18678", + "31264", + "30617" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "assets": [] + } + ], + "script_validity": "valid", + "id": "b276750c3e1c3f58494f12127b5d7223717d2715b62a756c5109090240176710", + "deposits_taken": [ + { + "quantity": 152, + "unit": "lovelace" + }, + { + "quantity": 167, + "unit": "lovelace" + }, + { + "quantity": 58, + "unit": "lovelace" + }, + { + "quantity": 28, + "unit": "lovelace" + }, + { + "quantity": 8, + "unit": "lovelace" + }, + { + "quantity": 153, + "unit": "lovelace" + }, + { + "quantity": 123, + "unit": "lovelace" + }, + { + "quantity": 7, + "unit": "lovelace" + }, + { + "quantity": 189, + "unit": "lovelace" + }, + { + "quantity": 53, + "unit": "lovelace" + }, + { + "quantity": 28, + "unit": "lovelace" + }, + { + "quantity": 138, + "unit": "lovelace" + }, + { + "quantity": 84, + "unit": "lovelace" + }, + { + "quantity": 24, + "unit": "lovelace" }, { - "id": "0756655491245ada66267049782994222c306a3836707933481ff45b196e195f", - "index": 0 + "quantity": 81, + "unit": "lovelace" }, { - "id": "6f53733211834a2e003f5cb46b7b579f27776b631936073a441ed833586d12cb", - "index": 1 + "quantity": 9, + "unit": "lovelace" }, { - "id": "290f5d6e1e65474a34a77a66031403380d481857187014166d7ba3bde1174316", - "index": 0 + "quantity": 251, + "unit": "lovelace" }, { - "address": "", - "id": "7915201d37315c4f406a030c28e61052006629f68d6f6f2647443b1e78078560", - "index": 21230, - "amount": { - "quantity": 39, - "unit": "lovelace" - }, - "derivation_path": [ - "11124", - "23932", - "26026", - "17867", - "8655" - ], - "assets": [] + "quantity": 193, + "unit": "lovelace" } ], - "mint": { + "burn": { "tokens": [ { "policy_script": { - "script": "policy_vkh1tjguczcwwyz86d0s65m03hd858pkernjpghgz30lltfm2tcygc3", + "script": "policy_vkh1a5dxnal64kqmmewh2fh4xvlhj7e53xm5vstp2z5f9759c276hus", "script_type": "native" }, - "policy_id": "5c91cc0b0e71047d35f0d536f8dda7a1c36c8e720a2e8145fffad3b5", + "policy_id": "ed1a69f7faad81bde5d7526f5333f797b3489b746416150a892fa85c", "assets": [ { - "fingerprint": "asset1xmgy6yhtsu54z759kuhltfzjr0xcdxeqa2sxty", - "asset_name": "546f6b656e55", - "quantity": 4043 + "fingerprint": "asset1urwujq2wupvvyme8w9g3mk3m6ncugs8m3ugq5x", + "asset_name": "546f6b656e57", + "quantity": 2393 }, { - "fingerprint": "asset1arepk72vfdfr94jxg9z04pjjysd9r3y2lz76eh", + "fingerprint": "asset1y0dl23hjl0gt2n9gsy08q706669q04m6gfk82y", "asset_name": "546f6b656e43", - "quantity": 2088 + "quantity": 5397 + }, + { + "fingerprint": "asset1rq56n3vgrnx27d2waptqyz6mvt3mqvlcjh9l90", + "asset_name": "546f6b656e53", + "quantity": 2550 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1frm7k93sz52smwqgs3uej8d3ywdfqq4z7tuwcja5pdswvrwrce2", + "script_type": "native" + }, + "policy_id": "48f7eb163015150db8088479991db1239a9002a2f2f8ec4bb40b60e6", + "assets": [ + { + "fingerprint": "asset1t55c6jkdjs0djkmvtmwqhrzrxku6we23dtlzrv", + "asset_name": "546f6b656e51", + "quantity": 7286 + }, + { + "fingerprint": "asset1fa99638hy2pqelhutxvd68w9zg8mz5v8x45vrn", + "asset_name": "546f6b656e51", + "quantity": 984 } ] }, @@ -9484,23 +9052,56 @@ "policy_script": { "script": { "all": [ - "policy_vkh1zq05hsv4wcp4zp9me9x4sgscclg50asa8fvm2yrlmkq5y23us5u", + "policy_vkh19huv4cptzfz5v5lxlp35xpvqvj9um7y2kj972fjz4wdpvthr58f", { "active_from": 100 - }, + } + ] + }, + "script_type": "native" + }, + "policy_id": "2df8cae02b12454653e6f863430580648bcdf88ab48be52642ab9a16", + "assets": [ + { + "fingerprint": "asset12a0fhuc7sccku07w6vluhydj208ufr62naycsp", + "asset_name": "546f6b656e4b", + "quantity": 989 + }, + { + "fingerprint": "asset1c7z995v206qwyls8rynl30twx802f4xa65th4y", + "asset_name": "546f6b656e50", + "quantity": 3843 + }, + { + "fingerprint": "asset1judrqlctuhvehsa8ve2937p8h9z2vhelcpqg89", + "asset_name": "546f6b656e4b", + "quantity": 8733 + }, + { + "fingerprint": "asset10np23jcn6zchgdd6kf5ka2fv8txqlzlf4zpkx7", + "asset_name": "546f6b656e54", + "quantity": 1127 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1wm5ecvalz3eqjcnjxxklfucqfd30psnmh43c56cs3ftrune4g8q", { - "active_until": 150 + "active_from": 100 } ] }, "script_type": "native" }, - "policy_id": "101f4bc19576035104bbc94d582218c7d147f61d3a59b5107fdd8142", + "policy_id": "76e99c33bf147209627231adf4f3004b62f0c27bbd638a6b108a563e", "assets": [ { - "fingerprint": "asset1rhny6pyrkgxfs0awpk5h8kcerkd4h7vu3esr8g", + "fingerprint": "asset1jw0c7l3fegruuzqe9rg4vxfptf5kdytzce23jl", "asset_name": "546f6b656e54", - "quantity": 4960 + "quantity": 3916 } ] }, @@ -9509,27 +9110,22 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "a62ca8c3a10a9804f3569010de0af7b3b0e05db73fa572880740dc75", + "policy_id": "a4d675340e92ace3b072af4bde894481870d14d0e001caae6e387e65", "assets": [ { - "fingerprint": "asset1t7k3fe09rjpt6936rwzwhnl2wf6m33rnluqwe8", - "asset_name": "546f6b656e4c", - "quantity": 5949 - }, - { - "fingerprint": "asset1cgufygypzph3lvdwq4wapsuh5e0p2xp756fxg5", - "asset_name": "546f6b656e4e", - "quantity": 4416 + "fingerprint": "asset196rqyqvx2et63wx7znldkhm2sz3yalzxrktps5", + "asset_name": "546f6b656e4d", + "quantity": 9464 }, { - "fingerprint": "asset1fx8rwll267mnkhuh7kh0xmkrkud5mnjrrcy6ny", - "asset_name": "546f6b656e44", - "quantity": 9239 + "fingerprint": "asset1gn6y30q7749h4jzrqufq4fc3tqqh3x5p6pv324", + "asset_name": "546f6b656e48", + "quantity": 5085 }, { - "fingerprint": "asset1s6fxwxhsljvxwgs6tfhd49dj28lsdmgf38lzgl", - "asset_name": "546f6b656e59", - "quantity": 7563 + "fingerprint": "asset1rwahzmjq43fw8289nvxcxkcfjfj5duuwv636ka", + "asset_name": "546f6b656e56", + "quantity": 1573 } ] }, @@ -9537,7 +9133,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1jluh02sdc8wx7ysx9t5gk4vd5k9207vvpf7g00hjz0vh732nrhw", + "policy_vkh17e9tvpuw9us3qmj6hp3w9hv93yweyvmwgk9q5nc0fw6zsgx0az3", { "active_from": 100 }, @@ -9548,79 +9144,118 @@ }, "script_type": "native" }, - "policy_id": "97f977aa0dc1dc6f12062ae88b558da58aa7f98c0a7c87bef213d97f", + "policy_id": "f64ab6078e2f21106e5ab862e2dd85891d92336e458a0a4f0f4bb428", "assets": [ { - "fingerprint": "asset1gmavydlau4zldazmj6v2sedzcrtfkk8e828hx2", - "asset_name": "546f6b656e51", - "quantity": 3142 + "fingerprint": "asset12ntt7l90pmkl3qw70n29py2pd88gxsfsumj99s", + "asset_name": "546f6b656e4c", + "quantity": 9299 }, { - "fingerprint": "asset1j3902n2dcsdqg8q0xg39yy3lw58hkkrvzt8pyn", - "asset_name": "546f6b656e43", - "quantity": 1499 + "fingerprint": "asset1xyhclvgau900ran8p9hq2erzwsl25vnu9crhe6", + "asset_name": "546f6b656e47", + "quantity": 7672 + }, + { + "fingerprint": "asset10vfx4a2afu2x6hp4qkqmqzstw6j2vsvrakh8mr", + "asset_name": "546f6b656e4c", + "quantity": 7995 + }, + { + "fingerprint": "asset1wdk7ra6x60qdm4w3xy2wqv27x7ve4z76hycunm", + "asset_name": "546f6b656e4d", + "quantity": 6588 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1m25v7j5wntr3gg6r3n23pecj0nf535qr09ep7ltzan3tum3mkaw", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "24c01d3407c6b5fe27709779a253d6f3af02c13e4a9665f920e537ff", + "policy_id": "daa8cf4a8e9ac71423438cd510e7127cd348d00379721f7d62ece2be", "assets": [ { - "fingerprint": "asset1gcdjmza4rlldgjhracy3kdl8nwk2fkagamlkwk", - "asset_name": "546f6b656e52", - "quantity": 5522 + "fingerprint": "asset1tnssypd49gw7ndgh36nusqxvc6gay3xauy4zny", + "asset_name": "546f6b656e51", + "quantity": 2494 }, { - "fingerprint": "asset12c8364xa2wgld6p3w6d87njqk45tuggepdauyk", - "asset_name": "546f6b656e4c", - "quantity": 5753 + "fingerprint": "asset152zl808e24rfptqvywa7ka23gh757y2t4hhjkr", + "asset_name": "546f6b656e57", + "quantity": 172 }, { - "fingerprint": "asset1afjmr73nsgc37wn7pctpssafss5ell2q8dr250", + "fingerprint": "asset1602y46nyal6d9kmgd4p9uxh5fq7t6vvdyazk2c", "asset_name": "546f6b656e4b", - "quantity": 862 + "quantity": 4650 + }, + { + "fingerprint": "asset1e0a8ywv9llm82lgvxr5zuysu3yl4t5vqmy50ar", + "asset_name": "546f6b656e44", + "quantity": 5209 } ] }, { "policy_script": { - "script": "policy_vkh1cj3j7dftu30rywvaq8hf7psey2stwgzykuvdvu20ma8zqypqla8", + "script": { + "all": [ + "policy_vkh1r7e6x2hcqhcmtqvy7szwyru2mqlydg4nuwdmgqze7phjkttypxa", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, "script_type": "native" }, - "policy_id": "c4a32f352be45e32399d01ee9f061922a0b72044b718d6714fdf4e20", + "policy_id": "1fb3a32af805f1b58184f404e20f8ad83e46a2b3e39bb40059f06f2b", "assets": [ { - "fingerprint": "asset1cus6ge9sqxlfkefxyp87xcndgpkcu2wvg2m8yc", - "asset_name": "546f6b656e4e", - "quantity": 1603 - }, - { - "fingerprint": "asset1ff4wz4wpeq4v6zh6qvtp6xkvurqudtq6qqvka4", - "asset_name": "546f6b656e53", - "quantity": 4789 + "fingerprint": "asset1pfxt6cfdyrgn43vehg2gr8xk2r02g7faetd4xj", + "asset_name": "546f6b656e56", + "quantity": 5518 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1q53prdu77aeegrssmmwenx8aalf4usja9hndu358jp2q7yy8539", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "dff2240ed9cc08fdca6baaa1005ea57e35a2b0325fddb2ab6a5f6530", + "policy_id": "052211b79ef773940e10dedd9998fdefd35e425d2de6de468790540f", "assets": [ { - "fingerprint": "asset1rxkw35552nu00kcajfnsq5ldd5z5y6dsdexjnh", - "asset_name": "546f6b656e50", - "quantity": 5863 + "fingerprint": "asset1dnfkxt2nr0fwwg3rjw5q6ghv4xt5qw7p27mmcd", + "asset_name": "546f6b656e4a", + "quantity": 3700 }, { - "fingerprint": "asset12knye4senk4dsxt7p55z425z0x0wksuszpfrrf", - "asset_name": "546f6b656e58", - "quantity": 8205 + "fingerprint": "asset153s7m0p670fyh0vy9rcg577tvcmc48p4um5yk3", + "asset_name": "546f6b656e4a", + "quantity": 6993 + }, + { + "fingerprint": "asset18ezvajec7nv3x6v5knfectly9nq8aq8vv24uyq", + "asset_name": "546f6b656e55", + "quantity": 7525 } ] }, @@ -9629,17 +9264,27 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "44f6bdaa9861904d02f4d65f7376015e0b79d822335e301e21eb625f", + "policy_id": "9a31e002133df6cfbaca53d812d06e8375c2439b92de93343bad84db", "assets": [ { - "fingerprint": "asset1rj3v0nwnf3yn8ke7hf0j2pg74ralpafndr2420", - "asset_name": "546f6b656e45", - "quantity": 4191 + "fingerprint": "asset1zlryc6td6g9c8phgzkcn0dn40gvu8c5hwcnj3v", + "asset_name": "546f6b656e41", + "quantity": 6301 + }, + { + "fingerprint": "asset183qw0f0c5ej9lxrm4vfag6xvh0ljkqey8qrwp4", + "asset_name": "546f6b656e4f", + "quantity": 9390 }, { - "fingerprint": "asset1f3uw56p3qrhvtefhqfyardd63t24z3x75usks4", + "fingerprint": "asset13gk6s4qh8jts0tltphd73k9wmprx4frxu2gnqs", "asset_name": "546f6b656e4d", - "quantity": 2574 + "quantity": 7465 + }, + { + "fingerprint": "asset153d2h5zcwckn3vfaq340y0460vq740ayl42klc", + "asset_name": "546f6b656e48", + "quantity": 6434 } ] }, @@ -9647,7 +9292,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh12kd6grdr8enaj5xttnwmd4048sp2g8a8k89a7rsujkg22uneral", + "policy_vkh18tcm5tfawt6d2q5w2d7rs476gk2emwxj7whr3j2vvfk9v0stltz", { "active_from": 100 } @@ -9655,27 +9300,27 @@ }, "script_type": "native" }, - "policy_id": "559ba40da33e67d950cb5cddb6d5f53c02a41fa7b1cbdf0e1c9590a5", + "policy_id": "3af1ba2d3d72f4d5028e537c3857da45959db8d2f3ae38c94c626c56", "assets": [ { - "fingerprint": "asset1wrhxxwdywdl3h5qxhaalsvr03fckyjhgma65av", - "asset_name": "546f6b656e47", - "quantity": 732 + "fingerprint": "asset19d4hf2j6asdgwcy69h7nhlh8gvhrfsjwdggc0l", + "asset_name": "546f6b656e50", + "quantity": 7090 }, { - "fingerprint": "asset1lahqrhqf3ygsnaxhpswcjp56tw4dq4epmfxg67", - "asset_name": "546f6b656e43", - "quantity": 560 + "fingerprint": "asset15k4fgxs3wlsdu3j0xm35cny7arhfs4sh3kzhld", + "asset_name": "546f6b656e56", + "quantity": 2292 }, { - "fingerprint": "asset1p9t0f2k2vktct5t2ldkkchvz0aq98qka8h8x5a", - "asset_name": "546f6b656e47", - "quantity": 3471 + "fingerprint": "asset1d7tj4unjzqe5uxeyhcehyx6cctvsax9rl0hett", + "asset_name": "546f6b656e58", + "quantity": 5524 }, { - "fingerprint": "asset1sxgvf90c9rp06r6lc6q9t4mk6gv2gd5qf4zmfe", - "asset_name": "546f6b656e5a", - "quantity": 5936 + "fingerprint": "asset1ac3anvdj22vswhwsvgdvyjfhftpsu9etf6lqdp", + "asset_name": "546f6b656e41", + "quantity": 4238 } ] }, @@ -9683,106 +9328,258 @@ "policy_script": { "script": { "all": [ - "policy_vkh1k6y83h4z6qmlkvmetkgk36lc2snyyqk4uyj6y6tsw35tvxre0f0", + "policy_vkh19xs50gctnnwcj4rtt6h4r3g96vlt08z7syvzlpd3n2t8ydly6vm", { "active_from": 100 + }, + { + "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "b68878dea2d037fb33795d9168ebf854264202d5e125a269707468b6", + "policy_id": "29a147a30b9cdd89546b5eaf51c505d33eb79c5e81182f85b19a9672", "assets": [ { - "fingerprint": "asset173qq0l7ejx6hujc09jthl56gkhpqfkv6tepkpn", - "asset_name": "546f6b656e41", - "quantity": 7141 + "fingerprint": "asset1qg4xt2qkcd9vpmsy2gnkj5ccwzameffkycshu7", + "asset_name": "546f6b656e55", + "quantity": 5812 }, { - "fingerprint": "asset1jhscpwwahf6kqf9spktsmpytztdwv4tnxd84nf", - "asset_name": "546f6b656e43", - "quantity": 2642 + "fingerprint": "asset12r0gndlraa947pce3fncxdw30mg377sh4tnahj", + "asset_name": "546f6b656e45", + "quantity": 4938 }, { - "fingerprint": "asset1uzyhfruxc9qmwknr2a6vsz5f5zfxln5r5d9kwk", - "asset_name": "546f6b656e43", - "quantity": 5303 + "fingerprint": "asset1wpchqwdmnx2xglazvav2m5ctfl3t7svna0ahcr", + "asset_name": "546f6b656e57", + "quantity": 6585 + }, + { + "fingerprint": "asset1luc8gqpmue37rqtr027qsqswf89eqetl44mp4h", + "asset_name": "546f6b656e59", + "quantity": 8849 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "75b70525a0d4ca1c9189beee761af982ba23bc7decf25140aeaefb4a", + "assets": [ + { + "fingerprint": "asset1txh5leu3wlfcucuv54k666em7lr2ape4wjjupy", + "asset_name": "546f6b656e55", + "quantity": 1368 + }, + { + "fingerprint": "asset1d048tw9wvn9csknjxhfdafv8zhsa0pq0p7jk54", + "asset_name": "546f6b656e4b", + "quantity": 8542 }, { - "fingerprint": "asset1duqa6kznea0el2rqt9q5h6tkf5hx7ecm6q6vh9", + "fingerprint": "asset1x2mcx6d4ws5rs3yd0cc82mxg5dh6xh9lmlalun", "asset_name": "546f6b656e43", - "quantity": 3992 + "quantity": 2361 + }, + { + "fingerprint": "asset1jg6gl4hc0fhwh9e3njpa9g4na7xuvr0zjah9v6", + "asset_name": "546f6b656e58", + "quantity": 5380 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "b93393507f433cd88bc2a9d0c0c8d74d7919b909b8ecc03454e76e5c", + "policy_id": "699fbdd1fc5a5abe2a88240fd1d1381a80bd8341ddf0e804c5674253", "assets": [ { - "fingerprint": "asset1tq7cpagecm2ygfvw54gju5eeg6crnzh87g4qs8", - "asset_name": "546f6b656e51", - "quantity": 2751 + "fingerprint": "asset17z722rk2dz0kfzahjqwjp6zdlpqgdq7h6ct9js", + "asset_name": "546f6b656e5a", + "quantity": 3562 + }, + { + "fingerprint": "asset1rhuq246pwnus9j8cyz6ne8yuvzcln9tn22x3ez", + "asset_name": "546f6b656e54", + "quantity": 6871 + }, + { + "fingerprint": "asset13mchnk2ec035vevy83u79twzuaj7g90kczeljz", + "asset_name": "546f6b656e46", + "quantity": 5238 + }, + { + "fingerprint": "asset13e29p5n6anq29wkf3c8cck7082nq9pv6tyqqhw", + "asset_name": "546f6b656e4d", + "quantity": 5026 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1dlel9e78pzlsqyfrrhxzfkacxnftplyy7rynyuxhl35djs2h7h4", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "6ff3f2e7c708bf0011231dcc24dbb834d2b0fc84f0c93270d7fc68d9", + "assets": [ + { + "fingerprint": "asset1jrnjcgxf93kzvek0ue6rr8wqh8q29jne3vr4xp", + "asset_name": "546f6b656e4f", + "quantity": 8055 + }, + { + "fingerprint": "asset1najfdt32tuuxauu5arv7supa25qn5maakwkygx", + "asset_name": "546f6b656e58", + "quantity": 4880 + }, + { + "fingerprint": "asset16cdxvd8r2znaz4tefafsxqeqcfk0fazkn6k9gs", + "asset_name": "546f6b656e4f", + "quantity": 3502 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1zdjfr9u3m9xrh0k2mrmqxap7xrkpaf7mdd8sxu9hna49qn7f0n4", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "1364919791d94c3bbecad8f603743e30ec1ea7db6b4f0370b79f6a50", + "assets": [ + { + "fingerprint": "asset16dzzm5s6jxtycsvkeh3yqtzsl722q4gldlxc80", + "asset_name": "546f6b656e42", + "quantity": 9940 + }, + { + "fingerprint": "asset14dr4eehfx36lydv2v3c5r44z68yyhw5h3g88vs", + "asset_name": "546f6b656e47", + "quantity": 7430 + }, + { + "fingerprint": "asset1vjdwxjycqcmm284eh4knpfcu8ujppt889vtfal", + "asset_name": "546f6b656e42", + "quantity": 6318 + }, + { + "fingerprint": "asset1n6vhe8cspfv9mxle7t0h2m584tfkx8mjcewsqz", + "asset_name": "546f6b656e53", + "quantity": 6410 } ] }, { "policy_script": { - "script": "policy_vkh1pkpps8nw790s4345m5evnzx7lkr2mpf83k0zjysa7sax52xfh4v", + "script": { + "all": [ + "policy_vkh13ukah2nzmjfspd5yslphggvczpxausv077xvxwfekmjhz60vqhg", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, "script_type": "native" }, - "policy_id": "0d82181e6ef15f0ac6b4dd32c988defd86ad85278d9e29121df43a6a", + "policy_id": "8f2ddbaa62dc9300b68487c3742198104dde418ff78cc33939b6e571", "assets": [ { - "fingerprint": "asset1scfupnfg2x8ewlmr0aeqvqdxf23s8he82dkgam", + "fingerprint": "asset1xr904787dev8073dc5vdcda88dyj8h2d4r7er4", + "asset_name": "546f6b656e41", + "quantity": 4339 + }, + { + "fingerprint": "asset1juuw5y54zuctw5p5vehtmwng520kv3js7pelep", "asset_name": "546f6b656e42", - "quantity": 1375 + "quantity": 1285 }, { - "fingerprint": "asset18dnrptqml2tn8jrchrc48t2957yya4ggfuqeet", - "asset_name": "546f6b656e51", - "quantity": 786 + "fingerprint": "asset1qc65l42v5xrpx5h7qjsqpvc4jlf5ne6s5q7p8g", + "asset_name": "546f6b656e4e", + "quantity": 8346 } ] }, { "policy_script": { - "script": "policy_vkh1jp4w4hh57kwa4vne50qd2n9962kyryn7c43r70jh7l30wn3w8dg", + "script": { + "all": [ + "policy_vkh1qxypllhg029z79usnwfgm24uak9svnzkdygkhrlq423pwm0n4mk", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, "script_type": "native" }, - "policy_id": "906aeadef4f59ddab279a3c0d54ca5d2ac41927ec5623f3e57f7e2f7", + "policy_id": "01881ffee87a8a2f17909b928daabced8b064c5669116b8fe0aaa217", "assets": [ { - "fingerprint": "asset1tg72fwxux9uwjq9vjj7uu6dw3m07z3mn9624rf", - "asset_name": "546f6b656e4a", - "quantity": 6227 - }, - { - "fingerprint": "asset1uc7ce996rtmlgvymstdu7sgx9tk2vane2f4v00", + "fingerprint": "asset1eedkfp4l89097tfutmklp5ulfk0xt68z7u75pz", "asset_name": "546f6b656e59", - "quantity": 9919 + "quantity": 8065 }, { - "fingerprint": "asset1pt0jm6xjryr5n30ddqkh7v8elp4ad98n6dl6e8", - "asset_name": "546f6b656e51", - "quantity": 8125 + "fingerprint": "asset1w2vh3dp423v0e384a53x6fx6m07u7q5myy0rwp", + "asset_name": "546f6b656e5a", + "quantity": 8644 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "13a8385a74e73466a34d14652385f9dbf8b8d9d393006a013488e15b", + "policy_id": "080a340adea2dba46dbe32a43eef46c35d4a2213fed746edf16512ac", "assets": [ { - "fingerprint": "asset1hjqqtgvvl7nxtkz6v4mksr0hdq0zt05lal02jr", - "asset_name": "546f6b656e44", - "quantity": 4735 + "fingerprint": "asset185m007p4n7ejwm3jr6r8lnjxj6d7snjydft4y3", + "asset_name": "546f6b656e4f", + "quantity": 6149 + }, + { + "fingerprint": "asset1qlukk0qy5ylq5dgfqlvwx4sqyskwgalwkkgl24", + "asset_name": "546f6b656e46", + "quantity": 8033 + }, + { + "fingerprint": "asset1ucpjpahnhea5duav53x87hmzfqfvvagvkqxpzf", + "asset_name": "546f6b656e5a", + "quantity": 5979 + }, + { + "fingerprint": "asset1pmyx09lfv9gkv8c2mzv9s9ayulggn2kgcynhdt", + "asset_name": "546f6b656e45", + "quantity": 1851 } ] }, @@ -9790,7 +9587,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1tjazpg2caxwq26qd65mrf3ppr9mftmx9ndchqq095uyaymkslzf", + "policy_vkh1st8z465cfpmd2hpcp7eddn4vewp0djkks403x943jr3l63u0tue", { "active_from": 100 } @@ -9798,36 +9595,46 @@ }, "script_type": "native" }, - "policy_id": "5cba20a158e99c05680dd53634c421197695ecc59b717001e5a709d2", + "policy_id": "82ce2aea984876d55c380fb2d6ceaccb82f6cad6855f1316b190e3fd", "assets": [ { - "fingerprint": "asset1q35mxerle43q9wy80xqajp5e3ty629xeqksvkd", - "asset_name": "546f6b656e58", - "quantity": 5505 + "fingerprint": "asset1celwuh9mahvnyadx8jqk8wvywne6rl83m8fmag", + "asset_name": "546f6b656e4f", + "quantity": 9006 }, { - "fingerprint": "asset1jfhe8mxgap3cyfmqxm3ap3psry6uxk9s4qgj59", - "asset_name": "546f6b656e55", - "quantity": 607 + "fingerprint": "asset14yx89x2kqg70mqqwtvg85hptqzdccnct8zmuqc", + "asset_name": "546f6b656e45", + "quantity": 9800 + }, + { + "fingerprint": "asset1l4kjpren4vklv4k5jffswmmhap82apq3u7kxf2", + "asset_name": "546f6b656e46", + "quantity": 1479 + }, + { + "fingerprint": "asset1ud8advtvlwc0zxqpe8qhs4qv0hzmtxtuzf4v2g", + "asset_name": "546f6b656e46", + "quantity": 9888 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": "policy_vkh1jqzsx90xlqx7ga82mc276ct8ty4t73pmnmgdg4ujfh5cu0g98hm", + "script_type": "native" }, - "policy_id": "a4d1a4f3ece8afda46721914e255c545973aa0bf099edf8bb4d2e60e", + "policy_id": "90050315e6f80de474eade15ed6167592abf443b9ed0d457924de98e", "assets": [ { - "fingerprint": "asset12rgwvgy4cuec53g282g3hssjj2s8sqjqjtfljy", - "asset_name": "546f6b656e53", - "quantity": 1399 + "fingerprint": "asset14y9284uz3gm8szk64m96zfntp8em78el3a9rdu", + "asset_name": "546f6b656e49", + "quantity": 8107 }, { - "fingerprint": "asset1jnhz32zupyw83mwx68483qnxa4fzdl2u0j8q6x", - "asset_name": "546f6b656e52", - "quantity": 4851 + "fingerprint": "asset1pf6num35q4sqqsz7wcclnp47ydqa8d8w94sj4f", + "asset_name": "546f6b656e58", + "quantity": 8430 } ] }, @@ -9836,89 +9643,56 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "08a40f8b805b8f604f75a6e59a9e85f1a92e30815cce333cdbffce4e", + "policy_id": "a9d45437e529f808b6447f71db8f8c3a68d224effa8fb416cd404ecd", "assets": [ { - "fingerprint": "asset14jw5xs99ex22fkrkjckh83v33velra02ae9upt", - "asset_name": "546f6b656e52", - "quantity": 2646 + "fingerprint": "asset1w6n7wdhfd77z95a7krgwd28x043jut0pcst9js", + "asset_name": "546f6b656e43", + "quantity": 1552 }, { - "fingerprint": "asset1tynd6s3zumvtd8zwnjxqspmkwucgcrx5c9cf6h", - "asset_name": "546f6b656e57", - "quantity": 6504 + "fingerprint": "asset1njukvqzltz7s39trk8kmnvd4ac0jguhj7krn9z", + "asset_name": "546f6b656e48", + "quantity": 7026 }, { - "fingerprint": "asset154s5lpue6nx0cqf9t3e7n4u3p7266z0prxsl2y", - "asset_name": "546f6b656e51", - "quantity": 4405 + "fingerprint": "asset1euynlvuh4qffq5skuds9g52ld66aahjsek5tu3", + "asset_name": "546f6b656e5a", + "quantity": 8514 }, { - "fingerprint": "asset1jjmzm5w99lnlupvhqrmufhs73r8g3xsz24zarw", - "asset_name": "546f6b656e49", - "quantity": 4240 + "fingerprint": "asset1rleu3tpacs7x8w3505qqqu7la5cpzpjnv7sn07", + "asset_name": "546f6b656e4d", + "quantity": 6515 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1hk6xf9q4larg5t0whse5nyjrh6pjfej86fnl9ts2t4ty2t0kufl", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "bdb4649415ff468a2deebc33499243be8324e647d267f2ae0a5d5645", + "policy_id": "26849bbd77a1b52da79ed2546565296a2ddee8e754e78c5dddeffff9", "assets": [ { - "fingerprint": "asset1djt570qlwh4gr6ujvqd2dmhapq2d3g7s93vrkj", - "asset_name": "546f6b656e42", - "quantity": 7247 - }, - { - "fingerprint": "asset19fw9k7s42k5je3guzamcmk9u43ds8k3ec3zanl", + "fingerprint": "asset1r3rfzk0rcurtwxnzzjfcn3phfgdsf9sq6tuvmm", "asset_name": "546f6b656e41", - "quantity": 5991 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh140f0zwvf0ud3qktrc6tmz7mf7u9092mczsxv586rc3v023tsn0w", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "abd2f139897f1b105963c697b17b69f70af2ab78140cca1f43c458f5", - "assets": [ - { - "fingerprint": "asset1qcrtnncw7turzp2qqgvukp2q64camd74k72tkj", - "asset_name": "546f6b656e52", - "quantity": 7698 + "quantity": 9500 }, { - "fingerprint": "asset1guey6z4thx43krethmg29n27avqq04aus0pk0u", - "asset_name": "546f6b656e46", - "quantity": 7643 + "fingerprint": "asset1qrv5xpml3w3gphukqa7tnxht5kst3evaxxk3z5", + "asset_name": "546f6b656e44", + "quantity": 9544 }, { - "fingerprint": "asset1y62gu4jw6rfrvrd6rlkhztcls262dcn87deyhh", - "asset_name": "546f6b656e52", - "quantity": 9707 + "fingerprint": "asset13jdgzeqzrk8dht0etqzg3qmsgzly7cv9sequdg", + "asset_name": "546f6b656e57", + "quantity": 2240 }, { - "fingerprint": "asset1238z20hvg6xjupe5qe6svdusvg89jk776m38y0", - "asset_name": "546f6b656e50", - "quantity": 2495 + "fingerprint": "asset1dt689k22gwp9eefppnat47ryu8rewxudv5u590", + "asset_name": "546f6b656e59", + "quantity": 403 } ] }, @@ -9926,1105 +9700,1071 @@ "policy_script": { "script": { "all": [ - "policy_vkh18pk90l8xt84v44zxz0sg3crygkqehka0erhhrde26ha2undltwh", + "policy_vkh1r0n6m3l9y5pztua6gxjjtp4xlnp3tdw8zampt8cwp62wxvn0su3", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "386c57fce659eacad44613e088e06445819bdbafc8ef71b72ad5faae", + "policy_id": "1be7adc7e5250225f3ba41a52586a6fcc315b5c71776159f0e0e94e3", "assets": [ { - "fingerprint": "asset1m9czs3zf99nnd2pprjffw067vwczk0zc4mxz87", - "asset_name": "546f6b656e49", - "quantity": 9087 - }, - { - "fingerprint": "asset177p8glk8t8aqwn8gda3d8yca9tcx6gr44uc0lw", - "asset_name": "546f6b656e51", - "quantity": 3234 - }, - { - "fingerprint": "asset1epzdpa6qhw5t0vf8p2nmrdxrqk3tfzxsln7shu", - "asset_name": "546f6b656e4b", - "quantity": 6716 + "fingerprint": "asset1crdzpvf4xtpzlxf7ptrpx57rdmd2dfg0yg8rs2", + "asset_name": "546f6b656e50", + "quantity": 3868 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1ugwgk703659rj3vc8enw0m2aad44tdnq0nyr2wyqfrus6m9p5em", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "e21c8b79f1d50a3945983e66e7ed5deb6b55b6607cc835388048f90d", + "policy_id": "92d82bb53be0ee0e3398d5422c89ee5c5614bb005ea4ccf10e09e693", "assets": [ { - "fingerprint": "asset1edhckdllyvkyd2psf88vtyfh02d2aeg6syp7xk", - "asset_name": "546f6b656e4f", - "quantity": 856 - }, - { - "fingerprint": "asset1tjanr37lsxqkj307fwm00wgsw52u74rtuk9fqc", - "asset_name": "546f6b656e54", - "quantity": 4331 - }, - { - "fingerprint": "asset1hflwnulmh5z8uv6xsfkzau7fukkm4wkcp56auy", - "asset_name": "546f6b656e5a", - "quantity": 5557 + "fingerprint": "asset1kydmgahnsm7xmn58kqtshnxwt9kzs249gwhg4r", + "asset_name": "546f6b656e42", + "quantity": 1336 }, { - "fingerprint": "asset1a6uyue7pu578yshhaf04zfvr40syagfhzdnf5e", - "asset_name": "546f6b656e50", - "quantity": 7777 + "fingerprint": "asset1pyy2l29sumc5le7w9fj8efqh95ah94mxrv5xjm", + "asset_name": "546f6b656e4f", + "quantity": 623 } ] } ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1pc9jpsjr49gzuxs0pt33gee59gr4awsxzq7jc567tum3c7uzzmt" - } - }, - { - "withdrawals": [ + "wallet_policy_key_index": "0H" + }, + "fee": { + "quantity": 66, + "unit": "lovelace" + }, + "certificates": [ { - "context": "ours", - "amount": { + "certificate_type": "deregister_pool", + "pool_id": "pool1gjashzgl3vm2q87agveuayssdjd8uv3v3qvxu34ksdmdsk3u0qk", + "retirement_epoch": 24814 + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1742x22j3h8qrp9gkktqth30twxc0gg2v2d6ngcjxg6t92jmv5yc", + "retirement_epoch": 27497 + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1pqzchketzuqydtnyyqnaday54xfgruvf3j9qn0ulqd2kcp6ul0w", + "reward_account": "" + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1vyyr44av4qtmgz3kxayn09cqrpsvd83zx4hqz37vdxq9e55f3h3srr9njj", + "ed25519_pk1mt88h30nwd2mzaa48lfv59pk25jjxzcvmmhqe7vfk46rzshyag2sfr9h5x", + "ed25519_pk14he7eem5wkpymtzcrmvx3luny2qkywel4sm8ka599frud3sqs7vqwsjxgl", + "ed25519_pk1mn3qejfmxr2p8hpvlvh8nh4fm2knaxdz8c73qwny7rpxrl02h8uq3rt892", + "ed25519_pk19uunvecat0zpt0fy4cqyajc5tlr802lkegj0re8u2rj9nmw6f49sm3sdqv", + "ed25519_pk1uzw4lfcz66fjs2v83mgz0r68kg3xpukhwjzfut9x8ly2a5z2tsxq9a2yqj", + "ed25519_pk1yuc22qkg3sypvhc0eh6qkqcqhdaukf6mk86gke0c3s7xxcepvrlssmx6uw", + "ed25519_pk1dxszewlef6spxw2mhj9weuv57t48wq5qk4395sxek7x5xtay3cusvnslqr", + "ed25519_pk19drfarah7k7dktckeulnayctkrzec8j99fchqpg6n4jz6sjpe70savs3vg", + "ed25519_pk1vsz5zgzczmmaf46srjer77c8f48q6h8nhkvcuhlupwwd39x88nrsnwm5z4", + "ed25519_pk17y633g03d0gq64a8nnp0ycjepun35apjskr6k2hwl0fyk0rk4edqzde7ma", + "ed25519_pk18w0kvt6ftypr8gpctjp2nyur8yzvxwehxrqt9g5psv94md7hvf8sr4z45w", + "ed25519_pk1cntj6txlj200g99kehwn85dnpmrtyeh2gk4hvkqy5ff7mjp63hjqezk8kq", + "ed25519_pk14cwmlvgcjdnxe9qkt7yrlt0ca3f3jkjsdxp6q43e2x9jrktw73jqtc8lft", + "ed25519_pk10s3rvg6323la2dl0w3wkgmelqxjktep3rnaaz0naye4kwcgujtaqarqnee", + "ed25519_pk1ltf97sms94cjtsh4vl950ga2dkva2d9k8x50fgqeydap7dc3ry0qe09cs7", + "ed25519_pk1m2ysvhmc6w0tsa4q2j27a8jrmz4csklw82k5892repngvke8uqnqx5ly6f", + "ed25519_pk1dqzmn0yrrdq7xcnsqktw777gayvlgz0xn2w4l8nkljp0dd4j3ypqg60tj0", + "ed25519_pk1k93ff8u697ln7n5476rxsp23ep5hu8nkrrz8qf82xrvg3cq03phqdh2gga", + "ed25519_pk1jg4w79ejxhua0tfa9c5v9m0v88kz70d09ml7337q3efkmvxjzd4qep9q80", + "ed25519_pk185e4esc3xkmyysgmd0xtp7m0yq3vk3qutj09vmhescfaal65flksa6p0yy", + "ed25519_pk1p2vn5tx64aahsetkhxy8q9vjydq3derg6uwtl9m7x3v5lcj8xrfqt6zk72", + "ed25519_pk1ppap2shjdv7xzx4q7gdrlg44u6kkdsq53q5axepr9k76zatgh8lqwr42k4", + "ed25519_pk16hglv5qwl9v5a7ajnrftjqedx9yxkpvx900qulxu2ul6efmu20xs39mmj8", + "ed25519_pk1287nzlweqsqcat4pe50pxrnxwyptmgrs79szz8jp0cxr0gvlwd5q4un8ef", + "ed25519_pk1jy06yl9ts5dnqn5anjjgru88lqae4gxf7ggwuucu3ngqgv9nd3cqdqp6rg", + "ed25519_pk1thz8x552qqfcdtdpa4wgfr3t0dclz0kfs9hyjv6q43tldjd2wlnqyf5zw8", + "ed25519_pk1nhstxndtvkzc0dju0rcccwde7q57t8scjvf5tury069l2kavjktsgjck3f" + ], + "pool_pledge": { + "quantity": 3, + "unit": "lovelace" + }, + "pool_cost": { "quantity": 146, "unit": "lovelace" }, - "stake_address": "" + "pool_id": "pool1jkfhmgrrg0gvgx3adllxf0xcrqxf285eqku5va2503d769x3sp3", + "pool_margin": { + "quantity": 79.05, + "unit": "percent" + } + }, + { + "certificate_type": "quit_pool_external", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1m98g82zya02hgw2jzu9gwes5crvwd8l5cl7kf34uv7tz8cetq4rsesl8yw", + "ed25519_pk134y72r0w2cc3nzftjtkdqkhjlvn4rdw4h2ytfxw3ztwyzzqkuhgs0w3kl9", + "ed25519_pk1jk2txmt3zwzqlrj4gw2w9uwtw3a30apc9e7lw9h854wfx32cszlqphg3qt", + "ed25519_pk1eqn7q5npjs8nj332e7d4ps7fx3k9pdpz0y3ptn58erdm53nf7k5s9z6a69", + "ed25519_pk1mptzgd8qhv7erg4qel8t2s4h5fq82y84lr02csvghntjklv7myrslgj6a9", + "ed25519_pk1jy343g5snnnfzdsl9grssfye7947je5h4zgwjlrdev7gzw2nqtxs3a06a5", + "ed25519_pk1002um8kr8huq53sm3rmku0cv6sugsk7lcf62kaj3p4235k4gk6tq7kjwxw", + "ed25519_pk1pxrlc7crla4cc0yhmgy3hdud0svqhc7sfkplszg3hefh58402f2qekxp84", + "ed25519_pk1duu873jgnw4896tuuunnl88yltxtd8txv5mmw60ykwdqa9w2zqhskfn72t", + "ed25519_pk1wg3unpgvc0vamjsufx5pqt8yxhwmgry6590zmtc37pd6gpx5wrkqjhsdtt", + "ed25519_pk1slqqxwmxrrxan2yj3kke870gc8u29aj9d2dknxt9thz0j0vzx9nqaq4tlz", + "ed25519_pk1mhxmtejv9myg6cltd637y6swl5vhw839sg389f3mxp95hgf0us6s8zydcl", + "ed25519_pk19rskdk2qpk9zs8pxmnq4aewpvp3467zstxn4nf9pymas9z26h8cs4f8hfu", + "ed25519_pk1de6v8kll0pc38z5cmyflcq6rgr9dn69e33as5hazs8f40s3ddweqxkgzly" + ], + "pool_pledge": { + "quantity": 26, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 19, + "unit": "lovelace" + }, + "pool_id": "pool1qcaa0wgwfmsartvfxpewc78dpvj436yp6g2zmqe6pglh2mp658f", + "pool_margin": { + "quantity": 86.24, + "unit": "percent" + } + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1snhjky8st9exfaxcs6jl32cecdrn5w42lpu7qy6x0cdfkk00p57", + "retirement_epoch": 28440 + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1ue2864rejx6ekk4wdvaz4steldehqj5ez0ydy6pcg3vefxxjn8zsym75ju", + "ed25519_pk10t5uw65042remt0jr5amq9ep7yttxljsfkpk2mmau4r6dlna4stqnxq05x", + "ed25519_pk1aakuu9jt802takxvx8kff3dtuzh09zchlthqcmxp90gqry6y9xlsa5fw7v", + "ed25519_pk10uqzzqdr9e84zzhugv9l8rev00xrk7hm0l4lde8d5jljldc645eslm5nah", + "ed25519_pk1r9mruv7pvjrjs0kk5ydd35yzjkchy405fde24q6ntv7amev2wrts68gqsc", + "ed25519_pk1klzxqu8n85rkqat7g2zntgl4tr3ggsvvaztgn5n4p7a5j7klxa3saw8sln", + "ed25519_pk1gfsznhjxy9ac4eqgjhgh99l89yy4nq696vv984uh8rvqll06y7ysty6dtj", + "ed25519_pk165j27vdry2udy4fys49arpkpeknerhyu3y3x849vk2ztxaepy4eqqacdtg", + "ed25519_pk15tgueptmkzd33kmj5n0fyumzex5wx4mzt6lyz3neyhld6cf0cc5qupxye7" + ], + "pool_pledge": { + "quantity": 175, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 5, + "unit": "lovelace" + }, + "pool_id": "pool12cqscxx0ck7s5zupxnjct868ae6cr4f67jnhmcc0zkgmsugg2sj", + "pool_margin": { + "quantity": 18.62, + "unit": "percent" + } + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "join_pool", + "pool": "pool1u2yawuk7sr036w8h8ulyem5uk84h9wcfch5asxzpedpz5v2tac2", + "reward_account_path": [ + "5665", + "31369", + "1474", + "29649", + "29255" + ] + }, + { + "certificate_type": "join_pool_external", + "pool": "pool10zy2m8cjmr25tcxrqyav090qmmapmleyymrgvgd9zucs7nqzzl3", + "reward_account": "" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1ue83jrtka0u908n8kapxqv2khfkdy505sj3y3pzap8mdzapwf5k", + "retirement_epoch": 22460 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1375vlzxed3gc7utp6nrkjfv3znnqk0en08xzkgdcnh58xnu62hp", + "retirement_epoch": 32068 + }, + { + "certificate_type": "register_reward_account_external", + "reward_account": "" + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "19695", + "421", + "18392", + "11937", + "1306" + ] }, { - "amount": { - "quantity": 59, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk13vr0wcreudy3kvjf5q63ulckps7sxsn36v7grp8qz90p02eggf0qn0lywp", + "ed25519_pk1f2t8cvylze5jlzylqk4jqyjlahevurgq088zn662dfya5n8kcy9q3humrt", + "ed25519_pk1xsapw76245fh0x40kh45kqgn7etaaun7kjp7yy6xfnusphmxc9yqpynpgu", + "ed25519_pk19vg4h9ufdgxewhysnypg92tu2528ew3pep7m5qa5d4vehedyhnuq8qtx6r", + "ed25519_pk10a6vtznl8lh4y62kfs0nmaclleyg5t3ky03xprvt28l67am0vnkszqhaxm", + "ed25519_pk1wnpe0452yex6a3p382k6jsetzaew0s79sqh7574aa889ulyhgvusv8wawz", + "ed25519_pk17r2l97dhp4k3zqjmxh0u8vnvjfnlae58nurmeyfzfdng4dt9jg7sttnnet", + "ed25519_pk1pmjae3lvz7jspcz8v5n5tpya0cvfn75sawm98gwcqnhm25j9dc2q3h6wv3", + "ed25519_pk1wjnyj0efymd5nejkc2h3sjxlwdpgfyq3tyucx3uspck8npex929q2w2cxm", + "ed25519_pk1r8hj7d86546u5602v5r2ky9vm8xeua3rhwfm27g74aaasmw2g6sq58tv7p", + "ed25519_pk160pudgmu8nzamnaktygjvwtgqzj3jf6haftljkmy2znyrzu3zhdsgm79t2", + "ed25519_pk1kvls76mdxdn22du0mkkqze9t3xatqpqm3vq6aqyq03tfxpjg3rcq0tdjhl", + "ed25519_pk16x5qve2r5uz286eqm85trexkcezucg5gr8g5ag75kgrs943qtyusq8d89f", + "ed25519_pk1cmsyhs90xyt8y4gakgm2tcl8qct5vdee95p0h66gptl7f6634c3sadxam8", + "ed25519_pk1m4pflp2r9n8pwqaaedl53zyxnrndlhggtyz0yfz3xntqvjfqe7ps8j480n", + "ed25519_pk10c4t5f7s7zjxgejl89fq626l0ln6uxu8ydmndgsgcq73g3vny49sgpcuj4", + "ed25519_pk15cyd8cyupn0mnws7lwnkwltgxul6gzen2u45k628a7uvuz58lezslmx3ay", + "ed25519_pk10wqs0zhfmn3mdgddtyvd62fjq4na4rmnhfcd5tr6w2mnnr0ztsks3sf9v4" + ], + "pool_pledge": { + "quantity": 70, "unit": "lovelace" }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 54, + "pool_cost": { + "quantity": 74, "unit": "lovelace" }, - "stake_address": "" + "pool_id": "pool1qg7te25hy2fh6wp9zdv028aqwwwz4egywg2jejs4juspsme3l0s", + "pool_margin": { + "quantity": 99.48, + "unit": "percent" + } }, { - "context": "ours", - "amount": { - "quantity": 50, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "join_pool_external", + "pool": "pool1l4altezrdqe4mcfdhgfxfnn9qfja9vc9q6j8jjlcde87yv0pesa", + "reward_account": "" }, { - "context": "ours", - "amount": { - "quantity": 27, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "deregister_pool", + "pool_id": "pool1fvkshmj5uy0qs7w955hlkrue8acz4gzw9ze244meappgs842m8h", + "retirement_epoch": 28819 }, { - "amount": { - "quantity": 133, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "genesis" }, { - "amount": { - "quantity": 193, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "quit_pool_external", + "reward_account": "" }, { - "amount": { - "quantity": 59, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "deregister_pool", + "pool_id": "pool10d383np22u72m0j3lnesscw2zvjs465c3dxxmpltlra5qzl703u", + "retirement_epoch": 13864 + } + ], + "deposits_returned": [ + { + "quantity": 226, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 239, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 100, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 205, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 181, + "unit": "lovelace" }, { - "amount": { - "quantity": 220, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 64, + "unit": "lovelace" }, { - "amount": { - "quantity": 209, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 26, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 121, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 212, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 148, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 43, + "unit": "lovelace" }, { - "amount": { - "quantity": 6, - "unit": "lovelace" - }, - "stake_address": "" + "quantity": 115, + "unit": "lovelace" }, { - "context": "ours", - "amount": { - "quantity": 162, - "unit": "lovelace" - }, - "stake_address": "" - } - ], - "inputs": [ + "quantity": 77, + "unit": "lovelace" + }, { - "id": "1e3a7d7f3e396568b1fbe45e73c95078f84d6bbe32654e346307760229220d1b", - "index": 1 + "quantity": 12, + "unit": "lovelace" }, { - "address": "", - "id": "392f5e66461030b107332e085634517a1467cc7f1f502489655f28032542b7a2", - "index": 24777, - "amount": { - "quantity": 153, - "unit": "lovelace" - }, - "derivation_path": [ - "25900", - "29414", - "6225", - "24272", - "24737", - "12427", - "14850", - "17023", - "18597", - "21083" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "quantity": 144, + "unit": "lovelace" }, { - "id": "4c35f96570581f60215d133a206d041650321200234a59066129673060333a94", - "index": 1 + "quantity": 221, + "unit": "lovelace" }, { - "address": "", - "id": "4cef446a453b7457791c35751b2f5d7320152228787f353033155564080a36cd", - "index": 16526, - "amount": { - "quantity": 253, - "unit": "lovelace" - }, - "derivation_path": [ - "9209", - "8651", - "1533", - "1555", - "11528", - "32155", - "28395", - "2609", - "22709", - "29278", - "9143", - "4327", - "2749", - "2233", - "13440", - "12816", - "237", - "10085", - "12349", - "14194", - "27583", - "10411", - "30067", - "15673", - "17364", - "26823", - "14111", - "1698", - "2503", - "2764" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "quantity": 212, + "unit": "lovelace" }, { - "address": "", - "id": "000b2dc9123833294d11b0053962556b196c2c191ae92530793679043c49772e", - "index": 4393, - "amount": { - "quantity": 178, - "unit": "lovelace" - }, - "derivation_path": [ - "2780", - "26518", - "2438", - "26832", - "17397", - "31267", - "28874", - "24248", - "20553", - "23850", - "20625", - "164", - "17243", - "10214", - "10402", - "1232", - "8159", - "24967", - "12722", - "30337", - "18157", - "14440", - "8610", - "5297", - "15955" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 94, + "unit": "lovelace" }, { - "id": "6c7f216c2d6e45bc1b25373f7aef659b102ffc631100490122009551574b611a", - "index": 0 + "quantity": 116, + "unit": "lovelace" }, { - "address": "", - "id": "127996323f746f0f7c02537e7f513a9e7758318c42505d0b1655003d19c29191", - "index": 22067, - "amount": { - "quantity": 191, - "unit": "lovelace" - }, - "derivation_path": [ - "17465", - "27669", - "7028", - "6024", - "12842", - "29338", - "29513", - "6502", - "420", - "23104", - "26909", - "2458", - "18292", - "27182", - "21548", - "18937", - "18622", - "15638" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "quantity": 77, + "unit": "lovelace" }, { - "address": "", - "id": "bf453f955358141569274f75287e390b7c64bb13568c3b623bce4a2c447e2f15", - "index": 18490, - "amount": { - "quantity": 96, - "unit": "lovelace" - }, - "derivation_path": [ - "229", - "10143", - "5673", - "5520", - "23322", - "15873", - "19988", - "6626", - "2575", - "27041", - "31172", - "17676", - "30088", - "12654", - "22262", - "2755", - "6124", - "16762", - "9603", - "31753", - "28974", - "19701", - "4715", - "4577", - "13527", - "22139", - "23877", - "5374", - "7117" - ], - "assets": [] + "quantity": 55, + "unit": "lovelace" }, { - "id": "146832621e4769a5a4487f433019fd134f223f275d45a60761416f3312740f73", - "index": 0 + "quantity": 223, + "unit": "lovelace" + }, + { + "quantity": 182, + "unit": "lovelace" + }, + { + "quantity": 223, + "unit": "lovelace" + }, + { + "quantity": 202, + "unit": "lovelace" + }, + { + "quantity": 195, + "unit": "lovelace" }, + { + "quantity": 204, + "unit": "lovelace" + } + ], + "metadata": { + "7": { + "bytes": "11130f3c7d611502" + } + }, + "collateral": [ { "address": "", - "id": "0376621560ef4b733a7a20116f3f6d415b5d503b1069408b7d7f601345702c03", - "index": 12902, + "id": "1a740e1500756e4d0f75576d2309772d305f074a07510d4913d71f06603d174e", + "index": 18879, "amount": { - "quantity": 128, + "quantity": 239, "unit": "lovelace" }, "derivation_path": [ - "31781", - "21678", - "16297", - "7434", - "27888", - "9346", - "31914", - "19583", - "25778", - "7760", - "3013", - "32022", - "17136", - "7168", - "11305", - "15252", - "18537", - "9015", - "10562", - "3796", - "10024", - "25607", - "23582" + "13256", + "2946", + "14525", + "22740", + "18561", + "13428" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 32, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 47, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, + { + "id": "342f74683e23fc1b75546365457d2ee38c1a363c5a17eb2650275e303b3e1b45", + "index": 1 + }, + { + "id": "540e594f3a74567b016c1a4300516e47864047440700854f704e44004d100712", + "index": 0 + }, + { + "id": "0613a72d75034153e8634d64c464723610157952f03334abb1374a975371ae0a", + "index": 1 + }, { "address": "", - "id": "5f7f68264d5b4f7913717f4f757b43e002480a2854327d041e5a67d07734b32b", - "index": 13905, + "id": "3a1bd071fc05565d401b367f362d51636c43221f5547704d902c5a706a06513c", + "index": 30610, "amount": { - "quantity": 144, + "quantity": 188, "unit": "lovelace" }, "derivation_path": [ - "3912", - "30783", - "761", - "5317", - "8897", - "23660", - "28218", - "9952", - "17691", - "5944", - "27910", - "9187", - "25429", - "21045" + "8398", + "7713", + "11518", + "16536", + "2665", + "22711", + "6853", + "23224", + "15592", + "9750", + "15873", + "19869", + "32102", + "32486", + "18648", + "12930", + "10792", + "5953", + "8633", + "23894", + "10715", + "30072", + "16446", + "23249", + "8414" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 8, + "asset_name": "546f6b656e42", + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 27, + "asset_name": "546f6b656e43", + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 23, + "quantity": 18, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, + "quantity": 1, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 43, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 28, + "quantity": 9, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 1, + "quantity": 17, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "quantity": 19, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "0b1e1c20543e2f125101040a6d1977783744172b6a0a870ff174086a3113434e", - "index": 1 - }, - { - "id": "582a33482635524a0b17424a05270c7c3708746c907f1ce01124342e441e05f3", - "index": 0 - }, - { - "id": "247111d745356eb8e8bb340b11205018293e2e3b327dba1a2acd3e6319585904", - "index": 0 - }, - { - "id": "2ec7845975397e7446318764d6e93340654714305b2d514d5822322905391255", - "index": 0 - }, { "address": "", - "id": "63864f6d36314b59691e3d415365e0243a1435250793500701591c2865942f4d", - "index": 32583, + "id": "781e482a6455100627057c173960058559590d5f1b25736a5e5bf02bb87609b7", + "index": 25050, "amount": { - "quantity": 8, + "quantity": 138, "unit": "lovelace" }, "derivation_path": [ - "13337", - "6977", - "7914", - "9056", - "29291", - "253", - "15628", - "15280", - "26372", - "22206", - "841", - "16981", - "7207", - "21975", - "14656", - "5443", - "26015", - "28121", - "870", - "12184", - "32268", - "4321", - "3046", - "1985", - "15837", - "29482" + "12554", + "4041", + "32289" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 22, + "quantity": 20, "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] + } + ], + "mint": { + "tokens": [], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1va9hy5g9y9gqsms70u7p6pmjf3u3w727r5vjz2jpfaetu65lqsqsd3p2eh" + } + }, + { + "withdrawals": [ + { + "context": "ours", + "amount": { + "quantity": 113, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "1625dfd3017f040535404b4826d75064760e3cf93885423801fd25e41c691e3b", - "index": 1 + "amount": { + "quantity": 231, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "0917131b0b69448945001f5c1c67ac311a4624206653a76864751977583f47a7", - "index": 1 + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "81242b03217b35124ae20f1f5206617eb50b7e72646504dd1a42322b2ace7b3c", - "index": 0 + "context": "ours", + "amount": { + "quantity": 35, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "0e23503761720721623e5c6a444605061720505d3250806e574d690c43686445", - "index": 18840, "amount": { - "quantity": 104, + "quantity": 225, "unit": "lovelace" }, - "derivation_path": [ - "26415", - "14701" - ], - "assets": [] - } - ], - "collateral_outputs": [ + "stake_address": "" + }, { - "address": "", "amount": { - "quantity": 39, + "quantity": 249, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 54, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "outputs": [ + "stake_address": "" + }, { - "address": "", + "context": "ours", "amount": { - "quantity": 223, + "quantity": 217, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "stake_address": "" + }, + { + "amount": { + "quantity": 34, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 148, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 240, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "context": "ours", + "amount": { + "quantity": 11, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 220, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 177, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 36, + "quantity": 113, "unit": "lovelace" }, - "derivation_path": [ - "12177", - "6548", - "499", - "8928", - "21843", - "16843", - "6475", - "26504", - "21965", - "12661", - "3607", - "8521", - "27128", - "20041" - ], - "assets": [] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 248, + "quantity": 227, "unit": "lovelace" }, - "derivation_path": [ - "2073", - "13417", - "28095", - "5754", - "17365", - "30697", - "9826", - "3391", - "16408", - "26784" - ], - "assets": [] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 216, + "quantity": 23, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 138, + "quantity": 176, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 160, + "quantity": 58, "unit": "lovelace" }, - "derivation_path": [ - "7153", - "24316", - "14436", - "2548", - "8468", - "12502", - "5701" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 45, + "quantity": 17, "unit": "lovelace" }, - "assets": [] + "stake_address": "" }, { - "address": "", + "context": "ours", "amount": { - "quantity": 31, + "quantity": 64, "unit": "lovelace" }, - "derivation_path": [ - "30631", - "13534", - "25680", - "2538", - "22601", - "9555", - "13979", - "548", - "26203", - "30471", - "10733", - "25367", - "17765", - "27538", - "905" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "address": "", "amount": { - "quantity": 174, + "quantity": 118, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "stake_address": "" + }, + { + "amount": { + "quantity": 120, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "id": "ea2f1d003a3b1667675a621f08562255520e664c22976f4754c472f96f8e0760", + "index": 1 + }, + { + "id": "4f3d47ae6a6c15581833250b1f3b4b2a0d164f894b112e0e5a31ba3a3809070a", + "index": 0 }, { "address": "", + "id": "4843284f0a2d3c05033f1c4362257a1f4cf0754d1e63640b784c7b2da4094378", + "index": 7384, "amount": { - "quantity": 72, + "quantity": 177, "unit": "lovelace" }, "derivation_path": [ - "19014", - "25086", - "27084", - "24856", - "1120", - "25374", - "27582", - "25446", - "12957", - "11099", - "11954", - "23723", - "6490", - "2506" + "3257", + "26846", + "18913", + "7403", + "19337", + "2074", + "23330" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 12, + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 23, + "asset_name": "546f6b656e44", + "quantity": 15, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 21, + "asset_name": "546f6b656e42", + "quantity": 26, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 20, + "asset_name": "546f6b656e44", + "quantity": 44, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 60, + "quantity": 19, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 18, + "asset_name": "546f6b656e41", + "quantity": 22, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 13, + "asset_name": "546f6b656e44", + "quantity": 34, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 5, + "asset_name": "546f6b656e41", + "quantity": 42, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "143573483fd6b4530c150a340e4908e53429113e2a120c0f4f5f582a00915965", + "index": 16956, "amount": { - "quantity": 40, + "quantity": 48, "unit": "lovelace" }, "derivation_path": [ - "25045", - "26060", - "7420", - "25230", - "5186", - "19847", - "20409", - "27666", - "21723", - "27990", - "29623", - "32335", - "19128", - "1444", - "16455" + "26936", + "10024", + "15951", + "10367", + "12655", + "30629", + "31483", + "12404", + "8043", + "31064", + "27290", + "13848", + "26990", + "4553", + "17652", + "5674", + "30428", + "936", + "25368", + "6231", + "11292", + "26195", + "12883", + "11025", + "11031", + "28336", + "13648" ], - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "address": "", + "id": "ecaa6709152e377521170a191084005f3d29bd6af6796f7c485dc6d4a45b3c77", + "index": 14470, "amount": { - "quantity": 178, + "quantity": 56, "unit": "lovelace" }, "derivation_path": [ - "20052", - "25632", - "316", - "12278", - "10411", - "15204" + "12766", + "10117", + "31388", + "23496", + "22631", + "32127", + "29162", + "27841", + "18715", + "23160", + "6082", + "16786", + "27485", + "12749", + "4679", + "5733", + "16482", + "32353", + "18488", + "18705", + "28078", + "14748", + "32381", + "4098", + "17693" ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "assets": [] }, { "address": "", + "id": "0d53ef5c1e372e24610c76bc5d2c7c7e791a254f1a4b00ae117ecc4eac361659", + "index": 7248, "amount": { - "quantity": 77, + "quantity": 55, "unit": "lovelace" }, "derivation_path": [ - "21780", - "31055", - "11014", - "21005", - "23182", - "20958", - "9369", - "2269", - "30857", - "24417" + "13333", + "20008", + "15476", + "15522", + "14991", + "22086", + "21705", + "16137", + "7029", + "16570", + "13217", + "21339", + "31084", + "18937", + "589", + "12648", + "2995", + "18857", + "14833" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", + "id": "46403beef4c0b12655325a44a8317c2a102c6544220d7fc4fa3c1a147151765f", + "index": 27839, "amount": { - "quantity": 171, + "quantity": 37, "unit": "lovelace" }, + "derivation_path": [ + "11116", + "18133", + "14180", + "30374", + "19054", + "26162", + "24988", + "17246", + "2590", + "28308", + "18483", + "2997", + "27649", + "2967", + "20747", + "244", + "6472", + "13880", + "18860", + "161", + "11142", + "16306", + "20218", + "23943", + "21412", + "25057", + "23100", + "8989", + "12906", + "29212" + ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 9, + "quantity": 17, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, + { + "id": "724d02e57065674e363e4c804135ff554d324e4434284b5c0b1257523532062f", + "index": 1 + } + ], + "collateral_outputs": [ + { + "address": "", + "amount": { + "quantity": 78, + "unit": "lovelace" + }, + "assets": [] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 141, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 207, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 136, + "unit": "lovelace" + }, + "assets": [] + }, { "address": "", "amount": { - "quantity": 57, + "quantity": 212, "unit": "lovelace" }, + "derivation_path": [ + "32749", + "29535", + "20382", + "32530", + "26130", + "22819", + "7007", + "2294", + "2259", + "27811", + "18118", + "3364", + "13188", + "21374", + "1033", + "18904", + "19434", + "10336", + "13449" + ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 4, + "asset_name": "546f6b656e41", + "quantity": 28, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 32, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 37, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 38, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 40, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 25, + "quantity": 17, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] @@ -11032,91 +10772,77 @@ { "address": "", "amount": { - "quantity": 131, + "quantity": 107, "unit": "lovelace" }, "derivation_path": [ - "10704", - "13849", - "17212", - "8845", - "27544", - "16378", - "7355", - "19225", - "2337", - "10488", - "28237", - "29223", - "10984", - "22411", - "22923", - "17887", - "12342", - "3453", - "30390", - "19484", - "20316", - "20619", - "29416", - "1894", - "13616", - "2664", - "31973", - "25067", - "23348", - "9306" + "830", + "27057", + "21813", + "21419", + "1518", + "7726", + "10669", + "4132", + "13299", + "30594", + "24045", + "21374", + "17082", + "31195" ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 146, - "unit": "lovelace" - }, "assets": [ { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 25, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 13, + "asset_name": "546f6b656e43", + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 19, + "quantity": 9, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 32, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 48, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 11, + "quantity": 41, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 19, + "asset_name": "546f6b656e41", + "quantity": 10, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 15, + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 168, + "quantity": 232, "unit": "lovelace" }, "assets": [] @@ -11124,7 +10850,7 @@ { "address": "", "amount": { - "quantity": 145, + "quantity": 51, "unit": "lovelace" }, "assets": [] @@ -11132,963 +10858,953 @@ { "address": "", "amount": { - "quantity": 12, + "quantity": 86, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 4, + "quantity": 89, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "assets": [] }, { "address": "", "amount": { - "quantity": 201, + "quantity": 206, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - ], - "id": "2f2565756367408e7eaf7ec2351875cc58c746625c280a32620a7d36006e3855", - "deposits_taken": [ - { - "quantity": 7, - "unit": "lovelace" - }, - { - "quantity": 138, - "unit": "lovelace" - }, - { - "quantity": 141, - "unit": "lovelace" - }, - { - "quantity": 254, - "unit": "lovelace" - }, - { - "quantity": 244, - "unit": "lovelace" - } - ], - "burn": { - "tokens": [ - { - "policy_script": { - "script": { - "all": [ - "policy_vkh12zzepkhqz3es2s5s4x5fnafkyfeu5f4nc8q02fj04nsh570jstl", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "508590dae01473054290a9a899f5362273ca26b3c1c0f5264face17a", - "assets": [ - { - "fingerprint": "asset1lfpcz6vpa5dtplr7wfrs9dn8wce8yxur20q0jd", - "asset_name": "546f6b656e55", - "quantity": 1767 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "7a4baa96b6bbf474b710297a59c1ac41c0cfc9c6cde9639b5f2622bc", - "assets": [ - { - "fingerprint": "asset189mhqmn4jzjn7gjzkwqx8p4vyskkhyet6nhq9w", - "asset_name": "546f6b656e4e", - "quantity": 1462 - }, - { - "fingerprint": "asset168kt0hykjtpr4dts2cdnh9v79c7zzdw0jpark6", - "asset_name": "546f6b656e46", - "quantity": 6937 - }, - { - "fingerprint": "asset1dj9zhyzk2tfylvlh9uxqyl6a8wfufp0am82ce7", - "asset_name": "546f6b656e46", - "quantity": 2124 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1wgplrscd8fmncydhaajh977jmzthfnw5yxw2c2d4e50kgmnm9a8", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "7203f1c30d3a773c11b7ef6572fbd2d89774cdd4219cac29b5cd1f64", - "assets": [ - { - "fingerprint": "asset1kw2vxht9jlu2j5cr8mllfzk640cgpqwvvk07gg", - "asset_name": "546f6b656e51", - "quantity": 9143 - }, - { - "fingerprint": "asset1mzayfsv9dveetrr9k3vp3knqrr0r9x756g0ee0", - "asset_name": "546f6b656e42", - "quantity": 1431 - }, - { - "fingerprint": "asset1478m6zh3ekm3la2ytm9nmyljqasns0cjrhmskx", - "asset_name": "546f6b656e42", - "quantity": 3389 - }, - { - "fingerprint": "asset1japxjhrkp5slut7mpkl29kksuj3ezn9qyttf2c", - "asset_name": "546f6b656e5a", - "quantity": 7881 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "23a56b621635a715fd19c44de27e09b89417e62f74a339563102f030", - "assets": [ - { - "fingerprint": "asset16xkrc5xd7wh46lhhmkvavumvd27cdurhtsrckv", - "asset_name": "546f6b656e43", - "quantity": 4257 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1as46w669ksw2cxefm29tsaw0eqc29knt7tu236unf6q0wltuk7s", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "ec2ba76b45b41cac1b29da8ab875cfc830a2da6bf2f8a8eb934e80f7", - "assets": [ - { - "fingerprint": "asset1qhmajcgrwzkk22kh2h83rsv5xc89mdmgtz46p8", - "asset_name": "546f6b656e56", - "quantity": 8976 - }, - { - "fingerprint": "asset1jn7ss4wz3kqr04j7537lvqcury3g9853gw4puf", - "asset_name": "546f6b656e51", - "quantity": 5215 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1e5v0defna5wx8arday7ge7r48xmegvxejx47hml7rg2jk4464tq", - "script_type": "native" + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, - "policy_id": "cd18f6e533ed1c63f46de93c8cf87539b79430d991abebeffe1a152b", - "assets": [ - { - "fingerprint": "asset1tzycvaeqf82ud48nppjhznq2038x2rq04zer4w", - "asset_name": "546f6b656e4a", - "quantity": 4441 - } - ] + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 216, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh19wh9j5v2k8jedetdf7fsxggx80edhksp9452llnxgd5yw3nds7u", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "2bae59518ab1e596e56d4f930321063bf2dbda012d68affe66436847", - "assets": [ - { - "fingerprint": "asset1pzdj0dnk9t57ya25r3jj4ln095885plhwr84rr", - "asset_name": "546f6b656e55", - "quantity": 9929 - }, - { - "fingerprint": "asset1xpeuz7a75uravrnct3yyjhrpgfevnkj92rylch", - "asset_name": "546f6b656e50", - "quantity": 2653 - }, - { - "fingerprint": "asset187jvrpd286vh5hz73xzsvs53gx5xxmp4acvzst", - "asset_name": "546f6b656e4d", - "quantity": 3306 - }, - { - "fingerprint": "asset1j6cvee667djkwx58gyg3n6u3sapeuwn3l67zrt", - "asset_name": "546f6b656e53", - "quantity": 6576 - } - ] + "derivation_path": [ + "5823", + "26199", + "24603", + "31171", + "10124", + "8770", + "21044", + "32580", + "32158", + "22391", + "654", + "18422", + "20253", + "22389", + "2866", + "14254", + "20719", + "32128", + "6765", + "7901", + "8901", + "23436", + "26738", + "13714", + "23078", + "12250" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 40, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "1d8454f793c35e52a778c0a2d4123da475e0ee04ad3facd08f04fa9e", - "assets": [ - { - "fingerprint": "asset1tqtc7525v76k9up0l5c3za7daxzpjaw30366h8", - "asset_name": "546f6b656e4e", - "quantity": 7691 - }, - { - "fingerprint": "asset1u0gthlugj4cvadqf78yzsntuugsg6elxqqxnnl", - "asset_name": "546f6b656e45", - "quantity": 9889 - }, - { - "fingerprint": "asset1pu4zsxgg95vrulslnf08gcqendjy36872nnv8a", - "asset_name": "546f6b656e48", - "quantity": 8967 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "8fa1cf5ae845e4545a33870cba593a3f209e0927c8f489db53fdaf5f", - "assets": [ - { - "fingerprint": "asset1985dv3zuwqkvgn6pfdxea23v6kq2q7cqxfy24s", - "asset_name": "546f6b656e48", - "quantity": 7985 - }, - { - "fingerprint": "asset1ft5pjvmn9wytecw35hf50a42ypu6latfrng7e2", - "asset_name": "546f6b656e48", - "quantity": 5950 - }, - { - "fingerprint": "asset1s890knz208kncfpnregltjyzll5dmtfl3g8456", - "asset_name": "546f6b656e44", - "quantity": 5167 - }, - { - "fingerprint": "asset1zyvja79ulujhh8nh2vqrvcdzjuuysxz46zv85d", - "asset_name": "546f6b656e57", - "quantity": 8781 - } - ] + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 188, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1y9eada89dd20qlnv7wr9scdgmslrwqlqxsapzn8wss8ny2a3d4w", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "2173d6f4e56b54f07e6cf3865861a8dc3e3703e0343a114cee840f32", - "assets": [ - { - "fingerprint": "asset1djw6mg44z6l3sdm9udunjkg25dyc4md2pssftk", - "asset_name": "546f6b656e51", - "quantity": 9268 - }, - { - "fingerprint": "asset1y79tk9ytfdueqhdj8fqfju0y9ze55w0p7j8qke", - "asset_name": "546f6b656e57", - "quantity": 7531 - }, - { - "fingerprint": "asset1f8derx0hyxzy783gluazqmuuwgwkz0paramkuq", - "asset_name": "546f6b656e46", - "quantity": 2719 - }, - { - "fingerprint": "asset1ctsff6cj33twufkn2mqlssrrzgsnv34n7mst4j", - "asset_name": "546f6b656e4f", - "quantity": 727 - } - ] + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 95, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1lyaanncdxe2z4htk8yrn4qgchtntsggmcjzyr7kdlaqky856kul", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "f93bd9cf0d36542add7639073a8118bae6b8211bc48441facdff4162", - "assets": [ - { - "fingerprint": "asset1asz4r9p7wv0xf6e7vw69uvpuj627n3rtl364az", - "asset_name": "546f6b656e49", - "quantity": 6099 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "03c7d32b0d0625c9395472913b78260dca2b7be8b90f6c7817010137", - "assets": [ - { - "fingerprint": "asset1hzjzlflefg0fggydpd7nml4ehg5kmuh5c906yn", - "asset_name": "546f6b656e51", - "quantity": 7928 - }, - { - "fingerprint": "asset1kyywadnsq68uy8v347q673ejjvz94yh7aj25hk", - "asset_name": "546f6b656e51", - "quantity": 333 - }, - { - "fingerprint": "asset1fdpjkqtw939ptrv9zs5smjzepn8wksnr3jtne9", - "asset_name": "546f6b656e4b", - "quantity": 7418 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1tvmsglccgy8zyp0vw5f9yf5qjjcjfg4suxv9ql7lcwlskq04gst", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "5b37047f18410e2205ec751252268094b124a2b0e198507fdfc3bf0b", - "assets": [ - { - "fingerprint": "asset1xtl34lsq8mt5mseqwrceg6fm2k6ztxl2at7xx3", - "asset_name": "546f6b656e41", - "quantity": 5862 - }, - { - "fingerprint": "asset1mnphcq2n4qd327f5es9ec86tlkef0jl7a0z4kf", - "asset_name": "546f6b656e48", - "quantity": 7875 - } - ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1ydez2r23p92hvf2try8tfrchx4anwp6dvrfr7q6wdgh8ytqjtkm" - }, - "fee": { - "quantity": 68, - "unit": "lovelace" - }, - "certificates": [ + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1v8dtr744ql3m9t0vqqatd2684alflw6vqw83k74g983sy8lrakr", - "retirement_epoch": 835 + "address": "", + "amount": { + "quantity": 184, + "unit": "lovelace" + }, + "derivation_path": [ + "10160", + "25050", + "21736", + "15548", + "592", + "12858", + "29911", + "29185", + "4337", + "18613", + "25690", + "256", + "9139", + "1613", + "9116", + "15979", + "31515", + "20770", + "24646", + "8891", + "24680", + "28306", + "30294", + "19446" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 199, + "unit": "lovelace" + }, + "derivation_path": [ + "28935", + "2783", + "12832", + "11439", + "7225", + "26154", + "31633", + "27460", + "28276" + ], + "assets": [] }, { - "certificate_type": "join_pool", - "pool": "pool199vxj6g83mxk88538lrmfura49gqrftyzdmkwmtuln52zh3thl7", - "reward_account_path": [ - "2411", - "3995", - "3657", - "30104", - "21810" + "address": "", + "amount": { + "quantity": 181, + "unit": "lovelace" + }, + "derivation_path": [ + "18539", + "13985", + "6727", + "16400", + "26561", + "25594", + "11329", + "8235", + "7294", + "17696", + "25164", + "28912", + "28923", + "8257", + "25395", + "14877", + "2621", + "26982", + "16479", + "31171", + "2057", + "18592", + "5172", + "7335", + "29194", + "19750", + "16581", + "26518" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } ] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk12e97n75yulavypkxyflaw4gwq4nzzn5ny8fhhjylgl8p7a2a9duqwz4uwc", - "ed25519_pk1pga4s6ahm2hqmxa6jx6rcfuvm8yu4urj6zeuq38stp2eu8yg68yqw5cjjv", - "ed25519_pk1xxr5ysa83axypkz8w6xlx5hx4agt99pjgkl038pan09tc27y0ewqw2lnmm", - "ed25519_pk1z4m9te4ycx75j0m67qyf6trull04mj896xf909nuc9q94zj8hvzq28l7wu", - "ed25519_pk1v87qw7xghdymvyl23wy0ug33fxcvqfzuy2wuvfd6jxrlnjfntvsq6y0z3u", - "ed25519_pk1txwsyr9v3hn0echk2jhgan4htedm67hpcxe6ye4srj869fx0gxkqxxrcyz", - "ed25519_pk1fuzsa7ca4ep89e5xpy7glcvceckggnn02yl2pdf2av4jlsrkpnaqpz9t2g", - "ed25519_pk1s3mt4xsgcl99szr6fxqtmtmsftf4a228lh8wcl4yptg3eskg9hfs72tm62", - "ed25519_pk1tmx3q8zmdqpuyvwc9adeh8edu75gkerpdwdyeykz92grg8rtjjvqt3v4r0", - "ed25519_pk1ky2th9jw57hzkfgad37s4sdkuzttnxsf0clf89j0wfj5xnq7e84q99e03w", - "ed25519_pk1xsa8km0cgqm6xw7uul69rjvd9n0ppnl0x50z0xq85l6lnxkyhfcqncj53j", - "ed25519_pk1f0jser86gkkp0gvh8dlm5welgm6ylw4ze9sv0qxtsuk3ymfngn7sn70th9", - "ed25519_pk17p3e87t3nrygrnajzt4qjwvwjjqqjjp3at0dfz2v3eqpds2xxlsqhu8fqy", - "ed25519_pk1kdlltgawwdr42j8cpq6drlz3qwh2tem3tg7mle8tzfxzxjwetnqsmguxkp", - "ed25519_pk1xlm7n2d7v9mvthkp9f0zsq753nffhv9tj4w7pfnhx6dqstwz4j7qtm3jqu", - "ed25519_pk19gze0pgmkl3zl4kny2y9u3k3ys2j0j5tq4ekajsr7f9dlx8yqmgq4tpsn0", - "ed25519_pk1kpwl0cp459tuhqaex7da57r4ydzst0esr448s7djjvscqklnkd6suzyc0e", - "ed25519_pk18s6gsengk5xnckn6cntmakwd8e348ldr0spndvvsw46tmgcnch2qz40sy6", - "ed25519_pk187cweq09muz8a6zts3evk86k046k035r3qnr4cjmx6fradtcp8xqau66cp" - ], - "pool_pledge": { - "quantity": 89, + "address": "", + "amount": { + "quantity": 138, "unit": "lovelace" }, - "pool_cost": { - "quantity": 226, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 131, "unit": "lovelace" }, - "pool_id": "pool1kaxyjf3286u6pskrdnmhlvpnawj3ee5y4726zqlpffrnxm8p2vr", - "pool_margin": { - "quantity": 65.9, - "unit": "percent" - } + "derivation_path": [ + "21481", + "20601", + "5162", + "31416", + "17828", + "8549", + "22896", + "11277", + "9744", + "14453", + "20798", + "12924", + "8074", + "6436", + "18517", + "2863", + "24705" + ], + "assets": [] }, { - "certificate_type": "quit_pool", - "reward_account_path": [ - "11780", - "11638", - "6467", - "13737", - "26180" + "address": "", + "amount": { + "quantity": 96, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 45, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } ] }, { - "certificate_type": "register_reward_account_external", - "reward_account": "" + "address": "", + "amount": { + "quantity": 107, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "certificate_type": "genesis" + "address": "", + "amount": { + "quantity": 243, + "unit": "lovelace" + }, + "derivation_path": [ + "24745", + "20507", + "2073", + "19628", + "21159", + "7088", + "12746", + "13799", + "31930", + "31181", + "2965", + "3395", + "3786", + "27005", + "16401", + "9128", + "20409", + "26870" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 57, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 32, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "certificate_type": "register_reward_account_external", - "reward_account": "" + "address": "", + "amount": { + "quantity": 108, + "unit": "lovelace" + }, + "derivation_path": [ + "26426", + "16821", + "29687", + "12201", + "124", + "7446", + "24621", + "11124", + "24269" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 34, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "certificate_type": "quit_pool", - "reward_account_path": [ - "18776", - "9230", - "8338", - "14411", - "9461" + "address": "", + "amount": { + "quantity": 248, + "unit": "lovelace" + }, + "derivation_path": [ + "12907", + "30274", + "16730", + "11752", + "14685", + "19748", + "4204", + "9743", + "14019", + "20478", + "90", + "27320", + "8186", + "29168", + "24810", + "24079" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 47, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } ] }, { - "certificate_type": "mir" - }, - { - "certificate_type": "join_pool", - "pool": "pool1l6n00j9l80rurc2p7p0huar0jzhys2388d75glq6mnk3k8cvxhu", - "reward_account_path": [ - "13865", - "13565", - "23411", - "1418", - "30556" - ] + "address": "", + "amount": { + "quantity": 220, + "unit": "lovelace" + }, + "derivation_path": [ + "7533", + "11318", + "25288", + "21417", + "25649", + "22440", + "25337", + "27883", + "20524", + "28123", + "10052", + "16973", + "24305" + ], + "assets": [] }, { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "31518", - "1939", - "8316", - "1955", - "11668" + "address": "", + "amount": { + "quantity": 110, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } ] }, { - "certificate_type": "deregister_pool", - "pool_id": "pool14u8n4u53rwve62qrl5tydz3senpsy9c5e089hue28tj87vep3en", - "retirement_epoch": 222 - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk17xumst6kv9y5txzpehnnkkat4m6lz5gcxmk8uvk7hmwaefcmxptqrqgajy", - "ed25519_pk16x9wyja6zy2nkt8kagtqtr8te4dsp7j3x7v4pcm6pevv0t3ae95sjlnx3a", - "ed25519_pk1vytyevuctyrf4tqmyyq7q90kg63kh6ma7acvhylg66stc5mfcwcqqsrpnk", - "ed25519_pk136l96cpn5ldd28tywxa3dawehkzn4u74a74wu6eejsqhlf9xkuas7w8076", - "ed25519_pk1ek3h653f6fsr2uz9tdam5cq70xpl9ayfscf8dnhvzvm3edjefcrqzel6l4", - "ed25519_pk1dtzcnzy3z0nr84g7x5g5wr95v2xl0t8lcng9x7p4g78lykvjf2gqk4jhe8", - "ed25519_pk17exssg864fzy0m3erj7hdafr3y6j9kn9w5wehv3x3cjtd2kf7uuqlk6lkz", - "ed25519_pk1vpkez5jc95hnk4umu93amadzw3g2kwqpz0vgptnu595qesk2rygq67uyu2", - "ed25519_pk14jtychlar7lgzyx9dstjj52ddytyfzaaxag7y7a65sqmwsrxqdfq8acqeh", - "ed25519_pk1m9hyrhc2yq90tukpqvk9lxv49yfusqcrspxz38duny4d0e8v3gjskeut04", - "ed25519_pk16ctrxgqecn4ycnf747esgsalty3xek8dntznfnxp4cj0evjmsnyqa3u4ve", - "ed25519_pk1qc7wtnkn24cjdpe8kngj5e7tfxelklt0d8ad3r49f27enfm7zr7qtmv5w6", - "ed25519_pk1v57ghxmwrk8unmg8f7057xxug5j5x3mr54sltt7kkttll0x8uxrs4se870", - "ed25519_pk1z2afynd47nz0x5ttjgnyrvpkgn6wgq2amcrq37ca8rru97l47zxqeug3qx", - "ed25519_pk1uzzqlnx73lzfw9qnwjxucdp7meq0zhju3gy9atndtqz96muzw7fss2v0ht", - "ed25519_pk1afg5em724enetvzleeheaswjt5rakgyxmm0kytkp0x37tt2lyzas0amaqr", - "ed25519_pk1sm45v2wl7txeqyet00wyjpgf7jwlg3ljlgpnklppc9wnhv2f2tds05s4ev", - "ed25519_pk1sk5xtpre3hcznxfwlncys7fsvkcpv0l7y392npm79x49yjgacgwshepvp7", - "ed25519_pk1ugwvts06jae7tc6sa05l58x9yr9rck3vqxshd8jtp5et4gu6d0dsutyscu", - "ed25519_pk15aprfvnl2z7dv6anj2e046v0vx6x0ss69ee97skuqa5y5nmk7qlsk36v4d", - "ed25519_pk1xakw5uwt67z6ec02lhdl2pz7zzg8rsn3cytx3cr9rmf7227wyauqvurfhf", - "ed25519_pk1dahpq5xp7e46w77r2hf9xlccgaa5aq6jdnrux7r4d2p62c8gj40srmcmkt", - "ed25519_pk1duhjvk7kdyqs7x0sfca3tmpvm7wh7fqheh3z3qzslxt5cn2xkatqeqcp3n", - "ed25519_pk1d4wqd4432h5pfuy9skyn06xn5cml66gvq7lhw0355rsk6fytkgmspw39yr", - "ed25519_pk1zqz93ed5kme2c87llclcr4yv76efzfv5uaykxwqea2mj3m67h9pst8nfvg", - "ed25519_pk14cr430hvqke99q3sa8sdc56plmk6d7yzvtjm7d83ga9n9ku54c2s9ga252", - "ed25519_pk12gjnsda4y76kt63q3guqggx4w8mkrzsqpaa9wtntt5v4pmk4mfmqr854af", - "ed25519_pk165r0cvrf22jkt3g00epags9kng9mlt7kc280nzcr97ek6h957cyq9ula0s" - ], - "pool_pledge": { - "quantity": 157, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 248, + "address": "", + "amount": { + "quantity": 255, "unit": "lovelace" }, - "pool_id": "pool1uqfy2cw9sw5mxh4r3tv4al9vent7g280h3cezht67yqy59x5kq8", - "pool_margin": { - "quantity": 66.51, - "unit": "percent" - } + "derivation_path": [ + "19544", + "5935", + "6653" + ], + "assets": [] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1aj8kh0dluny265854hu36hzy37qwfle8ffy6z0sfwmxwuz2jrnrq7q4yfh", - "ed25519_pk1dph60pugts8e5gzq03d600cr30csfvgqj3975wy267uq4hqu4rfqcyshnj", - "ed25519_pk1hyuy8ttky8mw68sdf4h63m0qd8e2dpak9jf6hfhv0zjjee56jgssgm9293", - "ed25519_pk1v4p04karnc4xn6kw3qf5967lyf6nx6p57h2qvxw9gnxvrvl9us4s4783hx", - "ed25519_pk1378tgq5aeljdkv7qrzmkk53n5qhh7z7k2fja59guk8ez6gn892jsrfdeva", - "ed25519_pk1g60sqwzantpylz4dvjvg43aw3s54gc5rrchgmna3wpmr0jm26f6qyzkndz", - "ed25519_pk1jtca7mpnswspqzjg4e93lc4w285er2wjv9p3klfhzmwsd3jgp6uq0ck9ze", - "ed25519_pk1zs7zt0qp2t6qq3mfsf5nmlh77ggpuztv546wrtfc9jam6ppjtaqswhykfc", - "ed25519_pk1f8lfwvnyhkfcwa0xv847ydvt496vrjpssfac4tqxvwtn45xg8kdsen6cf9" - ], - "pool_pledge": { - "quantity": 75, + "address": "", + "amount": { + "quantity": 124, "unit": "lovelace" }, - "pool_cost": { - "quantity": 158, + "derivation_path": [ + "2373", + "163", + "8752", + "27701", + "4388", + "24878", + "8604", + "1816", + "17680", + "13677", + "29914", + "24580", + "24200", + "22329" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 39, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 39, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 32, "unit": "lovelace" }, - "pool_id": "pool1xv5sl8jxgyxdp2345dr484u0s2ps782wg0c6kg88ffdr5jpuutt", - "pool_margin": { - "quantity": 86.25, - "unit": "percent" - } - }, + "derivation_path": [ + "6396", + "5863", + "29124", + "2274", + "28632", + "5170", + "18730", + "22839", + "9963", + "2818", + "21211", + "12076", + "4002", + "28443", + "14321", + "17413", + "27276", + "15783", + "27859", + "759", + "31450", + "18547", + "4226", + "10038", + "12906", + "17772", + "32238", + "24903", + "15524", + "6625" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 41, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + ], + "script_validity": "valid", + "id": "1e4479313768266c4b4b582b33405a2846697b2357350768599d0a5cf046d30c", + "deposits_taken": [ { - "certificate_type": "genesis" + "quantity": 235, + "unit": "lovelace" }, { - "certificate_type": "quit_pool_external", - "reward_account": "" + "quantity": 192, + "unit": "lovelace" }, { - "certificate_type": "register_reward_account_external", - "reward_account": "" + "quantity": 22, + "unit": "lovelace" }, { - "certificate_type": "quit_pool", - "reward_account_path": [ - "27754", - "5945", - "28328", - "22364", - "10941" - ] - } - ], - "deposits_returned": [ - { - "quantity": 128, + "quantity": 45, "unit": "lovelace" }, { - "quantity": 199, + "quantity": 100, "unit": "lovelace" }, { - "quantity": 19, + "quantity": 107, "unit": "lovelace" }, { - "quantity": 149, + "quantity": 205, "unit": "lovelace" }, { - "quantity": 89, + "quantity": 176, "unit": "lovelace" }, { - "quantity": 162, + "quantity": 177, "unit": "lovelace" }, { - "quantity": 175, + "quantity": 191, "unit": "lovelace" }, { - "quantity": 123, + "quantity": 56, "unit": "lovelace" }, { - "quantity": 217, + "quantity": 45, "unit": "lovelace" }, { - "quantity": 4, + "quantity": 78, "unit": "lovelace" }, { - "quantity": 252, + "quantity": 122, "unit": "lovelace" }, { - "quantity": 218, + "quantity": 59, "unit": "lovelace" }, { - "quantity": 1, + "quantity": 47, "unit": "lovelace" - } - ], - "metadata": null, - "collateral": [ - { - "id": "02738f4d3460511e1964d11e7b7f5cc8477a282d72778dea3239521f19556a53", - "index": 1 }, { - "id": "5e5b0461555b662a695e4c0082510d587eb466371648195c61117f0d281b501b", - "index": 0 + "quantity": 40, + "unit": "lovelace" }, { - "address": "", - "id": "1e741c122b5d147f0d7e277aca6a43334f7d386cc14d1e6fec0c16154f236236", - "index": 448, - "amount": { - "quantity": 162, - "unit": "lovelace" - }, - "derivation_path": [ - "24624", - "13830", - "26018", - "27196", - "950", - "18316" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "quantity": 138, + "unit": "lovelace" }, { - "id": "678b4b206b1cd1704b65074f0bb55511413f3d537aed616146ea5f722b3d6d44", - "index": 0 + "quantity": 182, + "unit": "lovelace" }, { - "id": "7e672d0d60667506c1585a316d4b13b45745706e073139075955497a381cfd3a", - "index": 1 + "quantity": 212, + "unit": "lovelace" }, { - "address": "", - "id": "603119641f704f711ba61d2f283a5f11696736523e6f0e09f273481a00527f61", - "index": 5587, - "amount": { - "quantity": 192, - "unit": "lovelace" - }, - "derivation_path": [ - "22764", - "19396", - "267", - "24485", - "3027", - "21589" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 38, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 42, + "unit": "lovelace" }, { - "id": "683529c84f2ab3e67b141c056f7b0458081666503171553fc376956c2f598c46", - "index": 0 + "quantity": 221, + "unit": "lovelace" }, { - "id": "4570630939672a40e316634a5c3fef2a340d76065cad2a60657e106e35682512", - "index": 1 + "quantity": 5, + "unit": "lovelace" }, { - "id": "90375d3c2c327a6d7026755704195845324e58754baf69474f6e3f3f7778a458", - "index": 0 + "quantity": 245, + "unit": "lovelace" }, { - "address": "", - "id": "e77b6c716e64353d3e347920384d18011a2d5c0d3a2c78584b29115831693c26", - "index": 14424, - "amount": { - "quantity": 92, - "unit": "lovelace" - }, - "derivation_path": [ - "23031", - "1983", - "27367", - "22281", - "11030", - "29031", - "255", - "6930", - "16530", - "27426", - "30360", - "19059", - "20808", - "19791" - ], - "assets": [] + "quantity": 4, + "unit": "lovelace" }, { - "id": "187e09654073583770775a52358fc81f3d691b3e73182838e06720b74372131d", - "index": 1 + "quantity": 129, + "unit": "lovelace" }, { - "address": "", - "id": "864f5417677cbd5a4e7b712a041eae092d7e42047755fd0d5854460d34549106", - "index": 29808, - "amount": { - "quantity": 11, - "unit": "lovelace" - }, - "derivation_path": [ - "3490", - "29485", - "20806", - "27800", - "15457", - "28221", - "9663", - "15187", - "2107", - "31969", - "5762", - "30980", - "1736", - "1405", - "4188" - ], - "assets": [] + "quantity": 94, + "unit": "lovelace" } ], - "mint": { + "burn": { "tokens": [ { "policy_script": { - "script": { - "all": [ - "policy_vkh1wnvm0egsq4uyujj7sa46nzwc9ytl2mn5v4tt2s3r9qtakvtgsle", - { - "active_from": 100 - } - ] - }, + "script": "policy_vkh1xmz7w9zeuczcqq4zuvncyqx2dxxx29q2c2ppk09h23tcu44ennt", "script_type": "native" }, - "policy_id": "74d9b7e51005784e4a5e876ba989d82917f56e746556b542232817db", + "policy_id": "36c5e71459e6058002a2e3278200ca698c65140ac2821b3cb754578e", "assets": [ { - "fingerprint": "asset1ltwy7l3xauvu2uhhl4jwyd7grgxnus8pgac856", - "asset_name": "546f6b656e52", - "quantity": 895 - }, - { - "fingerprint": "asset1390w2tx0vyss5fgk2z26a3atfwte65a9m90c09", - "asset_name": "546f6b656e4f", - "quantity": 7272 - }, - { - "fingerprint": "asset1rwf8fyqjkadlm3t4x0va53f3tuz5geg4jn7efz", + "fingerprint": "asset1yrws3tgd399tg0jdlj8m5wncvgzd7hkwc4lq0w", "asset_name": "546f6b656e4e", - "quantity": 5474 + "quantity": 6177 }, { - "fingerprint": "asset1x5078k5sghuupx6s3kce0jmw5mmvu9tda9tce4", - "asset_name": "546f6b656e41", - "quantity": 7056 + "fingerprint": "asset1wfku444g6a5wym4j46knfldln7zlceuxdj9xwg", + "asset_name": "546f6b656e50", + "quantity": 3419 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1q8gj69k8d70pjn7j3f2ecgm0lglz6zqj5le85c092675zsq35m3", - { - "active_from": 100 - } - ] - }, + "script": "policy_vkh1njdnvlx8vdv79uwjv8tprnzvvnlaf3l59asmjk8qxnmmvay9n8s", "script_type": "native" }, - "policy_id": "01d12d16c76f9e194fd28a559c236ffa3e2d0812a7f27a61e556bd41", + "policy_id": "9c9b367cc76359e2f1d261d611cc4c64ffd4c7f42f61b958e034f7b6", "assets": [ { - "fingerprint": "asset1qpcy4x28mqy2w6wylvhj45v6n9ukudscgn2rn4", - "asset_name": "546f6b656e47", - "quantity": 7123 - }, - { - "fingerprint": "asset182mhkrlasl6k3scen3queufxsrumhwu8tx3sy7", - "asset_name": "546f6b656e4a", - "quantity": 9654 + "fingerprint": "asset1vrqayrvm5l8060ly2my06a2arm0wp096kx3vrw", + "asset_name": "546f6b656e55", + "quantity": 1547 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "c5d0ec7c7fcfe22803206437e2aa64b2e734387907ef658a9b18cc55", + "policy_id": "779e38887ca498778493041c121d7b445ab018a9a559a6dc52779951", "assets": [ { - "fingerprint": "asset18ermj9dd9edxpfgcvwd5y8mp2fmwq2qw4qch0f", - "asset_name": "546f6b656e4a", - "quantity": 1890 + "fingerprint": "asset17edddapaa0trkm2faj3e4gzpwx34l49dpu5hw0", + "asset_name": "546f6b656e55", + "quantity": 14 }, { - "fingerprint": "asset1aw8z06grjlzd027zvvqhw0ghpqzlk24wdgvvws", - "asset_name": "546f6b656e56", - "quantity": 2337 + "fingerprint": "asset18ufmt6muhvn59mltr27g0xhsx38zkzh0868tyq", + "asset_name": "546f6b656e4b", + "quantity": 209 }, { - "fingerprint": "asset1gvzmyhz8c54wrd7sfgr8r452j20xc3a68rh7q5", - "asset_name": "546f6b656e42", - "quantity": 8538 + "fingerprint": "asset1mkdgzvq9smwa52mtwz3z537rul32fw9a8rqe6r", + "asset_name": "546f6b656e43", + "quantity": 630 } ] }, @@ -12097,55 +11813,172 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "a322153048b4fbafbf5274d7047d020d676def534478de89e77043fa", + "policy_id": "e7f0ac5a4f2309b5d056fd64c7514fbd1f07967f105b01cd213e7548", "assets": [ { - "fingerprint": "asset1f5w4mke77my80lcvxf02nu6nyvn7d8amnz6jhp", - "asset_name": "546f6b656e58", - "quantity": 7972 - }, - { - "fingerprint": "asset1yendq9udhf4hzy362l78fff0u525nywsjmfyg6", - "asset_name": "546f6b656e48", - "quantity": 465 + "fingerprint": "asset1yz3arlhfh3emfxlffj6la97s9rsme7z4q9d743", + "asset_name": "546f6b656e46", + "quantity": 7654 } ] - }, + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vk1rdn9zaqq749hq2j3yqak5csug8c9qht9lqshw8pwrxnr5mjpvajsyq555v" + }, + "fee": { + "quantity": 239, + "unit": "lovelace" + }, + "certificates": [], + "deposits_returned": [ + { + "quantity": 105, + "unit": "lovelace" + }, + { + "quantity": 135, + "unit": "lovelace" + }, + { + "quantity": 243, + "unit": "lovelace" + }, + { + "quantity": 196, + "unit": "lovelace" + }, + { + "quantity": 252, + "unit": "lovelace" + }, + { + "quantity": 117, + "unit": "lovelace" + }, + { + "quantity": 51, + "unit": "lovelace" + }, + { + "quantity": 170, + "unit": "lovelace" + }, + { + "quantity": 136, + "unit": "lovelace" + }, + { + "quantity": 238, + "unit": "lovelace" + }, + { + "quantity": 22, + "unit": "lovelace" + }, + { + "quantity": 164, + "unit": "lovelace" + }, + { + "quantity": 132, + "unit": "lovelace" + }, + { + "quantity": 225, + "unit": "lovelace" + }, + { + "quantity": 31, + "unit": "lovelace" + }, + { + "quantity": 26, + "unit": "lovelace" + }, + { + "quantity": 205, + "unit": "lovelace" + }, + { + "quantity": 112, + "unit": "lovelace" + }, + { + "quantity": 124, + "unit": "lovelace" + }, + { + "quantity": 120, + "unit": "lovelace" + }, + { + "quantity": 31, + "unit": "lovelace" + } + ], + "validity_interval": { + "invalid_hereafter": { + "quantity": 10215435, + "unit": "slot" + }, + "invalid_before": { + "quantity": 9079106, + "unit": "slot" + } + }, + "metadata": { + "30": { + "list": [ + { + "map": [] + }, + { + "list": [ + { + "list": [] + } + ] + } + ] + } + }, + "collateral": [], + "mint": { + "tokens": [ { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1w0nwyp65fujn07pvfqjnwcuq94u2gnaamtfftgxy8vfn6wrfr35", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "54e2a441787aaa96bc27e3780d57316e1812e116cf3be979e3e59647", + "policy_id": "73e6e207544f2537f82c48253763802d78a44fbddad295a0c43b133d", "assets": [ { - "fingerprint": "asset1fhwmll9hd0u47pnvkgpvmqqvwsm08sc5ana2w5", - "asset_name": "546f6b656e4f", - "quantity": 6005 + "fingerprint": "asset16e2hpkdrv40ckcz9ls8w4uka93v9azz0vjm9lk", + "asset_name": "546f6b656e44", + "quantity": 4151 }, { - "fingerprint": "asset1rxl6zfljpsquhh9m7j5zvqfju6vwyn9fuwqm88", - "asset_name": "546f6b656e47", - "quantity": 3825 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "777cd8cf792932a55cb339c8ec671ef6e9a37fa6e2b3c70a290e5982", - "assets": [ + "fingerprint": "asset1yrqjagtjgd7x3824qqs86zmqdgq5qtrqq4dedm", + "asset_name": "546f6b656e51", + "quantity": 703 + }, { - "fingerprint": "asset18xmpyrs6j4z9qyj4u0lwqsxgszrj393209wfvp", - "asset_name": "546f6b656e53", - "quantity": 4495 + "fingerprint": "asset1k6k5ef2m572t0s4v47lexs3m4r7nqqtjrxfxhx", + "asset_name": "546f6b656e5a", + "quantity": 6439 }, { - "fingerprint": "asset1p3cwezs9reagvl4sszmx8m3cct684matdwpa8n", - "asset_name": "546f6b656e52", - "quantity": 4906 + "fingerprint": "asset1f6c26w7u5zl08zkg824rppwgzv8z7crafqrmsm", + "asset_name": "546f6b656e51", + "quantity": 3160 } ] }, @@ -12153,52 +11986,35 @@ "policy_script": { "script": { "all": [ - "policy_vkh1pk7fkc2kkcx052az25mqwgv0m5kf4rcfyznn2fsvejnz2m7em83", + "policy_vkh1c2274jcwxxcklkr0ph6fwkpn7s6y3cz27tplqv4hl4vzugw8vvs", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "0dbc9b6156b60cfa2ba2553607218fdd2c9a8f0920a735260ccca625", + "policy_id": "c295eacb0e31b16fd86f0df4975833f43448e04af2c3f032b7fd582e", "assets": [ { - "fingerprint": "asset1zvr2kx9ten3vwkwe5crxlcryz6zznmszz9ny25", - "asset_name": "546f6b656e4b", - "quantity": 3278 + "fingerprint": "asset1lg8r5zch2ea83a4zch5a8m5weahlvecpfvnhuh", + "asset_name": "546f6b656e55", + "quantity": 5412 }, { - "fingerprint": "asset1r4rxn06k3lckjcffq3sayv2mny9l6wxv6ju962", - "asset_name": "546f6b656e4e", - "quantity": 6380 + "fingerprint": "asset1wms6q70cj08wksjxf5qggplg6kscxset5l3wma", + "asset_name": "546f6b656e50", + "quantity": 1757 }, { - "fingerprint": "asset1rsqqre4qxpy38aunrjfmpe4hy40mpn5f7usxjz", - "asset_name": "546f6b656e55", - "quantity": 4456 + "fingerprint": "asset10j7nnmx30umjvhnqlk9ks9a6jauy6hk65wps5w", + "asset_name": "546f6b656e41", + "quantity": 8954 }, { - "fingerprint": "asset15sekl5lhqy74cq4yq5z96kqr4x6fn7nrqtflmv", - "asset_name": "546f6b656e46", - "quantity": 8335 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "3c941d89150fb1e47101ce442928279f7c98c36621f352bccceb9229", - "assets": [ - { - "fingerprint": "asset1evk2n6yek5zqfl36dzcz9ld45kawja25vyju28", - "asset_name": "546f6b656e4f", - "quantity": 5810 + "fingerprint": "asset1t2dcerq6jlzxagfqzh9netzxwuj7umfly3ma5c", + "asset_name": "546f6b656e45", + "quantity": 287 } ] }, @@ -12206,117 +12022,82 @@ "policy_script": { "script": { "all": [ - "policy_vkh1xeyl4du95ungw07tlgzrs4a88yp7223czh9t7yj5px747h07273", + "policy_vkh1utm9n7qftmz3ttqgvdv9vm5zwmcpcn7wg7zpppcq03e2qfxljmf", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "3649fab785a726873fcbfa043857a73903e52a3815cabf125409bd5f", + "policy_id": "e2f659f8095ec515ac086358566e8276f01c4fce47841087007c72a0", "assets": [ { - "fingerprint": "asset13206amu0gdjynwu4ewm0cphuz9vudaazzru6wx", - "asset_name": "546f6b656e55", - "quantity": 6513 + "fingerprint": "asset1tpreeecvu4w43gwp3vcyllmzl9ndzxycmm8syg", + "asset_name": "546f6b656e47", + "quantity": 848 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1q4g6ygxpp4hh2cd38rhldhfedtzvvrv07acpea07na8gvrhtkuf", - { - "active_from": 100 - } - ] - }, + "script": "policy_vkh1k62ng3ckjvldlpw7paapr68l8jxkwmfz3zl8tmvkehdqy3gg5uy", "script_type": "native" }, - "policy_id": "0551a220c10d6f7561b138eff6dd396ac4c60d8ff7701cf5fe9f4e86", + "policy_id": "b695344716933edf85de0f7a11e8ff3c8d676d2288be75ed96cdda02", "assets": [ { - "fingerprint": "asset1jwxarsxg5nda6zmjw242qnr77jwguqjuyhepvf", - "asset_name": "546f6b656e53", - "quantity": 7550 + "fingerprint": "asset1l4hcdq5vawrrfjek3dqm23uwwgz5azhq7kywxq", + "asset_name": "546f6b656e4d", + "quantity": 4092 }, { - "fingerprint": "asset1ywlwxj2tthak3hku7gf8qkzvzlsevfjvwjw66f", - "asset_name": "546f6b656e54", - "quantity": 8563 + "fingerprint": "asset10eg492tldx9r84z4pfjk2gl5j8t32mne7z42qe", + "asset_name": "546f6b656e5a", + "quantity": 8345 }, { - "fingerprint": "asset1exn6w5v7h87m0300utypf9fntfy5y0tgs5mvdw", - "asset_name": "546f6b656e4c", - "quantity": 1598 + "fingerprint": "asset16hz6hmzr4yrdtr0mqdf4rrt88fzssdq2cazaan", + "asset_name": "546f6b656e49", + "quantity": 8507 }, { - "fingerprint": "asset1gg3np7t6et9spc8u8pcfmpj2gphfzs207pkm5r", - "asset_name": "546f6b656e4b", - "quantity": 2081 + "fingerprint": "asset1mma7lmvttrhe5uyza998mry6njyq3anf7exv86", + "asset_name": "546f6b656e55", + "quantity": 4254 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh15xf3rlmu87jhxjkzeukvzk6caq2h4d6lmf64qjq6qtur7anezqe", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "a19311ff7c3fa5734ac2cf2cc15b58e8157ab75fda7550481a02f83f", + "policy_id": "cc637616745ddded1ccf092a8a8fe20375390e54efd1399ff2385f5b", "assets": [ { - "fingerprint": "asset1etgs252q5fu6etj00wde3rvmdxrldw9w0vefes", - "asset_name": "546f6b656e49", - "quantity": 2297 + "fingerprint": "asset1hepgp680zay7u50etcy6y83g5flcmr40ue4tq6", + "asset_name": "546f6b656e55", + "quantity": 5597 }, { - "fingerprint": "asset1dmxfug73grt6uwuddlvqay6zkklldrrmqr93v4", + "fingerprint": "asset140k9t6aexxem7drs9ckjc8c3mswleu4xsd7x90", "asset_name": "546f6b656e49", - "quantity": 4247 - }, - { - "fingerprint": "asset1lenylzlwz75z24zpv8pgvuqd728tu4tjdrwgy7", - "asset_name": "546f6b656e51", - "quantity": 3333 + "quantity": 6992 } ] }, { "policy_script": { - "script": "policy_vkh1vzdp7hdh3r46hk0ejr20fwhhwgw9lr3gu9gacq80a2f95dtgrjk", - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "609a1f5db788ebabd9f990d4f4baf7721c5f8e28e151dc00efea925a", + "policy_id": "a9ae05b82d0c32aaed5b9bd023c3d4ed536c337a4062c61d83a86dbb", "assets": [ { - "fingerprint": "asset1836q6ksccqnttzawqy33kjlecaawz8q2vycenx", - "asset_name": "546f6b656e4a", - "quantity": 543 - }, - { - "fingerprint": "asset19kzakkz8kx80egjvf0dd6y0p7m8gz722w663hw", - "asset_name": "546f6b656e47", - "quantity": 4722 - }, - { - "fingerprint": "asset14ynetu59ptmmd54n0qam2tn6spmeyj73y84p9q", - "asset_name": "546f6b656e49", - "quantity": 9135 + "fingerprint": "asset16e8p6nuuz09nat8rt9h4ytf9n37yh4f7fc3zxp", + "asset_name": "546f6b656e50", + "quantity": 6724 } ] }, @@ -12324,30 +12105,23 @@ "policy_script": { "script": { "all": [ - "policy_vkh1dn5k7d9vhsfz9gyn7s2gd6smrkm0aw9cz0u7j6gkmhl5swype4v", + "policy_vkh1zlml2ygfldy7wukw7kwy2gyaf39wkavx5jnd7yq808c8qr87xpu", { "active_from": 100 + }, + { + "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "6ce96f34acbc1222a093f41486ea1b1db6feb8b813f9e96916ddff48", + "policy_id": "17f7f51109fb49e772cef59c45209d4c4aeb7586a4a6df100779f070", "assets": [ { - "fingerprint": "asset16fmz4e6h7q2gr7h8p5vwh7af6pdg3gh709d759", - "asset_name": "546f6b656e4f", - "quantity": 368 - }, - { - "fingerprint": "asset17qmur274mgrfsj4yws84r4akq936n3dg5mgsgk", - "asset_name": "546f6b656e49", - "quantity": 7959 - }, - { - "fingerprint": "asset18k4f2esfq4l37peec44sy3rtr3eu6knvtcg4gy", - "asset_name": "546f6b656e4d", - "quantity": 3582 + "fingerprint": "asset1aul6kggh47m77pe2s27c88c8qyuqptknfkzs3n", + "asset_name": "546f6b656e42", + "quantity": 3420 } ] }, @@ -12356,65 +12130,55 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "732a81558b9a0956ae56ef8b44b1d940d0faf378750431cc6db919f3", + "policy_id": "4a6ed83ff4c369d105ba3933219768be03c227386fc4d1113ba1737d", "assets": [ { - "fingerprint": "asset1yyauawe0680f6rfj66zswm8vn9apcg58nwu4zn", - "asset_name": "546f6b656e46", - "quantity": 8718 - }, - { - "fingerprint": "asset1xaq3u3q578e9q05whdej350pmze7rdfmq0udtf", - "asset_name": "546f6b656e52", - "quantity": 465 + "fingerprint": "asset1ta6xy8tczemfjq66lylmvw3ypwkrdy27mmmrce", + "asset_name": "546f6b656e54", + "quantity": 3139 }, { - "fingerprint": "asset1e59qhny0yrlup3muzjnvw3s7rjdhqzvv5kjr4c", - "asset_name": "546f6b656e43", - "quantity": 3874 + "fingerprint": "asset1jjsy83zzyumld7f90gmdvyvfzfz6ycmvthq3q4", + "asset_name": "546f6b656e44", + "quantity": 1152 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh12fhsvcs603m9u3x3ug8xgk478yjeqn6q86wld8h58ut6un33s37", + "script_type": "native" }, - "policy_id": "b18d3d90c7754c7e1b515343a5f85b61ec593c99a90cf1b840f71d9f", + "policy_id": "526f06621a7c765e44d1e20e645abe3925904f403e9df69ef43f17ae", "assets": [ { - "fingerprint": "asset1dzltnk45pkdu8dwhvsag2wjpdtwzwnela0hzuh", - "asset_name": "546f6b656e49", - "quantity": 5612 + "fingerprint": "asset1r4gyugj44tr6f8myqn7hd60g9afhguqrhrev7s", + "asset_name": "546f6b656e44", + "quantity": 2522 }, { - "fingerprint": "asset18w26hepwj6tdj3ny3fkx92npdchrnjqqmu03hy", - "asset_name": "546f6b656e59", - "quantity": 6041 + "fingerprint": "asset16szs6ncgesjm2w3chheh282vf9v6dye9pnekds", + "asset_name": "546f6b656e51", + "quantity": 1513 + }, + { + "fingerprint": "asset162vt5q72jd0rw89rdfu7vquqh3j8sq05hrs5q6", + "asset_name": "546f6b656e51", + "quantity": 2872 } ] }, { "policy_script": { - "script": "policy_vkh1e528t3uee28wv7j7ch6wh3a4r03uqlj4f6syv6tqf50zugt27yp", - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "cd1475c799ca8ee67a5ec5f4ebc7b51be3c07e554ea04669604d1e2e", + "policy_id": "606105269ed078070634dd4913ae4b7f567f41c551fb1ebd97620c06", "assets": [ { - "fingerprint": "asset1dwzfuyn4e90v8zaum79edl9ckhavf0ruzwag52", - "asset_name": "546f6b656e44", - "quantity": 1700 - }, - { - "fingerprint": "asset1e0fq80p23ahwukc59qqptx7qnn2m0lm4726xtr", - "asset_name": "546f6b656e46", - "quantity": 3946 - }, - { - "fingerprint": "asset12wk3n23p7rr7que2fayyr6s7fh9pexmm6nycvc", - "asset_name": "546f6b656e41", - "quantity": 9783 + "fingerprint": "asset1jt2tjehs7skvsj5lyat2aenzek22n4shvsvz4m", + "asset_name": "546f6b656e4d", + "quantity": 5518 } ] }, @@ -12423,72 +12187,50 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "b56eb73a8ed141050d9b5ca0afa8020602eda6542bcbe5c66cfb2262", + "policy_id": "278df0bd6bc2a22f636ddcf736609d4d24961aa57931b537051a5772", "assets": [ { - "fingerprint": "asset1jm7xt2zpw2maav4utcx9fgtzhy74k2k7ljxg8y", + "fingerprint": "asset1y2lu9875mykdlzayuavz8j6cun8xv6freemsfr", "asset_name": "546f6b656e58", - "quantity": 1733 - }, - { - "fingerprint": "asset1r3ueqek49lzvh5txsrhjrsx0628a7e47nyusm5", - "asset_name": "546f6b656e43", - "quantity": 2268 - }, - { - "fingerprint": "asset1jyedhxdseuf56mayctn0q82x7dgasjwq837rf2", - "asset_name": "546f6b656e57", - "quantity": 5056 + "quantity": 2999 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1xcju68aj2jagra59vdwe7lz7aex4wjl9xy38hc5ksvckurtlg2r", - { - "active_from": 100 - } - ] - }, + "script": "policy_vkh1dqn2hmey04acvflhwslt9jxuj0n6l38xhafxgf4r4lmqvl5p86g", "script_type": "native" }, - "policy_id": "3625cd1fb254ba81f685635d9f7c5eee4d574be531227be29683316e", + "policy_id": "6826abef247d7b8627f7743eb2c8dc93e7afc4e6bf526426a3aff606", "assets": [ { - "fingerprint": "asset1ljudmzxzcg7qqqas20qt2gyetwtvgq838k6x9n", - "asset_name": "546f6b656e4f", - "quantity": 3779 - }, - { - "fingerprint": "asset13yf3rg42l5r73cgn3kvschxnxrw5asze22nd8e", + "fingerprint": "asset10k0wmwe4w4f39nk6yqtpxnduqwk3q2d0cdfww8", "asset_name": "546f6b656e59", - "quantity": 2369 - }, - { - "fingerprint": "asset10rsq54zt4cuh2893g5gje7527kcler0370nud8", - "asset_name": "546f6b656e44", - "quantity": 1126 - }, - { - "fingerprint": "asset1tg3w5ad7adkv7hc55lvzer3hdjtqymyuwseddd", - "asset_name": "546f6b656e54", - "quantity": 6085 + "quantity": 3571 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh1crnr2p830vhr22ykaxelt6jkxlzhzlan7xzmactpgzggkt7uq8g", + "script_type": "native" }, - "policy_id": "a6bcb39672ba03e286ea9db18718b8c48455d468400888844008f716", + "policy_id": "c0e63504f17b2e352896e9b3f5ea5637c5717fb3f185bee16140908b", "assets": [ { - "fingerprint": "asset15g24elkjspzlwllcq3jvx8qnsgnjwf4p3nqut6", - "asset_name": "546f6b656e43", - "quantity": 6440 + "fingerprint": "asset1n5k3d0uma5egflfp7rt5t2eh3p6afshag5j7eh", + "asset_name": "546f6b656e46", + "quantity": 6068 + }, + { + "fingerprint": "asset1kzk4qxygqya5jclhtzawhtukwuw0rka5n83rgy", + "asset_name": "546f6b656e48", + "quantity": 422 + }, + { + "fingerprint": "asset1zlkkq9t292se5c37h3apzl8thlka7pd362sq27", + "asset_name": "546f6b656e42", + "quantity": 8210 } ] }, @@ -12496,7 +12238,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh104e4n42euk7whljg8vnayef5ge5ahvungpw4rycwrmd8vpkxuzw", + "policy_vkh1ch8lp33fjmfwcl7jf042fyl04g97ynqze9nd8kkg8apak6k6n3d", { "active_from": 100 } @@ -12504,12 +12246,12 @@ }, "script_type": "native" }, - "policy_id": "7d7359d559e5bcebfe483b27d265344669dbb393405d51930e1eda76", + "policy_id": "c5cff0c62996d2ec7fd24beaa493efaa0be24c02c966d3dac83f43db", "assets": [ { - "fingerprint": "asset13nw2xpqyxyyyguafh75tvr0j3530l5dvrpzu45", + "fingerprint": "asset1q73g9lku8xggm9mpj8n99c0vdz8wdn57ehmny3", "asset_name": "546f6b656e56", - "quantity": 4447 + "quantity": 6897 } ] }, @@ -12518,12 +12260,17 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "5aaaf598de5f6e05b390dd25b0f4d31e56d2f0825dbe01b924ddd3ca", + "policy_id": "4766853d9394fc013008ea00f8e536d96cc4f6382f9fd54170e5b178", "assets": [ { - "fingerprint": "asset12ljspdjnlcspl894g9ljqrxdd4gxgay5vd9857", - "asset_name": "546f6b656e49", - "quantity": 5183 + "fingerprint": "asset1fq72jlhv33rs7k656ka2el59wla7f849cmx45k", + "asset_name": "546f6b656e41", + "quantity": 8956 + }, + { + "fingerprint": "asset1rrrdg25hq4hsk58d8kwc38tekdtkds0a8mkh8t", + "asset_name": "546f6b656e57", + "quantity": 2724 } ] }, @@ -12531,7 +12278,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh16ddyj6avap54gn3zzsfa6zs6tud8kxv4xgxfdrjsfcqpxx6ydtr", + "policy_vkh1lcr694m6h3ua2nqm0slf3s9k4hc7f8dj2mc82k06ntrm6clut2k", { "active_from": 100 }, @@ -12542,106 +12289,72 @@ }, "script_type": "native" }, - "policy_id": "d35a496bace869544e221413dd0a1a5f1a7b1995320c968e504e0013", - "assets": [ - { - "fingerprint": "asset1dkjt9qfqr02uwtp049y8u69m0n7cmg9xe39gkh", - "asset_name": "546f6b656e45", - "quantity": 6898 - }, - { - "fingerprint": "asset15fa4z8x7ex2jdnv8kva6je9dewswn0xdhp0rt0", - "asset_name": "546f6b656e48", - "quantity": 8725 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "22cfade0c1556352b6b909a55d4e0c75b709813d86dbfdb4c638fe4b", + "policy_id": "fe07a2d77abc79d54c1b7c3e98c0b6adf1e49db256f07559fa9ac7bd", "assets": [ { - "fingerprint": "asset10wkfd8aaxhh03wszrk0f04yy29z4ldw3ypk3ll", - "asset_name": "546f6b656e53", - "quantity": 7857 + "fingerprint": "asset15mz24xdhv5f7kr3vka7l7my88qakz4m7hnnfzd", + "asset_name": "546f6b656e56", + "quantity": 2216 }, { - "fingerprint": "asset13t9edhtg8zsenf09j9fxelpmkvfdvnevk93l90", - "asset_name": "546f6b656e5a", - "quantity": 1550 + "fingerprint": "asset18r7cpj2ct2t9ttu8q29ynwyz24ghp4lgcr6hxy", + "asset_name": "546f6b656e59", + "quantity": 5124 }, { - "fingerprint": "asset1y7fpq7kp7qwr65zqjrtlltc4jhq0fd6a7e0usx", - "asset_name": "546f6b656e52", - "quantity": 4274 + "fingerprint": "asset1jw2edxwh6pxgm6fh6rp2zcy95d4xgut6trx4vx", + "asset_name": "546f6b656e45", + "quantity": 8860 }, { - "fingerprint": "asset1r8r2cnekwmrw0steahfml8ennvs5su04k0czd5", - "asset_name": "546f6b656e46", - "quantity": 1466 + "fingerprint": "asset1ws6ckj0r0djjn9gqadxz8ppheelz5m40hj8jeq", + "asset_name": "546f6b656e5a", + "quantity": 4851 } ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh19qd8zpn8tuwhggr9dyhyuh3ktac3k5fxr59hjanh34nzzcjvevq" - } - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 114, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 108, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 10, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 171, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 181, - "unit": "lovelace" }, - "stake_address": "" - }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "9b1cca20aae5f154871e82c1a23c467c5f2a19d0202673bd1c22b491", + "assets": [ + { + "fingerprint": "asset13uryudvvvzp0g80xsjls4aztgcrage9z4qdlje", + "asset_name": "546f6b656e45", + "quantity": 5000 + }, + { + "fingerprint": "asset1p9r4zfc3uv9qxt4zn59yc5h2wrcmcla5svjpkq", + "asset_name": "546f6b656e41", + "quantity": 1555 + }, + { + "fingerprint": "asset1nq25e44e9kj5gecgq2ghzyh4fdmj27gn85a323", + "asset_name": "546f6b656e4b", + "quantity": 6528 + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh18f2ss7jsqc3pztzqx3an23rhpw87k3qa7v3s29f6rcsycmmupag" + } + }, + { + "withdrawals": [ { "context": "ours", "amount": { - "quantity": 62, + "quantity": 12, "unit": "lovelace" }, "stake_address": "" }, { - "context": "ours", "amount": { - "quantity": 174, + "quantity": 130, "unit": "lovelace" }, "stake_address": "" @@ -12650,1462 +12363,1083 @@ "inputs": [ { "address": "", - "id": "75696b6679514c2d4d1cb67dae6b43542f0e222605cc6574120746d8332f033d", - "index": 29092, - "amount": { - "quantity": 69, - "unit": "lovelace" - }, - "derivation_path": [ - "17727", - "3542", - "9060", - "28106", - "1866", - "29703", - "29993", - "29808", - "4855", - "20997", - "18948", - "24822", - "6338", - "6257", - "3830", - "10190" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "id": "7840e56059673b3c0d5616ae61302b4a5d7c0353566d75416c1740654a695789", - "index": 0 - }, - { - "id": "2217f83f394e513d601d2503217d431c37001069783e1a60606c337312002971", - "index": 0 - }, - { - "id": "4223760f4d4361510d160cd275e63d763021a16d477e6f59555039360614517f", - "index": 1 - }, - { - "address": "", - "id": "150c539fab75a6132f7dff44a844e57b1d182206020c510b52a45e454a637643", - "index": 13536, - "amount": { - "quantity": 187, - "unit": "lovelace" - }, - "derivation_path": [ - "855", - "10879", - "6807", - "29711", - "6109" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "id": "98210efd1a094565633e75555f552ba30a5806f61b1e24657c564137e6181671", - "index": 1 - }, - { - "address": "", - "id": "6d351f4a2e3e510f3f4c49282726582e3836440d10304c2b596b482458143d3b", - "index": 28065, - "amount": { - "quantity": 187, - "unit": "lovelace" - }, - "derivation_path": [ - "11462", - "23847", - "27220", - "16604", - "15178", - "18735", - "16629", - "26079", - "32761", - "27322", - "27977", - "24843", - "17831", - "7959", - "19641", - "29227", - "26422", - "17563", - "10395", - "13086", - "27589", - "22826", - "31285", - "13991" - ], - "assets": [] - }, - { - "address": "", - "id": "6c765d372c6e461b2e676b4b505d7e7f7314bc722d520d15667964581e072816", - "index": 22955, - "amount": { - "quantity": 149, - "unit": "lovelace" - }, - "derivation_path": [ - "20302", - "20855", - "19007", - "9514", - "20372", - "13192", - "25278", - "6406", - "20402" - ], - "assets": [] - }, - { - "id": "576b3a71405e6d5e223f0d67117e5b3c0b7f90474a73853a0d8f184e6368246a", - "index": 1 - }, - { - "id": "033c74d403604431771f19127c591264051c9b5b45477a03686170325c0f6134", - "index": 1 - }, - { - "address": "", - "id": "703d21789b43734556190bf3580a174f0207353b4721b62dbf2ad850000609df", - "index": 24935, - "amount": { - "quantity": 125, - "unit": "lovelace" - }, - "derivation_path": [ - "15221", - "1069", - "22267", - "18203", - "5848", - "15246", - "11385", - "14480", - "9611", - "12143", - "337", - "740", - "12824", - "24320", - "14319", - "26309", - "14924", - "6785", - "25825", - "30880", - "23874", - "10895", - "9078", - "28181" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 33, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "id": "e916824854a3037c4f282d017d33373ad0701f0c69293c7ff206706649c33360", - "index": 22364, + "id": "4d1a170b03500e2838497c473e3053235d2e5f349f015b4e0d371a7cc926587b", + "index": 11644, "amount": { - "quantity": 140, + "quantity": 6, "unit": "lovelace" }, "derivation_path": [ - "19410", - "18179", - "2446", - "8012", - "790", - "31789", - "26084", - "23481" + "22484", + "21911", + "1700", + "21514", + "8699", + "12496", + "28400", + "30285", + "27084", + "10933", + "29057", + "28411", + "26501", + "3888", + "5348", + "9942", + "159", + "13136", + "1363", + "6656", + "23760", + "23844" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 35, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] - }, - { - "id": "784bfa515089a532b956587db73c0b19342b1b2aba482f3a4a4788695f5fe1f7", - "index": 0 - }, - { - "address": "", - "id": "7837753b4a13282449475074494d803e5a45f168146f6e1f258e113d6d1dae9e", - "index": 30500, - "amount": { - "quantity": 114, - "unit": "lovelace" - }, - "derivation_path": [ - "4357", - "28760", - "21529", - "1650" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "id": "33103d105d2049165d525e3912730a331541736a0505644131696ef954d4527e", - "index": 1 - }, - { - "id": "6353064d0736177fe766008c52416e530696547124153270316664321a1db909", - "index": 0 - } - ], - "collateral_outputs": [], - "outputs": [ - { - "address": "", - "amount": { - "quantity": 183, - "unit": "lovelace" - }, - "assets": [] + ] + }, + { + "id": "0a3a610a50486a02371e1c2906621e02bd551a247574261c0672666d42491d40", + "index": 0 }, { "address": "", + "id": "067d690af31b26d98a3e6c1358551511210252137d5f28575667486f25b15f69", + "index": 18314, "amount": { - "quantity": 64, + "quantity": 39, "unit": "lovelace" }, + "derivation_path": [ + "6892", + "21933", + "24894", + "11244", + "16849", + "32300", + "29331", + "28297", + "29312", + "29726", + "32744", + "25675", + "24750", + "17378", + "17476", + "16342", + "7101", + "25382", + "6675", + "5055", + "25056", + "2123", + "22877" + ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 5, + "asset_name": "546f6b656e41", + "quantity": 21, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 8, + "quantity": 7, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 27, + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e45", "quantity": 10, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, + "asset_name": "546f6b656e43", + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 5, + "asset_name": "546f6b656e44", + "quantity": 28, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "address": "", - "amount": { - "quantity": 78, - "unit": "lovelace" - }, - "assets": [] + "id": "150c624041607e083f3478a576298c687d2534c3895f052529217011db582d19", + "index": 1 + }, + { + "id": "19452c6b25a0530308546300e12f5e24227140730c19390a4f4e6d74c6015a60", + "index": 1 + }, + { + "id": "2a7f6d4f296845542d3a045116714905703f6e256975385534341620643d2322", + "index": 1 }, { "address": "", + "id": "18612e66632078280f295f5f665732191d67324e6bc20f4146592b2670463447", + "index": 30292, "amount": { - "quantity": 140, + "quantity": 58, "unit": "lovelace" }, "derivation_path": [ - "32625", - "29806", - "16023", - "27899", - "12223", - "5905", - "18848", - "10100", - "4932", - "23586", - "28638", - "10965", - "12299", - "4935", - "1605", - "1953", - "2280", - "22204", - "30469", - "28987", - "18715", - "24410" + "21005", + "24071", + "5851", + "32567", + "18653", + "18686", + "5286", + "22587", + "12837", + "7757", + "29556", + "19499", + "24316", + "19170", + "20135", + "27883", + "12759", + "21920", + "3859", + "12947", + "13045", + "3838", + "29287", + "16561", + "3007", + "22643", + "1361", + "21326", + "11928", + "17205" ], "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e41", - "quantity": 24, + "quantity": 52, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 22, + "asset_name": "546f6b656e42", + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 17, + "quantity": 24, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 9, + "quantity": 21, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 57, - "unit": "lovelace" - }, - "derivation_path": [ - "3049", - "9232", - "24486", - "22484", - "3563", - "30021", - "28736", - "15086", - "1355", - "450", - "64", - "9833", - "9361", - "22475", - "27862", - "5363", - "11999", - "20000", - "3936", - "11363", - "25753" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 105, - "unit": "lovelace" - }, - "derivation_path": [ - "29223", - "3216", - "22193", - "23854", - "23087", - "6412" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "derivation_path": [ - "29762", - "19888", - "23573", - "7611", - "595", - "19256", - "3646", - "2277", - "21556", - "22970", - "5144", - "30409", - "20711", - "17678", - "15546", - "4045", - "10131", - "10021", - "10024", - "30657", - "29753", - "19275", - "13318", - "12362", - "29520", - "8381", - "27001", - "3311", - "822", - "30549" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 42, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 30, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 21, + "asset_name": "546f6b656e44", + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "address": "", - "amount": { - "quantity": 84, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 177, - "unit": "lovelace" - }, - "derivation_path": [ - "2725", - "9999", - "18184", - "15393", - "2627", - "1077", - "23644", - "5611", - "21496", - "3388", - "7333", - "7437", - "31418", - "30152", - "7827", - "13201", - "19736", - "12869", - "22349", - "25943", - "7763", - "18405", - "22726", - "3876", - "9236" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "id": "8b1fab0870043126100d5560454736604089345e4d6a0b30776a4a3f407d2f68", + "index": 1 }, { "address": "", + "id": "084f7e07124ab36116087f6d596830773332201d47f85810167d14435f6a4c58", + "index": 22004, "amount": { - "quantity": 96, + "quantity": 39, "unit": "lovelace" }, "derivation_path": [ - "14353", - "15313", - "6639", - "2285", - "2380", - "6311", - "15656", - "1771", - "3323", - "8834", - "25671", - "29003", - "12707", - "18701", - "31474", - "20528", - "6641", - "31901", - "2440", - "29913", - "16133", - "26936", - "28451", - "5201", - "8655", - "19488", - "15861", - "6761", - "9274", - "16647", - "21784" + "20550", + "28073", + "20953", + "16043", + "13173", + "4899", + "20879", + "17018", + "21037", + "21619" ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, + "quantity": 30, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 39, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, + "quantity": 14, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 39, + "asset_name": "546f6b656e41", + "quantity": 21, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 27, + "quantity": 15, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 28, + "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "5032d014d45058305356e97646423f752f0f353523710a04122d7c4c5a204d4c", + "index": 1665, "amount": { - "quantity": 10, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 214, + "quantity": 156, "unit": "lovelace" }, "derivation_path": [ - "9895", - "7089", - "31292", - "27990", - "29745", - "26427", - "25205" + "17883", + "19417" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 181, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", "quantity": 14, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 34, + "quantity": 52, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 8, + "asset_name": "546f6b656e43", + "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 26, + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "4e304445193443140839081e453e177bd40410e0ea0fc26e522fbf5bb1466034", + "index": 9752, "amount": { - "quantity": 36, + "quantity": 152, "unit": "lovelace" }, "derivation_path": [ - "29874", - "8812", - "11110", - "22265", - "32120", - "15935", - "20554", - "14169", - "2601", - "7024", - "8146", - "14637", - "12721", - "5332", - "20954", - "28067", - "6473", - "25253", - "32654", - "698", - "24840", - "5145", - "29253", - "21713", - "29839", - "26402", - "28909", - "15972", - "6862", - "1230", - "29872" + "1969", + "20012", + "30865", + "25991", + "460", + "32356", + "8292", + "3923", + "31532", + "14640", + "15115", + "19805" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 12, + "quantity": 14, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 42, + "quantity": 1, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 20, + "quantity": 15, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 51, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e41", - "quantity": 19, + "asset_name": "546f6b656e43", + "quantity": 50, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "79746f023b17547f30d0550e433040187e43b41135640648d0417f2b628f423d", + "index": 1 + }, + { + "id": "30fc3c7d620b672d024a7b42753e4827311b5b33765d0afa3d5210d8657a41f3", + "index": 1 + }, + { + "id": "6da82d2504935105271b027040557e380aff0d51ce3b4a752780676a472d1b6b", + "index": 0 + }, + { + "id": "04371e6c7eb4ce76e03a53179c746c0229413c532c1d17706f52431319330c6a", + "index": 0 + }, + { + "address": "", + "id": "411e264635526f32c4f51f382f2036ac2d3c78a65973183950f361b328194e3c", + "index": 10863, + "amount": { + "quantity": 58, + "unit": "lovelace" + }, + "derivation_path": [ + "27031", + "17925", + "30931", + "27727", + "7711", + "31475" + ], + "assets": [] + }, + { + "address": "", + "id": "d9572b2c3a59084f6e0f350bd17d5d4c4e5e03584c2e55055d63210f15577672", + "index": 11947, + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "derivation_path": [ + "29481", + "2642", + "15068", + "29486", + "14470", + "3554", + "21238", + "29538", + "484", + "8206", + "2033", + "21623", + "6793", + "11985", + "9927", + "2910", + "31176", + "7175", + "5394", + "25729" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, { "address": "", + "id": "026b04341d11276741ec682b1e613e2fd179252749293f6b740b3c5a327f676b", + "index": 30373, "amount": { - "quantity": 242, + "quantity": 101, "unit": "lovelace" }, "derivation_path": [ - "15378", - "12603", - "16328", - "4535", - "2762", - "4027", - "7181", - "15669", - "18093", - "30809", - "13484", - "23351", - "5931", - "13531", - "22881", - "22346", - "10567", - "19304", - "28926", - "23265", - "18369", - "13216", - "7285" + "5698", + "26182", + "25741", + "12507", + "5203", + "10276", + "9871", + "21399", + "19810", + "20035", + "21617", + "2141", + "29850", + "10385", + "26023" ], "assets": [] }, { "address": "", + "id": "5360694e2a62ff24095f2762731bd05f2e004b1d2122036a114228344f211767", + "index": 3045, "amount": { - "quantity": 184, + "quantity": 27, "unit": "lovelace" }, "derivation_path": [ - "30292", - "22284", - "11442", - "11585", - "17383", - "9819", - "20452", - "14939", - "29187", - "23541", - "28428", - "9100", - "30314", - "17460", - "26642", - "489", - "1841", - "12577", - "755", - "6875", - "30941" + "19272", + "21565", + "17217", + "23904", + "19444", + "5951", + "13922", + "28637", + "4070", + "17385", + "28755", + "4648", + "12432", + "27703", + "2025", + "14705", + "10573", + "19980", + "15964", + "25059", + "20739", + "19779", + "14109", + "25837", + "19220", + "11914", + "25872" ], "assets": [] }, + { + "id": "2c564a2b516169414367125244267d1ba401462c7b2651cb5b2527333f750818", + "index": 0 + }, { "address": "", + "id": "0b6e7b32dc5f640909693c1f676d3b5b1167657a48596e1a201329585559f13a", + "index": 7906, "amount": { - "quantity": 162, + "quantity": 78, "unit": "lovelace" }, + "derivation_path": [ + "23286", + "28256", + "11168", + "21332", + "9559", + "7149" + ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, + "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", + "id": "3430246f587a7b56ad3d045463426282403241123ffc332c7b1b4469257b7d24", + "index": 13859, "amount": { - "quantity": 207, + "quantity": 241, "unit": "lovelace" }, + "derivation_path": [ + "30754", + "26261", + "3374", + "27363", + "21746", + "943", + "13684", + "4601", + "9195", + "16740", + "6653", + "13907", + "22098" + ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, + "quantity": 10, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 56, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "373d21a00c54326c1fb23f2c574caf0d6c2b49571f6b231a1473f53226d81168", + "index": 25646, "amount": { - "quantity": 102, + "quantity": 190, "unit": "lovelace" }, "derivation_path": [ - "9451", - "2555", - "16473", - "30235", - "5652", - "19547", - "29868", - "27187" + "20321", + "13579", + "3507", + "14696", + "16005", + "13500", + "16738", + "21089", + "29390", + "15384", + "1700", + "16137", + "4821" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 32, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 35, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, + { + "id": "6c511d06544d147427ba4c13623055331d6620d57e7060026a2c55f51ef99311", + "index": 0 + }, { "address": "", + "id": "6962601fad1b4c1d1b76431b7add33146880096664024efb4937550a29672b6f", + "index": 23695, "amount": { - "quantity": 18, + "quantity": 224, "unit": "lovelace" }, "derivation_path": [ - "26850", - "19087", - "30438", - "7233", - "22680", - "3639", - "30392", - "3574", - "20690", - "26847", - "31567", - "8676", - "23247", - "28721", - "7017", - "13523", - "148", - "29096", - "19702", - "15640", - "15086", - "9252" + "20835", + "31763", + "24031", + "7034", + "12049", + "16619", + "13505", + "31305", + "7421", + "12620", + "1936", + "22683", + "22785", + "14514" ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 15, + "asset_name": "546f6b656e42", + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 30, + "asset_name": "546f6b656e43", + "quantity": 27, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 25, + "quantity": 14, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 20, + "quantity": 61, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 14, + "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 24, + "quantity": 18, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 11, + "asset_name": "546f6b656e44", + "quantity": 22, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "9309c45a757551094c4566ad2370356569395a561f676d73244d4d61493d3d08", + "index": 1 + }, + { + "id": "1c7e006d6f613d2e11c64c22360c704176571953732e28455e73045b256e3331", + "index": 1 + }, { "address": "", + "id": "208e6f783411143f6767089a2d0f356d64557f5158731d45d1895f42a8322f26", + "index": 25679, "amount": { - "quantity": 70, + "quantity": 212, "unit": "lovelace" }, + "derivation_path": [ + "31461", + "7324", + "135", + "15678", + "12360", + "28661", + "15869", + "3546", + "22581", + "1864", + "27086", + "23916", + "24364", + "8809", + "15744", + "1622", + "28386", + "16621", + "16077", + "17110", + "24351", + "13093", + "7437", + "3080", + "9825", + "18672", + "12650" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 93, + "asset_name": "546f6b656e43", + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 27, + "asset_name": "546f6b656e44", + "quantity": 26, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e41", - "quantity": 9, + "quantity": 29, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 27, + "quantity": 17, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "quantity": 30, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 6, + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 30, + "asset_name": "546f6b656e44", + "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 21, + "quantity": 5, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "1a7727fa5a8b7e3d6e145c0f00714000216b42422622074537627c1b54581d0b", + "index": 1 + }, { "address": "", + "id": "25cc237b66383f0a545a3577174187723d32431536693a0e265da548435646fd", + "index": 11884, "amount": { - "quantity": 244, + "quantity": 239, "unit": "lovelace" }, + "derivation_path": [ + "12082", + "9233", + "15749", + "31095", + "9761", + "265", + "13719", + "6804", + "10897", + "17965", + "10628", + "16350", + "22544", + "18358", + "27746", + "8142" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + ], + "collateral_outputs": [], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 233, + "unit": "lovelace" + }, + "derivation_path": [ + "4747", + "20620", + "30683", + "9026", + "20730", + "13398", + "31200", + "25011", + "24494", + "6308", + "25096", + "14770", + "31335", + "1635", + "18590", + "7439", + "12764", + "10196", + "8324" + ], + "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 11, + "asset_name": "546f6b656e41", + "quantity": 17, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", "amount": { - "quantity": 251, + "quantity": 114, "unit": "lovelace" }, + "derivation_path": [ + "20983", + "5389", + "655", + "30306", + "30446", + "29931", + "30729", + "26854", + "8705" + ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "derivation_path": [ + "20296", + "2826", + "26144", + "3919", + "15830", + "30913", + "26869", + "25884", + "20736", + "4029", + "4824", + "26838", + "5866", + "9787", + "26572", + "12193", + "7664", + "10634", + "3098", + "4437", + "26427", + "7914", + "6824", + "11322", + "31005", + "28644", + "5436", + "20362", + "12760", + "6432", + "3454" + ], + "assets": [ { "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, + "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, + } + ] + }, + { + "address": "", + "amount": { + "quantity": 54, + "unit": "lovelace" + }, + "assets": [ { "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 39, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", "amount": { - "quantity": 228, + "quantity": 190, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "address": "", "amount": { - "quantity": 92, + "quantity": 246, "unit": "lovelace" }, - "derivation_path": [ - "6955", - "1149", - "20146", - "1975", - "26507", - "27678", - "27882", - "20827", - "13585", - "1188", - "32209", - "656", - "16900", - "5591", - "1679", - "26255", - "8248", - "13122", - "18951", - "31679", - "19746", - "16338", - "31149", - "3093", - "700", - "9529", - "16257", - "21456", - "2723", - "30843", - "5780" - ], "assets": [ { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 46, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] } ], "script_validity": "invalid", - "id": "764903137e711a7e31003f9c16393a521a2865e52145456c4767644994df6f25", + "id": "5cb80e0c72294e185c0c6cb6972c3a0d0269553fabdf3272874e5ba43b593a60", "deposits_taken": [ { - "quantity": 0, + "quantity": 198, + "unit": "lovelace" + }, + { + "quantity": 187, + "unit": "lovelace" + }, + { + "quantity": 172, + "unit": "lovelace" + }, + { + "quantity": 186, + "unit": "lovelace" + }, + { + "quantity": 150, + "unit": "lovelace" + }, + { + "quantity": 8, + "unit": "lovelace" + }, + { + "quantity": 224, "unit": "lovelace" }, { - "quantity": 241, + "quantity": 87, "unit": "lovelace" }, { - "quantity": 72, + "quantity": 152, "unit": "lovelace" }, { - "quantity": 225, + "quantity": 146, "unit": "lovelace" }, { - "quantity": 39, + "quantity": 230, "unit": "lovelace" }, { - "quantity": 232, + "quantity": 139, "unit": "lovelace" }, { - "quantity": 251, + "quantity": 200, "unit": "lovelace" }, { - "quantity": 220, + "quantity": 85, "unit": "lovelace" }, { - "quantity": 98, + "quantity": 209, "unit": "lovelace" }, { - "quantity": 55, + "quantity": 236, "unit": "lovelace" }, { - "quantity": 40, + "quantity": 52, "unit": "lovelace" } ], @@ -14113,73 +13447,39 @@ "tokens": [ { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh1vf93jd474yp3wwlana0qcmay8j3vj2376n6sqn000vkr5njur2k", + "script_type": "native" }, - "policy_id": "208a775ae4d2e5b809d2dd70a1513e66b9610a87d64f4d4a6e9897f8", + "policy_id": "624b1936bea903173bfd9f5e0c6fa43ca2c92a3ed4f5004def7b2c3a", "assets": [ { - "fingerprint": "asset1f9ylu32qt79t3778tnndz3xcshjv6w3fczckay", - "asset_name": "546f6b656e4f", - "quantity": 1642 - }, - { - "fingerprint": "asset1nah4rvvy6c7ctk9l59prrvh8z8krlpvydgsd80", + "fingerprint": "asset1mfsh72zzw6w7xmyzkete4h2t82tc8g6h482asp", "asset_name": "546f6b656e43", - "quantity": 8134 - }, - { - "fingerprint": "asset1e8w4l7nangcpy2wwm40nqzdcqwnhsnrnlz3568", - "asset_name": "546f6b656e44", - "quantity": 4051 + "quantity": 5202 }, { - "fingerprint": "asset1vzn63pekeww6u7aqpkpqck7lg2l56vqeu9qn27", - "asset_name": "546f6b656e53", - "quantity": 6035 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "d6fce3e30ae526febe0cb16d0c02a9b1e5a0c7159d4784c307054ec0", - "assets": [ - { - "fingerprint": "asset1dcydwvuys05myhwdzx5pza5mqmk7kpv8tnqk7a", - "asset_name": "546f6b656e58", - "quantity": 3155 + "fingerprint": "asset1y8musjpjw0dlpm73dxdprkynar7v4n5kyd3atp", + "asset_name": "546f6b656e51", + "quantity": 3456 } ] }, { "policy_script": { - "script": "policy_vkh1dn50ajaj2nhtp9k0ken9etzhuxzqkjtkj8pgfc30c0cfymz095f", + "script": "policy_vkh1kw4nptray84p0p927dx0sv2cz6k5d7ckqwp78m3whtrtxpqn9uf", "script_type": "native" }, - "policy_id": "6ce8fecbb254eeb096cfb6665cac57e1840b497691c284e22fc3f092", + "policy_id": "b3ab30ac7d21ea1784aaf34cf8315816ad46fb160383e3ee2ebac6b3", "assets": [ { - "fingerprint": "asset12gqp8rkyaa2zsu0wnsaxcsg0m6mepf9uwqwqw0", - "asset_name": "546f6b656e46", - "quantity": 5983 - }, - { - "fingerprint": "asset1ydhvsmda7053sa7gqhrd8fx0fe53jpm6jzdwv5", - "asset_name": "546f6b656e42", - "quantity": 5236 - }, - { - "fingerprint": "asset1rczffz7uynqypheatq97yn97z5xyfmp35xjh38", - "asset_name": "546f6b656e44", - "quantity": 6755 + "fingerprint": "asset1w0nl9rqs9qhyk0lwglcxa2dt2u9vkt05654whz", + "asset_name": "546f6b656e45", + "quantity": 5355 }, { - "fingerprint": "asset12cjge2necc7c00fk6lylxmcmx52l2kv5w0522c", - "asset_name": "546f6b656e47", - "quantity": 1828 + "fingerprint": "asset1vcq4kyrjjncjtzsaequmv9q4z8ag02mfw3vsn2", + "asset_name": "546f6b656e57", + "quantity": 3498 } ] }, @@ -14187,7 +13487,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh14xphyhwdgkwatf3uffj45l90rfzugtkd3ehx6g8964ndgm3x689", + "policy_vkh16nse6ujpuwl5ycndjpv0dt8ahkldqfcnt7vhhk6udjjjjs4q0qw", { "active_from": 100 }, @@ -14198,93 +13498,115 @@ }, "script_type": "native" }, - "policy_id": "a983725dcd459dd5a63c4a655a7caf1a45c42ecd8e6e6d20e5d566d4", + "policy_id": "d4e19d7241e3bf42626d9058f6acfdbdbed027135f997bdb5c6ca529", "assets": [ { - "fingerprint": "asset1xq7h977ts38jf76q5gpjkl02w6dyrt8gr5crws", - "asset_name": "546f6b656e52", - "quantity": 5179 + "fingerprint": "asset1wkagcyzegffg9kxt3qdjty9mdqdfhnktddezc9", + "asset_name": "546f6b656e41", + "quantity": 8351 + }, + { + "fingerprint": "asset14gcsuesw0vld605hnqxahae50tqw57frp6d2cu", + "asset_name": "546f6b656e58", + "quantity": 1069 + }, + { + "fingerprint": "asset12tchfxwtuf0pg050y7cpsjezemu5j23cct8ucf", + "asset_name": "546f6b656e53", + "quantity": 577 + }, + { + "fingerprint": "asset1u38r3zvq5wtqxkmrl92glqapy0kwva9mm2cde6", + "asset_name": "546f6b656e53", + "quantity": 1440 } ] }, { "policy_script": { - "script": "policy_vkh1msqtpf7mljhq5z2rwtpxx5fp0wfyxt4xgtkmqph0n6p8ghmr6xv", + "script": "policy_vkh18sjt8uqtgxa590t8ad8chk7qzkakxaqzn7zhv6xe2x4njxzg87y", "script_type": "native" }, - "policy_id": "dc00b0a7dbfcae0a094372c26351217b92432ea642edb006ef9e8274", + "policy_id": "3c24b3f00b41bb42bd67eb4f8bdbc015bb6374029f857668d951ab39", "assets": [ { - "fingerprint": "asset1lha0muuz92acr7cjng295ace7nrrqed6qp7adn", - "asset_name": "546f6b656e46", - "quantity": 1566 + "fingerprint": "asset18gpszftzt9dguu0c87p835udksdmyyh36pjnd2", + "asset_name": "546f6b656e4a", + "quantity": 9451 } ] }, { "policy_script": { - "script": "policy_vkh1p0n2yvaunu0gll83wppv2464uqawfycddh3lkz8z0l3tx58057p", + "script": { + "all": [ + "policy_vkh17ur4syu7whkws0h5u2agyq64sst07f58nl9gpx42apfwz8dstvx", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, "script_type": "native" }, - "policy_id": "0be6a233bc9f1e8ffcf17042c55755e03ae4930d6de3fb08e27fe2b3", + "policy_id": "f70758139e75ece83ef4e2ba8203558416ff26879fca809aaae852e1", "assets": [ { - "fingerprint": "asset1jwan8avg8gleq582etenp5h5tuxeypu5ks6fnr", - "asset_name": "546f6b656e4c", - "quantity": 6912 - }, - { - "fingerprint": "asset19kj8fddx5q4uxfepllqp4a5dd4wfksxykxfwft", - "asset_name": "546f6b656e42", - "quantity": 3472 - }, - { - "fingerprint": "asset1yyh2nn8cxnwsa0c9ue4k2q58ms7vzhq9stjt8p", - "asset_name": "546f6b656e43", - "quantity": 6668 + "fingerprint": "asset155gvfuc9af4wly7n2qkh39v9v9q6wcxu666sl7", + "asset_name": "546f6b656e57", + "quantity": 6362 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1wrgf0pwhtlvdpvk938r945wgpac6s8c04nff2lpd387ky0hxt5e", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "a42a283bff19712a334a0cb41fb1561e60c29bf85dd914e174b0bb95", + "policy_id": "70d09785d75fd8d0b2c589c65ad1c80f71a81f0facd2957c2d89fd62", "assets": [ { - "fingerprint": "asset1v5y8nkvert6zhcd5xhfhfmvrv0r06wa5n52htn", - "asset_name": "546f6b656e58", - "quantity": 2760 + "fingerprint": "asset10edsvggqu4j500zv82dzrnk5c7rsxtyfxxz86k", + "asset_name": "546f6b656e4b", + "quantity": 3068 }, { - "fingerprint": "asset1a5c0fcvpd22tmx67gm99rq7urgrhr28pegaruk", - "asset_name": "546f6b656e4e", - "quantity": 1319 + "fingerprint": "asset1u8vj97x9zsf5qlh7w4slpdx2shmuzvav2d0mtm", + "asset_name": "546f6b656e48", + "quantity": 1981 + }, + { + "fingerprint": "asset1a03y2zd8a5uyk3vggyh65sd3ggwlu8auycqpua", + "asset_name": "546f6b656e55", + "quantity": 2851 + }, + { + "fingerprint": "asset15r9gwu6vnxv7t6xqqjayqk48ausgnvdlp5ncpj", + "asset_name": "546f6b656e4a", + "quantity": 9430 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh1kyjk07t9m4g3s4dm046nhwpmv9u2kxvuk3cn4apwckjevhn2yak", + "script_type": "native" }, - "policy_id": "fd95e47d1635c62f33aa256c99180593e1c09f4230579a9d854b4f28", + "policy_id": "b12567f965dd511855bb7d753bb83b6178ab199cb4713af42ec5a596", "assets": [ { - "fingerprint": "asset15dq4mx9v6gszlj2qzhhx2ey6hhz92j6aay4agh", - "asset_name": "546f6b656e56", - "quantity": 3341 - }, - { - "fingerprint": "asset1hwqx2x8dfguxrj4we84qwj0q07tw90q09yh8fh", - "asset_name": "546f6b656e42", - "quantity": 2776 - }, - { - "fingerprint": "asset17hfjrmyy8hq962qd7k7y3wr6e5ru3hqzq6l9un", - "asset_name": "546f6b656e4f", - "quantity": 9949 + "fingerprint": "asset1dzzsyja99yqkzsnnx0vequv97adl579h8puaep", + "asset_name": "546f6b656e46", + "quantity": 4900 } ] }, @@ -14292,33 +13614,35 @@ "policy_script": { "script": { "all": [ - "policy_vkh190yxj899h0709eccjyec247tplljcl5qv6mellrvs40p2v7k69k", + "policy_vkh1a305ex7mrlnu0e2upshsy4mglu8mgnv7ra0hear7k0uezjs78g7", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "2bc8691ca5bbfcf2e71891338557cb0fff2c7e8066b79ffc6c855e15", + "policy_id": "ec5f4c9bdb1fe7c7e55c0c2f025768ff0fb44d9e1f5f7cf47eb3f991", "assets": [ { - "fingerprint": "asset199a6q2v43j5w2uf5hr7ps964ffvgft2mzlvhnm", - "asset_name": "546f6b656e52", - "quantity": 4965 + "fingerprint": "asset1ezdq4z38a3q2n74gtzvlqamfqygsf35r7l9rks", + "asset_name": "546f6b656e47", + "quantity": 2667 }, { - "fingerprint": "asset1gq28e4hp83tth5y9jv9lrv7vlesh2g7v9nzqu8", - "asset_name": "546f6b656e59", - "quantity": 4368 + "fingerprint": "asset1eqp4d56y8r8xz8k5tzamhnyu6fzpxnfge7tppn", + "asset_name": "546f6b656e55", + "quantity": 403 }, { - "fingerprint": "asset1804zvum2zdzkts6uycjux2zz6dn0ple5vyahlc", - "asset_name": "546f6b656e50", - "quantity": 796 + "fingerprint": "asset1s8mmpe46wz92zrrh5jg3xyexykgrshul02fuv5", + "asset_name": "546f6b656e53", + "quantity": 1899 + }, + { + "fingerprint": "asset1c8rnam6kxu94z7vl5dp5csacxl2d5z5mtfjpea", + "asset_name": "546f6b656e46", + "quantity": 6093 } ] }, @@ -14327,53 +13651,51 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "b2faeee7d806a7ebea9335e28d64da327b946f70969b2eb4f74778e7", + "policy_id": "ad5dfb7f6385c0cb52f946b1fecef0425fbf9a0fc196facb8f4890e8", "assets": [ { - "fingerprint": "asset1kdk3lwu2esypwssexjzda280yle9mr6jyy9ftr", - "asset_name": "546f6b656e56", - "quantity": 5802 - }, - { - "fingerprint": "asset16k2vzc9awjqqpphdtl3xyhgdxjcxedfwz6j3u3", - "asset_name": "546f6b656e56", - "quantity": 2748 + "fingerprint": "asset1zc4q5lyf73z8hxc9hzrwutygg9g4qjhp0ylcjg", + "asset_name": "546f6b656e48", + "quantity": 2228 }, { - "fingerprint": "asset1n8sq99sv4lnuhlsvkjc3d5d62w4w8qlhrlv5dv", - "asset_name": "546f6b656e51", - "quantity": 4496 + "fingerprint": "asset1aa6p36ut3ddrwcx5r40mkc8k09pfskthzyyrr8", + "asset_name": "546f6b656e4a", + "quantity": 2359 }, { - "fingerprint": "asset1ew94utxqtudnw068nj74uxts9mqjgyedzrf4vy", - "asset_name": "546f6b656e56", - "quantity": 1144 + "fingerprint": "asset1dgn2aggw6fzkqzsuamrd89wmclz8tg67wvzqw5", + "asset_name": "546f6b656e44", + "quantity": 4568 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1ut4u584gjnlkav88auue5s5u57kuc2g2mejz3s372g3cvrmr9zv", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "e2ebca1ea894ff6eb0e7ef399a429ca7adcc290ade6428c23e522386", + "policy_id": "d215f3b6c2d2bb31f1bbd9872235ed910083fde0ab8298c4e6aa5874", "assets": [ { - "fingerprint": "asset1zpdk4nv6k7mrwdf5xgdvzp8yzz8kqc646ah693", - "asset_name": "546f6b656e4e", - "quantity": 4864 + "fingerprint": "asset1mjxp8v20qvjzp2p07cr5dymftltyt8mkad2ujj", + "asset_name": "546f6b656e4c", + "quantity": 5998 }, { - "fingerprint": "asset15zxy7pdy3e020v493vtzmcjmnp9kvr82r57rv5", - "asset_name": "546f6b656e49", - "quantity": 9983 + "fingerprint": "asset1svxcp3nc7v98vyfn3thnj3vrccfuz3xr43y6mm", + "asset_name": "546f6b656e45", + "quantity": 8018 + }, + { + "fingerprint": "asset1dj0jemhp63u5e0wr05xnc5u9xzr482jywam6pg", + "asset_name": "546f6b656e4d", + "quantity": 3617 + }, + { + "fingerprint": "asset1dw46dwxqp4w7c6d08a9d5f2wp3qjhdnusqzw5m", + "asset_name": "546f6b656e52", + "quantity": 630 } ] }, @@ -14381,119 +13703,142 @@ "policy_script": { "script": { "all": [ - "policy_vkh14cjq65g0peps9smsrycprx6rh93spw6trl5j4wh2skql5rznvye", + "policy_vkh10mzhcwrjtjl0u3g64x2aqmhzwat4dva686pcnvrppp075a4kqnv", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "ae240d510f0e4302c3701930119b43b96300bb4b1fe92abaea8581fa", + "policy_id": "7ec57c38725cbefe451aa995d06ee2775756b3ba3e8389b061085fea", "assets": [ { - "fingerprint": "asset1u2asz4n7muhpvkcf9g7as0fe3shw5u7j6erttn", - "asset_name": "546f6b656e45", - "quantity": 3718 + "fingerprint": "asset1jc8d7lep3652p32pzext9xugya5sjghgnft26p", + "asset_name": "546f6b656e4f", + "quantity": 8031 + }, + { + "fingerprint": "asset1h7e0a3rmy0cuz00473ne5suz08zvk3kg3hzwpd", + "asset_name": "546f6b656e59", + "quantity": 5750 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh120y2elm4de2jvjg50ap9smecyny936nsfc8r2ek2gxk5cn2ce3s", + "script_type": "native" }, - "policy_id": "6caf300866d5a9083ac7684b89948284a5a45bc0fab00688c4dbc47f", + "policy_id": "53c8acff756e552649147f42586f3824c858ea704e0e3566ca41ad4c", "assets": [ { - "fingerprint": "asset10cx8pmtp2uw7plkezchlf0py3qjg3ng56nzuyp", - "asset_name": "546f6b656e4a", - "quantity": 1370 - }, - { - "fingerprint": "asset1pq6ty7qaslaw5xjeczzhsq29k43zntauhv5ycl", - "asset_name": "546f6b656e50", - "quantity": 9377 + "fingerprint": "asset1lnnwtq6p3jtcl6ltt8a8qu374u6dlfxrvy6ce6", + "asset_name": "546f6b656e44", + "quantity": 8056 }, { - "fingerprint": "asset1fqydd8d92v5ttgsew99j2cneg8zed9ctt0h7mv", - "asset_name": "546f6b656e59", - "quantity": 4360 + "fingerprint": "asset19pwexsfcxs7em05prpwpjup44mujm7eyy35caj", + "asset_name": "546f6b656e58", + "quantity": 7230 }, { - "fingerprint": "asset17hewlqph8fj7jckynys99txvkdws4r9lntxsuw", + "fingerprint": "asset1705dltmw52ja9mlf2vk4erg7jm05jcvswpsru2", "asset_name": "546f6b656e44", - "quantity": 7123 + "quantity": 9852 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1rqq6edxghawjzlthkl6jqgzp8vwdzxzlhrhyfqlzjzwxxgq4ptx", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "8c66285dcfbb65f76c8bca033dd255830f2a4584c650ad550a1ccbb1", + "policy_id": "1801acb4c8bf5d217d77b7f52020413b1cd1185fb8ee4483e2909c63", "assets": [ { - "fingerprint": "asset1fnmd3264u8q3jkjwsp4xutzvmqcv7ww0rpzdvz", + "fingerprint": "asset1cpl47mary466wl6cp7yxj9xk4z3kf3qhg5hwxf", "asset_name": "546f6b656e5a", - "quantity": 4577 + "quantity": 9673 }, { - "fingerprint": "asset1ek6xzh6jn8lt50ec7vpr84ye0dzm6gezyfdkcg", - "asset_name": "546f6b656e4f", - "quantity": 8698 + "fingerprint": "asset1pce5cn2cq4dfz8dv5zj8tughflselsjwq8qq96", + "asset_name": "546f6b656e54", + "quantity": 1760 }, { - "fingerprint": "asset1q6uexwzrzqrm09q6sph8nlpf5kz62g8hl688mx", - "asset_name": "546f6b656e4d", - "quantity": 4587 + "fingerprint": "asset1q4lyx67dw37y82ugkg62j59rrzm38u8gj5zvzh", + "asset_name": "546f6b656e4c", + "quantity": 7418 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1a4hayf4j0dnqqxzurz045f70kpu2s70we5glj7yuudy8xzsauah", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "0748deb39afe8e7db9f23c0cea36154a9440108a0c8a5c6c827b17e2", + "policy_id": "ed6fd226b27b6600185c189f5a27cfb078a879eecd11f9789ce34873", "assets": [ { - "fingerprint": "asset1mjjzpcz30p6ftkvhjnqrcwz70944k439fn9794", - "asset_name": "546f6b656e46", - "quantity": 3504 + "fingerprint": "asset1ftmjuwvv2s5cjps2pdsygwnn88xqhzplp9g055", + "asset_name": "546f6b656e4a", + "quantity": 8384 }, { - "fingerprint": "asset1f2zfpjquklp57npudm659kfd8fvzfyxj8ppc3e", - "asset_name": "546f6b656e4f", - "quantity": 5403 + "fingerprint": "asset14x3pfxep3fvv3kvnfpwt2rrjrrlp0a8dcgfupk", + "asset_name": "546f6b656e4a", + "quantity": 2567 }, { - "fingerprint": "asset18r05eel7hp3wmzk3ht79heju8g9md7gs2tzpvf", - "asset_name": "546f6b656e57", - "quantity": 261 + "fingerprint": "asset1jxz95k9dx7d3jzz7nf6z0mlz657tm8uwzrj748", + "asset_name": "546f6b656e50", + "quantity": 4595 }, { - "fingerprint": "asset1p77dp262jnpr6l4wg93lzqz3weksnnc0scxufg", - "asset_name": "546f6b656e4f", - "quantity": 9416 + "fingerprint": "asset1n5wmrvwyw7s6ut23vzjg9v03eh2u4u56erx5qk", + "asset_name": "546f6b656e48", + "quantity": 6621 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1w9fyv9dkr7dv8v63pmhw96pdm47v3vt9adsepa5v58ntkq0smyg", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - "policy_id": "9261093b7ef9c93aa15c72fb97cb3d3bd7f99987a93c64bfd1f6c146", + "policy_id": "71524615b61f9ac3b3510eeee2e82ddd7cc8b165eb6190f68ca1e6bb", "assets": [ { - "fingerprint": "asset1hqrrthyw3nf3zkh8czumkpuze60hf2vafapmse", - "asset_name": "546f6b656e45", - "quantity": 9489 + "fingerprint": "asset17fj5v3tdhdg24pm5et07epu2ygzl5sre778ahu", + "asset_name": "546f6b656e42", + "quantity": 2597 + }, + { + "fingerprint": "asset14hgfxe3qgmzxg92zzydsr56qyzfgnk8us857h0", + "asset_name": "546f6b656e55", + "quantity": 6061 } ] }, @@ -14501,38 +13846,35 @@ "policy_script": { "script": { "all": [ - "policy_vkh1h9uwdjnmdrmdl38mj4tesd9gz8alk89jysjgpgksz3qt2e89l4d", + "policy_vkh1jx6kjqjhk8mwcnl3qdueu4wlgxgtj8caa776kjgz26pg5teml2g", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "b978e6ca7b68f6dfc4fb95579834a811fbfb1cb2242480a2d01440b5", + "policy_id": "91b5690257b1f6ec4ff103799e55df4190b91f1defbdab490256828a", "assets": [ { - "fingerprint": "asset1pxl9txt9j85t5gsztk4z2sxy280xwk0wu00gu8", - "asset_name": "546f6b656e41", - "quantity": 2060 + "fingerprint": "asset1tpk6kdfvc35x9a6tjtggfh0445m0ns04hmpqdc", + "asset_name": "546f6b656e52", + "quantity": 3537 }, { - "fingerprint": "asset1r77g7de3pc2a76nlytrqmgh92ykecx23c6fyku", - "asset_name": "546f6b656e45", - "quantity": 1999 + "fingerprint": "asset1lcmh7yue9zsg9cw3kqrhdnxlp8z3htc3j0kddn", + "asset_name": "546f6b656e46", + "quantity": 884 }, { - "fingerprint": "asset16zk4pg24jddh2arw98njey0e4ayammapxz0gv5", - "asset_name": "546f6b656e49", - "quantity": 4513 + "fingerprint": "asset1crt650qe3fvexfutfqn9kff6hnj0ljlwe7rzra", + "asset_name": "546f6b656e47", + "quantity": 1220 }, { - "fingerprint": "asset187thkg8dwak7adzz522vcgn3q7rlprdd59t7cy", - "asset_name": "546f6b656e58", - "quantity": 9716 + "fingerprint": "asset159lyg3hrww6t39fvktghy92ak32qcdheklcqct", + "asset_name": "546f6b656e55", + "quantity": 694 } ] }, @@ -14540,7 +13882,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1yr66g88dcjjqxu6twnwu77f2gw3sry9rl4q0g2rrhmsxcpdvdpt", + "policy_vkh1qeu90pyjgv9q70vzay05z868my9dh7r2eu3u7j8zqf53c0kjh4z", { "active_from": 100 }, @@ -14551,223 +13893,195 @@ }, "script_type": "native" }, - "policy_id": "20f5a41cedc4a403734b74ddcf792a43a30190a3fd40f42863bee06c", + "policy_id": "0678578492430a0f3d82e91f411f47d90adbf86acf23cf48e202691c", "assets": [ { - "fingerprint": "asset1frq55eus9ahrkdux5x34xcy7elg3vqn78duz6r", - "asset_name": "546f6b656e42", - "quantity": 2654 + "fingerprint": "asset18k49u8xefa8fv30p7h8wt3nhnl36e8fqv653c5", + "asset_name": "546f6b656e50", + "quantity": 5476 }, { - "fingerprint": "asset18zj42uculrqzj3ylldl3e4safmr52g2n9pgn43", - "asset_name": "546f6b656e43", - "quantity": 2856 + "fingerprint": "asset1qlquxg6cnkxv899l587dwg5ata5raerzj4hhv3", + "asset_name": "546f6b656e4d", + "quantity": 5106 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh1u0rfrxuxwqvzrnrs5ghx2am7yqjyvmkpjrcgx0yhyhy9qljggn4", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - "policy_id": "41d7ada065c1bcc0ccba1c8a39e4e2e7b09d14ce60f8020b2532657f", + "policy_id": "e3c6919b86701821cc70a22e65777e2024466ec190f0833c9725c850", "assets": [ { - "fingerprint": "asset1ckvupe595lyg8ywhxyfhqwkw74q4u6zvrc8eqk", - "asset_name": "546f6b656e50", - "quantity": 6401 + "fingerprint": "asset1e0496lmhd4qylg6jvqxu92szktef6p0pkc6hq9", + "asset_name": "546f6b656e5a", + "quantity": 9893 }, { - "fingerprint": "asset15tlwzk8qyvuvftnk4pnvnhgnmdjj7u3uf7pnjq", - "asset_name": "546f6b656e46", - "quantity": 1285 + "fingerprint": "asset139aak3p9vn60lam6ds43vx52fqgqlyypmeg2es", + "asset_name": "546f6b656e45", + "quantity": 3807 }, { - "fingerprint": "asset1f7ad7qrlqpzm43tgw05pw8tw3ez37q5pmjgdts", - "asset_name": "546f6b656e4f", - "quantity": 6169 + "fingerprint": "asset1ahp79hhsy0kewaqper4jd60637c07kcdjslfqw", + "asset_name": "546f6b656e58", + "quantity": 6935 }, { - "fingerprint": "asset1hfvssrrkvxhwdu8cf9t6qt682cqrreyqpwchlv", - "asset_name": "546f6b656e5a", - "quantity": 8653 + "fingerprint": "asset1fs77ax9ln4p5ktmx6uw4wmha42l3deph7d9lqc", + "asset_name": "546f6b656e57", + "quantity": 1900 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "1ee7d63b87c314ca52970a90afb0297c1ddda953ca0f83ca50e75466", - "assets": [ - { - "fingerprint": "asset1k3gmqzjtyyemgkp8t90jtppam9qqksah6d7w4q", - "asset_name": "546f6b656e4c", - "quantity": 6383 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh15cslqrjg4v6wtxrg2sz0elxpm4shmkdwm9l4r0fmsadcqzmgpe2", - "script_type": "native" - }, - "policy_id": "a621f00e48ab34e598685404fcfcc1dd617dd9aed97f51bd3b875b80", + "policy_id": "ce509a10dc94f952f231615073d19b06bc572255742e4cf662836218", "assets": [ { - "fingerprint": "asset1nmvez73m8r4elqstqarlqylw8hyszjsc8zhlka", - "asset_name": "546f6b656e4c", - "quantity": 1267 + "fingerprint": "asset1nckzcegkhhpqrld3dn720wzw8sz957c38cczhu", + "asset_name": "546f6b656e49", + "quantity": 7240 }, { - "fingerprint": "asset1q2h6dw6cxtxse20c46358vsed797c6gljr9m57", - "asset_name": "546f6b656e46", - "quantity": 8766 + "fingerprint": "asset1e7x4sh5fqt896wuq678y4q7encvq0zpuqf2748", + "asset_name": "546f6b656e55", + "quantity": 2547 } ] }, { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": { + "all": [ + "policy_vkh13q8dp6w2l24gay9ehfrasrygjcmv8xymjxmqf0vyexhqudn5r49", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - "policy_id": "8877eb98f8692e3446bfd2b36a72022d1d84e6290e2e8a961423729f", + "policy_id": "880ed0e9cafaaa8e90b9ba47d80c889636c3989b91b604bd84c9ae0e", "assets": [ { - "fingerprint": "asset13g9n8n9q5r7utudha88nk74nqrmvv5f2dxmjm9", - "asset_name": "546f6b656e56", - "quantity": 3594 - }, - { - "fingerprint": "asset1gy6ramenw4rhjvme4n5wjrxp49qqtczt4k9mvy", - "asset_name": "546f6b656e43", - "quantity": 7033 + "fingerprint": "asset186ulxu30r6x2uwal4s3ncnca5nwj9qdufpcka2", + "asset_name": "546f6b656e50", + "quantity": 1039 } ] } ], "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1rdvkvjtk2g2ny7w7y4ezr828z53zx7z885lkzqqfzfwzzq585ph" + "wallet_policy_key_hash": "policy_vkh1tpg5yv60wqjs6kqfqea5gee3fjskl92typu4k7n7xajnut8udks" }, "fee": { - "quantity": 117, + "quantity": 37, "unit": "lovelace" }, "certificates": [ { - "certificate_type": "quit_pool", - "reward_account_path": [ - "30410", - "21104", - "16729", - "10948", - "17579" - ] - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1w4hy6g5xgwlv5s4v2pnezrjvpyy6ff8f3j6gufyq4303h76dvtysz7k3vs", - "ed25519_pk1c42w7fvxqeu6s9pqs8sdk62kd72ymj58n0m6jk6cjser5j3jas0qp3qt46", - "ed25519_pk1u56ygu4ue4l9rm80qhfn0d6d5d7rpsfug8p9vu0kddkd5x9ap6pqrknyyp", - "ed25519_pk16f05wgh2mt4ryzjk7422psjqd428x9lxtmsg6zfvd8ymgwkwyhfqjepph0", - "ed25519_pk1q3kkdvv6lv27zpfmquux5yv39uu6ekxylfl2y3jsk82vy0zvcrmsqq5v8p", - "ed25519_pk1trplp6mgnu5f2l3m74k3t85svt7f2xyga0a9ldury63698zzdlsqqgpaej", - "ed25519_pk1d5ydgl6qs28d7kz2vfs32vyuxrv4e060v7h9dpxwvfte36v87amqajfp8w", - "ed25519_pk1xgvar7n0vv0c9zhlg7u4jm2v2pefevgcts7kpl2avwza74dwkd0sw00eap", - "ed25519_pk1lcnm5vdygvdcwk4xrzc6x6czstsnhw5qr53npmwcvcz9yg96qdes33vxwv", - "ed25519_pk1mr53zp7d2cjhazu5f4k9vvdu9e48600v223m25ahqw8tvxn4uudqu4qn9t", - "ed25519_pk14tjwhtpe5llf7q4mkls5vmhxqsse2pd4yfdukcgylkajst65e9eqrj9f5g", - "ed25519_pk1jd3v62rq6namxgw9znyznnje8kh2lvs03ks4zxszlpxlwrqyazcq3wg6t3", - "ed25519_pk1c72k65cvfzgx72vcjxaapa6msv4l7d9zuzrqvw4qkxssrx979keqtj3mtn", - "ed25519_pk1lhjyu9x0k8khaxsxvkjc4e5n42g9vnwff9pwqj6ft7nv9347gl8qr9vtke", - "ed25519_pk1ke63psgqza7t35m09u5d7jx2tlr2nskt98lv5n30kw60ur2s356q9ev7hn", - "ed25519_pk1yrxq0ek552qxfpchlg5z4qdrs43wm4rn45uwvkweqxylnv93uukq3x2s5w", - "ed25519_pk1e6ckgqe8pdp5r3ye3mzncr598jymhrn9xztt92dq4f3kyg02c3msuqmvam" - ], - "pool_pledge": { - "quantity": 235, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 24, - "unit": "lovelace" - }, - "pool_id": "pool1qmvswxm2dz9jl6f0xc7ale5f96uek2j60srpjrnhfaxswuz9wva", - "pool_margin": { - "quantity": 87.17, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1625up0arjm3x58e5t75asam98y760mqtvjfxqffwvt5u79nteec", - "retirement_epoch": 15443 - }, - { - "certificate_type": "mir" + "certificate_type": "quit_pool_external", + "reward_account": "" }, { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1rxamnwht3vxrtwtpqvq8w5502yys2q5yh6nd2xtaznf04x6hf8eqj98f64", - "ed25519_pk1p9un3kfh8krr8p5zcv4r0qkvp3fssxwaaeh3f38wtntywyr00eeqyrdqxj", - "ed25519_pk1207scgw6y6c2lx2k04xgujza65wdxghtvfrdnjy3uc6ymfhgyshq4pjt77", - "ed25519_pk12xsjclzz3apnpgazzul37fx0cksf4fkvjp56vztwzwmcl93ud26qgwdscm", - "ed25519_pk1rfaks9zk3vtkz2j3x3jl4uwlh0a0hpq0r6gnm2pmzaqzz94zmkkqxtlet4", - "ed25519_pk13xp8227eprr5c0qaeduq84m6dudhqvm50rqfpe8v2lf907u7ewrq4x9nvy", - "ed25519_pk1myn0sxulj5z35555ztdzxn73pr4mwx26f977935m565wxu2tm3sqq6vccw", - "ed25519_pk1t847g7smdfhvna5a3ch3jh9xadyvvslyujfwysv333yrze4h359s806fhu", - "ed25519_pk1ktuv2jcya9ndz0mreu8l9r7g3vs4n05rdzmg2309v7phz7503wmsyhqmmd", - "ed25519_pk10l7ujs8l3ynshcp5u4mk577eznayguyjmawhnyazld0hf5vrcpdqamrdtc", - "ed25519_pk1fwxz8hje68xcs38v9x2kg0p5d70tuga0w6t65u2l7fnmpqtc9r2srewth6" + "ed25519_pk1xas54zt8wscxct0regc5d7w2dsf06zhxy6psvg2hadvz7sru8vtsrfk9th", + "ed25519_pk1f8kf9kh65cqn2ryxn4ddw2zjmdv5v0ttlcy96wusw7d5zzhe8evsmrrvcq", + "ed25519_pk1hsh2dg79glva74qpw3jyjysw6cgn4x5vjsdva4r03vextg7myseq8qgux0", + "ed25519_pk1c4rqyf9fg9ys6hlww88dm824apcs5dlrlsdr8mkjudqg94grxfzsrk304r", + "ed25519_pk1dlzt3af7arw276ra65r4mrch3jvu3gn5t85kj9algvts733kdtkqndlys4", + "ed25519_pk1u7lpgnp4pylc3hq3ga83y78k3g69wp3ah2vw5f5ads5xmead3kmqqmhh95", + "ed25519_pk12ukzejmuhd9xydd3vy02gc6uw24l0auesq50fn7wzu8rpuekgcyqgemxeh", + "ed25519_pk1qgj7mmepv543d2ftcgz4226x5gs5dejxlkyg7swanpq7lhjdly3qqpqmrc", + "ed25519_pk1724ftewfqexsc7aes0vtvez9ynljjsqj7uchhzl9wxk7e07zzf7ss070qz", + "ed25519_pk1h908vtmgrm85eg8ctp5xs3v3ecdgu5k83mvxynexnrt0jkpu6k6shn6848", + "ed25519_pk1x5t3zmher0ztc9jwx6y7fu0z7n3ln9nny2k4wlmdex9ykrerw8dswm99ns", + "ed25519_pk1dnwzp57yr27zmrymeh89ku2ccuxkdr4h0klz9pjkjr93v7ttmhzqy7mjt6", + "ed25519_pk1809slyrask7e5aw0sxf6lp9tp4cmmdtskpcyf894whkkfs4v43dqm09czr", + "ed25519_pk1p9ll5urtkxnsl37978x44wc75cym9wlnxz3xz0wzs4x3844022sqvhl8xd", + "ed25519_pk1nzlevnkf8qujr8gmz97hnrztfmh4qn94j0cap89dm44033arv7eqkjkn4h", + "ed25519_pk1t0zq6g6gxlwggau8v2xmumk0ppkf76dnp2u7ggksde4pf4f39qpsgysqlt", + "ed25519_pk1ra973jepsu25fuv3ghl7jzpurse07dh6qapy0a6xc2mlpx22kxpqegnjnc", + "ed25519_pk1khu3g26agh5pmjekglsy3syug6a6vr8yf0r564jq02ca0ufpxm7qkcqsc8", + "ed25519_pk16350wvtf06nc07hunjzy6rjnp3ptzjfu0awfwknn0jp24z0qpuyqxvqrt5", + "ed25519_pk1mjkfxthjmq2j4zsf46025fkcj5ndrz26dd5z6mul2akmds46rxkqpt2ghj", + "ed25519_pk13j4uuyz39vrcehvm8g5kuc97xdnflturcnq7cfgfue23ut73eywqadth5m", + "ed25519_pk19ec47kk9qqacx5ve5x5zvr96wqjmtuw256tpadt53tvqlqxweluqsg0fhl", + "ed25519_pk1mjckgkmlz3435puf7g4dtry7uynfppry92k6urlzgdtwcntgghhqydt6m7", + "ed25519_pk1hpeegph0tu3uq9gaep59gpzkc3wlgstvgjqanvg607vzmw3dmv0q05eg8n", + "ed25519_pk1cyje4ucrhydp5032ty28tjgkw9yxmwrhwj5lcdpjt45q3xy628ksjng7z7", + "ed25519_pk1lf6kh2yztwtfdgyvmpmrlnxc84723p357073hy7psnalmw5k4rxsjvxv2j", + "ed25519_pk1k980kfp6hhm7cf6emws6sq3sene3fjt8lpmfe94xaxrf0n8lp2xqpvy88x" ], "pool_pledge": { - "quantity": 101, + "quantity": 201, "unit": "lovelace" }, "pool_cost": { - "quantity": 169, + "quantity": 164, "unit": "lovelace" }, - "pool_id": "pool1xhee3c4zxlavsdahkdt4nh06c3mydsawhj0mc67zqr2tctc2qna", + "pool_id": "pool1z0pgvcj9j232nawfarch4g748upen65rur9ju8q9d5zaq6nhn0m", "pool_margin": { - "quantity": 34.04, + "quantity": 42.48, "unit": "percent" } }, { - "certificate_type": "register_reward_account_external", + "certificate_type": "quit_pool_external", "reward_account": "" }, { "certificate_type": "register_pool", "pool_owners": [ - "ed25519_pk1k8trrsaxclxagws26yvyyp4hw5m8vtpeafzuydyzaxqcp7ktunasmpcwd2", - "ed25519_pk1ldlmxra8ng4nq2fh6zx3sxzz2v5repn70nhfrvqqykk47yg9exsqkdh86r", - "ed25519_pk1xpa38ncgqa4tzlhfgund94fkft877l2530gxtr72kttnvg0g6u4sg24k2y", - "ed25519_pk1yx22n02jpjh4vkr23z7wyp2rqw66pc2wrs3q4rdrqupzu3yps0cqf7eyja", - "ed25519_pk167e0n5e38q7907mh34cw5jzlchq8nmrsgf3yl8qfwapr4w4t5frqwqpng8", - "ed25519_pk18yjgpevjlauyhpczqpuqsmyzel9fsrd9h92u88fzxy2my485ch4qkkjjw5", - "ed25519_pk1u3rzhhmmq6g6lrpty257ad8zwt4dtxw4usv44qa5469lkk6mhv0sr6r4lk", - "ed25519_pk14lvllfafp2xsndzt50lx3fd73pelq0wvxfuea3zsaa9use2k2e6q5us4z5", - "ed25519_pk1r7xve6jqpjjfe4pr2rkkp3gcu3rv7409lv5dla2cdtkd2wumeptsc4m3t2", - "ed25519_pk1cn4tdzfmrqzzhu2mzjq5mhslh4zgg22uztvd5yl273vdldq0qv3qr8pk9k", - "ed25519_pk1f85570jkjg9qrttt3rq6jhndedh3q9mg6kx6yw5f2hvu7nrrkttq5s5vky", - "ed25519_pk1u28p405qlz4x093nkal77pq5g4cc995z2ew6hgptk79r2pe5n76q4ay09c" + "ed25519_pk15y7k96wyvtn3yxjmjdn9fugmzd2v7jerlt3wp9gg3klvscjrkt5qdwwef8", + "ed25519_pk13r4u25m7kfntv9wrdjuks39zql3gh9qnhugm4a0v490txvt64f6sdy0hyu", + "ed25519_pk1w8lgel8aju4vpzwnhpajva8um2jl4rhdssthzjnxsqz6h2ghspwsdpzcy6", + "ed25519_pk12j344y28sk2mn343hhf4vsa2et8gcwgycua9390l9n9nfsxt5y0s6t2ljm", + "ed25519_pk1s0h8yyku3vl8wg044ruzz4mp3j7ypeatztnldcuxu8uunjrnpjjswn5ayq", + "ed25519_pk1hf8wnwlu77xx3qrlkm49k9dy3uw5j73jpjj0jnwfpeymr6mlhmpq5v54z6", + "ed25519_pk173dsa9tfq2dfxgxathync5ll72q93pvjfg6tphvplwpsarv4n4eqakd76s", + "ed25519_pk16cqydujhsyzdnfyjhq9yahyyf0c7ups8nxphvufkt50xdclzn6rqk9gxhq", + "ed25519_pk1prpjhnc627uqjlryv3n7tv5w4k5etyzcyxlrjpv6ejup828gwg3q5n2wgg", + "ed25519_pk1ef6338dgc6k29txlvmc00c4szujpme48v3dujxjautzd49ygmetqfyg54y", + "ed25519_pk155r4mlazn0cxjs5duycg034vumm7aa0cv2srmvahtx8rp8rxheaq23pwya", + "ed25519_pk10e6umewlfecmvg7f428zxu9yzc9r6hc2yq2pf5pfnfjg0em3unzsntsetn", + "ed25519_pk1kq89rx4ppy0wscnapmkheyra6vmyk6h33sm5r92hn7qr26vgja7q5933uu", + "ed25519_pk17h67200gts9h058ypwgcjyev9lf4mpw780069pav4l68epnee8nsjvjw0a", + "ed25519_pk18p59epkep9g3jlxrfcqj75r7zqlnmvcw7t0kygc56f3szs53nm3qksv7ny", + "ed25519_pk1tl8h5un6ampxyv0gx55fxk6235gjc39ntyumzc2880fj9hhfqx3sfcrxfg" ], "pool_pledge": { - "quantity": 116, + "quantity": 21, "unit": "lovelace" }, "pool_cost": { - "quantity": 200, + "quantity": 189, "unit": "lovelace" }, - "pool_id": "pool1w52sk0clxgp4qd3878mudk2lqjq5auwvw5y22zunmz2vswg3ur9", + "pool_id": "pool1yxky0qj6g7wz5y0w7jp0x5v8j9y7zgtl39t9fu8swdat7altql6", "pool_margin": { - "quantity": 16.62, + "quantity": 50.25, "unit": "percent" } }, @@ -14775,1735 +14089,1625 @@ "certificate_type": "genesis" }, { - "certificate_type": "join_pool", - "pool": "pool128c4p9slx0jfsu0ylm99tuq0aquhq7sc08jygu42u3s3yutzllw", - "reward_account_path": [ - "14442", - "25564", - "2920", - "32049", - "3890" - ] - }, - { - "certificate_type": "genesis" - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk14s3j4h9rhx0udg0yn2syds982p6ngf8vj78aakmf68hjfttcxkxqc0k9a3", - "ed25519_pk1qzvhnf9td8a0msgmj7ka92uv8zm5snjdgmzaud5qsf9snfqjxsaq3wqs9w", - "ed25519_pk14ysqhm43fr5ra72dvwql45muxvk3scsf5r5eflvprs5nplmea8jst6uw6f", - "ed25519_pk12tnqgxxy7p643glsr8hrkecd4vaca2janx3dx4hzn55fn5wyz5dsvyt7p3", - "ed25519_pk19h68uaepzs3hqa2zh8w8r0dyy7k3e08erx07a36cy4cl6lvcmllss05pde", - "ed25519_pk1ppxsdfxh0w5ffsjs39gev4u3xsrsc3c3traczc2hlplyc0aqdnyqmvvugm", - "ed25519_pk1gft6xeg085h8p4eqx2jmfdeaw9c7wjz2n775fn4hxt37lusyhv4q8ymffq" - ], - "pool_pledge": { - "quantity": 173, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 12, - "unit": "lovelace" - }, - "pool_id": "pool199t23g5m4sv7u9h097tyl8jcdzftascra8kuk7g9l3tnqwulfya", - "pool_margin": { - "quantity": 36.46, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1xxpzfpnnyjut6j3cvz4qqyhwpz9qwfyysf56n4r8ev2gv74sej2", - "retirement_epoch": 4252 - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "quit_pool", - "reward_account_path": [ - "29995", - "15062", - "18952", - "13949", - "14363" - ] - } - ], - "deposits_returned": [ - { - "quantity": 4, - "unit": "lovelace" - }, - { - "quantity": 246, - "unit": "lovelace" - }, - { - "quantity": 95, - "unit": "lovelace" - }, - { - "quantity": 30, - "unit": "lovelace" - }, - { - "quantity": 119, - "unit": "lovelace" - } - ], - "metadata": null, - "collateral": [ - { - "address": "", - "id": "4eed00845b6433754f091c56762f20704f1c210c7c7b1d3e510b34785f10247a", - "index": 7488, - "amount": { - "quantity": 193, - "unit": "lovelace" - }, - "derivation_path": [ - "3353", - "30545", - "29727", - "24092", - "9359", - "25426", - "7976", - "21296", - "3470", - "24409", - "17628", - "797", - "21169", - "5235", - "9198", - "29978", - "2333", - "421" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "address": "", - "id": "07d71a27eb6c4f084403293d7536be3a750b60204c1a46185376231d39170f1c", - "index": 1953, - "amount": { - "quantity": 94, - "unit": "lovelace" - }, - "derivation_path": [ - "10942", - "15019", - "8889", - "12266", - "22230", - "5468", - "10524", - "25400", - "12315", - "21563", - "4177", - "963", - "16486", - "9307", - "101", - "5879", - "18391", - "8270", - "26334", - "6993", - "24948", - "26920", - "9051", - "32469" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "id": "cbbf4c727b374f470c7088590a6a052037632706497f21580a30082a36390a35", - "index": 28204, - "amount": { - "quantity": 46, - "unit": "lovelace" - }, - "derivation_path": [ - "19061", - "15372", - "25875", - "20905", - "24772", - "16487" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "id": "5b7a2e5272554953157e531e39414138026d4e424c4532133e1c53981a3d745a", - "index": 0 - } - ], - "mint": { - "tokens": [ - { - "policy_script": { - "script": "policy_vkh10wldkls6dny7xpzgxfr9xn7e9hdwz03rp9xl2awj9kq8ugutpc6", - "script_type": "native" - }, - "policy_id": "7bbedb7e1a6cc9e304483246534fd92ddae13e23094df575d22d807e", - "assets": [ - { - "fingerprint": "asset10x5qq4xq8907vzpn8kmgyn0r2ygh4fjdrjdez6", - "asset_name": "546f6b656e54", - "quantity": 7763 - }, - { - "fingerprint": "asset1yh5yyu546j6qq4uvtrltcwquk0xt6sagt9v0h4", - "asset_name": "546f6b656e58", - "quantity": 4358 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "624084332fe171c6d497531077c389104f6bd84ee3214dbfdaf07b44", - "assets": [ - { - "fingerprint": "asset1k0znnrr48pg606lrd76t230rnx40rmu8tfx6je", - "asset_name": "546f6b656e47", - "quantity": 5630 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh167v4hdmwt6fxly9rhsm7sm50mxeth4zkgj8a6n08vfww7ey40dj", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "d7995bb76e5e926f90a3bc37e86e8fd9b2bbd456448fdd4de7625cef", - "assets": [ - { - "fingerprint": "asset1mqy9a3602lwczj8szfkqf4qc59e8w5527skadj", - "asset_name": "546f6b656e45", - "quantity": 1087 - }, - { - "fingerprint": "asset1pv357j5l8k6qv3w9950nuqnvz4mlra6k5dsd4e", - "asset_name": "546f6b656e47", - "quantity": 6987 - }, - { - "fingerprint": "asset1xep68r9jty2d0ac6m0eedk6hk803ucq5uruedv", - "asset_name": "546f6b656e4b", - "quantity": 5921 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "d1187e7855ca2ecee6d8700c4abd91fa492885aee21e1738cc268a27", - "assets": [ - { - "fingerprint": "asset1z9gwwehxm3culsu32cja92apfyjk23wyeuvt5q", - "asset_name": "546f6b656e45", - "quantity": 4446 - } - ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1yam823f0ws89xz34yx9sw5t9zs6ng2qk0enk69ph2pa3khd676a" - } - }, - { - "withdrawals": [ + "certificate_type": "join_pool", + "pool": "pool1ftauavdw09vlz0kgwut6zwc3m4mqjl9a3e6j9lnzlkx3xpet57l", + "reward_account_path": [ + "30743", + "11506", + "32674", + "4602", + "14263" + ] + }, { - "amount": { - "quantity": 82, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1svddddcl496s6mw565h7w4japnc5g0ycz4wphx8dfuehr98cf55qals7na", + "ed25519_pk1f87qphkl0jejazn0g97hvmvglqu7g4sxtrx95rkj6736xtxm9njstenn4w", + "ed25519_pk12jlyhwfv3el4g78g48fxh9525av7c2zuywprdt8kfdsjaakydd4qc3hcza", + "ed25519_pk1h9zttud7jwyffaanz7lzmjlrj55rltz7gq8clgkmlv0m9zysxlwqe7atc4", + "ed25519_pk1e62c9pg2vhshptl5403p8v07vxj963k29n0x7a0920dxqd5sy62sfyuz8m" + ], + "pool_pledge": { + "quantity": 107, "unit": "lovelace" }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 36, + "pool_cost": { + "quantity": 156, "unit": "lovelace" }, - "stake_address": "" + "pool_id": "pool1k04ukwgqjlqd4ym62ra32sk6h5wgpjazhrps4zj26zuqsw9ngpu", + "pool_margin": { + "quantity": 17.24, + "unit": "percent" + } }, { - "context": "ours", - "amount": { - "quantity": 233, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "register_reward_account", + "reward_account_path": [ + "24223", + "11171", + "8000", + "20841", + "5612" + ] }, { - "context": "ours", - "amount": { - "quantity": 193, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1hd4ax85es3klq6jc8zh6d2ejuzpzmk7u5fjtud48dcmm59mu6lqsm90smt", + "ed25519_pk1zhvkf4hw9vsyqfdul2y3j64k6fcd0n05xv380d4vrvwsrv472e9srl3p5n", + "ed25519_pk1sv8h0dfhmjkaqscnjxxd2f3tlzdlhdqqehfryrxtd0f9uj2xgyssevq2gy", + "ed25519_pk1ud9wuwwelsmfndpz9t058rcywlsxkxh0gktxf4v40rdykcwjnxnsz833st", + "ed25519_pk13udywdu8k8l9n0tc0685j22fhx2n0fjacfayg3wefn9d4taqsrsspjwke7", + "ed25519_pk1kyhpmv00luh7s4wukatacu69rw0ahwdhuugy0j62lktdwvlhdxxsx729fp", + "ed25519_pk1lap7s5kvgxr6wkzaldp2ymvyqcyjkwrzvg86rftes0rjkge558uqcawnml", + "ed25519_pk1z4eanky3kfsufwk40eundaz4d7j9upgz4jnrg86jvxep3wjwd2gs70nv3u", + "ed25519_pk1ddr9nkhxz5esdxegnmlzdww74src30x0fq0yxhsewj8n9prsckjs005h84", + "ed25519_pk13n5dv662z5ly9fh0tlcwtp274ljnzyszq3dah0f0mlpzeujvndfs7mfsfc", + "ed25519_pk17a9g73cxwl5tmnpuam4c6pwry53luulg72f300fmw498vnesf3tqag9fks", + "ed25519_pk1cpe024e7u5jn894wl9zzd59x2lvhhtmzlawfhn590je39f99zh4slynrfr", + "ed25519_pk1m0xf9yzju4xp0dhv9kme0hy5evgugcrc4j97jkjsdgryn7s7mqvsdsmmrc", + "ed25519_pk1jc8s2ept5gx02pfqzxvwalg2mfzx3yx9e954p8xyulynh4a7mlvs0ge450", + "ed25519_pk13v5l3jkry6h307rwcfyvzvqty8fqkx4pdpjqghhan3rtwnpm6c7q9dxct3", + "ed25519_pk1p4nwkrn9hnxa67umwvlclq9kxklku9kmmpggkel5dhkpfcxfv3jsfxjaca", + "ed25519_pk163l32uc7w4qa39elpyl9phq8yzmdrkclj4ncwhxc3nwm0tc59q9saskme9", + "ed25519_pk1z730yafulgancs8t58swydrnlux2eyecfkmdt0wxrg3qma35ww6qetvd8h", + "ed25519_pk1aphjn28p4yevmn38h3hlkmyzaefnhh7xc07r3mzepga0rcjtmmjqnwwpwt", + "ed25519_pk1uvswq60wputg0s4xacaa0ul0mcw42hrrdxp63n082mzah6ra33yscgqcyt", + "ed25519_pk14hqwdgxj3rpc3ngca0qernfavywuydwq897edznudar4khcck72s8yxq7r", + "ed25519_pk1nxhcj4f0xd5xnev93dxfaf0kwjhqm3lkzgec3fktpw760hcu7tushsqgwh", + "ed25519_pk1ys5l03zrue9hsysqs3urafmrdy8x66phrg9em0ls6m6tsp6pakwsypjsae", + "ed25519_pk1zfmwv5snzxvdel6rvern08lyvtx06wau44lccj9mjck29q662znqg3pmud" + ], + "pool_pledge": { + "quantity": 155, "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 254, + "pool_cost": { + "quantity": 8, "unit": "lovelace" }, - "stake_address": "" + "pool_id": "pool1876r45y8pqpdl97jvatsuwaspdzk85v5g8hmf8jntq6vx7y7zxj", + "pool_margin": { + "quantity": 46.1, + "unit": "percent" + } }, { - "context": "ours", - "amount": { - "quantity": 137, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "join_pool_external", + "pool": "pool1euhpygumpxy4nyqtwm5aykaqf7g28gehed5n7xcys54fukv0hqn", + "reward_account": "" }, { - "amount": { - "quantity": 179, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "genesis" }, { - "context": "ours", - "amount": { - "quantity": 208, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "genesis" }, { - "context": "ours", - "amount": { - "quantity": 211, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1798gcj43njcxe05xdmdun56yh2ra582xzehmyhur99ywj7shyumqxqwme6", + "ed25519_pk1um2rf5ngs0gs8a64lxv4vd2s5awl6n9xtjm7rp2p9na787482s3qlxkfm0", + "ed25519_pk12yz690dvewxewgs0m2uqx28ymp3dmw2rls0k6y7jfm79nkhcupwqhuckz3", + "ed25519_pk1fcdkavn4rm3tf2vfetr3pkd5zt02umjs6lt75uvvaytp760qx98q3kvatg", + "ed25519_pk1xyxn56shu87ndkhlqfcl57a7a0psj8t29ymkc2lv9jg4fgfmmjjsm0qjxj", + "ed25519_pk1txfwu99kk9rne8ktp30xvdlmuj9s2vwt9rcst4tmrl5pj75yn7es4x8vvn", + "ed25519_pk13klf5n2q727f53jm8e9x8ph4anzxuy0qxq5ty6pggm2ysrae7rrqq3tpu4", + "ed25519_pk1k9wmk4fgpx9y0j99n6s4hs3yfc7j7j00899q53qy54xfx2vsvdaqhc80z7", + "ed25519_pk1j3tktnfrhezafstzns0047tdxp0mq375uf9tjtuyhtpndj90umpqedwr0u", + "ed25519_pk137ksx9ky0j537st5q5zvaveu64q6rtlugru6zhezc37uk7725eqqpqqpl8", + "ed25519_pk1s2jgrfqv3vzgpnyj97wkze77kjgflmzrfth2exjjjmqf7twvnzmqs5hgtg", + "ed25519_pk1kva4v4a2tdd7qzam7ezlxgcytjfd5wu64qzke4axvfcmvl9kx6ascrfzth", + "ed25519_pk15e4cm34h42kcayclj3mky23u20craa3qq2cwrth8qg7lq92vxuvq62sv3s", + "ed25519_pk1uxdtcamts88k3vpe7sa4tks5dhh557wn9qdtmnsdqnnkw54ng32q9ax3tj", + "ed25519_pk1uzg6huwrtznkrq4rxz3v4kvlzl9thlpqwr434srudq0w8cwmwtys3yp4h2", + "ed25519_pk1f4zf36x2zqx7tdf5wcq7rcv8tlkfq680gk8rfax62d7w4maeez3stlrf6y", + "ed25519_pk12pxalax7xdj8x5un8lgav0xc54qwh29kt5m828kq6xqde0umgyhsl4n2pf" + ], + "pool_pledge": { + "quantity": 200, "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 73, + "pool_cost": { + "quantity": 173, "unit": "lovelace" }, - "stake_address": "" + "pool_id": "pool175jxmr3vs4wsrnktnrvnq49n925j6m8yhzl2hw0saexazfjppn9", + "pool_margin": { + "quantity": 82.78, + "unit": "percent" + } }, { - "context": "ours", - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "deregister_pool", + "pool_id": "pool14x3llll9gl6vjnera8j0v5g5ah7q3rv4gpk6d62wgsvwvv5ukft", + "retirement_epoch": 23713 + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool188uc7qnkeavvjf0u2en4jthelh4qfw9zw9r0xx2373zp6xf2hlq", + "retirement_epoch": 9533 + }, + { + "certificate_type": "mir" } ], - "inputs": [ + "deposits_returned": [ { - "id": "6215208bb9397a4e35602a30dadb5038437951472b797c710b6bdc816d303963", - "index": 1 + "quantity": 190, + "unit": "lovelace" + }, + { + "quantity": 11, + "unit": "lovelace" + }, + { + "quantity": 15, + "unit": "lovelace" + }, + { + "quantity": 246, + "unit": "lovelace" + }, + { + "quantity": 28, + "unit": "lovelace" + }, + { + "quantity": 9, + "unit": "lovelace" + }, + { + "quantity": 19, + "unit": "lovelace" + }, + { + "quantity": 66, + "unit": "lovelace" + }, + { + "quantity": 77, + "unit": "lovelace" + }, + { + "quantity": 138, + "unit": "lovelace" + }, + { + "quantity": 191, + "unit": "lovelace" + }, + { + "quantity": 179, + "unit": "lovelace" + }, + { + "quantity": 14, + "unit": "lovelace" + }, + { + "quantity": 51, + "unit": "lovelace" + }, + { + "quantity": 171, + "unit": "lovelace" + }, + { + "quantity": 56, + "unit": "lovelace" }, + { + "quantity": 39, + "unit": "lovelace" + } + ], + "validity_interval": { + "invalid_hereafter": { + "quantity": 10439909, + "unit": "slot" + }, + "invalid_before": { + "quantity": 9572142, + "unit": "slot" + } + }, + "metadata": { + "1": { + "list": [ + { + "int": -1 + } + ] + } + }, + "collateral": [ { "address": "", - "id": "48594f4d19176f4c5235b37c2878523e1430594c1355661cf3564c1b5e04c40c", - "index": 29948, + "id": "670de1721619704c2f2e184701222a6131042643674b7f0d1e6c4ab2683c2549", + "index": 25108, "amount": { - "quantity": 187, + "quantity": 210, "unit": "lovelace" }, "derivation_path": [ - "24165", - "9689", - "18273", - "31286", - "16657", - "8657", - "31356", - "24506", - "14322" + "9490", + "7721", + "19644", + "5888", + "9801", + "13664", + "15358", + "10079", + "13565", + "17420", + "23922", + "13159", + "32217", + "30712", + "31434", + "21830", + "6250", + "10852", + "27967", + "24165" ], "assets": [] }, { - "id": "7f58307039d360401a7f1f04081373632c014c156c5b2e079608510762206459", - "index": 1 - } - ], - "collateral_outputs": [ + "address": "", + "id": "73361877025b29455b236b58e93d4360681368051e5c640c6833ee321011439f", + "index": 5737, + "amount": { + "quantity": 184, + "unit": "lovelace" + }, + "derivation_path": [ + "13188", + "31321", + "13489", + "26261", + "18259", + "13439", + "9078", + "3047", + "21620", + "28475", + "6384", + "27207", + "14056", + "15781", + "4230", + "2622", + "5766", + "32474", + "9401", + "12909", + "1416", + "11710", + "24021", + "942", + "30655" + ], + "assets": [] + }, { "address": "", + "id": "39e611024b64b83321610705312adf1e193b844843472c011911654397283b50", + "index": 26929, "amount": { - "quantity": 241, + "quantity": 123, "unit": "lovelace" }, "derivation_path": [ - "26628", - "30069", - "12104", - "11075", - "3284", - "31433" + "6535", + "9821", + "16672", + "25458", + "21401", + "26841", + "26902", + "9133", + "17149", + "10363", + "3594", + "30680", + "21128", + "15704", + "23815", + "229", + "13866", + "2848", + "8957", + "19844", + "11851", + "285", + "25988", + "4778", + "12954", + "31119" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 4, + "asset_name": "546f6b656e45", + "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - } - ], - "outputs": [ + }, { "address": "", + "id": "231bb878ce4a325d6907714d3702004b534945122216472012e2180c56a10875", + "index": 25609, "amount": { - "quantity": 18, + "quantity": 228, "unit": "lovelace" }, + "derivation_path": [ + "14366", + "22468", + "4523", + "4422", + "31787", + "24844", + "9692", + "7765", + "21265", + "5607", + "23905", + "29993", + "30773", + "22672", + "2266", + "2094", + "7598", + "16408", + "10291", + "27405", + "28068", + "4963" + ], "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 31, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e44", - "quantity": 10, + "quantity": 20, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "607b452d144301541a5e150eca4f5a5f0db172646a1fb245542a0f54ee5f3c39", + "index": 14811, "amount": { - "quantity": 136, + "quantity": 183, "unit": "lovelace" }, + "derivation_path": [ + "9139", + "27782", + "28848", + "27058", + "9619", + "4020", + "31669", + "10208", + "3955", + "31498", + "904", + "4449", + "26605" + ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 12, + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 33, + "quantity": 18, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 41, + "asset_name": "546f6b656e41", + "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 15, + "asset_name": "546f6b656e42", + "quantity": 20, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "7a0b697946103964717a6a665d7a5a156ad46b2d3a7e685d7279387a14711872", + "index": 1 + }, + { + "id": "596845521e3b116900357317361a1f4d9b211b093666e8464c0f084fba04616d", + "index": 1 + }, + { + "id": "0051fd652a5f0069e1076343424d52eb10325dc01d02de552f45686b4b16465a", + "index": 0 + }, + { + "id": "76579b7c3b77f1721a27773d2faf7a64014a1e37691c200b33276df32227136b", + "index": 0 + }, + { + "id": "2f27475b0b303c542c2c5a65435311543b6c490e435c4455696151363c66294f", + "index": 1 + }, { "address": "", + "id": "353f43280340680b24612a2e687b5a552b6305477d4cef1610341a18ab755250", + "index": 24218, "amount": { - "quantity": 60, + "quantity": 37, "unit": "lovelace" }, + "derivation_path": [ + "6094", + "2736", + "29950", + "18006", + "13658", + "28882", + "29436", + "7637", + "29833", + "31921", + "57", + "3046", + "223", + "16710", + "30048" + ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 17, + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "id": "16745a6e17701c210f4fa84a56195e6f4daa2b274471fe29345f3e545741405e", + "index": 25683, + "amount": { + "quantity": 184, + "unit": "lovelace" + }, + "derivation_path": [ + "4614", + "20219", + "28846", + "31185", + "28936", + "25787", + "5951" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 18, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "b83f47215f68311337162a6263723a31574c304b9cd3000f4e7c121e475b4407", + "index": 26911, "amount": { - "quantity": 145, + "quantity": 117, "unit": "lovelace" }, "derivation_path": [ - "7442", - "16728", - "22139", - "14417", - "12745", - "29587", - "20197", - "16066", - "3632", - "7991", - "13488", - "23316" + "18786", + "32265", + "14054", + "93", + "27096", + "12761", + "9242", + "5298", + "5514", + "2990", + "20788", + "11884", + "19805", + "27724", + "27425", + "1777" ], "assets": [] - } - ], - "script_validity": "invalid", - "id": "25a7642d132d46501a60223a4a3a12bc4b1f653f0d7c033671785425541f5d45", - "deposits_taken": [ + }, { - "quantity": 244, - "unit": "lovelace" + "id": "3c10463f5e0b7d3f073dee0c3575712c4d4d106cee19bf344a488a4851771c06", + "index": 0 }, { - "quantity": 137, - "unit": "lovelace" + "id": "47297b4f0c505165192a5f7f521d18070c182927171a402b571a7c1013704c61", + "index": 1 }, { - "quantity": 180, - "unit": "lovelace" + "address": "", + "id": "27dd6977a20fd4a53a4e142f355b0200541c4e2b2f2886546a4b7370063071ba", + "index": 16534, + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "derivation_path": [ + "20150", + "9141", + "26987", + "25868", + "16300", + "837", + "19194", + "17552", + "19639" + ], + "assets": [] }, { - "quantity": 35, - "unit": "lovelace" + "id": "cf735097121b3a458b33777574cc7566986a6f7b1b0d028c19111d08376d0c28", + "index": 1 }, { - "quantity": 44, - "unit": "lovelace" + "id": "c83f6904ca7256661660080e2e794120fe04312f4e407d6573281d336a1f054f", + "index": 0 }, { - "quantity": 153, - "unit": "lovelace" + "id": "9572f90c403c22324700493b0cec701266555e049b6945077705322519106d58", + "index": 1 }, { - "quantity": 190, - "unit": "lovelace" + "id": "3b256a6a300b36981030137c023613756e4a7c306f7d230f564f49791f160c3e", + "index": 1 }, { - "quantity": 76, - "unit": "lovelace" + "id": "15551170116b364d2b56606d2c4f69025434103b0f716c570b47a35f00741206", + "index": 0 }, { - "quantity": 167, - "unit": "lovelace" + "id": "176e7b822f115c06fb4f42250a683248211444773c370c69a80b1b5b1e076951", + "index": 0 }, { - "quantity": 67, - "unit": "lovelace" + "address": "", + "id": "01064b2e01321a7115169e543a1620424d00161e4b421370577672743e560a79", + "index": 22777, + "amount": { + "quantity": 54, + "unit": "lovelace" + }, + "derivation_path": [ + "17574" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "quantity": 237, - "unit": "lovelace" + "id": "f0334741b05ec46a237c5c0e06060037cb3376ce66782e2f6009443a2c14096c", + "index": 0 }, { - "quantity": 42, - "unit": "lovelace" - } - ], - "burn": { - "tokens": [ - { - "policy_script": { - "script": { - "all": [ - "policy_vkh16wawdajtw2thzkevvrmc20qmclyzf93c5nwc6yy70mwvz4kcxp0", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "d3bae6f64b7297715b2c60f7853c1bc7c8249638a4dd8d109e7edcc1", - "assets": [ - { - "fingerprint": "asset1ar2x9a0m5tpl475zuxswn64mmc4ku0m5glpqax", - "asset_name": "546f6b656e54", - "quantity": 1079 - }, - { - "fingerprint": "asset166ysfsr89n4alj6e749xsveasavr2qwzjf3d5j", - "asset_name": "546f6b656e4d", - "quantity": 9152 - }, - { - "fingerprint": "asset10nj5nmq29ugdlkgn7gg708a7nh6lzdn3djj26g", - "asset_name": "546f6b656e4a", - "quantity": 2920 - }, - { - "fingerprint": "asset12vxpa3afth3ylqlcn3sevad8vusnele2mpqkjj", - "asset_name": "546f6b656e4c", - "quantity": 8091 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh12hdtqkn9xx8u5rcewm3h76v0laegqz4eufcydgft4rp9cskfwg2", - "script_type": "native" - }, - "policy_id": "55dab05a65318fca0f1976e37f698fff72800ab9e27046a12ba8c25c", - "assets": [ - { - "fingerprint": "asset19tnv8y926jsv0cj298ml4rrdfxf0su2atpaj05", - "asset_name": "546f6b656e44", - "quantity": 2665 - }, - { - "fingerprint": "asset1llkkcgpw3ryqv65g35ykd30e8dc0uwh9rzy4v2", - "asset_name": "546f6b656e57", - "quantity": 9394 - }, - { - "fingerprint": "asset1v66zj35xzpq7lzgxzed3ydvrmr9jj8dg02kfnm", - "asset_name": "546f6b656e54", - "quantity": 9735 - }, - { - "fingerprint": "asset1z6zljykxm2teqfskc9dc87xjp5zmvq8m3pamlt", - "asset_name": "546f6b656e49", - "quantity": 6303 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh13s0xjy5ql8952y094khvvssn878ytx94z5rqscx4kmuluxlrqpm", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "8c1e691280f9cb4511e5adaec642133f8e4598b515060860d5b6f9fe", - "assets": [ - { - "fingerprint": "asset1t48jrly380exmlyth03wmrmmkp3q6zvxtqfzdq", - "asset_name": "546f6b656e49", - "quantity": 7666 - }, - { - "fingerprint": "asset1qcsw95h40tezj8xr8lzf6ctqg0nl4f7mpyqnqe", - "asset_name": "546f6b656e45", - "quantity": 9277 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1m2jjnzf2wtfraxmhdzskaxep4r72d9ylq6s22e8pet4eqggfw52", - "script_type": "native" - }, - "policy_id": "daa529892a72d23e9b7768a16e9b21a8fca6949f06a0a564e1caeb90", - "assets": [ - { - "fingerprint": "asset1exuuem7wwyh06k9uk2ucj503kc56kvrewlhq3g", - "asset_name": "546f6b656e41", - "quantity": 5116 - }, - { - "fingerprint": "asset1r6s8d2s2xytkwtq52nr595k370azr0puta24n8", - "asset_name": "546f6b656e43", - "quantity": 9716 - }, - { - "fingerprint": "asset1n3prfpe4jpnvcnwn0thylkj75zvsayeaddjjw9", - "asset_name": "546f6b656e48", - "quantity": 8956 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "22e92ac65ac969febc6d7ad7c534b8effa8e637a6b261c38b1c3daf8", - "assets": [ - { - "fingerprint": "asset15m0cxfd0cejr7uqayszk0tprese7asy0kvn72c", - "asset_name": "546f6b656e41", - "quantity": 1465 - }, - { - "fingerprint": "asset16wul9mlsndl2w3c9pxay4vv4kppxjlwmv33t58", - "asset_name": "546f6b656e4c", - "quantity": 3160 - } - ] + "address": "", + "id": "617a779274760e615b3247047b6b4f592f5e8e470263584620153b5c29667b43", + "index": 6529, + "amount": { + "quantity": 234, + "unit": "lovelace" }, + "derivation_path": [ + "1391", + "3447", + "27397", + "32388", + "25732", + "32105", + "29302", + "28457", + "21628", + "9351", + "10033", + "6022", + "1793", + "10518", + "5127", + "16545", + "2006", + "5119" + ], + "assets": [] + } + ], + "mint": { + "tokens": [ { "policy_script": { - "language_version": "v2", - "script_type": "plutus" + "script": "policy_vkh1tj8mra090wyhwjj6zda0wskj69660ffwv02kr4vcncsuqgzcv32", + "script_type": "native" }, - "policy_id": "eecb146b643af19fa0c2da3bf0dc65c82e4491f8e216e4baf0fed087", + "policy_id": "5c8fb1f5e57b89774a5a137af742d2d175a7a52e63d561d5989e21c0", "assets": [ { - "fingerprint": "asset1jc5h6xrchmmqv2agjew42rj8nw0s2qpn329rdq", - "asset_name": "546f6b656e58", - "quantity": 7675 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh16zvstrktjaxzwxq062zp239sk8rzymhk4k6mgg074xaazl3v4xz", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "fingerprint": "asset1ggury3egc7dm5y6s4hj7dc6uyq76krd6p0lxvk", + "asset_name": "546f6b656e4e", + "quantity": 926 }, - "script_type": "native" - }, - "policy_id": "d099058ecb974c27180fd2841544b0b1c6226ef6adb5b421fea9bbd1", - "assets": [ { - "fingerprint": "asset18xmcvlp8423gd7cafs2mp27s4q7tn3rey8laez", - "asset_name": "546f6b656e45", - "quantity": 6939 + "fingerprint": "asset1k8hfw5jquu97z9llk4htt4ghwfpjds24d5rx8g", + "asset_name": "546f6b656e49", + "quantity": 4731 }, { - "fingerprint": "asset12aelj3l8l5nvyjsz8c62tl2v945xmvgkara8yq", - "asset_name": "546f6b656e4f", - "quantity": 7974 + "fingerprint": "asset1lauah96nfup3ajdnrmaxj3ktgk9atdcxv5j5l6", + "asset_name": "546f6b656e47", + "quantity": 1922 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh146yryr3xa7akast90x2ye8h79ln5vnmfrntknl388jpewjnkx2f", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "ae88320e26efbb6ec16579944c9efe2fe7464f691cd769fe273c8397", + "policy_id": "a933c43242de8a68af2e2f4fc714d6ad08def04db0c79e0de78453f6", "assets": [ { - "fingerprint": "asset15lyphx76s8vf6leglnrpnrvdjc6wechv0lquht", - "asset_name": "546f6b656e57", - "quantity": 8166 + "fingerprint": "asset1pcqrz9g33ednwq3q9xtklfg644h9u2darcaxql", + "asset_name": "546f6b656e49", + "quantity": 8390 }, { - "fingerprint": "asset1akpdasrgan3h6d9u8zeuxvk496zxlk9m96hfal", - "asset_name": "546f6b656e52", - "quantity": 6996 + "fingerprint": "asset1mnw3tfk0wrpryndrlu4xceaneq2w4g04873huh", + "asset_name": "546f6b656e46", + "quantity": 5843 }, { - "fingerprint": "asset1asfdz25tew58lkxm9mjn9rkt47qmu3u309x4tm", - "asset_name": "546f6b656e52", - "quantity": 6943 + "fingerprint": "asset1jy5jt2aleu09nz4k0qw8lwktn9fawy2yt2apc2", + "asset_name": "546f6b656e44", + "quantity": 2053 + }, + { + "fingerprint": "asset1del36m6jlw69tshx6rh58dm5x99zr2xla8myh7", + "asset_name": "546f6b656e45", + "quantity": 5017 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "50393771a174c875efd9037a949709ea8a57c5a9c0e7973ec3c3538b", + "policy_id": "6bf465c30eba636bca7f8b9a605f0e2c58e3b88c84408fdc5456f9bb", "assets": [ { - "fingerprint": "asset1hp97vpejnaz8jvrme69z7ac0887wamh30hq6p3", + "fingerprint": "asset1rmaq394qx5x5s44kyh54dtj778eld9pj0wsa7s", "asset_name": "546f6b656e49", - "quantity": 6000 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh145t842c5lprh6g5um8qgr0yg7aljx0vgn3fj7gf7q5s5kc48j9k", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "ad167aab14f8477d229cd9c081bc88f77f233d889c532f213e05214b", - "assets": [ - { - "fingerprint": "asset1fk84xj4jsj8553j0scetsk889wpkad5a0ylcjw", - "asset_name": "546f6b656e4c", - "quantity": 5160 + "quantity": 6381 }, { - "fingerprint": "asset1evl8lpjzse9pdgutl92apqh0luj2m4nf5hn7n3", - "asset_name": "546f6b656e4b", - "quantity": 9871 + "fingerprint": "asset13sdwturccgsqxr4wccaqnmnx2a8jn9t46wlm2r", + "asset_name": "546f6b656e59", + "quantity": 8142 }, { - "fingerprint": "asset12wsg7mzh2pw3sy07tfau00at0x92n6c6lryk0w", - "asset_name": "546f6b656e54", - "quantity": 5050 + "fingerprint": "asset1uy8ny05r78mkxdmrde30n5hk4wxh65w54vlun3", + "asset_name": "546f6b656e4f", + "quantity": 2825 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "1fb9ba09a519b992c6aa6280524245c1be0ac4a87d76b64f442481e0", + "policy_id": "b06d3321471dfe975249bb1e78664662b14d65cb98e5b8e2c7fe5210", "assets": [ { - "fingerprint": "asset1ps6s7fhp5lw65082p853ml2jygud7wxs4ell08", + "fingerprint": "asset1l260vkjlekkpptcdlwtd9wsahgtzgpkfnmmn0t", "asset_name": "546f6b656e57", - "quantity": 4959 + "quantity": 3705 }, { - "fingerprint": "asset1cwqqry2fj5c95fuqaf4ttvemgmh9up0mffdl63", - "asset_name": "546f6b656e54", - "quantity": 6967 + "fingerprint": "asset15905nv0e2pdtpaj5zkrlk5njxsdqy4uu2l9qwn", + "asset_name": "546f6b656e59", + "quantity": 8504 }, { - "fingerprint": "asset1j6thrhv6lc8330su6uc40h0xascklw48s72nns", - "asset_name": "546f6b656e50", - "quantity": 6761 + "fingerprint": "asset1a5kagk0j26kdadzu9kux3ngp7dnlqlzdpph3rg", + "asset_name": "546f6b656e46", + "quantity": 5181 + }, + { + "fingerprint": "asset128z80u50p486s0xj68rm26pxpqwayewg3e2za2", + "asset_name": "546f6b656e47", + "quantity": 646 } ] } ], "wallet_policy_key_index": "0H" - }, - "fee": { - "quantity": 208, - "unit": "lovelace" - }, - "certificates": [ + } + }, + { + "withdrawals": [ { - "certificate_type": "genesis" + "context": "ours", + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "address": "", + "id": "0e6b335aea6e573c0f1f1d62676b1d2c64c117336472b32771458231ab617a54", + "index": 30883, + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "derivation_path": [ + "8883", + "17890", + "1001", + "14555", + "23234", + "5678", + "28699", + "8061", + "31678", + "31324", + "21373", + "2649", + "9280", + "6459", + "15362", + "19564" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "272785703614cd8e57347a89500d7f3247395b531d41744e79450f6f1e407601", + "index": 0 + }, + { + "address": "", + "id": "15ea350d5d50205b74020d207c0149575d5139033f0c3f32a1905d1611090542", + "index": 25845, + "amount": { + "quantity": 175, + "unit": "lovelace" + }, + "derivation_path": [ + "26771", + "1597", + "21680", + "8758", + "5270", + "31971", + "31654", + "13956", + "23950", + "3218", + "30905", + "24119", + "18037", + "24195", + "12097", + "855", + "20231", + "24133", + "13337", + "7631", + "11678", + "15865" + ], + "assets": [] + }, + { + "id": "64163113466770296b07092814607a1f4d61576d265661707683ff4a44614e04", + "index": 1 + } + ], + "collateral_outputs": [ + { + "address": "", + "amount": { + "quantity": 244, + "unit": "lovelace" + }, + "derivation_path": [ + "28020", + "31289", + "13915", + "24874" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + ], + "outputs": [ + { + "address": "", + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "derivation_path": [ + "32474", + "12293" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 34, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 194, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 196, + "unit": "lovelace" + }, + "derivation_path": [ + "23545", + "2872", + "20267", + "2280", + "8686" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 55, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 167, + "unit": "lovelace" + }, + "derivation_path": [ + "4932", + "8067", + "25693", + "20761", + "12426", + "14450", + "10710", + "15865", + "7928", + "12320", + "22957", + "14246", + "27506", + "28109", + "27106", + "3776", + "19524", + "3177", + "25839", + "14368", + "17961", + "9802", + "9717", + "27349", + "11600", + "28030", + "5886", + "28137", + "9231" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 250, + "unit": "lovelace" + }, + "derivation_path": [ + "31717", + "31910", + "995", + "5180", + "1176", + "20092", + "26582", + "25138", + "2854", + "25159", + "11038", + "1969", + "9832", + "17649", + "2643", + "20597", + "14006", + "821", + "14413", + "4467", + "30066", + "26259", + "21032", + "3037", + "5419", + "1470", + "6014", + "26893", + "31366" + ], + "assets": [] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1kw28hyxluck7e472kxfarzw5vtj0st9nkvxuvcj72nhnsy5mmels7qrvtd", - "ed25519_pk1fjty6afqnc5urygpjht0uan8prtuzw4jn5j2yl5y7ce0eyz7yv3q9alrfz", - "ed25519_pk16wf9c8w39na4m7khnfzyrlqe4lnewrl6qf9jtd06zpnnpv8zj49shennqg", - "ed25519_pk1yz82shtt79tw4a7msmd23f9s0d283rpeetvdwwq7sggt6mj2cqxqcnz5h7", - "ed25519_pk1yu0nx8uvwrlvnjmddvlmq2pgnmxl4pw0wjfzea9r939k52zclj3qk00hz0", - "ed25519_pk1mrvt9xm46spdxdlfw0scuq8q4ayq6jnvp0l5r70jla49x2kuaq4qfxj9h6", - "ed25519_pk1gheul88pcfx6tr44zeruyayxjs46uhumeyuauccfrg5ef04jj0jswjrqla", - "ed25519_pk180hgjmxs9v9hjh6lrtp6js4kc7wrdzmvhgnjrw2ydsn8607594qqfxey06", - "ed25519_pk1rxapkses58lzqlfgshvzz2lm36u30f32ntczzygcw0e4ax3ngcmq6r20z2", - "ed25519_pk12x0djcm45h9z3ug2fl43e02trllfhfff22hw5mhfzxtjyucnhcsqzeyzaa" + "address": "", + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "derivation_path": [ + "24028", + "26375", + "371", + "5246", + "8878", + "1621", + "27516", + "4357", + "5431", + "5254", + "5482", + "23705", + "19750", + "19615", + "30077", + "14760" ], - "pool_pledge": { - "quantity": 59, + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 31, "unit": "lovelace" }, - "pool_cost": { - "quantity": 140, + "derivation_path": [ + "30118", + "337" + ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 201, "unit": "lovelace" }, - "pool_id": "pool1es8k3a50rcjnfaffqlspe76289lq67mc4yqdynd6hnevcxerdls", - "pool_margin": { - "quantity": 87.86, - "unit": "percent" - } + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1n8s3eg3r29xfzkqlktq8qzmys67rc7k63d7cl8325qaeqs939gus22nvht", - "ed25519_pk10aswk86rg5vdzp02y927aqj4lt9g25qwk7g037t95cledz2d2nhs63gfhx", - "ed25519_pk1c3jmls7fqmsukefnn56c8krhyk7ly5255wafp92tyqc8h44nd5fqq7d9ev", - "ed25519_pk1ulw74jgre5fagvzkzwfddggsum08t6zpmumtlsx93ycepcup5u5qptketn", - "ed25519_pk1n64h6995dyf70gu77qfefl7sxusyjazyj8fuajzsx40j08tdepwq03nxax", - "ed25519_pk1epkstdl36akt649c0enhw6gzg4umat77hkufj74hzgughehtjp3slnqr6z", - "ed25519_pk1w967e53u7vkgxfu93h46zywq6gs79t90mshvs8mzzm0xuae0sn6qy70k9m", - "ed25519_pk1f8y37cfv63gyy38s4l5jgy2fm5nesns0ay9hqapuxj2e7s4kckvs2nlvzs", - "ed25519_pk1qze9h8fl4pq20vscva8vkxfxgqtjyl6njt7ka5x48x5mhm8p7rdssstusa", - "ed25519_pk1f7cn32nd4u62slmg007l34g6gxuj50rv482qus4j00hfprwn93qqfhsd2p", - "ed25519_pk1aqyxlj8tqdfvpghmceenthyj7w6vkz3pvsvwsgx4ncyfgqq5heksgjvjl5", - "ed25519_pk18907djk6gdqldpspdcp8k5qc7hrkfqqcd7gywe90vs2rtx57d69qa3n6c9", - "ed25519_pk13n242aurl4wdflauep42pghdr0av2kzxl79cl5qgy88cp936yw5srn966w", - "ed25519_pk1nxq2l2l9p6vxnwhfkf487zl27kn2a9l6msxlmk3y69g25tfs0f0qstkht2", - "ed25519_pk1lg7t426ztaaf5mtqwy6yd658ax5dyawe9c020l02u36k9pzuul5smnv0mp", - "ed25519_pk1mmwadafc8qgdp9827spl9a0dmq5gxcqrdvjjmgct82xjyh4j3ffqsxa8qq", - "ed25519_pk12lwy7mlejfdla7ypm43zgjpw02gx6h8gu38ynv2rrrx3s009ax3suymtfy", - "ed25519_pk1pyq44pa6elglylyp6p8ulc7ptjdprmz3vq2z2g6jm5scrlcfk43sdlss8z", - "ed25519_pk1vgpj4x830g9tdhqrrg25c50lwwxanctxwwgaa34jujjtetqcfqqs59xz38", - "ed25519_pk1nrd8rw908renmm7z2zvc7ty9sr2fckh20l3zydm7dlmt777u2euq43cpxg", - "ed25519_pk1446ykjer64xemgu6ja7pln2ah8cgqyfs8m3d43qjsa6kq0z9h2es65y5gm", - "ed25519_pk1s873xhczqr0efzzfurdefkm60ejw99e9cvjszleg7r25uteeyzusm55wkn", - "ed25519_pk1l8tycggkk9ssu3yn333ze8nl8tlr7wt23du8z0wqtaj2l2zxgj7qx9mhra", - "ed25519_pk1g47x2xfg78hv6juc2nsha2n34e24e7gs2sanqs0drkl4reldzntqyg57mz" + "address": "", + "amount": { + "quantity": 154, + "unit": "lovelace" + }, + "derivation_path": [ + "27488", + "4292", + "23366", + "21058", + "30265", + "22422", + "32079", + "10579", + "18143", + "8205", + "5560", + "13681", + "1547", + "18857", + "22186", + "9149", + "19878", + "5898", + "21174", + "22146" ], - "pool_pledge": { - "quantity": 255, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 213, "unit": "lovelace" }, - "pool_cost": { - "quantity": 26, + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 188, "unit": "lovelace" }, - "pool_id": "pool1vuwtzlwuwnzt7gxrxxlqmkesx62dp5ujp78j6vsfmmt9j7nxfuu", - "pool_margin": { - "quantity": 34.13, - "unit": "percent" - } + "derivation_path": [ + "7753", + "15328", + "3944", + "272", + "26660", + "32296", + "30609", + "17583", + "5313", + "30673", + "16061", + "25295", + "23855", + "14261", + "9469", + "9835", + "14494" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1mp59yuk5a6t6gsfcdjqyw9xqta5gjkqf5n4ks8zw907rx8ug006", - "retirement_epoch": 22277 + "address": "", + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "derivation_path": [ + "21989", + "13904", + "24297", + "8176", + "15616", + "30050", + "28974", + "17373", + "5702", + "14228", + "13284", + "25773", + "15364", + "2414", + "29837", + "17651", + "13195", + "890", + "28856", + "4920", + "17141" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "certificate_type": "join_pool", - "pool": "pool14ep2vkvpndd5u8udqtjrswlarkhxl95x7jdjatlptzyjufn4m7a", - "reward_account_path": [ - "12155", - "23944", - "3399", - "22912", - "11931" + "address": "", + "amount": { + "quantity": 120, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } ] }, { - "certificate_type": "deregister_pool", - "pool_id": "pool1utzd2hs0sjyct0jq7yc9kldhkzp882mpatv8xlxef3u6uxpgeu2", - "retirement_epoch": 25858 - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk17548xq3mqlnhtyh655fh82d2ngug4xva35fp8luh4ae8984emwfsjvl23x", - "ed25519_pk122w2etr0fgsh6uzhhmcapuhfw5pqq7d83z4te0qked0eseadjdnqgaxct9", - "ed25519_pk1s47wv2nm9kdmhk3gq9s3ktj49ajdux0qzx5xkeu8u0j5h0vhcy5qj8pmgs", - "ed25519_pk134m6nmz0wttelks7udnt9jdmg4klelxzt4lwwhnuct0lm9q07g9qhj8qxl", - "ed25519_pk1y3z9ln7cphm5v9u4t54vd3snvsgsd88fnyvvfekstsl2xqj6863q89kyed", - "ed25519_pk15pxvu52qma0l7snstkd6knjmqzg3wh8mfv24498e6nmqrgq3kccs6u43aj", - "ed25519_pk1n5khra9yazw6js4kjszmg8x45ynd6s3kh4vfdfsa740a6l4dljaqty7cw9", - "ed25519_pk1u43jzvm0e4qt32v6nxf7twrwyunujgqvguzu097l60eqedyvcp7s7htagk", - "ed25519_pk1txrxrs6yldnmheqdfhyjp4kcqyqqjwwasszjq7eryqh72qn8qcps8ca9jt", - "ed25519_pk1s9hqty8h6zrphd9zw093z56u672qzqelmsz8e5fl0chk37jgskfsvkjpy9", - "ed25519_pk1r4v7nx3w4acclej6nc5x0qg7mc4vmeg3dv58hx5z55teak4y8zcsf4sqfh", - "ed25519_pk1unqudp8znzxk2g6m75cuv84k8ne9jceaqcdwk5y4qcrj69n47cmq9dpt8c", - "ed25519_pk109zwhnmwu0pdf8whzu3smv4g6k4j0weta486auxm6vdzxlse8a0s779tgk", - "ed25519_pk1s8fkmmdqghztcvcw9kkxapq3f2w8suhf7npfdfv45w9aeg6a3cwq83mk7g", - "ed25519_pk1x06uqx28ycxe02tkv8e3gtgqv2esya8erdvmjdg7n6fzag40ghcqqfe492", - "ed25519_pk1nf7rgxrle7jr4mv67ugzxk8l6kgvu4xe849cmmqvhgvwz8tv8zlszd6nq3", - "ed25519_pk1dvgetrvxl3vxmvz372a0fx5srhrdd7p3hj9pl70n6rx8f23vt22qjp2lg3", - "ed25519_pk1grvzzs9736mggmv4sr60gshn7yshcce6th0976s9yj0q0af0996sxugn0a", - "ed25519_pk148mand0pu683scwp5l64p3an2mryvj836utarh89l54zfhdttt2sr6wjs3", - "ed25519_pk1zr79cdr40hw42xfr4zhf7m6w3x95vhltvhklj0vudncmha3ml8fsjmhyjr", - "ed25519_pk1wksf40jvqngj2g50g5q7w9lwptrdqvcjjkx7545d33ldyjc83myq9nfwhl", - "ed25519_pk1l5zj9u9jxsacwu6qmlzu7pc9s80m56wfuc29fclxjpv52ukmh89su0rlgt", - "ed25519_pk1avwpu96jrzsvc8q3mm7uvyh0qanjp7c4h5xg93uuld4fhf0fvmtsq65lsv", - "ed25519_pk1tmv7a9ar8sucejg0ny49gufgst6uql440jt9azxj6d3a73nkfwcspkptgw", - "ed25519_pk1lnqcc2gr0pjnuy03y7arsunfy5wpryx708x6qte4cwd5xtrwexnqs6ed92", - "ed25519_pk1zfy97d2999henezz0y947nesvrqhdd6mzxndwvsqnhxw3syt2e9q5jtgvp", - "ed25519_pk1dznafk5xandt8pzg0ytspel5vk68q6rwy2qnjudjfmn5wupkcu6sn3rugn", - "ed25519_pk1f78ndp0srukr4dwk8pl7cxc8qm7l7qdynyd96sw7jrp4m93ls32q0swh70", - "ed25519_pk1dhqepldtv2qm3l76jdqk0qqej3qtlq4g8a8zmqawlxxw32x4xwrsh7kds8", - "ed25519_pk19amn6rc9ut4555tfx6lhc9mrnhrxpgn0h0pfxpmjqact5zfnrkvsfe75ev" - ], - "pool_pledge": { - "quantity": 168, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 215, + "address": "", + "amount": { + "quantity": 21, "unit": "lovelace" }, - "pool_id": "pool1hyk03r9yz3lcz0p049pqhathrr6fu2ge64tegl25y8myjvh5v5h", - "pool_margin": { - "quantity": 61.62, - "unit": "percent" - } + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1nuzx3uv5klt68gd9x5wymqzxw3htrvvsea56t4n6y22gyx6fnqmq0t0zqu", - "ed25519_pk1x4ztzlja4qv5mdwsvjwwzmrn06t8rggfu4ffrvdxapwxp3erqrpq5y8jpx", - "ed25519_pk1lvmtp5z0dzld3y2f3w6nnzyxhkmmq5r7hr28jwte5470vg6jclnqh2eddf", - "ed25519_pk1jzuvfj6tfrp6q696t7mpwlkfcnrn8gckm58hrtht9ppuy5kd99kq497u0e", - "ed25519_pk1vts6nvgsxh4zvplg26rflzkpa5qvpm72anf2wryccf8uvtr6tjwqa7he6y", - "ed25519_pk1gmawz6e8syt6j9w7jrex09ch6970qqvxa8qjdthv5h26xrx7623qhcltph", - "ed25519_pk164rldpw6vfp0jsnrwlnfgk6v54nlc4yc6kh76pack36nn2v3py9qvtenwr", - "ed25519_pk1v4ye4s83ctklrlknnz7hh0vhqdk9krelu57adartytxxhhnyfkxquxqw34", - "ed25519_pk1atk63kyq2c2xdvx49kqzw5kg5lj502h2txz2vlvcmv4f62m6m6uqfjum7g", - "ed25519_pk188l74jxyl65ux4pucnlj4e4e09mq3rd50un2k53hrd0zq9trr8mqkrt304", - "ed25519_pk1684nr2uqewj0xfympyky9y86vdsefrsp4dnxet8cf9su6e79dlzsrx8use", - "ed25519_pk18z2hvy7puuvjhxzrvad36cpllga5jkts3vsrc039qktf35nelj4shvkaje", - "ed25519_pk1zc07cxrpcv6amw8eslwryxd4fm9vxcjlz4qd2p8244fyv4r9337q9ga8y5", - "ed25519_pk1te85tgpvtk9xc2hghktclr29v3mgg8dzw4jnp7l9rhwq5syw83rsr2g0k8", - "ed25519_pk18ah4t7eevt9wc2yjpmsls54v2j8wnw8m75807lux8duq37m2zx9slyzmr4", - "ed25519_pk1x64wwfhzdhq8wclvgeuvz9hxeasu087h0acafswzu7h97qxnmkjsxnqzuk", - "ed25519_pk1n5dlwk3kgsl7xp0rvhra3w5w3rxemdgz4qzdex9mvrcqwmtnrf5srtqn7n", - "ed25519_pk1z3qgd7jgyrxl6vu4hamnke0stmhzfvt5788jvck7x5r8a0yd5gcseaeh33", - "ed25519_pk1jf6rdquk5vdgk30xlzxc6vuug847fuzpkjdycd6q7ztwrw5vjgvqcdv93t", - "ed25519_pk1rx2g9ru2ttrcjmdklm23ng6jx4ww0qyxymlsmd6xmsn6ternndes9vhg7h", - "ed25519_pk1wcyux94crklzmgd4whvntg7unknzkylnvnsgkzhzfz24wrxssxsqx249ge", - "ed25519_pk1wym95sz2h0j9u026auct7mk2xaqpy6mw3y28gvkad4m2cpq6775q5h08qw", - "ed25519_pk1fd3ek6u2qc2xgdwtyzwwc2g9rx0zh9ljspxray08qrc7h65gfvtqsr7huw" - ], - "pool_pledge": { - "quantity": 165, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 107, + "address": "", + "amount": { + "quantity": 230, "unit": "lovelace" }, - "pool_id": "pool1xppnxxs0wjrv5395mcu0k264r4alq78uxap5zsrdw50sqpryrq9", - "pool_margin": { - "quantity": 1.59, - "unit": "percent" - } + "derivation_path": [ + "23111", + "9529", + "30951" + ], + "assets": [] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1d5qtpcwwa76en9tk2tnw50gmx6ls0nc740g8l6jywffdrtw8uj7qlw7ugx", - "ed25519_pk1k9j2vz2xdpqm4rw2syqjg024jqv07fct0vjyrmtmkgt8aj05a8nstv3mwr", - "ed25519_pk1m6ffalg5e78d0df34ywvm83pm7kvxc00pnrnza3v9d0xwe0tg43s43esgf", - "ed25519_pk1y3fdeamkzdd7nq6zzpy4p02h2vcqea6wkgu555gw9xy39nlk2z5sqq02k0", - "ed25519_pk1uwvltl96cmp97tcq2z9f53hxcls30uhg9r8juxfy0s99e3tac3nsrnwyxp", - "ed25519_pk1ca8shlqg6wqzshzxkrr0smur8vua5exp8eccaf4dvr37lkcyh04sjtwdtt", - "ed25519_pk1s5qg6ut02rm4ugfwws8qflkzveds802p76qa3epqenaz4f7ey2psauz57m", - "ed25519_pk1c62vwt7sp4rlky7xxqxker8f5p8hshwnxftxzv7g6g7ykfu7lw7sgvh9n7", - "ed25519_pk18a7k5rx0e6k6tkscv2jlh0ctga5704apystxvhttvhl7duc32aeqq6vmmh" - ], - "pool_pledge": { - "quantity": 177, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 64, + "address": "", + "amount": { + "quantity": 251, "unit": "lovelace" }, - "pool_id": "pool1hrqytupjc3kc5v6g98a0tt2k6muyhjcgt7x92p0a5y8qkc6y439", - "pool_margin": { - "quantity": 6.13, - "unit": "percent" - } - }, - { - "certificate_type": "register_reward_account_external", - "reward_account": "" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool18dfj8ypzwx6uz0xnmr09wduzfd4zephadp28z5ny69neg34q0ka", - "reward_account": "" + "derivation_path": [ + "15316", + "15085", + "29842", + "30464", + "25171", + "3601", + "31639", + "7431", + "5694", + "24910", + "7081", + "1468", + "19755" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk14n0kz88txcyxhddw96kl8ajghcyy5g03z05rtn456evlfddfeu0sjf9y66", - "ed25519_pk1mlxqn8unuuatvc4wz3h682alvrpayzxr9x05zd5up2xnt3lgqwlqepanjr", - "ed25519_pk1g3dw4vdyfyz35nxu0qfup6nlcuwqshz4xlmq6fz4psj4lfq0mrvsfrajk7", - "ed25519_pk14z58zm323srmrv8x4lqtp55j4tyrpddnhxmdvkvyn0dl3rw0jzfsmr2p2t", - "ed25519_pk1wpepd7mhh69gshga63txdz026q8ptqxsn7ktekzl7ypufxyyd53qekvyhw", - "ed25519_pk1v7ss5dms2chhudf69pkckjg7ny8taqzhaswx2cjnluzctha2cnpqtpq325", - "ed25519_pk1lj2gwspf0vuyzf3yjjkynwkphmu7lej86hctxyfgypmupqu5aclqn7h9vc", - "ed25519_pk1532j345jkpvlmg8rq2usp3jmx36t0gzssyeqf2vv2q9u0za6eqhqea8l7q", - "ed25519_pk1gefrl6e43fjwxg3zf0etpvh29p0w28al7zkalnpvnfu3gnpt42ps7flxjs", - "ed25519_pk14jnc58yyursyq2t4c09ck8mm96h0tgkqt7tpf8n6vxms6ggsldmqgg90t3", - "ed25519_pk166rgdp8yg288lnljhvfra3znz6rv2a0uj2jrumd3aczzjr3ympzq0shvdu", - "ed25519_pk1slj6nlk7q3dk24usmxmvt6xc5v0n47tdyl4e7kytkahmxd6gsxqqpfwhas" - ], - "pool_pledge": { - "quantity": 61, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 135, + "address": "", + "amount": { + "quantity": 234, "unit": "lovelace" }, - "pool_id": "pool1dne32ycyrdstysvfu6um5j0uzhvqlnqgl9xvwsh7cs43sgd09jh", - "pool_margin": { - "quantity": 88.16, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1cp4gpqwg6hfphmwyzm6cvru2kpfvahplzw3mey3fwwxku5nz3wl", - "retirement_epoch": 11581 - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool1euyjuc8wculeyllym95nnqmwvjz0g2x8musyela7v5x5va2hhtz", - "reward_account": "" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool1k8ppt65rt8gh2nyjlwrcd6j9h2cj5f2pu9nkd3q4sccjq6z05r4", - "reward_account": "" - }, - { - "certificate_type": "mir" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool19prnvc4p3sjlayspyhgz0x7asj9sap0ufe93kdc6qdvwydq5mev", - "reward_account": "" + "derivation_path": [ + "16076", + "26225", + "13968", + "2373", + "9345", + "5230", + "20689", + "9461", + "29945", + "27533", + "18708", + "16793", + "12566", + "11469", + "28441" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { - "certificate_type": "register_reward_account_external", - "reward_account": "" + "address": "", + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "30406", - "22436", - "10854", - "18611", - "28034" + "address": "", + "amount": { + "quantity": 74, + "unit": "lovelace" + }, + "derivation_path": [ + "30203", + "25097" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } ] - }, + } + ], + "id": "4a797f2803165a2a480cd82cac043d6d2c77703b1c6459285a7c4e074027de49", + "deposits_taken": [ { - "certificate_type": "deregister_pool", - "pool_id": "pool16vg3cda9vg7lxnckz8z99znv90t8fve76hwvvtxfrarvcukf96d", - "retirement_epoch": 32154 + "quantity": 58, + "unit": "lovelace" }, { - "certificate_type": "mir" + "quantity": 47, + "unit": "lovelace" }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1r65e0hj994a5nxl6eekrt7szrzxrxf4gpjdc68h3uyz5em4prpkqfvr07d", - "ed25519_pk1nwyyprrnyegf5japckwjg6e8605ccat5frsrkltgy2nhtluq6yzq2rt4z4", - "ed25519_pk1kg37v9gs7w98ntynf630546lmra86t76wea4pngdkg6hjx3jrmss4344fl", - "ed25519_pk1xr40vwe0jxujvd02ft6y4qfyecms9yar26usgsha4n677k2rmewsk6rprf", - "ed25519_pk1ymwnq22yjr5k5tnzz7ukmeejz9377a7un3l6f58yn9dhmpm8v9psh6dske", - "ed25519_pk14hru6c2ux9t9ad90w0wunv6yc8tal423g6fsc5ltzmsaadef2glqq23kfj", - "ed25519_pk1avgu2scws3dsefwrytp2f09m0lykl7x778h5cyv0vqqcgn7ytdzq83fqw0", - "ed25519_pk1mhv0s352ukgy2mkufrv89ukqkw8ttdkd50wmaf0z895er58jag8q34dyvu", - "ed25519_pk1k5hsvfek38gztvfxmm0r0txd3fsxg7p6eddyxwr072pp33g463eszd40g3", - "ed25519_pk1s70h88wjrvylkhlcefp9qw7ua55fsnqpvwnw376ctxquyhcfwjgq9a6ghg", - "ed25519_pk1pwk25p65h3puf54a87wk3x867j7kheqv7jvqgk0njae2xgn260es4r8rlp", - "ed25519_pk16z95d3g2zegxcnhxcn45xg6c02s72c3vl8jhhn449x8dtpqqe4ys8r65tn", - "ed25519_pk19j2fc8a60md66z7wwahkxvr5f0qdnq6kc92cg6rn0davftnkppxqz8na20", - "ed25519_pk1z3n0tgz28ucxdrtp7g58252av6ptvac0s7yg7xnzldtfzvph9x3qy7chx5", - "ed25519_pk19kfluq42xcrq5g0aarr6dqx9p2ndvgquf5wg0sqfm5jkczed624qntypll", - "ed25519_pk14susezm0s8vdkakgt4jmupwmmgdcclke8p9xrqjgfrynq5mnea0q4cxr0p", - "ed25519_pk1hffudd5k6we30cq70p87cmch6mkd5syzegv80vjtjgzectgujk5s8367zx", - "ed25519_pk1xrru2hh3ygpwcaghvg00q6qtkx90zua327cmyjtyeg3nx0c8jp3q7e4wm4", - "ed25519_pk10067qz8ap2zt6efuz4lc4aqu22teu86y0y03j5087ngrrc724r9q57g4c0", - "ed25519_pk1uy6ptzw5rsxupamvk9fylktrz2jah53s7m9jzeydutrz3495c8esyk4c3c", - "ed25519_pk1q622eqj0suhq6quesswzfh8w9gs0s954yxnysf8vlt2ktn2kkwys2tu0yv", - "ed25519_pk1x6jnew8ke7297gut9ujdem064azsk7n3e0vzjgxfggqew7s95jgsj35ffc", - "ed25519_pk19sgk5vww2pzrhtzpzwthy952cqa8nrt6h0tqyz9yq9n2ln805zns4dv3g9", - "ed25519_pk1syjcgwh4ufcxcvlw8w8ucv4arfygfzjl7rv0w4vccngpk8m8puasupn8tv" - ], - "pool_pledge": { - "quantity": 252, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 192, - "unit": "lovelace" - }, - "pool_id": "pool163ktmmze8yfj9h6l6ql2hhnkhu6hk2yds6fj0d82nr2l7j56h7t", - "pool_margin": { - "quantity": 70.02, - "unit": "percent" - } + "quantity": 58, + "unit": "lovelace" }, { - "certificate_type": "genesis" + "quantity": 143, + "unit": "lovelace" }, { - "certificate_type": "join_pool_external", - "pool": "pool1u0dfcfpv839alpwnljht298f2rwt7fm34xmady9jxuhzwd4unlc", - "reward_account": "" + "quantity": 69, + "unit": "lovelace" }, { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1lap49els8hc56zxlr0emu22a7ca2aqcve64s2a6344kvlt5t62msgp8pas", - "ed25519_pk1efawy3gzjw44pjnrunqy22ta4rt9gdf9dedq3mh435yhu2lmkkxsefscq0", - "ed25519_pk10lamd30c8f38e7w3p7hyemwudwzg6qz8dy8v4sllvfhym5hylxjsv25g6l", - "ed25519_pk18fzmm8jezprd3esc5h8tpk6v43mzckqmz4znvy69d9jnz85ddc0q00uv8q", - "ed25519_pk1y25ay672wxnfe43r9envkl0egz5zsfy2k3jyuwslnmflrcd6hvpqy0u2ay", - "ed25519_pk1r0dwwdqnvlyy0w7n6cp5sgdlduwchah2dwmjwxqm95n4tg9cvf0q49x6tn", - "ed25519_pk1v9u8rwttgdzqpqth0skhk6g6gp5hjuc0maywwpq0ny9xwamk7q5se3w47f", - "ed25519_pk1qxexq7k9p2mjme5dceevsm6kryt6mv8amyyz4svf3kh2xqz8ztzsg78duf", - "ed25519_pk1au42sgsvn7uzjeed920l0ts8qdqu9gxhn5gw4yd6ukfxvxcefrqqgpy5fp", - "ed25519_pk1wq6vafa4ktgrtq88p5dntvu36ud7v58ma7khl9crqz4k7teyw45qkdkzaq", - "ed25519_pk1chszwj6dxdn7csduuq9nvsxszkwkhv3d6nv5f4hy9k4rlvxu07hsak7jjr", - "ed25519_pk1f773mlxvw05rpy74n3sza9e4qsg9eeyusc9msuuvhft93fpwcn3scq8sce", - "ed25519_pk140x9l7rqaya8wup629d8x4qxvt4f77janms9ascrk5tghcp5snjs4ea7av", - "ed25519_pk1x6cx7c9kvl3ppkn6ny0uh3s8nzjqhq2kc3z57nnhmw0avchau93qhavy9a", - "ed25519_pk1u2eh0wscl8k08cgms9fnm2rmxkens6nwvvk5nsmplvguxqmsa7rssts7vk", - "ed25519_pk1yttd4ryjf28lm27sfcf98j0q3fg66acrdee24u8658p6scw86rmq03slkx", - "ed25519_pk17e9yr32s9g3g8u4jd33dte3kq2a2l03t868akx45c9k7rkryu80qa809sp", - "ed25519_pk1xf6d8spg3zm4jktwq6jq8ze46t5cc525wgxq0aas6nu3zcs9wawqhh8rk3", - "ed25519_pk1rzdpjvyrwu3vahr3f07vffz34esdlk2zr39w73t3d5u94y3z5wns3zu7xz", - "ed25519_pk16rylhn39eyup6v4mzqvq684jjpha6fylw0w8falv8veee8mszp4szvl78p", - "ed25519_pk1938fneuup0egxkfldrxv2zm039q8t3emapsnnnlf2fhnphmwdmysml006n", - "ed25519_pk1r49g34uw2p84575zswsl7f4th65gje44tjpgasy4cxdej0h22xgqsrmrhg", - "ed25519_pk1l33f8njlu3v5kf8zy4ytuy8vrmaa3el4j866xv0gma5s37stsu6suqh6ll", - "ed25519_pk133vzqjvgfd94y6kp9js7zmrny3eahl59l4ep6wp44rq2udae9flqmt29j3", - "ed25519_pk1s5jjaagn3x7f3stcxlt6l23jszm6lcpmyffq6qtc5dg8zhq2kuksl65hrn" - ], - "pool_pledge": { - "quantity": 248, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 211, - "unit": "lovelace" - }, - "pool_id": "pool1nvgyrczmxqcpywzc666lmserja3vuqhxfmgqvela7m7vs5tjpgq", - "pool_margin": { - "quantity": 71.11, - "unit": "percent" - } - } - ], - "deposits_returned": [ - { - "quantity": 27, + "quantity": 33, "unit": "lovelace" }, { - "quantity": 140, + "quantity": 36, "unit": "lovelace" }, { - "quantity": 183, + "quantity": 120, "unit": "lovelace" }, { - "quantity": 113, + "quantity": 171, "unit": "lovelace" }, { - "quantity": 58, + "quantity": 114, "unit": "lovelace" }, { - "quantity": 179, + "quantity": 127, "unit": "lovelace" }, { - "quantity": 234, + "quantity": 137, "unit": "lovelace" }, { - "quantity": 169, + "quantity": 87, "unit": "lovelace" - } - ], - "metadata": { - "2": { - "list": [ - { - "list": [ - { - "list": [] - }, - { - "map": [] - } - ] - }, - { - "list": [ - { - "map": [ - { - "k": { - "string": "󶛟" - }, - "v": { - "int": 0 - } - } - ] - } - ] - } - ] - } - }, - "collateral": [ + }, { - "address": "", - "id": "e2213d17152e55867d3c505c2b33220a3c8e716866443909392c4f55da797742", - "index": 18999, - "amount": { - "quantity": 139, - "unit": "lovelace" - }, - "derivation_path": [ - "9867", - "722", - "13718", - "1347", - "4580", - "889", - "18350", - "23976", - "27571", - "936", - "727", - "22796", - "29250", - "5011", - "12965" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "quantity": 172, + "unit": "lovelace" }, { - "address": "", - "id": "62444a712f7853021326097d6d05550d4e3f31056b372c7343d8013f47bf581f", - "index": 4391, - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "derivation_path": [ - "22274", - "1435", - "15976", - "9787", - "2286" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 127, + "unit": "lovelace" }, { - "id": "634653410c0a0802613e237e4642b77134c89318ed282a1d0f0d0337b1430d5d", - "index": 0 + "quantity": 139, + "unit": "lovelace" }, { - "id": "4e316c413b7e72af486e213441fe33425e11ff3f7f1f1229271b220b1e446d02", - "index": 1 + "quantity": 61, + "unit": "lovelace" }, { - "address": "", - "id": "4f5e43ad1f7f17715f561a014b08557829aa3580c76f3b04453e7e758c1e5136", - "index": 25312, - "amount": { - "quantity": 99, - "unit": "lovelace" - }, - "derivation_path": [ - "8746", - "8732", - "3635", - "10187", - "29507", - "26654", - "19088", - "12065", - "31538", - "9793", - "20641", - "28168", - "30", - "26588", - "23834", - "30312", - "7205", - "24060", - "18285", - "19149", - "14005", - "401", - "17736", - "32300" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "quantity": 231, + "unit": "lovelace" }, { - "id": "13412f0362691b073d6a5b2078736e40676100193135b53e14a91672233d3300", - "index": 1 + "quantity": 233, + "unit": "lovelace" } ], - "mint": { + "burn": { "tokens": [ { "policy_script": { - "script": { - "all": [ - "policy_vkh1vpnq0s6kqmt3pam6uzmujumeklde84hl0cxyunrw7lzk7ujzxcw", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "606607c35606d710f77ae0b7c97379b7db93d6ff7e0c4e4c6ef7c56f", - "assets": [ - { - "fingerprint": "asset17w6exexy3yt7skf275ghqgce959zgyztymram3", - "asset_name": "546f6b656e54", - "quantity": 8230 - }, - { - "fingerprint": "asset1nx6gkmzckewhwyty3pu4ukqw2uhasx48e5hc9v", - "asset_name": "546f6b656e4b", - "quantity": 3801 - }, - { - "fingerprint": "asset1kx0hwnpc8pzhuy328zfvz4rqy7y996yedgv60j", - "asset_name": "546f6b656e57", - "quantity": 2526 - }, - { - "fingerprint": "asset16lrkz0ufkjqj74rmgsqrcfuvsa0qta3nu5dj09", - "asset_name": "546f6b656e42", - "quantity": 9659 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh14yjuelykk223exffhxu4pu3c3ukje890xemfkdt800xhk07zuty", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "a925ccfc96b2951c9929b9b950f2388f2d2c9caf36769b35677bcd7b", - "assets": [ - { - "fingerprint": "asset1y4ccttd3vmh89cgzcq2xc6yrpa8hwayck70r68", - "asset_name": "546f6b656e55", - "quantity": 8457 - }, - { - "fingerprint": "asset19056l5ea5przlqf5xvl8cngkpqzxuz8ejjqddw", - "asset_name": "546f6b656e53", - "quantity": 4878 - }, - { - "fingerprint": "asset1sw7j32c290axsff0gus2myeg0jqr3kn5lwg09g", - "asset_name": "546f6b656e51", - "quantity": 1294 - }, - { - "fingerprint": "asset19ha9hpl99ltqp5yknk3h9txhkhkc92g3sueh0y", - "asset_name": "546f6b656e4c", - "quantity": 8067 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1g2sngasjqj26j9wtwx0uptl4xg4uk32ddh2qeehp8g4jz4auczj", - "script_type": "native" - }, - "policy_id": "42a13476120495a915cb719fc0aff5322bcb454d6dd40ce6e13a2b21", - "assets": [ - { - "fingerprint": "asset1fxvq9vengldx396sv2h2wxtj7k2ta8ctjy5yal", - "asset_name": "546f6b656e49", - "quantity": 3867 - }, - { - "fingerprint": "asset19hkqc8kcvzl5dzfzjh350v2qgclgmupeaaxeu9", - "asset_name": "546f6b656e51", - "quantity": 4183 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1jh3jnk7h7ha3qf3fgpg92h0j95pmku2k9kxdja6sqzzauelqv33", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "95e329dbd7f5fb1026294050555df22d03bb71562d8cd977500085de", - "assets": [ - { - "fingerprint": "asset1guxfz80sn5hnnxy5yzsgen9rc42qnkc0hvdcu5", - "asset_name": "546f6b656e4b", - "quantity": 1234 - }, - { - "fingerprint": "asset18mtj96drdzjezlkr9veqdx6qvjva6jpxqfnsn3", - "asset_name": "546f6b656e59", - "quantity": 6958 - }, - { - "fingerprint": "asset1dauevnyr9jdappzxg0llk6plcequqwrjj0mrf0", - "asset_name": "546f6b656e42", - "quantity": 3139 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "d255aa99472273dacdf24c8720ef5c9fad3c9d1314999d9a63a5fcb3", - "assets": [ - { - "fingerprint": "asset1lyf8p2dwekr4eakjglst7vpnxy94jqgqg49ycn", - "asset_name": "546f6b656e51", - "quantity": 4831 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1lt002r462wpw8suk0pwdnvr0lj60durh4exlzm5ylafsx3l75fx", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "fadef50eba5382e3c396785cd9b06ffcb4f6f077ae4df16e84ff5303", - "assets": [ - { - "fingerprint": "asset1kja9wnkhhda0uz5wmgcqlzfmyed6jg6sw0prxd", - "asset_name": "546f6b656e55", - "quantity": 6305 - }, - { - "fingerprint": "asset1g9eq5jls7zdljsjcff8reds4kcm3t9wdf0gma8", - "asset_name": "546f6b656e57", - "quantity": 6905 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh166nukmljtq0w7y23yrdjllz947wpwcqkz2nyk5w2ywvrjqq3zae", - "script_type": "native" - }, - "policy_id": "d6a7cb6ff2581eef115120db2ffc45af9c17601612a64b51ca239839", - "assets": [ - { - "fingerprint": "asset1uul5dzpw8v6m86vdu5v69796hn5urg722lvqju", - "asset_name": "546f6b656e55", - "quantity": 6646 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1ycv9f8grmqqtseys6lzmz5fv0y2q0svkdjcr0pq993202t09hj3", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "2618549d03d800b86490d7c5b1512c791407c1966cb03784052c54f5", - "assets": [ - { - "fingerprint": "asset1huu29dlg0p84xvsjsj0yp2ch68rqg6e7mx02ts", - "asset_name": "546f6b656e53", - "quantity": 2210 - }, - { - "fingerprint": "asset14lktv2twlhpl30x5lzu75p4we335rqrx6lfr3y", - "asset_name": "546f6b656e4f", - "quantity": 1817 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1xykrvgp2rs0sag4ymtddyw4kh5pgk8vj6eypqsqqlfw76kwnq5n", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "312c36202a1c1f0ea2a4dadad23ab6bd028b1d92d648104000fa5ded", - "assets": [ - { - "fingerprint": "asset194dz2ryr0aswf4agm0sgkxz20x0z39djalf23z", - "asset_name": "546f6b656e41", - "quantity": 5374 - }, - { - "fingerprint": "asset1xdlllknxtn46tl8qdnte4urmamrn484f2mmrtx", - "asset_name": "546f6b656e51", - "quantity": 1774 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1fkjmpdwxtz50ywyt58wuy5xg28jqqer99v3u9gs9ma7u2vx063d", - "script_type": "native" - }, - "policy_id": "4da5b0b5c658a8f2388ba1ddc250c851e40064652b23c2a205df7dc5", - "assets": [ - { - "fingerprint": "asset1dta7hx3d5y4058x42f358kvdc6kxcrnle5vzqz", - "asset_name": "546f6b656e4c", - "quantity": 7834 - }, - { - "fingerprint": "asset1v6q769e22hu8jtl2ag7sx4w38jrj4e9np9l3y7", - "asset_name": "546f6b656e45", - "quantity": 4084 - } - ] - }, - { - "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "94420c6f18f7d06d4e4d80bd36ea1373347448b67688f74055048ed9", + "policy_id": "a3f0a021c9cb860a79f584d2ee099d44b4541b96dd0133ad909a4a92", "assets": [ { - "fingerprint": "asset1dcghtv0f80un3jysg6y24clqzzet445l2ffalc", + "fingerprint": "asset1zcr2tc5l856fqq5rtf9rllf5nd7xpjt6gps0hh", "asset_name": "546f6b656e4a", - "quantity": 7683 - }, - { - "fingerprint": "asset1waacwkfjawj9p0csq4j8z0y7d43mtzg9apvjvp", - "asset_name": "546f6b656e52", - "quantity": 8898 - }, - { - "fingerprint": "asset10zuhr8tzdzhz275c35qeel2cdmk65mf7x2psdj", - "asset_name": "546f6b656e58", - "quantity": 2463 - }, - { - "fingerprint": "asset1xqclwz8l00h5ccg78fnyt7hqwehp87xz80wm9g", - "asset_name": "546f6b656e43", - "quantity": 5228 + "quantity": 7029 } ] }, @@ -16511,33 +15715,25 @@ "policy_script": { "script": { "all": [ - "policy_vkh1kpdwxp8nqpenyctu3pffur78e3gq62w4j8xs66ryzurt798yduu", + "policy_vkh1r9nnxgv52cfjxwp8dn4g5cml5mu76ym5383at0sx02raqy5f3n2", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "b05ae304f3007332617c88529e0fc7cc500d29d591cd0d68641706bf", - "assets": [ - { - "fingerprint": "asset1hafvg97u00fxcljnhx5nra62vsl8aaaj04par2", - "asset_name": "546f6b656e4a", - "quantity": 3497 - }, + "policy_id": "196733219456132338276cea8a637fa6f9ed137489e3d5be067a87d0", + "assets": [ { - "fingerprint": "asset1sd9dz2czd42rgg5pf0p5fqhejn6q9wqqysxmdr", - "asset_name": "546f6b656e4d", - "quantity": 2565 + "fingerprint": "asset1pvmww8gy6yq7fumar4y76axdkcryh0exhx0hwj", + "asset_name": "546f6b656e53", + "quantity": 3888 }, { - "fingerprint": "asset1vuuqwdw7dya40x5vctart8f05wj3y7cfgwk04r", - "asset_name": "546f6b656e42", - "quantity": 6179 + "fingerprint": "asset1p8jnuc8kwz7ahjj64wc902f2q7p7qah8ht9945", + "asset_name": "546f6b656e4b", + "quantity": 9456 } ] }, @@ -16545,7 +15741,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh166cdx8tp599wfutgu9fncrzduvvmdk7lx5ghgqzsvnypsu58lp0", + "policy_vkh1jfdr2sgwl4a3je2kwm4mylxl5ed22eh0hnuayqrqhavy7tjeega", { "active_from": 100 } @@ -16553,17 +15749,12 @@ }, "script_type": "native" }, - "policy_id": "d6b0d31d61a14ae4f168e1533c0c4de319b6dbdf351174005064c818", + "policy_id": "925a35410efd7b19655676ebb27cdfa65aa566efbcf9d20060bf584f", "assets": [ { - "fingerprint": "asset1sw6j0ay08e5nrlq8l0gtuxvjnmwv8eg2qt497e", - "asset_name": "546f6b656e4b", - "quantity": 8025 - }, - { - "fingerprint": "asset1x5vtn3ygcvaklw5l7quwq3587dwfcs804k3e9d", - "asset_name": "546f6b656e51", - "quantity": 9051 + "fingerprint": "asset1t96p0ldzeklzwjhtf5vull7v5z675kjg0ezhcm", + "asset_name": "546f6b656e52", + "quantity": 6454 } ] }, @@ -16571,7 +15762,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1qrc65tzcwx0num6memra9939wl9zfnn6ettg2vgpw8kxumtd2en", + "policy_vkh1vpzfmdm09cu608cmfnj4jg7yumdz9hk459k40fv0xaqxc2xm6ec", { "active_from": 100 } @@ -16579,98 +15770,75 @@ }, "script_type": "native" }, - "policy_id": "00f1aa2c58719f3e6f5bcec7d2962577ca24ce7acad685310171ec6e", + "policy_id": "60449db76f2e39a79f1b4ce55923c4e6da22ded5a16d57a58f37406c", "assets": [ { - "fingerprint": "asset1yhjtrlm3zkzhkrnsz8q7wtwaggwc4ylmqnx0gz", - "asset_name": "546f6b656e54", - "quantity": 3019 + "fingerprint": "asset1ncmxlyr5lnwqp66pl7ue8c3sktflgnzmcdccnm", + "asset_name": "546f6b656e4f", + "quantity": 3205 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh1sqmg633fp8ty86p3wg068fkl7a2tu4c5cu7g265g860hx5j7cx9", + "script_type": "native" }, - "policy_id": "4a0053b2e3452a9ab0d32cca0a4419588c305b20ab39e6b110049703", + "policy_id": "80368d462909d643e831721fa3a6dff754be5714c73c856a883e9f73", "assets": [ { - "fingerprint": "asset1lwzlvskh6js0fxf4ge02j2s893cdxkpqgdf7pv", - "asset_name": "546f6b656e56", - "quantity": 1331 + "fingerprint": "asset12jfpcqj2rxcfqhcla7mytkqhsgqg7mkn9jgdm3", + "asset_name": "546f6b656e46", + "quantity": 7525 }, { - "fingerprint": "asset1rynme2utgpzlzhszh558w2vh9jd9lsj5du6h92", - "asset_name": "546f6b656e57", - "quantity": 7766 + "fingerprint": "asset17zhems58gz5lepkrqdk8zw293t4ksf4psa0hax", + "asset_name": "546f6b656e56", + "quantity": 1580 }, { - "fingerprint": "asset14g6gf2xcgcvfjk73s6aza8zahja93ngsxla7yy", - "asset_name": "546f6b656e4f", - "quantity": 1652 + "fingerprint": "asset15sa45q2geusfym5jkvk93jjuszqrxutj2sfyr0", + "asset_name": "546f6b656e52", + "quantity": 6461 }, { - "fingerprint": "asset1gvnz4j8g322k63auaukmrhnfgrudg3wgx63ck7", - "asset_name": "546f6b656e55", - "quantity": 9568 + "fingerprint": "asset1txjz28mvkvazqsfrwgtqqd7wz2vt3av5a6u4nf", + "asset_name": "546f6b656e53", + "quantity": 7416 } ] }, { "policy_script": { - "script": "policy_vkh1qtvm7nslmfn2ajsf9gql63hche0d4sjkw2r5dwr5tpncqetqxpz", + "script": { + "all": [ + "policy_vkh13tmkr8w3ah77jc8us3umdtvwu7wur7uspj2809p3n0952zjezhy", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, "script_type": "native" }, - "policy_id": "02d9bf4e1fda66aeca092a01fd46f8be5edac256728746b874586780", - "assets": [ - { - "fingerprint": "asset16rxe53vup662mhw8tz9grk7vlrpugp99kgl6rw", - "asset_name": "546f6b656e5a", - "quantity": 2745 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "999f3afcfaea5b09c23b849b7c0f14ff4ec28ae923de0869133700c0", + "policy_id": "8af7619dd1edfde960fc8479b6ad8ee79dc1fb900c947794319bcb45", "assets": [ { - "fingerprint": "asset1027x0mm5xnpgu3ekp05x3q26j7tnttw2xw0stl", - "asset_name": "546f6b656e55", - "quantity": 4257 - }, - { - "fingerprint": "asset1aguxyv6d4ska3v9kscc86mhy9sly3gxzryyke8", - "asset_name": "546f6b656e46", - "quantity": 5557 + "fingerprint": "asset1wzsegm3e2us7m43s4u6zjzxqtftcfsr6eljerh", + "asset_name": "546f6b656e4e", + "quantity": 5663 }, { - "fingerprint": "asset10wteeguqx797svav6w2z8jay4vlp3d6gynqwna", - "asset_name": "546f6b656e5a", - "quantity": 438 + "fingerprint": "asset1ptd2y48ut4zuzcu0jdst6tm9td9ch3q89rezdh", + "asset_name": "546f6b656e42", + "quantity": 2982 }, { - "fingerprint": "asset1nyqj40nacu6kte3rptjure4l0zaz46sp8lj6z8", + "fingerprint": "asset1r8ahwnmd272gkxvc2d8el0cmxjgp745ax0a70r", "asset_name": "546f6b656e4a", - "quantity": 6497 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "7d2d11ac5d85d1ac3edb8d588b7bb26d3a360e15b3d2a993a6529c60", - "assets": [ - { - "fingerprint": "asset1yepxv38y3vma8tjaht5x4va0mtjtm0n2yskxfx", - "asset_name": "546f6b656e51", - "quantity": 9752 + "quantity": 1766 } ] }, @@ -16678,7 +15846,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1wpdxwzmm4szqp57t3skzdf38a5xwpud3yfw98gjc7dn3j6ylk2j", + "policy_vkh1pjtsp30wcz9an6gw6hmk27jnav4cpe678juz8hdk35k9ycklx86", { "active_from": 100 }, @@ -16689,1514 +15857,972 @@ }, "script_type": "native" }, - "policy_id": "705a670b7bac0400d3cb8c2c26a627ed0ce0f1b1225c53a258f36719", + "policy_id": "0c9700c5eec08bd9e90ed5f7657a53eb2b80e75e3cb823ddb68d2c52", "assets": [ { - "fingerprint": "asset154n708jdagp44v9ev9yghfps5jehkmfzxjxudv", - "asset_name": "546f6b656e4b", - "quantity": 2708 - }, - { - "fingerprint": "asset193c3atsj696w02vhsuek4dase67jgvwz3cjesk", - "asset_name": "546f6b656e47", - "quantity": 6998 + "fingerprint": "asset13mc4n9yq3d7cu8mj8cf33xel9tq6plxheev42d", + "asset_name": "546f6b656e42", + "quantity": 4277 }, { - "fingerprint": "asset19q4jenu2eprdhrm79pzwwupzaurtau4sa3ua9a", + "fingerprint": "asset1j3mzt7qac2qgw3sug5neyk0y9yhkpucf2lu366", "asset_name": "546f6b656e58", - "quantity": 3700 + "quantity": 6916 } ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1gas3y5skw5x3cexsp0ejs7qqzza528gtdfmyj5zwd985zjrcwak" - } - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 152, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 11, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 36, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 167, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 81, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 135, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 193, - "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 88, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 73, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 18, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 228, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 103, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 121, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 231, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 233, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 62, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 189, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 195, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 137, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 114, - "unit": "lovelace" + { + "policy_script": { + "script": "policy_vkh1xqfz44qdqx4v00u3qvlm3ecr2wnkx849vncv3y9zg8jrcu2mknx", + "script_type": "native" + }, + "policy_id": "30122ad40d01aac7bf91033fb8e70353a7631ea564f0c890a241e43c", + "assets": [ + { + "fingerprint": "asset1h86cc4pw6vsnemhj3jj4ktrrlyvy2sv67th8lt", + "asset_name": "546f6b656e44", + "quantity": 1355 + }, + { + "fingerprint": "asset1fr7vfccc4qyxhedta0twc7xhpurkjl07zevh2g", + "asset_name": "546f6b656e49", + "quantity": 5761 + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 217, - "unit": "lovelace" + { + "policy_script": { + "script": "policy_vkh1e0sq34ffl9fs8y64l8dr08faan0lkmw6lldlgvyqsdvfvjps5ne", + "script_type": "native" + }, + "policy_id": "cbe008d529f953039355f9da379d3decdffb6ddaffdbf43080835896", + "assets": [ + { + "fingerprint": "asset128vh2ttpg2aanl2kpvc3s7xm2xkvctqjp3xq9s", + "asset_name": "546f6b656e51", + "quantity": 9993 + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 222, - "unit": "lovelace" + { + "policy_script": { + "script": "policy_vkh1vemvxqckqqg2fahtkcd94hsgvsfgcy7pnkchtj6rexwvw00urew", + "script_type": "native" + }, + "policy_id": "6676c303160010a4f6ebb61a5ade0864128c13c19db175cb43c99cc7", + "assets": [ + { + "fingerprint": "asset1v8x5p0fku9pfr6e7s58zvnfasz90hl0s8y5arf", + "asset_name": "546f6b656e55", + "quantity": 6491 + }, + { + "fingerprint": "asset1xn05xadyjz06mxvq5n9k9m5crj6ej9z2f22ngq", + "asset_name": "546f6b656e46", + "quantity": 4177 + }, + { + "fingerprint": "asset1hddnzss2tjn2qp55z6a0gehq72lq36wfxvvd0w", + "asset_name": "546f6b656e4e", + "quantity": 2617 + } + ] }, - "stake_address": "" - }, - { - "context": "ours", - "amount": { - "quantity": 14, - "unit": "lovelace" + { + "policy_script": { + "script": { + "all": [ + "policy_vkh15y4zz7ned9xkwx82446fw243fmpspcllt3u3phdteefwy6gpdxr", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "a12a217a79694d6718eaad74972ab14ec300e3ff5c7910ddabce52e2", + "assets": [ + { + "fingerprint": "asset1q6npn7mk7frrrgxaxj273ch9pstq4vanpyf6tm", + "asset_name": "546f6b656e49", + "quantity": 260 + }, + { + "fingerprint": "asset1yth62e6fdn6xz6xdshd48jus07zzgxw6ddwnhv", + "asset_name": "546f6b656e43", + "quantity": 3422 + }, + { + "fingerprint": "asset1x2e6uzrg30cfttk0k3slzx2f4hj0qczlg5f0dq", + "asset_name": "546f6b656e51", + "quantity": 8276 + } + ] }, - "stake_address": "" - } - ], - "inputs": [ - { - "address": "", - "id": "0f33303e76222f991732779d49f04b0d113e2a2e020a4b374010184e24647809", - "index": 16017, - "amount": { - "quantity": 69, - "unit": "lovelace" + { + "policy_script": { + "script": "policy_vkh1f2ffxnkynr5csx0qdtm2396jtp3jp9cyscqdjp5t2wwputed0z3", + "script_type": "native" + }, + "policy_id": "4a92934ec498e98819e06af6a8975258632097048600d9068b539c1e", + "assets": [ + { + "fingerprint": "asset13q2kf2c7hguycahzlem4qew4fwlr9mp9uztfeg", + "asset_name": "546f6b656e41", + "quantity": 3649 + }, + { + "fingerprint": "asset1gx5xvhhs569clzk704t9sez7lmn8mj689ssvx9", + "asset_name": "546f6b656e51", + "quantity": 2485 + }, + { + "fingerprint": "asset1sc2870u6uvvmpsmtm2cg795fgf8tqgkwaf9ysd", + "asset_name": "546f6b656e4d", + "quantity": 1936 + } + ] }, - "derivation_path": [ - "27467", - "11129", - "11496", - "4513", - "24892", - "16271", - "23585", - "9513", - "4172", - "7742", - "13275", - "26103", - "7263", - "7009", - "7537", - "26941", - "7015" - ], - "assets": [] - }, - { - "address": "", - "id": "80e7fe184a1f0b79054358d245263109245a14656d3e3f10083320bf379e0c78", - "index": 14413, - "amount": { - "quantity": 137, - "unit": "lovelace" + { + "policy_script": { + "script": "policy_vkh1pgm40f907yt4lgcan3540ks886e8s6kf2v3k4h4n9nvzxevs0ep", + "script_type": "native" + }, + "policy_id": "0a3757a4aff1175fa31d9c6957da073eb2786ac953236adeb32cd823", + "assets": [ + { + "fingerprint": "asset15k9d62d9tz7hy7kfj7hmxjpl62a6ephhwpmc6c", + "asset_name": "546f6b656e4c", + "quantity": 9613 + } + ] }, - "derivation_path": [ - "10370", - "710", - "14143", - "7810", - "7108", - "28517", - "11747", - "18217", - "18071", - "27841", - "7492", - "1565", - "16468", - "10959" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + { + "policy_script": { + "script": { + "all": [ + "policy_vkh19mwmhrhwla6jwxugvc3kwx2c400yxc5n0nk87l39998ajmarnju", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "2eddbb8eeeff75271b886623671958abde4362937cec7f7e25294fd9", + "assets": [ + { + "fingerprint": "asset1cs49qhfnvgh7uf2vqrxgqw2sdyv92p4yec2g7w", + "asset_name": "546f6b656e53", + "quantity": 7404 + }, + { + "fingerprint": "asset1hgyytdqpad23e5dwe93wjfhjuahtl5pee0kvgw", + "asset_name": "546f6b656e46", + "quantity": 3914 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "a622de53ef3f1fb7e8d91d4827dbaa92e5b4390bb2e1a7918c51af1a", + "assets": [ + { + "fingerprint": "asset155q8haqnjgfnvh93g9qlq02ulsk3l72kk2kd98", + "asset_name": "546f6b656e59", + "quantity": 6077 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh19n2saaqutmde7nfuwp2xl770emykfrmp8rwh05a6267l6ljr6qw", + "script_type": "native" }, - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "2cd50ef41c5edb9f4d3c70546ffbcfcec9648f6138dd77d3ba56bdfd", + "assets": [ + { + "fingerprint": "asset13rc2mxqldtezzu00hlk5l6c5gum2xqxv5j3pjf", + "asset_name": "546f6b656e57", + "quantity": 1391 + }, + { + "fingerprint": "asset1frpff3q3240979wemppnpzhq3g4h0rk8pemly8", + "asset_name": "546f6b656e45", + "quantity": 3228 + }, + { + "fingerprint": "asset1p8g5qvvfgklgr5uhkyzy6r3lu22cjc4ph7zt88", + "asset_name": "546f6b656e41", + "quantity": 9977 + }, + { + "fingerprint": "asset10n4qwl3va8qrvpsh5v3c4wt60hjs4uxyfjydpe", + "asset_name": "546f6b656e47", + "quantity": 4365 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" }, - { - "asset_name": "546f6b656e41", - "quantity": 37, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "7f46b372b7ec60534086108a8604f08fd9aa5c2d993dea14135b6c12", + "assets": [ + { + "fingerprint": "asset1jm2pj3j32x0y2c4a8pcmarqtw0h9w2qx7ymuq3", + "asset_name": "546f6b656e50", + "quantity": 6954 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "0a94cfe27ee192447324a0c481c51ab58d048cf49f033888b4a6ee25", + "assets": [ + { + "fingerprint": "asset19nqe08w08r3ay5aa3v20fncfaf80lg3jy24kzl", + "asset_name": "546f6b656e55", + "quantity": 7430 + }, + { + "fingerprint": "asset1ka7f35schhedpqcxt8yw43gqhsdtmas34yqjz6", + "asset_name": "546f6b656e43", + "quantity": 8513 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1e07vjn3tavw5mf7wkvjtmzy3lu22nnzs2fwyh9tqqcmfwckmpmp", + { + "active_from": 100 + } + ] + }, + "script_type": "native" }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "cbfcc94e2beb1d4da7ceb324bd8891ff14a9cc50525c4b9560063697", + "assets": [ + { + "fingerprint": "asset1dddywju4fuh39d8zhscqldunp974wkzelu6x8t", + "asset_name": "546f6b656e45", + "quantity": 183 + }, + { + "fingerprint": "asset1vac9fthnhcw7f8zu3zhujp99crwxj90rmc6w8e", + "asset_name": "546f6b656e48", + "quantity": 3018 + }, + { + "fingerprint": "asset1jddw0w5u7shf52e3wf4r0n3dpuetexkwwy6vk2", + "asset_name": "546f6b656e42", + "quantity": 9622 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1p3chzd6cv7ewaeznhhv0kdr4u3t72ut609huvxgvwe9k7g9r0n0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - { - "asset_name": "546f6b656e43", - "quantity": 51, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "0c7171375867b2eee453bdd8fb3475e457e5717a796fc6190c764b6f", + "assets": [ + { + "fingerprint": "asset1889r0gnj4l24tujdqszgr82r6d07j83k38f4mh", + "asset_name": "546f6b656e56", + "quantity": 6035 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1qlxexyvj56sdatnt5a7vnn8y8cgcwphg4fvd40p9q4mxgtx0qcp", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } + "policy_id": "07cd931192a6a0deae6ba77cc9cce43e118706e8aa58dabc25057664", + "assets": [ + { + "fingerprint": "asset1smdvpakp9wsd6vpavhl5yyx5ppsdlx2dq8c4zt", + "asset_name": "546f6b656e55", + "quantity": 9035 + }, + { + "fingerprint": "asset16rsrexuvflv5dg3cq6z9cjut7vvfvfuz70xzvf", + "asset_name": "546f6b656e58", + "quantity": 1703 + }, + { + "fingerprint": "asset17q8rnw8dlmm3guxpwweswxa7fxnsxpneweq656", + "asset_name": "546f6b656e43", + "quantity": 6652 + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1qv2rs3jr8fsqh8e2zseducmsf434wzmdg37wgqn6tkl3vzl2nml" + }, + "fee": { + "quantity": 197, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "22500", + "22515", + "26146", + "9766", + "20721" ] }, { - "address": "", - "id": "18855f2f1f15134a6f013837502f79644e1d1c0a491bf62027ae4e396318115c", - "index": 20195, - "amount": { - "quantity": 48, - "unit": "lovelace" - }, - "derivation_path": [ - "20492", - "6617", - "5516", - "24860", - "5097", - "15182", - "17741", - "9484", - "26953", - "16456", - "14822", - "13438", - "8245", - "1552", - "20147", - "24158", - "28795", - "2271" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } + "certificate_type": "register_reward_account", + "reward_account_path": [ + "3674", + "27603", + "9887", + "15718", + "28639" ] }, { - "address": "", - "id": "1d3ed59132aa547b710e75720b064612220b5b6e0c991840fe6df2d835837e73", - "index": 491, - "amount": { - "quantity": 51, - "unit": "lovelace" - }, - "derivation_path": [ - "2725", - "7472", - "13576", - "28038", - "21992", - "24142", - "12933", - "7808", - "8571", - "9249", - "32592", - "5484", - "29222", - "975", - "32012", - "15239", - "32332", - "19594", - "7176", - "18486", - "9662", - "10794", - "24592", - "31293", - "1601", - "1530", - "28592", - "22280", - "4055", - "11058", - "3724" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } + "certificate_type": "register_reward_account", + "reward_account_path": [ + "6826", + "9775", + "24636", + "1404", + "29477" ] }, { - "id": "58010430707d857d3a454a65354f6721198716517b4401653b1d0e45977af739", - "index": 1 + "certificate_type": "quit_pool", + "reward_account_path": [ + "6058", + "32018", + "23885", + "7144", + "26104" + ] }, { - "address": "", - "id": "7c2e191c2929851720734c64595150276a7d66272a3a2dd115df7e7f7e7e790b", - "index": 1645, - "amount": { - "quantity": 252, - "unit": "lovelace" - }, - "derivation_path": [ - "21858", - "936", - "23605", - "3726", - "26176", - "23824", - "13106", - "14256", - "30139", - "16601", - "17032", - "13236", - "28429", - "27892", - "5526", - "30233", - "11266", - "19920", - "31642", - "9483", - "21650", - "24855", - "14824", - "4364", - "2891", - "11125", - "144", - "13368", - "2409", - "22481", - "28691" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "certificate_type": "deregister_pool", + "pool_id": "pool1dhdndm23x3ag8lz2p7545azu78ujt6rm2gwhmdesyrtug6rjqty", + "retirement_epoch": 31956 }, { - "address": "", - "id": "4f8872552f28c22464e50b772b702b8d1c4b946e3922305609124f08344c3804", - "index": 7264, - "amount": { - "quantity": 225, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk14883pfnrpsa3r2h263drn7d57t3chnzyktpljtmjh6up95xs9p7sjsv8e8", + "ed25519_pk1u8xgvh4ufgxdfys8kmr7278xp3rknm4cd6jmnq2qaqhg6rqrxk2s3857pj", + "ed25519_pk1j94q8cufyw38a3stkdd59casdw0vgzuzn9px8cyluvyqh7pmcqhsatyq7l", + "ed25519_pk1etxy4alpv9u04pngd74s34jyejly3g529y5yjuum942qmplqv97qsh5qe7", + "ed25519_pk1d4g2w39qvmadde4zzvc7v336t3tpz3gv64yypwk7vvun4h859egs7ds2la", + "ed25519_pk1kk2luh0tc4ha5epmsegs4clu9hzl9e3rv3jdy3wn53vwtehhzjvswetuea", + "ed25519_pk1vzl3jucjv6d9rnperfuva7we9mhjfa2tmxmr74368ret24p75m2s8ne4lf", + "ed25519_pk10az8ajc7duaqecnnpqdaxsln2geyzcefx386urd0ffl7pm2mqxcqwvv8zw", + "ed25519_pk1d5y4j7eyk3jc35ghx7nkqfnzaalg7yl8lay59u3p8qe2v2e86u4sfqnz6p", + "ed25519_pk12z26uc2utzdswjgcw6kcd7zxf9wgr7d0wu79uktf7s9nu3nfce4qs7t8k6", + "ed25519_pk1jw92g5m2mwg0unyllma8wdasga3yltd077rkd5nnhyme3pc9zleqv4rf6d", + "ed25519_pk1yp3lde96gmydhn734ws9f47jqlyjtrx9j8lyxglera40ghn5x92qyc93ju", + "ed25519_pk1hec5kwrn72jhklqrnfxscthtlxy2p5h9mxyud7t0rgsvawgwy7hqxq5he2", + "ed25519_pk1q6l97hk6qg8aw30ukvfp8wf0ksquq9gszpm0cmfzw857fcm5lu0qd2709f", + "ed25519_pk19494wqz6gamu3umfgs4ftqhcwmanl2yc3zpulc6zzg7x640a90csx3fhmn", + "ed25519_pk12vrzacgkcrr3v2t0y43zm2th3jc5ym98tugmd7xnxy0uzpahsrss4kt9xk", + "ed25519_pk163k0eccxyuzwxlmnmfjsy4rxz0ng4rxanvar4gs9xq27vs6rx50qlnhug5", + "ed25519_pk13fwmxzfd0zqud6upz2cuw27cp547l4lug2pppv380vq9ukccj5asfduutc", + "ed25519_pk1qzes9lsxxama7jjx9sk3luxgh4yy3w3vununz4p0grz7w2k7msgqql40nx", + "ed25519_pk173h3nwv8nfcuwwhxl86lrhzu2ua2ne5apcw4hwkaj5r7yewz8m8q833zqq", + "ed25519_pk16cv3m3vx7wpj37enkr4add4sm4j7xz3s0lfpu9ef9ak72f4dv9ssdgkpj9", + "ed25519_pk1su5zmtqmlxyxkgczfq57jg7lwgv492yr50jyxwjpk4vcf8au6pksgeu7cf", + "ed25519_pk122ru0ucxn68dkn3apdy755g5hsjecqtk6j280jm20dqu0jvnqcsq86vhez", + "ed25519_pk1hhgdgs704zfu5zvek0l8z5tuqqlaqkfjwc573kyj2wnvvkltxm9qv77xp3", + "ed25519_pk1sddppuhnjt8xvcp36g2jpfmmlq7d6jud8hsgcama2zfcxlr4d4rschnwxa", + "ed25519_pk1w64hu0gdxmt5xdwfqtewrd4yrjucm56z7fk75ns50ae5yakd4q8sfsdcts", + "ed25519_pk1vx8n5udfyt3n32f5e2k8u4zl8yfx9c904cwqum8ucma4048neqwscnplsv", + "ed25519_pk1sc6fz304leyyeygllfutw2z22004uvu8upvxk25hjq5v79yuejcqzsakj2" + ], + "pool_pledge": { + "quantity": 194, "unit": "lovelace" }, - "derivation_path": [ - "6522", - "26649", - "1326", - "14150", - "9759", - "28589", - "13445", - "28098", - "27112", - "27667", - "4583", - "15948", - "22422", - "13591" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 39, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "id": "5920cb56508d605b55250441704a2f92251c235240151d355ef58c7c67521404", - "index": 17466, - "amount": { - "quantity": 159, + "pool_cost": { + "quantity": 220, "unit": "lovelace" }, - "derivation_path": [ - "25306", - "22399", - "12095", - "23310", - "9453", - "25395", - "22023", - "9876", - "8252", - "6301", - "23508", - "32256", - "6178", - "28601", - "14928", - "2054" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 63, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "pool_id": "pool16zqgfv0n3nh28xpv9ltaz7wxtk8aj8rap67mv97w8nuvxm0yeze", + "pool_margin": { + "quantity": 89.2, + "unit": "percent" + } + } + ], + "deposits_returned": [ + { + "quantity": 205, + "unit": "lovelace" + }, + { + "quantity": 121, + "unit": "lovelace" + }, + { + "quantity": 107, + "unit": "lovelace" + }, + { + "quantity": 208, + "unit": "lovelace" + }, + { + "quantity": 42, + "unit": "lovelace" + }, + { + "quantity": 201, + "unit": "lovelace" + }, + { + "quantity": 146, + "unit": "lovelace" + }, + { + "quantity": 147, + "unit": "lovelace" + }, + { + "quantity": 174, + "unit": "lovelace" }, { - "id": "482a3f2a05395b6cde226b17254b1870395c272d4a563f1f01455f500baa514f", - "index": 1 + "quantity": 67, + "unit": "lovelace" }, { - "id": "316b753010e402a9627e596f662c73161ba04543a46706676c476c213a5c6177", - "index": 0 + "quantity": 29, + "unit": "lovelace" }, { - "address": "", - "id": "41395044012d706e746544027536694b6a03745f2d1c3b2f73423c014b78291b", - "index": 7467, - "amount": { - "quantity": 113, - "unit": "lovelace" - }, - "derivation_path": [ - "29032", - "18960", - "31915", - "29710", - "31963", - "2528", - "13246", - "17405", - "2843", - "21699", - "20597", - "6986", - "20003", - "15854", - "30148", - "611", - "23422", - "29756", - "29109", - "3762", - "21905", - "10276", - "29408", - "21287", - "3005", - "15", - "18048" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "quantity": 101, + "unit": "lovelace" }, { - "id": "44275b5b253057627f1408d30149845f74094e364a73513871284e5a3aa99f3b", - "index": 0 + "quantity": 136, + "unit": "lovelace" }, { - "address": "", - "id": "1f5bd2585e5207064434464d4f62593e254c413d295b176b67199e4624b8306b", - "index": 26965, - "amount": { - "quantity": 195, - "unit": "lovelace" - }, - "derivation_path": [ - "15871", - "16195", - "11882", - "24165", - "27600", - "13750", - "10998", - "30753", - "8257", - "22929", - "6009", - "13100", - "1136", - "3932", - "31484", - "23890", - "30055", - "30457" - ], - "assets": [] + "quantity": 122, + "unit": "lovelace" }, { - "address": "", - "id": "5b1a2e1a347460f24a1c509b4f6c7f06085f5cea332479773528553f5a6fe480", - "index": 7634, - "amount": { - "quantity": 141, - "unit": "lovelace" - }, - "derivation_path": [ - "8295", - "21286", - "21232", - "27473", - "29055", - "17710", - "17114", - "18245", - "30344", - "31726", - "23706", - "20406", - "27355", - "20247", - "16423", - "13648", - "11270" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "quantity": 59, + "unit": "lovelace" }, { - "address": "", - "id": "30e25839c05b5830da097d455776125819481bd03841a4ad5d086e797a391449", - "index": 25943, - "amount": { - "quantity": 46, - "unit": "lovelace" - }, - "derivation_path": [ - "14401", - "24618", - "12236", - "29856", - "2630", - "30629", - "5600", - "26337", - "2822", - "13886", - "4989", - "2640", - "827", - "3021" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 52, + "unit": "lovelace" }, { - "id": "2a016756ba6d8c54092612155440082536161925352853556c6ce9cedf7d1c09", - "index": 1 + "quantity": 217, + "unit": "lovelace" }, { - "id": "0e5a4b2a775159960b51253a6c646869757f632f7b06416c61f944168f83bd1b", - "index": 0 - } - ], - "collateral_outputs": [ + "quantity": 20, + "unit": "lovelace" + }, { - "address": "", - "amount": { - "quantity": 93, - "unit": "lovelace" - }, - "derivation_path": [ - "9667", - "4613", - "14854", - "695", - "21542", - "15447", - "23759", - "8924", - "26553", - "32266" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - ], - "outputs": [ + "quantity": 53, + "unit": "lovelace" + }, { - "address": "", - "amount": { - "quantity": 245, - "unit": "lovelace" - }, - "derivation_path": [ - "838", - "25719", - "21422", - "9718", - "3539", - "1072", - "14432", - "4269", - "27218", - "8836", - "1619", - "8047", - "23804", - "14827", - "2808" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "quantity": 212, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 103, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 178, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 247, - "unit": "lovelace" - }, - "assets": [] + "quantity": 116, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 67, - "unit": "lovelace" - }, - "assets": [] + "quantity": 90, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 20, - "unit": "lovelace" - }, - "assets": [] + "quantity": 251, + "unit": "lovelace" }, + { + "quantity": 164, + "unit": "lovelace" + } + ], + "metadata": null, + "collateral": [ { "address": "", + "id": "417b9b35602f2f375903077b6369bd2644144664139863042e234e02296092e1", + "index": 3513, "amount": { - "quantity": 38, + "quantity": 106, "unit": "lovelace" }, "derivation_path": [ - "26981" + "18597", + "13482", + "3302", + "26163", + "9351", + "15096", + "12585", + "18497", + "2084", + "6737", + "3142", + "22084", + "9201", + "20088", + "10658", + "18043", + "9661", + "3247" ], "assets": [] }, + { + "id": "5f47793b5a5e7a5a01e18c4c60c84e60706ba89b2e143c377070675a456c4be3", + "index": 1 + }, { "address": "", + "id": "c47a25090f1e310c305d8b47382431240b7a45317943180546217e28055e733c", + "index": 3812, "amount": { - "quantity": 37, + "quantity": 81, "unit": "lovelace" }, + "derivation_path": [ + "22210", + "31433", + "31522", + "22844", + "26537", + "28747", + "26042", + "25258", + "29715", + "363", + "22758", + "24343", + "10169", + "17791", + "13449", + "3626", + "3179", + "876" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 18, + "asset_name": "546f6b656e43", + "quantity": 26, "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, + { + "id": "541f68e19825d81006211d39674bd4325175332247421c1a250a5c4017f47946", + "index": 1 + }, { "address": "", + "id": "7102026279170234124019c4125aac6a6a1c212c73b15e68782a29654e602063", + "index": 18636, "amount": { - "quantity": 128, + "quantity": 30, "unit": "lovelace" }, + "derivation_path": [ + "4018", + "957", + "12180", + "3420", + "20096", + "8451", + "19428", + "2442", + "28995", + "12949", + "11650", + "32050", + "24224", + "29943", + "31664", + "19329", + "30407", + "18248", + "4611", + "15264", + "10395", + "8162", + "9120", + "17222", + "1485", + "21101", + "1033", + "20554", + "9485" + ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, + { + "id": "4f73002d3168294365772ea834573d2309624f740f5859385c37152b283a4163", + "index": 0 + }, { "address": "", + "id": "167477272f8ff60ea76523210d1c04443e407beb456f3a6835731aaf1a01fa5c", + "index": 19158, "amount": { - "quantity": 49, + "quantity": 219, "unit": "lovelace" }, + "derivation_path": [ + "12291", + "11362", + "24824", + "28325", + "8728", + "26101", + "11277", + "1001", + "16673", + "18598", + "25152", + "11180", + "9727", + "1947", + "26567", + "31747", + "29597", + "16566" + ], "assets": [ { "asset_name": "546f6b656e45", - "quantity": 24, + "quantity": 30, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, + { + "id": "2bc37a71423e4f6b763264341258ad68490c59df463c0d3042745c3220ab377d", + "index": 0 + }, { "address": "", + "id": "a56830466b7e6e717b023d370f0e020f476468730762394d7eec7f3f670d0832", + "index": 28386, "amount": { - "quantity": 252, + "quantity": 179, "unit": "lovelace" }, "derivation_path": [ - "32687", - "2146", - "28581", - "8991", - "25409", - "16380", - "20184", - "30695", - "21186", - "29231", - "4956", - "14286", - "19749", - "18339", - "26938", - "31706", - "6755", - "1857", - "23026", - "18468", - "9830", - "26624", - "378", - "12263" + "7966", + "16814", + "17463", + "18893", + "24939", + "12020", + "9567", + "11883", + "1655", + "9787", + "7042", + "29758", + "12177", + "4462", + "19724", + "24449", + "31786", + "21039", + "19623", + "7393", + "1440", + "15218", + "605", + "21105", + "32400", + "18457", + "26299", + "2628" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] - } - ], - "script_validity": "valid", - "id": "350da8051b5aa5577dca6b290b233d1a327868627215240f0858cf5c0cf40e9b", - "deposits_taken": [ - { - "quantity": 111, - "unit": "lovelace" - }, - { - "quantity": 180, - "unit": "lovelace" }, { - "quantity": 182, - "unit": "lovelace" - }, - { - "quantity": 176, - "unit": "lovelace" + "id": "1b388e6223247044747b4d985d40aa55614b447e077e683a6c5a0e622065625e", + "index": 1 }, { - "quantity": 151, - "unit": "lovelace" + "id": "36d845375b127e3823105b5c62c92f6d67595759736e420c1c0b0e282f570d7d", + "index": 1 }, { - "quantity": 129, - "unit": "lovelace" - } - ], - "burn": { - "tokens": [ - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1pysu795fncn3sxsnhj3y9z57p2p2y8p4jrgennur95ql26mhdhj", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "0921cf16899e27181a13bca2428a9e0a82a21c3590d199cf832d01f5", - "assets": [ - { - "fingerprint": "asset1lglg2avzdeu3p6tdr42qdwalk0kuc748vx2nwm", - "asset_name": "546f6b656e45", - "quantity": 7817 - }, - { - "fingerprint": "asset1w7n7l2qtvu84s26cste0ak9txle4r2x9p47c06", - "asset_name": "546f6b656e51", - "quantity": 2086 - }, - { - "fingerprint": "asset1est3pd570ywh4yladumampaptyj9rw2adr0ay5", - "asset_name": "546f6b656e54", - "quantity": 7097 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1emvnnpxvrk2dtcl8rgdtl3ce0fuxskpk6n7pql584awjzrc0hg9", - "script_type": "native" - }, - "policy_id": "ced93984cc1d94d5e3e71a1abfc7197a78685836d4fc107e87af5d21", - "assets": [ - { - "fingerprint": "asset1ljgk5hqcgztq3dy3xgd3cd609u5hdn0tarpqqj", - "asset_name": "546f6b656e5a", - "quantity": 9686 - }, - { - "fingerprint": "asset1u0vj4ptwrhvpvdrz8jlsz6sy2cp0mlpv9xcpwm", - "asset_name": "546f6b656e4b", - "quantity": 4764 - }, - { - "fingerprint": "asset1m9tgy5j6kyrwh234ek8lalqcckwnt073m8drvl", - "asset_name": "546f6b656e4a", - "quantity": 4498 - }, - { - "fingerprint": "asset1vma02adm4yvlftjtqqd7e6r89qmufgaeq5fz44", - "asset_name": "546f6b656e59", - "quantity": 1660 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "d844fae1a7ac099a53b5e3da1d55265bc0ce095ec395012473377411", - "assets": [ - { - "fingerprint": "asset1637pqc32whzzezemmd7nk3wcr702gnkev0f8ls", - "asset_name": "546f6b656e57", - "quantity": 9889 - }, - { - "fingerprint": "asset1w2vn3ufxlrzfuc5qtenj0scq3hdgntexjk4xgh", - "asset_name": "546f6b656e44", - "quantity": 270 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1tstgmgkhy327vm70ndp26t04vgu4n5a86r8rfjqp2gne7qgp50t", - "script_type": "native" - }, - "policy_id": "5c168da2d72455e66fcf9b42ad2df5623959d3a7d0ce34c80152279f", - "assets": [ - { - "fingerprint": "asset106g7nxkwjth3tn26ltk7kf0a3wcm2ekms53ryr", - "asset_name": "546f6b656e4a", - "quantity": 3103 - }, - { - "fingerprint": "asset1t33v8v5zmv35uwk0kw0mjxn5prwqpvv8d40e60", - "asset_name": "546f6b656e46", - "quantity": 9880 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1xhzk66yvt89k60k82evcdfmnaag82x77gcnkkf6xlm5nsdgp5z9", - "script_type": "native" - }, - "policy_id": "35c56d688c59cb6d3ec7565986a773ef50751bde46276b2746fee938", - "assets": [ - { - "fingerprint": "asset1twyh3wgzqf9ynv9ss8jtz7arxpchalz7ewxtp0", - "asset_name": "546f6b656e59", - "quantity": 5923 - }, - { - "fingerprint": "asset1tt696eaywf77lucz8p4w7m5l4rpvtwg3c7u8wa", - "asset_name": "546f6b656e4b", - "quantity": 7604 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "6ac8c7a082eb52be607923408503a4538af0fca1c0b4addbb1015af8", - "assets": [ - { - "fingerprint": "asset15qgqjh9le63xnpkj7c64kvdnpxz0akuezrd99a", - "asset_name": "546f6b656e58", - "quantity": 9111 - }, - { - "fingerprint": "asset1jrqc4ww2y6gchvarflc23vyamhemyke2cux5sl", - "asset_name": "546f6b656e5a", - "quantity": 7655 - }, - { - "fingerprint": "asset1p37y3n4dzv0n78xdxewyemfgmgtvaky5qzhlz2", - "asset_name": "546f6b656e44", - "quantity": 6691 - }, - { - "fingerprint": "asset1kxyl0qe5urvylgw4tpw07qd566hmn8c88y654p", - "asset_name": "546f6b656e54", - "quantity": 1598 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "22b499d7a5b4dc0cf50674e2377fb67493bb266874ae16faa8bcdd4d", - "assets": [ - { - "fingerprint": "asset16eluq7hkhc4yyx5kslpawrl037u2a9zpappjeu", - "asset_name": "546f6b656e43", - "quantity": 2298 - } - ] + "address": "", + "id": "807671402d157a3e8e13d510260c2357462b791a0432783e41444940a3749f13", + "index": 26100, + "amount": { + "quantity": 18, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1je2mhp7nzme0jyd23ftd8f0vmv5vr78n94ly2xzmczn8x9flwcr", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "derivation_path": [ + "2009", + "18578", + "16942", + "15901", + "14898", + "2683", + "18892", + "12201", + "12982", + "3949", + "1601", + "12834", + "1371", + "6423", + "9298" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "9655bb87d316f2f911aa8a56d3a5ecdb28c1f8f32d7e45185bc0a673", - "assets": [ - { - "fingerprint": "asset1cx23m2xl6xedn0uaxgze09x4fq6zg30pkg5jzk", - "asset_name": "546f6b656e46", - "quantity": 5801 - }, - { - "fingerprint": "asset1y62jjpd2a925sre9qdj2uvgred4sxdhv7ae8dd", - "asset_name": "546f6b656e48", - "quantity": 3130 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "7b4792f941c2f5c53e2e5376a35dafe7af260ad90be00fc1fd41e755", - "assets": [ - { - "fingerprint": "asset164qrlcr9q4au7zh5ulahpmlpafvgx6y2w3cj83", - "asset_name": "546f6b656e49", - "quantity": 52 - }, - { - "fingerprint": "asset1nu4lacnm86nzz666dkxpgja6v82f7yzavk0l5a", - "asset_name": "546f6b656e53", - "quantity": 2100 - }, - { - "fingerprint": "asset10nk8zw2yta3uzn6s7xaw36j7kygfcph7krdjhs", - "asset_name": "546f6b656e4e", - "quantity": 4499 - }, - { - "fingerprint": "asset1j39ww6ntcd0k330c7kuzuejq9sxgtheza63z2t", - "asset_name": "546f6b656e53", - "quantity": 2442 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh140kq2duvt363yjaszsn3gcar476l5k5j9kyjh826z4w2vzg4pjk", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "abec05378c5c75124bb014271463a3afb5fa5a922d892b9d5a155ca6", - "assets": [ - { - "fingerprint": "asset16epat9v27qnr0k2nlgyu49knykv43mljev04wc", - "asset_name": "546f6b656e4f", - "quantity": 2030 - }, - { - "fingerprint": "asset150wfzu8zmqdn8vqt280hlg5x9cyg6q2fv7qypa", - "asset_name": "546f6b656e57", - "quantity": 7579 - }, - { - "fingerprint": "asset1tnap4wgwpkdvj9p28e50vurdgsf6p37ur9lcd9", - "asset_name": "546f6b656e52", - "quantity": 307 - } - ] + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "37331416ac0862634276143e3113106d1823237e25294446682161585c755337", + "index": 1 + }, + { + "address": "", + "id": "6c51c75d04530336437f3af0793864ca967f677b7a27702b58291b17743c9c43", + "index": 514, + "amount": { + "quantity": 8, + "unit": "lovelace" }, + "derivation_path": [ + "17052", + "9587", + "9162", + "20918", + "21401", + "11422", + "24445" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "id": "6b53d66968135c5d0d6e0e504564783979752c46344cc812e007490e1c094751", + "index": 0 + } + ], + "mint": { + "tokens": [ { "policy_script": { "script": { "all": [ - "policy_vkh1ch46trh2pt8de3q7nt2a04ekeffvh37pcrwshwzmuvmruyrv6ud", + "policy_vkh100rhxpvyt6llp3kjn5vvnt9ysdr27l2sr5jssrsqk290svlm75c", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "c5eba58eea0acedcc41e9ad5d7d736ca52cbc7c1c0dd0bb85be3363e", + "policy_id": "7bc77305845ebff0c6d29d18c9aca48346af7d501d25080e00b28af8", "assets": [ { - "fingerprint": "asset1j9mgavzyks0tkxyzmnktx7tgtxt54m27ggkc7k", - "asset_name": "546f6b656e4f", - "quantity": 2093 + "fingerprint": "asset1hth5v6n8mxyhs5d6x6rklchjm4tz9whme05txq", + "asset_name": "546f6b656e42", + "quantity": 2943 }, { - "fingerprint": "asset1qpukt70fea02pfh30g8mcn3rm57jmshy4zz32q", - "asset_name": "546f6b656e41", - "quantity": 6165 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "eedb767cc42e1a45590aa79fcaa9708a2a85796e2534b18a39bcc4b2", - "assets": [ - { - "fingerprint": "asset15jwsyr0vf82u8art39lf0sk9ukjczt6w0th06w", - "asset_name": "546f6b656e59", - "quantity": 5259 + "fingerprint": "asset1z5qr8j5pqzeh2k29wwyfnwfmyxwsmpkhre6744", + "asset_name": "546f6b656e46", + "quantity": 7277 }, { - "fingerprint": "asset17esnz9m35m88jq7z3kdy09q2u6d5x3wg5zavyj", - "asset_name": "546f6b656e4f", - "quantity": 7787 + "fingerprint": "asset1mcp4mernn46e2spdq36mn87228rws3z9tn2gy4", + "asset_name": "546f6b656e47", + "quantity": 4577 }, { - "fingerprint": "asset1wgmrwx482y89lpfasryd5kz2wr74u8tttqaq90", - "asset_name": "546f6b656e59", - "quantity": 8832 + "fingerprint": "asset179gyp5hjtkt6y5ww8r8smrelns9lthgwypfcz9", + "asset_name": "546f6b656e4f", + "quantity": 4348 } ] }, { "policy_script": { - "script": "policy_vkh10acff6yz5dy6xtlfnyc47fc780hhd996ls05jl5ryxcvs267eza", + "script": "policy_vkh1e09wynfma9n8ud4kwdd60kwrrc95x66e3p3anqddx7j4xez96e4", "script_type": "native" }, - "policy_id": "7f7094e882a349a32fe999315f271e3bef7694bafc1f497e8321b0c8", + "policy_id": "cbcae24d3be9667e36b6735ba7d9c31e0b436b598863d981ad37a553", "assets": [ { - "fingerprint": "asset10mczh6ch36m3a0extnt0uq7eqg3r2lsc9v9prl", - "asset_name": "546f6b656e54", - "quantity": 228 - }, - { - "fingerprint": "asset15c33k8z50ak35q4qmdd8n5h6zy9958f7kvee28", - "asset_name": "546f6b656e46", - "quantity": 4755 - }, - { - "fingerprint": "asset1v4qrqktmj8ggawrl3z9qeeyy3cdhq29scc9j5q", - "asset_name": "546f6b656e5a", - "quantity": 5753 + "fingerprint": "asset1d9szetzn8hc20w86twm8wyfsgd99ucjpj2ugwp", + "asset_name": "546f6b656e42", + "quantity": 3845 } ] }, { "policy_script": { - "script": "policy_vkh1fwwrl3pv23wg9kt8zej3pmzshprqpkyetuzfsttzs5y02q6fhmv", + "script": "policy_vkh1pes792hqhnzh4e3exj336fhevzvakvyughvgwpstayklw33k50u", "script_type": "native" }, - "policy_id": "4b9c3fc42c545c82d967166510ec50b84600d8995f04982d628508f5", + "policy_id": "0e61e2aae0bcc57ae63934a31d26f96099db309c45d887060be92df7", "assets": [ { - "fingerprint": "asset12aryjdv9ktlt4ymkvv97nf986nt7qgyaxlrxwr", - "asset_name": "546f6b656e52", - "quantity": 637 - }, - { - "fingerprint": "asset1pz7d6lz9cef4t4j6depm9kvyf82n5xnzzp9wxg", + "fingerprint": "asset1zghaks9ey3kqn4ugpdux820jdwlnsdhyuxtwy3", "asset_name": "546f6b656e4c", - "quantity": 807 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "67c209231f0d742fd362df40ceea8037f4ae47ce08ea484ae012cda3", - "assets": [ - { - "fingerprint": "asset1l2tpw4xslutz4lmgxj3g57se6ymgdyluxt3esz", - "asset_name": "546f6b656e4a", - "quantity": 5730 + "quantity": 4200 }, { - "fingerprint": "asset15ahzpvf083ay2c8tsvpjn7uzqga48ecf9e6np4", - "asset_name": "546f6b656e42", - "quantity": 2927 + "fingerprint": "asset1hn9y5uudqftkwph9v24kj348kg3s7pvv7kpxsy", + "asset_name": "546f6b656e53", + "quantity": 6931 }, { - "fingerprint": "asset1sy7x2wh79qzk3ydz4vgn2p94llegxdfj53jgaz", - "asset_name": "546f6b656e45", - "quantity": 7223 + "fingerprint": "asset1xr9q6qjjm08zjfzzuzy7hvg5sddeq20e3hq7e7", + "asset_name": "546f6b656e58", + "quantity": 7869 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "2fd63cf1a3e25e7e75a93b1843781ee95bf61768b4381bb5ce17c868", - "assets": [ - { - "fingerprint": "asset1x587dlsaxuetf4um6zuxyc3h5jjj7kfnkpt0kg", - "asset_name": "546f6b656e44", - "quantity": 8748 - }, - { - "fingerprint": "asset1lk568w3zg24pljl7er3ny0wgxzrl25g0eteu28", - "asset_name": "546f6b656e4f", - "quantity": 8307 - }, - { - "fingerprint": "asset1f3eydsw5u7fsdp35l0r3nv0sd8uwvaaqwhau64", - "asset_name": "546f6b656e42", - "quantity": 8688 - }, - { - "fingerprint": "asset1zud7ge084yjs80krwc8nv3vlxjeny74parasgu", - "asset_name": "546f6b656e4d", - "quantity": 8830 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1hc0dzcylte475kxtgvczurr6sl9v9lvl4e5kj0zyt08f6h7geuc", - "script_type": "native" - }, - "policy_id": "be1ed1609f5e6bea58cb43302e0c7a87cac2fd9fae69693c445bce9d", + "policy_id": "f9eebb04374fca3819462367d38cd3c6d78f8e17c76c410495f80cef", "assets": [ { - "fingerprint": "asset1hv569ahhgwqztuucau9nx23cvsge7lxcpyj52g", - "asset_name": "546f6b656e50", - "quantity": 7529 + "fingerprint": "asset1vdqr9lswk6fh9t46g26rralmnd6svrpe57p90l", + "asset_name": "546f6b656e48", + "quantity": 5874 }, { - "fingerprint": "asset1v78kglaew9ejjavgx3kc0qdgqym2uuhapyd4jm", - "asset_name": "546f6b656e58", - "quantity": 4708 + "fingerprint": "asset1ld3n9el40ekuztx4zl20rwdt872kkft8wenhaq", + "asset_name": "546f6b656e45", + "quantity": 1385 }, { - "fingerprint": "asset1jsa4r6seedc5ymf9xtnvvzvde2xxznzne6949u", - "asset_name": "546f6b656e4a", - "quantity": 175 + "fingerprint": "asset1f9yz7f6vprc5hd6nlpvl9e2yjepw3a7n992jff", + "asset_name": "546f6b656e51", + "quantity": 8091 } ] }, { "policy_script": { - "script": "policy_vkh19wrle45ngqqelzh58ahafexjq678fm7rfx8krsn73gtwj9paemy", + "script": "policy_vkh1sclp7pfn2ge7uyudcj5zrq2mamrsdsz2vzyj20d38uh36jsrlth", "script_type": "native" }, - "policy_id": "2b87fcd69340019f8af43f6fd4e4d206bc74efc3498f61c27e8a16e9", + "policy_id": "863e1f05335233ee138dc4a821815beec706c04a6089253db13f2f1d", "assets": [ { - "fingerprint": "asset1evr2td5rr8war8vfq0jsu964ax4674w8jskn2k", - "asset_name": "546f6b656e4b", - "quantity": 2522 + "fingerprint": "asset126420w5gp7ugxe5xkaa4reyt2cttjj8lej7xdg", + "asset_name": "546f6b656e52", + "quantity": 5687 }, { - "fingerprint": "asset1gqmz4up0aph33lyr2frranhaz87kkxhjvyfhqg", - "asset_name": "546f6b656e4e", - "quantity": 5922 + "fingerprint": "asset13faanguen2mpcvxwlcqprz5ydh46qxuknatreu", + "asset_name": "546f6b656e50", + "quantity": 6073 } ] }, @@ -18204,7 +16830,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh13nkpln662ygg374x55fz56d7ncv506rkwgd9m2jyz9cycfpsac7", + "policy_vkh170khe5zy20mqdex3utwzg3zlxu44ghtgpq7c72tshu53c2fek44", { "active_from": 100 }, @@ -18215,38 +16841,22 @@ }, "script_type": "native" }, - "policy_id": "8cec1fcf5a511088faa6a5122a69be9e1947e876721a5daa4411704c", + "policy_id": "f3ed7cd04453f606e4d1e2dc24445f372b545d68083d8f2970bf291c", "assets": [ { - "fingerprint": "asset19qlhzzuu7s37u7kzd265v799m28cj0cq6fv269", - "asset_name": "546f6b656e46", - "quantity": 4165 + "fingerprint": "asset1s5pc4p9qrd04xlxj7hkmdlh6u8y228f35x3ajw", + "asset_name": "546f6b656e50", + "quantity": 4468 }, { - "fingerprint": "asset1fv3msxv6xh5k4zqa7u5c0rn7gvp5yajaraaqlk", - "asset_name": "546f6b656e55", - "quantity": 304 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1la4cekqvqpn0c25c4l7wh43qlh55upjandvd74laxhapzvhxsfs", - { - "active_from": 100 - } - ] + "fingerprint": "asset1gqtag40jxwjr8kj08sauvjc6qks7lc7y6x7fle", + "asset_name": "546f6b656e43", + "quantity": 317 }, - "script_type": "native" - }, - "policy_id": "ff6b8cd80c0066fc2a98affcebd620fde94e065d9b58df57fd35fa11", - "assets": [ { - "fingerprint": "asset12u2uerrpkc8hppxre58s4ahycrxzv4ucyfc5qf", - "asset_name": "546f6b656e4b", - "quantity": 3192 + "fingerprint": "asset1q5v5exxyqxxdwxwa4y0d7upe3437prlu35xr5u", + "asset_name": "546f6b656e44", + "quantity": 4004 } ] }, @@ -18255,660 +16865,415 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "7f41d65d181190667125e79bc8dc417f057f219d5c3ebcb480d4fe6d", + "policy_id": "a9007c9f88351e08c6516d2a8b270796316e3bbce58186478812fb94", "assets": [ { - "fingerprint": "asset1avwxxmxh96299fa98jpxmrx0wqt9jktv9vdu6s", + "fingerprint": "asset133sd92dhyez2sep0938j0gggk3gfytpmzgvv5u", "asset_name": "546f6b656e48", - "quantity": 1850 + "quantity": 5956 }, { - "fingerprint": "asset15llxcd0fr2wddu3u8eyhg2ekh6nrm76r2s06xt", - "asset_name": "546f6b656e47", - "quantity": 3915 + "fingerprint": "asset1d9c5fetk8wgtpu0vxf7d840t479fkj87lz2wtg", + "asset_name": "546f6b656e41", + "quantity": 7774 }, { - "fingerprint": "asset1th5yv5wt8pnqfm3shku275a990pka7pdzhhhpy", - "asset_name": "546f6b656e53", - "quantity": 2902 + "fingerprint": "asset1mxz6zskawvz0r60g3gtwsefszjah5wsw88r65u", + "asset_name": "546f6b656e58", + "quantity": 2054 }, { - "fingerprint": "asset1n626ma7c8kfe79vy03pxtze2d78sjelajzej8f", - "asset_name": "546f6b656e47", - "quantity": 2090 + "fingerprint": "asset1mphac9gdqysj7qqe3jvz2fje2nwaemh6jvevnv", + "asset_name": "546f6b656e44", + "quantity": 8085 } ] }, { "policy_script": { - "script": "policy_vkh1555lz4jha7luhgxl4qwfmvz2s970yugnrndnrua5q0707kdkka0", - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "a529f15657efbfcba0dfa81c9db04a817cf271131cdb31f3b403fcff", + "policy_id": "f8a43246fe8b49f9882ec7969ace8475623ee0972347f361300e0eef", "assets": [ { - "fingerprint": "asset1mjgadnr39x6lvju7rpl4xk47ugmqelj0qhkeec", - "asset_name": "546f6b656e4d", - "quantity": 8825 - }, - { - "fingerprint": "asset1jl6ljzcceqztgnq8e49rljk9lfhnsz3chep3wr", - "asset_name": "546f6b656e46", - "quantity": 8487 - }, - { - "fingerprint": "asset1mznh96wufxwketyj8vmcvvx69pe63ktcsahsx7", - "asset_name": "546f6b656e56", - "quantity": 2134 + "fingerprint": "asset15jhnfw3uqvrgmpm3wzv9wqhhy5gdzzmkt87rmq", + "asset_name": "546f6b656e41", + "quantity": 1537 } ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vk1tvrry5pa2nes7r2d8kdycljuqgckcmn3fq48uz6y8ct4wvt9gvmqtuh2q7" - }, - "fee": { - "quantity": 254, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "quit_pool_external", - "reward_account": "" - } - ], - "deposits_returned": [ - { - "quantity": 119, - "unit": "lovelace" - }, - { - "quantity": 155, - "unit": "lovelace" - }, - { - "quantity": 113, - "unit": "lovelace" - }, - { - "quantity": 231, - "unit": "lovelace" - }, - { - "quantity": 109, - "unit": "lovelace" - }, - { - "quantity": 54, - "unit": "lovelace" - }, - { - "quantity": 188, - "unit": "lovelace" - }, - { - "quantity": 18, - "unit": "lovelace" - }, - { - "quantity": 129, - "unit": "lovelace" - }, - { - "quantity": 192, - "unit": "lovelace" - }, - { - "quantity": 36, - "unit": "lovelace" - }, - { - "quantity": 44, - "unit": "lovelace" - }, - { - "quantity": 205, - "unit": "lovelace" - }, - { - "quantity": 142, - "unit": "lovelace" - }, - { - "quantity": 241, - "unit": "lovelace" - }, - { - "quantity": 190, - "unit": "lovelace" - }, - { - "quantity": 85, - "unit": "lovelace" - }, - { - "quantity": 137, - "unit": "lovelace" - }, - { - "quantity": 210, - "unit": "lovelace" - }, - { - "quantity": 152, - "unit": "lovelace" - }, - { - "quantity": 113, - "unit": "lovelace" - }, - { - "quantity": 255, - "unit": "lovelace" - }, - { - "quantity": 48, - "unit": "lovelace" - }, + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1hpth3hwjz6lgtz5rwh02fwr7ztv4teq8gqmvmgq5rvvegmmz3uq", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "b85778ddd216be858a8375dea4b87e12d955e4074036cda0141b1994", + "assets": [ + { + "fingerprint": "asset1j6yehg7jjmtg8ly4yzjclujp89x7ha5yp86hru", + "asset_name": "546f6b656e45", + "quantity": 659 + }, + { + "fingerprint": "asset1ev93p3x7xzrw565a0a9pllklafhz89jtzaw6em", + "asset_name": "546f6b656e4a", + "quantity": 6694 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1p79zthhy8hntsc5drnzm4x3906n0khymlcwpnmty4l2wuqfmx2v", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "0f8a25dee43de6b8628d1cc5ba9a257ea6fb5c9bfe1c19ed64afd4ee", + "assets": [ + { + "fingerprint": "asset14dkun97d6xvk79tdhmfmeftlvyfa6qa4k0qyh8", + "asset_name": "546f6b656e48", + "quantity": 2819 + }, + { + "fingerprint": "asset1nnmp2ex48n6980my0v8u4lu44kuqc5d95ng7fy", + "asset_name": "546f6b656e49", + "quantity": 6680 + }, + { + "fingerprint": "asset105wnp7z5z9gjxss47u7j99tmu9cl6cjmwwxj0w", + "asset_name": "546f6b656e4c", + "quantity": 9681 + }, + { + "fingerprint": "asset1804szdfvcgxj7330amjgjvg42fqtvlq572cw2r", + "asset_name": "546f6b656e4d", + "quantity": 1130 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1gw9jpyu24g6ny2uzlwzn4qr229hh3eg2evym4jj82lsqqyj394a", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "438b20938aaa35322b82fb853a806a516f78e50acb09baca4757e000", + "assets": [ + { + "fingerprint": "asset19n6uyqgnu45qacdx08s5kehnqsnmd48na7lzzn", + "asset_name": "546f6b656e56", + "quantity": 3221 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "d4d57602bd00892709440a5a59c8b56bfa89a0a7a78afcffc219cacc", + "assets": [ + { + "fingerprint": "asset19u2lk0s283xc4cglkwvgsmlu86apx9f3dk8gvg", + "asset_name": "546f6b656e57", + "quantity": 6062 + }, + { + "fingerprint": "asset1q5dnqz5apvncr3kxz37xqmupjy4z8jj4mutae9", + "asset_name": "546f6b656e45", + "quantity": 2947 + }, + { + "fingerprint": "asset1mtgvsvzc2jmmu53vm5kpcwp03agve982xxtzn9", + "asset_name": "546f6b656e4d", + "quantity": 2787 + } + ] + } + ], + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1vdt97r5k05q8v03wxpxnc2fhx9fzc66lq9yh29hm3q246rd4u30" + } + }, + { + "withdrawals": [ { - "quantity": 180, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 171, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 177, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 14, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 245, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 172, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 210, - "unit": "lovelace" + "amount": { + "quantity": 140, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 67, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 59, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 91, - "unit": "lovelace" + "amount": { + "quantity": 243, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 212, - "unit": "lovelace" - } - ], - "metadata": null, - "collateral": [ - { - "address": "", - "id": "ad520d4228663a055042386e3910d5e111386d6e3a682a1e3b551457409b1748", - "index": 26861, + "context": "ours", "amount": { - "quantity": 94, + "quantity": 221, "unit": "lovelace" }, - "derivation_path": [ - "16650", - "28596", - "10329", - "9177", - "20781", - "1959", - "9260", - "27449", - "32043", - "15125", - "21267", - "11367", - "18837", - "4858", - "5095", - "17558", - "925", - "10878", - "14521", - "3041", - "12778", - "21812", - "5162", - "15244", - "22387", - "12328", - "585" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { - "address": "", - "id": "5fab1ad54b1e4d2c083a27411039602e3f552d19fd74050a1109782447757a5d", - "index": 3891, "amount": { - "quantity": 92, + "quantity": 121, "unit": "lovelace" }, - "derivation_path": [ - "25495", - "21827", - "8153", - "25554", - "29025" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" }, { - "id": "583e4837628c0c43556da1e15f4400240cb66664653a540418383506146f562c", - "index": 0 + "context": "ours", + "amount": { + "quantity": 213, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "317c271b3003172fb2be383e573a2b7dee661cff417b5f3765345b503c0eea59", - "index": 1774, + "context": "ours", "amount": { - "quantity": 154, + "quantity": 220, "unit": "lovelace" }, - "derivation_path": [ - "30925", - "19185", - "7532", - "32049", - "11669", - "28587", - "3119", - "14769", - "4406", - "13879", - "2373", - "21570" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "id": "3fe2b522791b01160b72539d546e2d49647acd626e30632278c8654f0247c4c6", - "index": 1 + "amount": { + "quantity": 38, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "588f347a90417d371e790c815620720a7919357e102f9e3156586b029f93012a", - "index": 31872, + "context": "ours", "amount": { - "quantity": 252, + "quantity": 144, "unit": "lovelace" }, - "derivation_path": [ - "15936", - "32726", - "761", - "19404", - "7400", - "838", - "26403", - "2210", - "14545", - "27557", - "2468", - "22645", - "9313", - "22347", - "31468", - "1958" - ], - "assets": [] + "stake_address": "" }, { - "address": "", - "id": "17282a4e0223260821d1412f06527c461044202d7842586e6d4fbd5f63437e5c", - "index": 30184, "amount": { - "quantity": 125, + "quantity": 75, "unit": "lovelace" }, - "derivation_path": [ - "16866", - "19120", - "10548", - "10578", - "15569", - "27694", - "20531", - "21121", - "14617", - "10267", - "26054", - "2532", - "25584", - "803", - "29757", - "716", - "5757", - "14537", - "7334", - "9162", - "8385", - "4797", - "3464" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" }, { - "id": "262d5a9e2b251969bc112e255d107b321b74203558743c361e977e01a3523e4b", - "index": 1 + "amount": { + "quantity": 219, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "16126b625143b8567e2c67c8754d6849731e375d206a1c081847560d1d1e3b12", - "index": 0 + "context": "ours", + "amount": { + "quantity": 244, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "1e2530fc18c62f3959011d6b75bd134bd998e102a74f5f2954091c05951f63c8", - "index": 4298, + "context": "ours", "amount": { - "quantity": 24, + "quantity": 243, "unit": "lovelace" - }, - "derivation_path": [ - "20232", - "22951", - "12380", - "21732", - "26524", - "20847", - "2526", - "25787", - "27190", - "15458", - "20234", - "1269", - "6053", - "23261", - "8373", - "19211", - "23818", - "20858", - "19261", - "15234", - "13938", - "21571", - "9582", - "3254" - ], - "assets": [] + }, + "stake_address": "" + } + ], + "inputs": [ + { + "id": "656b753f1c135b52584c520744b623767524b91a2d51530707cf1af50a13cd0e", + "index": 1 + }, + { + "id": "6c594f49182c6a700d097c1e6edbe3554a04a92415543151371002f58b6e2a7f", + "index": 0 }, { "address": "", - "id": "421f12301738d6dc1251ac050b1a407faefa0e823e7f290b6e353879916b1f6e", - "index": 671, + "id": "7047ee0e7c4c670c03387b1c140bef29425a3ccd21b9024c1d3f7e4471533559", + "index": 27484, "amount": { - "quantity": 65, + "quantity": 71, "unit": "lovelace" }, "derivation_path": [ - "474", - "29331", - "4039", - "17076", - "10950", - "22558", - "13116", - "22379", - "14987", - "2026", - "25042", - "9686", - "22987", - "24041", - "7094", - "18451", - "5820", - "3696", - "16952", - "24096", - "9967", - "8164" + "16720", + "28110", + "15565", + "4821", + "29849", + "32185", + "18189" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - }, - { - "id": "430a7a6a4a111901755cd351dd440f2a5d72251547da1d571b051534354e5627", - "index": 0 - }, - { - "id": "1c0d7b0f6665ed033d1e301a0ca200af28ad5e6773553e7a77357972313a095b", - "index": 1 - }, + } + ], + "collateral_outputs": [ { "address": "", - "id": "7264222187e4c3e9457f0d6e1e05555fd40b08623148046a0840005316544765", - "index": 24019, "amount": { - "quantity": 28, + "quantity": 221, "unit": "lovelace" }, - "derivation_path": [ - "27415", - "32128", - "18005", - "10594", - "20757", - "21269", - "15936", - "22615", - "25749" - ], "assets": [] - }, + } + ], + "outputs": [ { "address": "", - "id": "8ef25e5d03692013a4774a5f0a726b2c1f351070a74644bc7a252f07a044dc4f", - "index": 21778, "amount": { - "quantity": 46, + "quantity": 160, "unit": "lovelace" }, - "derivation_path": [ - "19775", - "24344", - "11285", - "3503", - "27175", - "28982", - "20899", - "13575" - ], "assets": [] }, { "address": "", - "id": "7652705717743f7cbb7bda3d9031093b56354d1d4f64844f3532fbe95526027d", - "index": 20032, "amount": { - "quantity": 241, + "quantity": 234, "unit": "lovelace" }, - "derivation_path": [ - "27649", - "5385", - "7269", - "9060", - "21867", - "21670", - "4381", - "5176", - "32752", - "11602", - "5139", - "30688", - "21217", - "27057", - "5647", - "18806", - "22548" - ], "assets": [ { "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 44, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, - { - "id": "0a13724d6e2517523e6808295e70472a7c2dd62b3019020e4947672b5eff46bf", - "index": 1 - }, { "address": "", - "id": "24432e10494e6069672a345806050d426938b64a2bbb256f4f1c6b1f7a757d2d", - "index": 2662, "amount": { - "quantity": 214, + "quantity": 215, "unit": "lovelace" }, - "derivation_path": [ - "5748", - "1851", - "22260", - "25900", - "27090", - "13331", - "16842", - "18635", - "15518", - "13308", - "22597", - "5324", - "23174", - "29476", - "10225" - ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "address": "", - "id": "8a4075026d736c392f340da348341d044a7c178326756b5e4d7f1c2515069521", - "index": 30041, "amount": { - "quantity": 50, + "quantity": 55, "unit": "lovelace" }, "derivation_path": [ - "20165", - "5306", - "10856", - "9229", - "2945", - "14469", - "11035", - "27771", - "7499" + "4383", + "557", + "7287", + "23624", + "176", + "24611", + "4361", + "28776", + "7983", + "30225", + "21335", + "32694", + "30453", + "28384", + "7290", + "6558", + "21169", + "2500", + "21397", + "1050", + "10168", + "32332", + "18701", + "28103" ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e45", - "quantity": 30, + "quantity": 21, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, + "asset_name": "546f6b656e44", + "quantity": 28, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 23, + "asset_name": "546f6b656e42", + "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { @@ -18917,666 +17282,524 @@ "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 10, + "asset_name": "546f6b656e41", + "quantity": 28, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 28, + "asset_name": "546f6b656e43", + "quantity": 8, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 18, + "quantity": 16, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 5, + "asset_name": "546f6b656e42", + "quantity": 41, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e42", - "quantity": 11, + "asset_name": "546f6b656e43", + "quantity": 23, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 34, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "b84806340f084953684772084e674c1b595e408c3e545a1d336f273b067a640e", - "index": 11202, "amount": { - "quantity": 245, + "quantity": 22, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 207, "unit": "lovelace" }, "derivation_path": [ - "9940", - "2585", - "30472", - "28758", - "15882", - "2876", - "29261", - "30037", - "27584", - "21189", - "22262", - "2277", - "24477", - "4270" + "17381" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, + "quantity": 4, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "17da5ea63c0f3c25f24f187a556674263193fd083254490365342853602a213a", - "index": 13935, "amount": { - "quantity": 77, + "quantity": 240, "unit": "lovelace" }, "derivation_path": [ - "32257", - "22189", - "4425", - "18418", - "13669", - "8179", - "23835", - "3071", - "26611", - "19435", - "3199", - "24274", - "26360", - "30993", - "5366", - "24012", - "18472", - "5222", - "14041", - "15741", - "17970", - "15137", - "32391", - "11782", - "11082", - "2146", - "7841", - "11945" + "422", + "18599", + "9146", + "32322", + "18697", + "16844", + "30206", + "17639", + "14272", + "5494", + "11785", + "22742", + "11836", + "30105", + "14251", + "14050", + "21495" ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + } + ] + }, + { + "address": "", + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "derivation_path": [ + "7256", + "2174", + "24910", + "9962", + "19656", + "10654", + "2693", + "7521", + "27802", + "18293", + "26470", + "10707", + "27618", + "2051" + ], + "assets": [ { "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 32, + "unit": "lovelace" + }, + "assets": [ { "asset_name": "546f6b656e44", - "quantity": 43, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 17, + "quantity": 57, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 27, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 22, + "asset_name": "546f6b656e44", + "quantity": 17, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "780a63731ef75302547f694d0b344f714c59490d0f575f4b6ba20a6b787e3e4d", - "index": 21660, "amount": { - "quantity": 156, + "quantity": 165, "unit": "lovelace" }, "derivation_path": [ - "6595", - "25235", - "20615", - "18955", - "8098", - "15577", - "18316", - "21087", - "20906", - "17564", - "4579", - "31647", - "1041", - "6640", - "28364", - "25770", - "22384", - "8298" + "8203", + "13710", + "27381", + "14069", + "32139", + "14570", + "30584", + "30792", + "572", + "16556", + "26657", + "4995", + "15643", + "19662", + "31537", + "5671", + "20485", + "1677", + "27795", + "14416", + "16149", + "20614", + "1971" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 63, + "asset_name": "546f6b656e42", + "quantity": 9, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 38, + "asset_name": "546f6b656e41", + "quantity": 25, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 46, + "asset_name": "546f6b656e43", + "quantity": 24, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 34, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 31, + "asset_name": "546f6b656e42", + "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", - "id": "5141239c750b64616572f93454676d7c6a0852ea18fb063f562b6f2704c20116", - "index": 8267, "amount": { - "quantity": 221, + "quantity": 75, "unit": "lovelace" }, "derivation_path": [ - "29810", - "6088", - "22442", - "15122", - "8842", - "16307", - "10917", - "14399", - "24795", - "5099", - "22374", - "28004", - "18828", - "20868", - "25487", - "9158", - "1055", - "1079", - "12713", - "32358", - "26316", - "18686", - "11991", - "6389", - "21321", - "27950", - "17851", - "5560", - "2677", - "12170", - "21340" + "4273", + "24208", + "32760", + "12120", + "20167", + "11387", + "21248", + "20370", + "16470", + "7133", + "6547", + "29156", + "8795", + "26430", + "5079", + "21684", + "2996", + "26947", + "12999", + "10507", + "31179", + "21189", + "16831", + "27401", + "16724", + "4981", + "20828" ], + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 181, + "unit": "lovelace" + }, "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { - "id": "25426e38576a681253073c002d6a6f7d3e23b94c52766a2c290d001e40667f5f", - "index": 1 + "address": "", + "amount": { + "quantity": 117, + "unit": "lovelace" + }, + "derivation_path": [ + "3183", + "27717", + "27178", + "24298", + "9634", + "16436", + "9502", + "5110", + "20350", + "9172", + "22293", + "24082" + ], + "assets": [] }, { "address": "", - "id": "592bec636c1178961428131c535d0a435e615c545c4d3c28500d7f6a04530f2b", - "index": 24721, "amount": { - "quantity": 138, + "quantity": 150, "unit": "lovelace" }, "derivation_path": [ - "2959", - "29588", - "14846", - "5781", - "11878", - "5399", - "11887", - "23612", - "19495", - "30717", - "2363", - "29752", - "21770", - "30746", - "25529", - "27596", - "6198", - "18942", - "20797", - "31494", - "30711", - "25657", - "25403" + "24482", + "17461", + "26501", + "2686", + "27203", + "30478" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "58d16b6b7b5f522fa936147b7b5ddd217240630f61611f105a3b1b3735153531", - "index": 0 - }, - { - "id": "4139594e4d20526918044b511955745f442a0f607a2d4e6d5d833c3806269073", - "index": 1 + "address": "", + "amount": { + "quantity": 15, + "unit": "lovelace" + }, + "derivation_path": [ + "8745", + "8931", + "17334", + "23165", + "18917", + "13372", + "17914", + "10980", + "12085", + "28523", + "30776", + "22809", + "11794", + "12639", + "25045", + "27634", + "18082", + "11064", + "22582", + "28144", + "6081", + "14090", + "25171" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "id": "f27a473bfb6e5220ce0c342c2a6cc7465a4450742d193b29697a4e2fe1c27d36", - "index": 0 - } - ], - "mint": { - "tokens": [ - { - "policy_script": { - "script": { - "all": [ - "policy_vkh12xy4stg5vx6nvjyk9yyae2rrd403xt9pks2tn2h3390m6x2k8tz", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "5189582d1461b53648962909dca8636d5f132ca1b414b9aaf1895fbd", - "assets": [ - { - "fingerprint": "asset17gpwtechwp2ljp47e0p4980svu6z9gclj7mgvk", - "asset_name": "546f6b656e42", - "quantity": 9792 - }, - { - "fingerprint": "asset1vvruyvsvnr8mjkcjj5ga0thh2jcycj8scasjed", - "asset_name": "546f6b656e53", - "quantity": 9196 - }, - { - "fingerprint": "asset12u2jugpqj2uk3wwf764l9xp9rpu4crqfmhc05g", - "asset_name": "546f6b656e5a", - "quantity": 639 - }, - { - "fingerprint": "asset1x8j0rfs0l7krvdud0g4q60aavm77vekf9mlh4x", - "asset_name": "546f6b656e41", - "quantity": 7606 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh16pc3gr6tcvsjcmpzu2vfa7x48hycpquw20jf2h2rh0pk7zl6sfm", - "script_type": "native" - }, - "policy_id": "d071140f4bc3212c6c22e2989ef8d53dc980838e53e4955d43bbc36f", - "assets": [ - { - "fingerprint": "asset1advrscczl8tcts38g9034hgt9qvlp77rkqtfwr", - "asset_name": "546f6b656e52", - "quantity": 4233 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1zt3scfsq5qje8vg028szrxfxj228yc5qhkpswvl9u3hzvljv0ac", - "script_type": "native" - }, - "policy_id": "12e30c2600a02593b10f51e02199269294726280bd830733e5e46e26", - "assets": [ - { - "fingerprint": "asset1dk7x9zf539kzkwtfr0t4tkfwu3pnf4t2uq20z8", - "asset_name": "546f6b656e50", - "quantity": 1115 - }, - { - "fingerprint": "asset1mk5ackfugaelgx63f09lfxvpxkd0t7rjexsx7c", - "asset_name": "546f6b656e4b", - "quantity": 4763 - }, - { - "fingerprint": "asset19jkg3wfz2mg77r0gge3hcrh62kwcxte8tshdl6", - "asset_name": "546f6b656e55", - "quantity": 5232 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1p7465zs6llstwsavr2fc3sz7m8yj557ve4ss2zydujwkwddf27m", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "0fabaa0a1affe0b743ac1a9388c05ed9c92a53cccd6105088de49d67", - "assets": [ - { - "fingerprint": "asset17apqahju4hfwytuzllft5md36hhrjvrwtq9a4w", - "asset_name": "546f6b656e4a", - "quantity": 3576 - }, - { - "fingerprint": "asset14ql0szy0gdydevjk9xzdw47rwqaf8cw6azgt33", - "asset_name": "546f6b656e54", - "quantity": 3715 - }, - { - "fingerprint": "asset1g9d52ue6lz7xgju50q3nm5pgx7the6dcccafys", - "asset_name": "546f6b656e41", - "quantity": 3730 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "d4414bb7e7c0888c27b5b4c2aa1a703904f16993adf39adf7dfef7ac", - "assets": [ - { - "fingerprint": "asset17vy0xexmrqncqw3jewz22gmpqvr9jtr4u74hjz", - "asset_name": "546f6b656e4f", - "quantity": 3354 - }, - { - "fingerprint": "asset1p6kest9k2hydjumsl5a2vdug3p2q3weck9h289", - "asset_name": "546f6b656e53", - "quantity": 7777 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1ppn6kpk5jtxc6g8ytgdrqdv6qxj6whw2fnqaxnyyxgrjzzzgd3j", - "script_type": "native" - }, - "policy_id": "0867ab06d492cd8d20e45a1a30359a01a5a75dca4cc1d34c84320721", - "assets": [ - { - "fingerprint": "asset196vssglm8tkn5ldxy693sjhxjefsrhrs4gu3r6", - "asset_name": "546f6b656e56", - "quantity": 1771 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "6c515acd68a88e244d410851bc8c6793a7ac66a17bf2f38fe1279749", - "assets": [ - { - "fingerprint": "asset13uekuums09sx8kh593wswycyzvrf60nt0w2elx", - "asset_name": "546f6b656e48", - "quantity": 5498 - }, - { - "fingerprint": "asset1d35qhenf47epusuxwapqm3e0wshujmykkqkyt6", - "asset_name": "546f6b656e43", - "quantity": 278 - } - ] + "address": "", + "amount": { + "quantity": 130, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1s8mgzeu4qcc8u497wtp84e8ffm7ujaeaa2z347ymq9jpwfnlcw6", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "81f681679506307e54be72c27ae4e94efdc9773dea851af89b016417", - "assets": [ - { - "fingerprint": "asset1ltn2jdkc078a53flgzzdluaux30x87ekd8a0j8", - "asset_name": "546f6b656e4d", - "quantity": 660 - }, - { - "fingerprint": "asset1rqkh7g650f2hrgjp4wsucac2qru9evp4x3mk75", - "asset_name": "546f6b656e4d", - "quantity": 6922 - } - ] + "derivation_path": [ + "14444", + "32318", + "31411", + "32540", + "11536", + "23002", + "6434" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 191, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "2a482ce989021139c1ec5c6a301aad572066d4589d5edfa69fc720cb", - "assets": [ - { - "fingerprint": "asset1s8k79k8e4furu3m6u7ka898jgl3q9269vud24a", - "asset_name": "546f6b656e4a", - "quantity": 1013 - }, - { - "fingerprint": "asset1tnl9fz4tlvhfsfseqe4dd25ed9altass3sns9y", - "asset_name": "546f6b656e50", - "quantity": 5455 - }, - { - "fingerprint": "asset1cky4n04uh2rc7rnjau8t68leu2pfxqm3c8c87p", - "asset_name": "546f6b656e4c", - "quantity": 1463 - } - ] + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 240, + "unit": "lovelace" }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "64e9ad5227be2dbf6d6a3d12c5f7146046e0726eecfda6c29974b615", - "assets": [ - { - "fingerprint": "asset10prstfmj40qh2klplankcmt9970mx48h6jaqlp", - "asset_name": "546f6b656e46", - "quantity": 9934 - }, - { - "fingerprint": "asset13rkczqyngaacnrt77twnlln79za4gd6lxhvuxq", - "asset_name": "546f6b656e55", - "quantity": 2734 - }, - { - "fingerprint": "asset1k89vlyd30nexpwk07rkexeslpmfa4ztfmexavh", - "asset_name": "546f6b656e47", - "quantity": 3028 - } - ] + "derivation_path": [ + "10139", + "23412", + "2625", + "12626", + "24536", + "10977", + "18094", + "31198", + "28565", + "18588", + "22979", + "10764", + "10470", + "9881", + "5885", + "15403", + "29678", + "10539", + "12478", + "5347", + "5571" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "amount": { + "quantity": 233, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "", + "amount": { + "quantity": 218, + "unit": "lovelace" }, + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + ], + "script_validity": "valid", + "id": "6a70b115d1a6029d5d144b183a57444414124f45312571557ddd59406a395062", + "deposits_taken": [ + { + "quantity": 24, + "unit": "lovelace" + }, + { + "quantity": 233, + "unit": "lovelace" + }, + { + "quantity": 26, + "unit": "lovelace" + }, + { + "quantity": 239, + "unit": "lovelace" + }, + { + "quantity": 85, + "unit": "lovelace" + }, + { + "quantity": 223, + "unit": "lovelace" + }, + { + "quantity": 103, + "unit": "lovelace" + }, + { + "quantity": 182, + "unit": "lovelace" + }, + { + "quantity": 118, + "unit": "lovelace" + }, + { + "quantity": 171, + "unit": "lovelace" + }, + { + "quantity": 71, + "unit": "lovelace" + } + ], + "burn": { + "tokens": [ { "policy_script": { "language_version": "v2", "script_type": "plutus" }, - "policy_id": "77c0cb77713acbcf7dc96c4384f7ed30311b193c34f41dbee637a71b", - "assets": [ - { - "fingerprint": "asset1uqlw4x8pp7d5m394p7d4zq259rgewfvrnjpd70", - "asset_name": "546f6b656e54", - "quantity": 9860 - }, - { - "fingerprint": "asset1yxzf0403w7plpv4npqnenulgl73mtd838aqql8", - "asset_name": "546f6b656e50", - "quantity": 5537 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1tmvqmpwdt2qnfa4u8yylrqlgw0gqsqk4q2qzuwlj450lzpdcq5m", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "5ed80d85cd5a8134f6bc3909f183e873d00802d502802e3bf2ad1ff1", + "policy_id": "6441e30e210287173ef8aafe0bf3dc19d644dc8c3de2c740bb00e2e4", "assets": [ { - "fingerprint": "asset1a9x55z0hhvkh3ha8l75tud5kklngfwmztq0va5", - "asset_name": "546f6b656e55", - "quantity": 5250 + "fingerprint": "asset1f2uurj55vx9enmm0jt4kz5k0dj8v8qlcp4hq5n", + "asset_name": "546f6b656e51", + "quantity": 5891 }, { - "fingerprint": "asset1lx602lq0wq2k49cz0y92e6c7gjsgscqeksfcpa", - "asset_name": "546f6b656e58", - "quantity": 8121 + "fingerprint": "asset142uhycuxezqsmr6rug67a4d825xfnej2h3c0sp", + "asset_name": "546f6b656e44", + "quantity": 217 }, { - "fingerprint": "asset1q8lk8jwm0zmykmrhu8zfut9cssmdqpp8fy8hrg", + "fingerprint": "asset154jpy7ptmgxpjnzxy2pz43j8nfp7zupjshc3hq", "asset_name": "546f6b656e46", - "quantity": 6427 + "quantity": 7198 }, { - "fingerprint": "asset1h0v33dp8m88tga9jnzy57vtauh0cx848f2xfef", - "asset_name": "546f6b656e5a", - "quantity": 7161 + "fingerprint": "asset1we6mee7l8aq9dndydq8lw2renj8vl3ezedhv9j", + "asset_name": "546f6b656e4a", + "quantity": 7600 } ] }, @@ -19585,75 +17808,12 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "a781dd4a611537d0428fc4b0924469e81a2b3835c12474e5cad289fb", - "assets": [ - { - "fingerprint": "asset1x6fm3nhn6qd5knv5kmsmhyeme3xt3y664vena4", - "asset_name": "546f6b656e43", - "quantity": 4713 - }, - { - "fingerprint": "asset13r72f7ctle6vps6rlv5tnfrkw3w3mesh03l603", - "asset_name": "546f6b656e51", - "quantity": 1697 - }, - { - "fingerprint": "asset14dl7np2yze22kzxdefh0w87ugf5njcf0prkf2q", - "asset_name": "546f6b656e49", - "quantity": 486 - }, - { - "fingerprint": "asset1fsdr2l4gs5sctmymj5dzd0j0002uedfdsj80u2", - "asset_name": "546f6b656e43", - "quantity": 6673 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1n6ft9fgydk9s2ud98r763m8wjudlle6fv2fsfzvjj7gtwgpvljt", - "script_type": "native" - }, - "policy_id": "9e92b2a5046d8b0571a538fda8ecee971bffe74962930489929790b7", - "assets": [ - { - "fingerprint": "asset1knm20pmm8pxwm8k27v89ky02sgvjy3mrm775dw", - "asset_name": "546f6b656e4f", - "quantity": 3004 - }, - { - "fingerprint": "asset1zmmak3mu6xekcclu630309t52ay7urkaayxkv0", - "asset_name": "546f6b656e42", - "quantity": 4250 - }, - { - "fingerprint": "asset17par86z8egmclj0dyrpfjcsypy4njpugr9t2yr", - "asset_name": "546f6b656e52", - "quantity": 2838 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1uavlm55usv8n96tuthnl7203z2lza5gvjrewku5xukvlygdxc20", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "e759fdd29c830f32e97c5de7ff29f112be2ed10c90f2eb7286e599f2", + "policy_id": "599d85085d53b6bbe970f5fd0b057bd5f3712b9630dda04f5ba014d4", "assets": [ { - "fingerprint": "asset1whzkk6xlpcfdva29xm9dzeh084k36yrf4vxfzw", - "asset_name": "546f6b656e58", - "quantity": 1985 + "fingerprint": "asset1fu89r7axhycnnzyd9j62gsnf3dvpnapwk89hzv", + "asset_name": "546f6b656e59", + "quantity": 6428 } ] }, @@ -19662,109 +17822,46 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "c06d995f93f229db8678d779c7d29c88629328ca1131a8f232f012e6", - "assets": [ - { - "fingerprint": "asset1ssq39dw0kydv30ytm39szjrdt0vhmnyf908yw4", - "asset_name": "546f6b656e49", - "quantity": 8447 - }, - { - "fingerprint": "asset1u4pjat5q5hx68m4nxu28t4xyc74aewpsy6ldu0", - "asset_name": "546f6b656e4f", - "quantity": 269 - }, - { - "fingerprint": "asset1tger6wtccrmfv327edmcc7zh4ey4apz9plpaz0", - "asset_name": "546f6b656e49", - "quantity": 4923 - }, - { - "fingerprint": "asset120j2e0g7zlwcd2mz86sj6qmmf7amkkk326dmg4", - "asset_name": "546f6b656e42", - "quantity": 9428 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1xywmprcnkx4c2mf65dtz5l89h5ex98mrt8plhpqel0kdws6v2ua", - "script_type": "native" - }, - "policy_id": "311db08f13b1ab856d3aa3562a7ce5bd32629f6359c3fb8419fbecd7", + "policy_id": "8475472932c9a0f9ab1e19e5576d7a7f09aeb9fda619513cf38c02be", "assets": [ { - "fingerprint": "asset16762q2mvv8x3ntteuk5dju373qvm0q2q5ts3nc", - "asset_name": "546f6b656e4f", - "quantity": 917 - }, - { - "fingerprint": "asset139pjk5gc6fd8dnv32n6wmus7p9gwgs8fza0njh", - "asset_name": "546f6b656e4e", - "quantity": 5654 - }, - { - "fingerprint": "asset1pllzjhcd3ucwx7fs36xxsrlj9xsz3tlgjpff7e", - "asset_name": "546f6b656e42", - "quantity": 7520 - }, - { - "fingerprint": "asset16qclm4h0lq2kc2cexh833j7nddc64frvg2r7ql", + "fingerprint": "asset1uvecgnh44y650n9l7v6nuxhatvvyurxvjnvdfy", "asset_name": "546f6b656e4f", - "quantity": 4382 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1p9dkqxgzx2wsqdwm3gaep4zj4u2cak02dapdt2r0gnvfjukh4af", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "quantity": 1023 }, - "script_type": "native" - }, - "policy_id": "095b601902329d0035db8a3b90d452af158ed9ea6f42d5a86f44d899", - "assets": [ { - "fingerprint": "asset1dk2dssvets73ualheelqvmdpmcpyx972wznjpa", - "asset_name": "546f6b656e5a", - "quantity": 6126 + "fingerprint": "asset1q0n7w74yvj3fju9yldnk7kgn8r5gmu9u8scuu2", + "asset_name": "546f6b656e45", + "quantity": 421 }, { - "fingerprint": "asset1yvq74a8fuqu5x5z2yyd27vkhvuz6ltyhfjxspj", - "asset_name": "546f6b656e4b", - "quantity": 6585 + "fingerprint": "asset1xwytt3jr4lpdjk494prp4wvhj6qnjvt8j99fyf", + "asset_name": "546f6b656e57", + "quantity": 2522 } ] }, { "policy_script": { - "script": "policy_vkh1uma5zyjg02sdajqk3uwlqctqkd5t2rw7tgfdf3mf9nyhk6w3xn3", + "script": "policy_vkh1v4dyphj7psw6t7z24ul5req5r2hpd0yahca4cl6yv4xsv2sv4kj", "script_type": "native" }, - "policy_id": "e6fb4112487aa0dec8168f1df06160b368b50dde5a12d4c7692cc97b", + "policy_id": "655a40de5e0c1da5f84aaf3f41e4141aae16bc9dbe3b5c7f44654d06", "assets": [ { - "fingerprint": "asset17urv4pr6lyvz2jqe5f7zv5aq629wpk8em8d8ej", - "asset_name": "546f6b656e53", - "quantity": 5755 + "fingerprint": "asset13hx0m234qnzutwj0zd3xlyv4xehrkrfgrjcwdh", + "asset_name": "546f6b656e47", + "quantity": 8849 }, { - "fingerprint": "asset1lzq5l7vvw9lr52ary7hcf720d3qtfmt82txl56", - "asset_name": "546f6b656e41", - "quantity": 787 + "fingerprint": "asset1qht49rr743pyzmhfp98nwswlwuga9sf07vdq9n", + "asset_name": "546f6b656e47", + "quantity": 1075 }, { - "fingerprint": "asset1q4uhafu4wz6ku956uyqw60lgtlqgx8w8nvkumu", - "asset_name": "546f6b656e52", - "quantity": 9018 + "fingerprint": "asset1s4knx5pham6pynpc6sqdz3djnzp8zffdd6eutq", + "asset_name": "546f6b656e46", + "quantity": 4086 } ] }, @@ -19772,76 +17869,54 @@ "policy_script": { "script": { "all": [ - "policy_vkh1z05jrxzgyhggwvs4akzps9u3mscqzr7zmqumf0jpeuqkkvedzx4", + "policy_vkh13497ujcetsjs8q2jgphazstnev2w75yrd82xvt8sx2yjsk2tthq", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "13e921984825d0873215ed84181791dc30010fc2d839b4be41cf016b", - "assets": [ - { - "fingerprint": "asset142zzedtts5tchdplqfd9s95t25lh5t5gjjwpfl", - "asset_name": "546f6b656e46", - "quantity": 2703 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "8c6e29f6e1743f6b9ce3f7c507f2b4729f4b764fc419567f4fb9a48c", + "policy_id": "8d4bee4b195c25038152406fd14173cb14ef508369d4662cf0328928", "assets": [ { - "fingerprint": "asset1la3p5ca0rpcur73hfz94f3mv9w5p5dkwrej3uk", + "fingerprint": "asset1lld5ehza33kh5zch8d893cwz0ec6mp83hpp3sx", "asset_name": "546f6b656e4e", - "quantity": 1081 + "quantity": 98 }, { - "fingerprint": "asset1z2l0n9khrmnyxdldsvs7t4vhktnqgaz2xjek0d", - "asset_name": "546f6b656e4c", - "quantity": 7193 + "fingerprint": "asset1c9trh2ndmeth6gsd5jf82xlf6ewudr0gc5plnj", + "asset_name": "546f6b656e42", + "quantity": 3910 }, { - "fingerprint": "asset1wthhc8fh8sk2kq73uapknktgkqpt2s52mgj9wt", - "asset_name": "546f6b656e57", - "quantity": 5981 + "fingerprint": "asset1skm9kgkw3taxayj3neygxqwuq6gqatf7n6tazs", + "asset_name": "546f6b656e4a", + "quantity": 9041 + }, + { + "fingerprint": "asset14wazu8zvsvafzaym2ptpyyjxdf4w27qyp247pa", + "asset_name": "546f6b656e4d", + "quantity": 9507 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1tks6pua3rletqrds06rtr3ry48am7f6vgfkrj9zjuswzyzqy3ec", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "5da1a0f3b11ff2b00db07e86b1c464a9fbbf274c426c391452e41c22", + "policy_id": "53119ccf47a48e5e160842d9cc73964bbbe052cd3b8f2d587a94fed1", "assets": [ { - "fingerprint": "asset1nek2wtejla44h2zxxjuksklkfa0m89teugtzlt", - "asset_name": "546f6b656e41", - "quantity": 7617 + "fingerprint": "asset1xgeaw97dr0h67epcl4sr9uaehyzpe7229kqvcu", + "asset_name": "546f6b656e48", + "quantity": 8699 }, { - "fingerprint": "asset1ylapkp3mzfzz5ju76nlhw9z29dg8krxea8waa2", - "asset_name": "546f6b656e52", - "quantity": 6383 + "fingerprint": "asset17cqtayjpnrlck9dswms3dzdczeyuz6cc64kkz0", + "asset_name": "546f6b656e53", + "quantity": 577 } ] }, @@ -19850,85 +17925,65 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "63161cb3cd5509406f57244bb6575859b86b5ea4e5c2cf07d41402ea", + "policy_id": "0611c47aea949bdfb44b92d75eb42c70bd16208e8b48b94e9192e7fc", "assets": [ { - "fingerprint": "asset17tnh2cug4m0ems503ez7zgsvzema0l4t8zxqpm", - "asset_name": "546f6b656e57", - "quantity": 8103 + "fingerprint": "asset1w8fj4ze6z78k6cg8n8ry6cwftsfrp25y9jmxtq", + "asset_name": "546f6b656e50", + "quantity": 5194 }, { - "fingerprint": "asset1zgq26e0skhkadr8y5fe409tqmnkqnyee2yxme4", + "fingerprint": "asset1dmvey47gly55ax3z8et9f0xq8mpp9tc28ecgq0", "asset_name": "546f6b656e53", - "quantity": 3783 + "quantity": 1925 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "80065022269bec4ee3db6c0a7dd4d000dcb878349154e1016b85d7f9", + "policy_id": "53fdc74c9a1e0b17f28dd41f3cdb2f354f176766f476dfd3cff44cb4", "assets": [ { - "fingerprint": "asset17w94f05vlxs7y54lylfgfhvrsu5z0c375klv2d", - "asset_name": "546f6b656e4f", - "quantity": 8718 - }, - { - "fingerprint": "asset1fjp5cf85d74375fzma7g93l23udsl35z45xsv0", - "asset_name": "546f6b656e4e", - "quantity": 4316 + "fingerprint": "asset1pe32jvwpl79frw8yw63k7jx53265knaqcseh0d", + "asset_name": "546f6b656e48", + "quantity": 144 }, { - "fingerprint": "asset15ejfth4x37t8kfkpqmgxat9a4fd3h5zwg7mhdg", - "asset_name": "546f6b656e51", - "quantity": 3217 + "fingerprint": "asset14zd72lw6nwgrv4680fht67l7aczk9e4k3gwxqs", + "asset_name": "546f6b656e54", + "quantity": 5520 }, { - "fingerprint": "asset18vyujhk33v6kdvfevd2pnwtqan2jlcce6eq5wp", - "asset_name": "546f6b656e57", - "quantity": 3473 + "fingerprint": "asset14480tm9yx5w5zukpktpm68s984yvtdrxgvcl0r", + "asset_name": "546f6b656e4d", + "quantity": 922 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh106762skwcqx0dnzszvzrsa5uq56h39xr3426jlgav989ww57kkw", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "7ebda542cec00cf6cc50130438769c05357894c38d55a97d1d614e57", + "policy_id": "40bc17c068d1c290677e47a97ebdb72f8d1e017e86347f2a69fe9078", "assets": [ { - "fingerprint": "asset1rwymp2s2z3q0fg76ncd09st4settk9nxx7pwlk", - "asset_name": "546f6b656e57", - "quantity": 5216 - }, - { - "fingerprint": "asset12tnx6mj5dzqd2nyverqyuvryy250r9wxxhy7w7", - "asset_name": "546f6b656e50", - "quantity": 6690 + "fingerprint": "asset1ptel4dwtnuy40e6zffe6luw30uwgc20cslj0t7", + "asset_name": "546f6b656e46", + "quantity": 6995 }, { - "fingerprint": "asset1fvf5ma55mal5ncua4pezkadnyatv8hun4cjxxl", - "asset_name": "546f6b656e44", - "quantity": 9458 + "fingerprint": "asset1hc52ae5acqs25wgjw0erg03yutwdsnf0v9849s", + "asset_name": "546f6b656e59", + "quantity": 8207 }, { - "fingerprint": "asset1wxz774awwmgu3jr0lw375vnz5p8yl92ugy256y", - "asset_name": "546f6b656e42", - "quantity": 1845 + "fingerprint": "asset17z7q55jkevptc3qd5cdkg3a3t63vjwyrr0mvmz", + "asset_name": "546f6b656e4f", + "quantity": 1159 } ] }, @@ -19936,7 +17991,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1md2lxffngae5dd9vppx0upuqr2qr5ddgj7wvtmqhkttnyuyrsju", + "policy_vkh1weeghasngs0egj6hs0gvse6w0jxpqgcrvhwsr82xp7lrqca9s6f", { "active_from": 100 } @@ -19944,730 +17999,758 @@ }, "script_type": "native" }, - "policy_id": "db55f32533477346b4ac084cfe07801a803a35a8979cc5ec17b2d732", + "policy_id": "76728bf613441f944b5783d0c8674e7c8c10230365dd019d460fbe30", "assets": [ { - "fingerprint": "asset163gf5lmy8tzx3rkyst2rlkr7gc60kc7awpwptk", - "asset_name": "546f6b656e50", - "quantity": 1119 + "fingerprint": "asset10sr9lqs40gjy7t4vgezh8xf76cqxtlkm0rgq45", + "asset_name": "546f6b656e48", + "quantity": 375 + }, + { + "fingerprint": "asset1l0ymz446n3gysml9qpzgcwc3uxttcmweldck3v", + "asset_name": "546f6b656e55", + "quantity": 1136 }, { - "fingerprint": "asset1suz6uxhsrnwvv8fcpe0cnafzsxjg3zmlv6jcz0", + "fingerprint": "asset1v80h4esd4udx7e2nrshea5uat75l2x34srtaf5", "asset_name": "546f6b656e56", - "quantity": 9666 + "quantity": 8914 + }, + { + "fingerprint": "asset1qm5xg73j6apgk33cgmv0zl23cnw940w4udaznw", + "asset_name": "546f6b656e43", + "quantity": 3229 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "2e279c2fea92123cd6befe04e146403b7d58263434018304bc8fbab2", + "policy_id": "12a26f3c6b9b10568bf9d620066e0b67614fd5d1d63ef10b5f6a4974", "assets": [ { - "fingerprint": "asset16pkmxn0kmqz5pcjgxelacwek68prmuz72svxvd", - "asset_name": "546f6b656e41", - "quantity": 5214 + "fingerprint": "asset1ken4t6mmhkwct04xlhmwh2uqvh38curlxnlqta", + "asset_name": "546f6b656e55", + "quantity": 3049 }, { - "fingerprint": "asset1rwekk454j8xhnx3ljtaygdcpq6v4en0ag7f2x8", - "asset_name": "546f6b656e4f", - "quantity": 7756 + "fingerprint": "asset1q3e7wxq2tcynzcrrnz488hn8nwezsd2quamsw5", + "asset_name": "546f6b656e49", + "quantity": 4600 } ] }, { "policy_script": { - "language_version": "v1", - "script_type": "plutus" + "script": "policy_vkh1xxhtw2h6huvs99qapedk44wgg5mecyne22592h9wx0q8ykp2tjr", + "script_type": "native" }, - "policy_id": "220bb707afece0cbb8edcc17830e0b411c377eaeb4c7c38db8a02cf2", + "policy_id": "31aeb72afabf1902941d0e5b6ad5c845379c127952a8555cae33c072", "assets": [ { - "fingerprint": "asset1j85exgs0gjyn0tejym9se2z0mwr5engeuj3hu0", - "asset_name": "546f6b656e4e", - "quantity": 655 - }, - { - "fingerprint": "asset1xffp38982k93s5v3ytrs0xcdpxwdd32xw5pusx", - "asset_name": "546f6b656e48", - "quantity": 2985 - }, - { - "fingerprint": "asset12ksz309svn485l6jw9u0xczc39sq76zce7sc9a", - "asset_name": "546f6b656e45", - "quantity": 8977 + "fingerprint": "asset17pn9mgp2pz6yecefhx5emrglck5avh2fme7k4r", + "asset_name": "546f6b656e53", + "quantity": 1853 }, { - "fingerprint": "asset1ksljjn2t5fnpp3ls7ujp3e488f4lvdma8xeg4c", - "asset_name": "546f6b656e57", - "quantity": 3820 + "fingerprint": "asset184zw06x63pthnlnjc6978et6yzyqdhslakeya3", + "asset_name": "546f6b656e41", + "quantity": 4805 } ] + } + ], + "wallet_policy_key_index": "0H" + }, + "fee": { + "quantity": 37, + "unit": "lovelace" + }, + "certificates": [ + { + "certificate_type": "genesis" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1eq6f9q6yk9mh5u0v6zl46tcxavek8stz7kwvkflh3pjrtr6xw4qqedrsq6", + "ed25519_pk1x79q48zmtq2gllzl23q9gdzyws9lasv5px2rzmmgqw84kmh0ms2su8sxjh", + "ed25519_pk1z5dm3mhwv2m2a3nndrmm3eyy9pd30vl25duhe8azzmpyacgyeglqa3c84p", + "ed25519_pk1lu3vmu0e4g7f34agxl755hfrnyumx6hcfl7n4cxy8x5nma2uuzvsmm8s2s", + "ed25519_pk1j3ra5da7eux6lkj99n5fzwhxeqre52w2p3ewr6rjv9w8pc7daygs63x9mj", + "ed25519_pk1my08e0xssge6awrz94nq4930fv4p5h58gtywvtc2uk43mqp6szns8636e0", + "ed25519_pk10zqa7umcdsagfm8tm9776htdkzaj8y9fdjep74vsn32vyfjzdz6s2tvt5h", + "ed25519_pk1qwpmg8cgmjy3fghk6rtfz600q9qwzv45lmkgyr4va4gdu0jvhngsxyc5hd", + "ed25519_pk1suy7lmuh2fg4mc3000uzgxczaapwr5e5n97myma3s902mywe28mqzvcu2j" + ], + "pool_pledge": { + "quantity": 235, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 22, + "unit": "lovelace" + }, + "pool_id": "pool1wprytejsnn56yz8pcx7c2nhs3ea9uhddmernya5pw7wpcu5nkc7", + "pool_margin": { + "quantity": 9.32, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1hefxn4p8g3xyy8c2qlyh27u9wkezh7jrnwggmgef4rc0zdkkucaqhz0eue", + "ed25519_pk1mseezzkcmkz52lkru5sqrzpxzfrd52v9kcquz62mefpcw450tc9qxlnh3s", + "ed25519_pk1lpp2khkcgcnjq0q6enl73nzyf7cd9s9y6wa5d9046hlymz3lmsaq5522s5", + "ed25519_pk1gez2cp3gdf7uhqx8sakn0ue72n8eyc9d2ks27g0rlsjavechshqs0x9hzc", + "ed25519_pk1xvvw48az3hkk3tuty34sn65e3yqh9sa5zhmgmtukjwf5k344f5hqye7t9d", + "ed25519_pk1nqm9yj2u57vtt0v4m453rdlnv2kmerua7zeqxf37vg7v0nfd990svfa864", + "ed25519_pk1u6zkwx0mtpe9xrlvptgeyf32lwhjkd95gekw5we9qkjht78ht7vqg6e37t", + "ed25519_pk100n4g8a4gupnpghns5hjq6zzekvq98ze3y4ajw3xqdtesnl8tgjsrwlany", + "ed25519_pk1zfy2zgjysv9mjsf96c7vl79ad7ak0wsnn35d663fs3laqcqr5tasu5w77p", + "ed25519_pk1gmgnd5wvtdcfu3gfln9gujsrh8cdww7ey5nl4m9ejstfdwxsx3fqtn5hxu", + "ed25519_pk1nfn7t03nqldz0rx39zkeuqwrn6nggc898vqrchuvgnulk2xv9tmqtxaa87", + "ed25519_pk15dmq8g3ecx9cdq7ruarmac46m2ur68dmp8p7lyxamhu7kz606ycqp542xs", + "ed25519_pk10jmve95hc02vqfayrzytnkxv6rvt5yraegsrvypfjuycd2fd4nhqf0h8sf", + "ed25519_pk1ng2urat2smx6nclh202dundtgu82582eu9qpztw0xfnce7xy6h4qcen84y", + "ed25519_pk1h70ekefvdnl8a3xnw44wjty2g0ffl33yrckq6puauvkwkp6r7zlqf3s0mn", + "ed25519_pk1a9pyvjeetqlhkzvpyumqgyzte3ygnw825ulw26mrh93uypcffyjqefq8x4", + "ed25519_pk1fgve65r6fng5vl2gvf48qf250w2hxza6n7wzjesusp7sudrty5rsx28hfl" + ], + "pool_pledge": { + "quantity": 95, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 104, + "unit": "lovelace" + }, + "pool_id": "pool1q3t39raudr3rxldnajnmsagsuyyhuh4je35jk6w8eyrmcg8ejw5", + "pool_margin": { + "quantity": 36.83, + "unit": "percent" + } + }, + { + "certificate_type": "join_pool_external", + "pool": "pool18g48nr77hqg9lg6gqta900yc7kavy8pzyqp76yyqn24rxynuthz", + "reward_account": "" + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "join_pool", + "pool": "pool126qv35neyx3s28vyfc2lv56zrecqpur5lprj059xesgr2cmjrxq", + "reward_account_path": [ + "11524", + "20138", + "12590", + "25002", + "8768" + ] + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1uvnyhr0ueexy3gkcwgtz2mj3qfxhnrm4y6rlw5c3gn8w6gakm3astcvxqk", + "ed25519_pk1f9g4dn6ut8478rvnteknnm74n277tyrshzhqnjy3zk6tsa689pcspqhj8l", + "ed25519_pk18e37qtuclje8fpd8380s5h6shnm3m7xu80jgavp705xa23wdctvqtyg557", + "ed25519_pk18a258k8aaxlh2jyzd6s3fpxzllrjzcsyhlnyqmfzl79vt5xmea0q8ala6u", + "ed25519_pk1xkhw0tdt9s5vug43d50lr2dwz96ax3eskv5wqm8py9r9pk4ywtcqqyfcrl", + "ed25519_pk1jmyc6xfzjzp6z20k2d5mcr552ep9xhx6tkp9nkcx2tzyv5qt29jqyx6snf", + "ed25519_pk1xd2zyr9ygrpheu5s75tdl08sw050tc39pv82d2zqrl6a62jsjh8qpdp2q4", + "ed25519_pk1f9zfcw2xvfd07rre9w6cdc08ls97k72ahtcr8v0mudd6mq38ktwsfk3xyh", + "ed25519_pk1wrxsecc5q9zk80n9xeq79wh72vvg04mlnmzpzs5mte4pr86ztnasvjwjg4", + "ed25519_pk1f40q2anr3la8nglx3ph4uv4c48s0cntjp6nktsts0uda6v4f7veq0p8385", + "ed25519_pk1naq02te0mq2c0nx8ywq3hyp8xj3y9nf5523p4nfta5pgdsgy6v5qn5l8yx", + "ed25519_pk124q59y4l5a6w9nr454w0qarvn36pdju2m73edkazyd4nw2szkyuqjv5ma9" + ], + "pool_pledge": { + "quantity": 16, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 3, + "unit": "lovelace" + }, + "pool_id": "pool1ug0stmf7hmg8lt9et4hk33stcwdsspnsnzn59e8ql6hv7kh6cy6", + "pool_margin": { + "quantity": 7.54, + "unit": "percent" + } + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1l5vre8v9059dn8gdgzfzr4ha68sdm22gmqq0m77s2y475vl2ngh", + "reward_account": "" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1p8avk5kx4ds00rx6wd9426593mm4869rwj7w8sv25l7n2syx9zh", + "retirement_epoch": 20022 + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "20274", + "11311", + "9425", + "19085", + "25464" + ] + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk17y0aysfq9sdjtud80kshetwvdg3px03s2p7t8j9d4ur26df287msgh8sev", + "ed25519_pk13dqy2mda7vkmq77wse4erd8kwwrsmka4uzlrh94tfstkk2hs5nvs45v8hh", + "ed25519_pk178km6pkma2zckc9kfz9wakr0udyds4zmcgmqflvzg02xq9zx7ptq0yjrcc", + "ed25519_pk1qxzkuux6aetrtw6jrmheywd0hw3ht95tknsll8dvddr2e5qu502sh6nvxf", + "ed25519_pk14zpastfd9vp40z6xfdtvv4p5s0u49kc839l26h7346xyx9lxattq5ex9yv", + "ed25519_pk1a8jfev5gv0ra9g3ne0hakcfl8t8csayyd7v43szyejzym67k0dzsnprqzh", + "ed25519_pk1swhqwrypaelvqrd5p6em8r098vr3052smzmftezqzlsqz975k7kql03kj0", + "ed25519_pk1hl959k8ujx5d7mvqsv9zfrvh2vd67k3kx5qczsamch5zgp3jaqqse346eh", + "ed25519_pk1t36xs8vhqgcyemwxvw90jrtlnaxkuusuxedugw2y59jfscancmksyan5ja", + "ed25519_pk1ptn2kwpq3qqx0wegmv6x4lm0d6t73jsmpw04cmtvsj6572ldphus96p99c", + "ed25519_pk1nhxr5ut40w47fefhx3zctp8j2985w435g3ya42cdtjvkmm577j5st70yyr", + "ed25519_pk1gtqyz8hch8sv0j6y0kna7g3d93ydqaxl932jfuys0hx00lxncuvq7lnar0", + "ed25519_pk1lyfu9g68jp4rnrp7jq8q5sj2hmr6ealkutej4y5ejf9qzdhx2vfqyxjdn5", + "ed25519_pk1l6hnmuq8qckym98g0ahzl7u46dn0wljgs32mgxmg495p50lah0jsvdllxq", + "ed25519_pk1wmz6s90j4wmqy05wyuxzq9aj5qyjydw26cqgpcutrasdlr0udqws8xp0zl", + "ed25519_pk18yprz2h2el8s8whm4hms3v2l60pmef7cgjm0ks0hlclw38yvhs4sjzsgeq", + "ed25519_pk10fu5clmkyadjfxvs9dj3tkg6pgfztg0egq2vrkftgq3a37drsghsant6jp", + "ed25519_pk1g6swdvr5zmuzhjmg568shs43c0yxj7sldtert7feq8rd5s37m5qs30j0xx", + "ed25519_pk1yuw9hc54cv3ffq6z9nehez4xykph60z9gmfjs5m3fjsrx0fv06dsqn8kgz", + "ed25519_pk1zmzag9yl6shazw4mr8wd074x2zeznfklmdf38d8jpay0e84tnh9sqzyk5r", + "ed25519_pk142w43dczw2g3ahrmaa475gm7tx72kecj4avv7guzfq0kwtzkfmgqdt0ccf", + "ed25519_pk13cwd62asmfknp3696gct44nl0u6m4nnpkt4dkgappud80yhup82q2hn8rr", + "ed25519_pk1cku2hx5gpw4wuqgd6znw87ec6sf5cre2vsyyez3axlhjalfv2mhqskrmwx", + "ed25519_pk1utm34uua6g5yphj3atna4ph8q8t8w33dththlfkpufm8qus9jheq9us2pa", + "ed25519_pk1et02d6p2925zu3a4p6gspzs88skc7f53p0aw5sy564sqq3y008dqsfjtu2", + "ed25519_pk1z62ja4d5ekaa2sc6yjzjy0eam0rz232vkycglfq2h460u9gv06tqes002z", + "ed25519_pk1he33tncksmz52tl8ypd04svzxuamq7xxpp4mqa4dnd8xqva5j3aqh6x006", + "ed25519_pk1fvakv0tyh380jc2ak089j3kaucss0tdkfpggm2p7mp4hcxk0dutqyt4qv6", + "ed25519_pk1608ty877nl4v262mr3mlpsgtqvxt3s9nd6gv0r8ucl3stshlm69q53ae38", + "ed25519_pk14d967aue0qtnd27tu7efqv5kyvlydhfur4sm8appth5etulc0s3svlvusu" + ], + "pool_pledge": { + "quantity": 52, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 175, + "unit": "lovelace" + }, + "pool_id": "pool1m48mm4vwgcnsvuz2nwygxjed5en88kf979r8scyl07n2v6wllcv", + "pool_margin": { + "quantity": 20.26, + "unit": "percent" + } + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "32086", + "30852", + "17193", + "22421", + "10580" + ] + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "join_pool", + "pool": "pool1982y78fs9yz6tc9ffg6wft7m3gy3re8nrmzs8ktjdppkyw47043", + "reward_account_path": [ + "8586", + "11978", + "23227", + "24341", + "789" + ] + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1qxzlnccxvdlyd4v5hpmp9u5dgwuv9ukxdy4nes67ysp0c8wx6g0", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk10305faeag2zhx226ychx0gymwu6m28sumeklr88ds3ut6vg9rz9strm0h2" + ], + "pool_pledge": { + "quantity": 41, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 102, + "unit": "lovelace" + }, + "pool_id": "pool1wdmzf6ekfckvnveah69p48ptfspgvskvyedmqmv0q9y525p5g0a", + "pool_margin": { + "quantity": 36.3, + "unit": "percent" + } + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1dajg0spmvljpar6k0neuu2h5kx6pnk6a6mfax8jlt532cz0r6mw", + "reward_account": "" + }, + { + "certificate_type": "mir" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk13sgu4jthk0ekd93yrm4cgp8tl09c5ysgrmnhp0ahvuwt0hh0zq6qurt6dd", + "ed25519_pk1txd4hxkad3rzvtcaqcw2gq83mltc8vraare74nsvtfyylpukfanql5ghgs", + "ed25519_pk1jpp9mt42ydt5wf63f7wkfaxyarva08axnx29kmw3fkf84cpdtgcqr8swad", + "ed25519_pk1pqjtjdy7nklwjpv79rwk7qlp37jsley58qx5stfn88gce9njf0cqky27ln", + "ed25519_pk12ekyqj9zatsr597xnleu3tykcrxlthqghqtnj7n8zuxc07k6kygq52glfm", + "ed25519_pk1tcz289urygvkle79st8yt7j2wfualtkwh765pa858v890lj9n2ys5nu97u", + "ed25519_pk1n2sezr4urw5kmjm39xyh4qd0rk7e4p3etur0z8js5utpccpvdk3qrkj2um", + "ed25519_pk1pxgyqw74zysuwmg45da0k4x42rdk47vzcehmte7zcwqksf8f7nsse2mhz6", + "ed25519_pk1ujkf4wzf22nt6f88ftrfhcj5wf8ld0jndtxl7qha8jmpmhe7pxgqfwntfl", + "ed25519_pk12rzu3fkwyc29p9pj2629dr489xmlnq9eaz4kyhaadcw8me87v7dqnnjrzj", + "ed25519_pk1fmceatctnhs5exhx48v4dmdnr5e6huth7wzygw98tcd9lwvn9cls7kx7vv", + "ed25519_pk19um3sc7hudgk92kkq7pwqjelyxgfvrjn75asj2f7ttrzwvf3zw5s2zsmft", + "ed25519_pk1msqm5xxkp5596fpyrggss6zrftmyex5y0l9f0j7e39ym9nf3ukqsn0m8c5", + "ed25519_pk1s3esq9xfekvqe5zvasem68fqtke4c4a93ldc39yaayqqnrgt3uzqcshfan", + "ed25519_pk1st8rp6p3uv4faf3mjry9ww9kjg6cq802ezsg28w6nlevjz0zzxdq0hv33s", + "ed25519_pk1a90r46w2jd5pvn2wdgledwqm9qpx004s5pqrfuxe46txu27thdcsq7grxy", + "ed25519_pk1h387dhccl2ummxldv2nh7kjp75w58fe00cw5d3w06zaqh6yp228q5nfj5k", + "ed25519_pk172ydecvsdzcltze37768fvrzq7ulhtgjrtdmp2ljjm3lvd8945zq68p952", + "ed25519_pk1qrnd7y0rxykfjttzrvrlzlvzg9k5qu7x7l37hrac6wswpe8zlkmsvucvkd", + "ed25519_pk1ap280kuqp35tp4ysdznr884sh9j96mvxmghg6pgw44zemerswmqqleaq9w", + "ed25519_pk1wl9sa5p7dmmwen7ssqx7dva5kk9lpmzncpwnamyejseztqsayg9qxsmfvr", + "ed25519_pk15en6356nrgd3grapflc2a8ehw9zu5e8rnk5sgs7vfcdd5wqmagmshvs4em", + "ed25519_pk1k6czea2z2jtj9evqecda4ev4kqqjndyvg5n5xmjalazreunntd3qj8wad5" + ], + "pool_pledge": { + "quantity": 138, + "unit": "lovelace" }, - { - "policy_script": { - "script": "policy_vkh1ezgluwqc45cwfjcr7atw9pmwf7wqudtmdvya8xnmlegv27mehpx", - "script_type": "native" - }, - "policy_id": "c891fe3818ad30e4cb03f756e2876e4f9c0e357b6b09d39a7bfe50c5", - "assets": [ - { - "fingerprint": "asset1u9u53vpu22d7rvy5m934q43zyypmwflym27de6", - "asset_name": "546f6b656e4e", - "quantity": 4368 - }, - { - "fingerprint": "asset1rvay9zd8nvsrvnuue7hkz2s9un4pggvywr366m", - "asset_name": "546f6b656e52", - "quantity": 5591 - }, - { - "fingerprint": "asset1yumqw3p6ecqn4ndyd0v9l2k456se7u5gdf9cq8", - "asset_name": "546f6b656e43", - "quantity": 8093 - }, - { - "fingerprint": "asset1fmf84fs8n80g74nhrj6ucpmwjw4gle0ffuaq58", - "asset_name": "546f6b656e5a", - "quantity": 4272 - } - ] + "pool_cost": { + "quantity": 70, + "unit": "lovelace" + }, + "pool_id": "pool1gxhgsdsma70l7x2nf3nv8m7efz2svqlttrdwhc4g867wsmpa2a8", + "pool_margin": { + "quantity": 50.05, + "unit": "percent" } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vk1pyh9e6p009mzvnqlfgh5kzztwrs4ylrf9rxskzt8fpkk7kj6y43qaay0g4" - } - }, - { - "withdrawals": [ + }, { - "amount": { - "quantity": 131, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1qzhnv467jszwfselheydedf37pxl5zyv6cu5tnfngcnmddgm73zshynaz8", + "ed25519_pk12gypys662c0g5v6222h46vftduq5ry7jeea9kkwpwpfkw7r3m64s7gc0d2", + "ed25519_pk1tzzft6awp62qaskardq8pscvrwpamn88g8k65yd3ulugltqq5xds3wrv3u", + "ed25519_pk1k3p48r9fn4d3049ndrrwpud5yycvl42hrv0p8ylu6s4nzqma0yusku0cdt", + "ed25519_pk1l7xd4jv3x0nyfn39hn7wpdrx9dd6u4d8a5zfr00d6klekr9awrwsmre7xj", + "ed25519_pk16qhcd5hmh6zd7vj4drte0zxrw4xgysyqhng8dw8qs0lcz8pym9tq4dh9s8", + "ed25519_pk1c7gvzam7g0gkkr047nsm7aa92tkzue7shl53vl6dqtdq9avdusss63d4m7", + "ed25519_pk1g3zntu8zt50uujk9ydz66pvz9h6wgw5dq9vlm8t486avax3ful9q37lctj", + "ed25519_pk1y7pjftgmv0s2mwkjufecejze98tekkeh9ku7uvlt54u9ec3te50q755cet", + "ed25519_pk1cg4zfh0u5ns4x3qv5czrv24j8w07dwd55qg2wfl9mug7r0n99ulqwgm6hy", + "ed25519_pk1pty28y645facyu92yareqscus2y95axs9cfc8287muckpc8zrtxskcnzde", + "ed25519_pk1tepxc94rd32q2vxgwp8feftzqd5qpn2mf6v24g64lycs4se800eqfqz9vu", + "ed25519_pk12zdhw3ddz0zz8qaz6kkdt3ffxpdvr0p2996cd2fujcn6n4ex8ujszqy9mx", + "ed25519_pk15wansluehq5jml7xmvxlakv9y42lh35mte5q9p3w2u0ytrsjlt7stz6lpe", + "ed25519_pk1zzqyssyyqaa9tss0ttw954w76eyd7a9dqz2edja9w52zepwwtl3sh2t6j4" + ], + "pool_pledge": { + "quantity": 249, "unit": "lovelace" }, - "stake_address": "" + "pool_cost": { + "quantity": 61, + "unit": "lovelace" + }, + "pool_id": "pool1jm3d9d463vc5ay94p0u7d0cdznzzdfgzta9r79e24gz0cszrdx6", + "pool_margin": { + "quantity": 66.35, + "unit": "percent" + } + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1rlh8j6t4gmfxx3py78dq763sq74xczqreen3hl645hczsggdnqf", + "retirement_epoch": 31372 } ], - "inputs": [ + "deposits_returned": [ { - "id": "4737abbf040b17516130591a1803184b1535540d7e0d4c6c4f53621b4c0d461f", - "index": 0 + "quantity": 50, + "unit": "lovelace" }, { - "id": "14a17265127f423b717e4688092b760b8272e8fc5f1f7f00700e716e0a76f747", - "index": 1 + "quantity": 210, + "unit": "lovelace" }, { - "id": "557ab60b086873270a64007bf97077381d2e73596f0f06604f374c6d02661b66", - "index": 0 + "quantity": 161, + "unit": "lovelace" }, { - "id": "7c065355687e45152e37855c4a4c1458785c2f29f5127d502a5d011b2c29de48", - "index": 0 + "quantity": 240, + "unit": "lovelace" }, { - "id": "6424ab1b1b0a5f6a175b2cbb5e81903b57ed9a3740387f6c2677142b5e272028", - "index": 0 + "quantity": 189, + "unit": "lovelace" }, { - "id": "0e884f72de4250b37b3871cc0b2f5a5e4f364cf4306222066d3b187322584d5e", - "index": 1 + "quantity": 84, + "unit": "lovelace" }, { - "id": "158a1745bd1bd056372e7c407a68202301782442d06d010245136614607c4617", - "index": 1 + "quantity": 133, + "unit": "lovelace" }, { - "address": "", - "id": "262277096da05e577b3ecb115cc059536f34270c478f100c1762375bdf238d7d", - "index": 30252, - "amount": { - "quantity": 201, - "unit": "lovelace" - }, - "derivation_path": [ - "16309", - "16931", - "5047", - "25120", - "29351", - "31055", - "21183", - "27078", - "612", - "20920", - "8678", - "27872", - "12686", - "32484", - "6417", - "27491", - "25817", - "28111", - "11206", - "3750", - "31079", - "25752", - "19771", - "21004", - "7572", - "11002", - "17191", - "31905", - "2390" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 214, + "unit": "lovelace" }, { - "id": "68702b0c582e6644267b1e84ddcd2d6dbf1c09b3793a35592a158a1a114bb2f0", - "index": 0 - } - ], - "collateral_outputs": [ + "quantity": 142, + "unit": "lovelace" + }, { - "address": "", - "amount": { - "quantity": 144, - "unit": "lovelace" - }, - "derivation_path": [ - "19548", - "16572", - "28192", - "18237", - "4607", - "4898" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - ], - "outputs": [ + "quantity": 231, + "unit": "lovelace" + }, { - "address": "", - "amount": { - "quantity": 144, - "unit": "lovelace" - }, - "derivation_path": [ - "7659", - "24696", - "17380", - "25426", - "2379" - ], - "assets": [] + "quantity": 23, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 188, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "quantity": 153, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 65, - "unit": "lovelace" - }, - "assets": [] + "quantity": 98, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 136, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "quantity": 134, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 130, - "unit": "lovelace" - }, - "derivation_path": [ - "21346", - "10785", - "12722", - "31439", - "17999", - "6321", - "10722", - "21186", - "12955", - "7734", - "13345", - "25361", - "25158", - "15895", - "7973", - "19473", - "23751", - "17505", - "7744", - "23981", - "16877", - "11707" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 34, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "quantity": 8, + "unit": "lovelace" + }, + { + "quantity": 137, + "unit": "lovelace" + }, + { + "quantity": 173, + "unit": "lovelace" + }, + { + "quantity": 180, + "unit": "lovelace" + }, + { + "quantity": 132, + "unit": "lovelace" + }, + { + "quantity": 65, + "unit": "lovelace" + }, + { + "quantity": 150, + "unit": "lovelace" + }, + { + "quantity": 29, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 132, - "unit": "lovelace" - }, - "derivation_path": [ - "26371", - "28346", - "24260", - "30036", - "9436", - "22026", - "306", - "21785", - "10466", - "2958", - "25693", - "25307", - "30620", - "5606", - "5304", - "7261", - "24255", - "23124", - "12978", - "31873", - "11151", - "2996", - "3583", - "13749" - ], - "assets": [] + "quantity": 136, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 233, - "unit": "lovelace" - }, - "derivation_path": [ - "13591", - "21776", - "11902", - "20950", - "2128", - "10071", - "10966", - "21292", - "30918", - "22589", - "21626", - "8347", - "20559", - "22060", - "11493", - "11148", - "26332", - "12773", - "3372", - "6860", - "30990", - "4060", - "15593", - "24532", - "10059", - "6271", - "26849", - "25722", - "12468" - ], - "assets": [] + "quantity": 154, + "unit": "lovelace" }, { - "address": "", - "amount": { - "quantity": 163, - "unit": "lovelace" - }, - "assets": [] - }, + "quantity": 157, + "unit": "lovelace" + } + ], + "metadata": null, + "collateral": [ { - "address": "", - "amount": { - "quantity": 253, - "unit": "lovelace" - }, - "derivation_path": [ - "1393", - "13126", - "8380", - "13851", - "12917", - "22949", - "25389", - "9283", - "17670", - "26056", - "23194", - "9937", - "31230", - "31335", - "23411", - "21572", - "13466", - "955", - "21170", - "19793", - "4643", - "17466", - "13779", - "16690", - "16439", - "27271", - "26975" - ], - "assets": [] + "id": "29686507614d2e18004e5c063c8f162a3fec5a4e47375825424a532f2f7d7f5c", + "index": 0 }, { "address": "", + "id": "ac8b02b41f56195d33bc0b86516beb26c26a152d2a087e0539701d326a026043", + "index": 2229, "amount": { - "quantity": 100, + "quantity": 49, "unit": "lovelace" }, "derivation_path": [ - "12852", - "27225", - "29950", - "17605", - "15093", - "28628", - "26419", - "1347", - "19049", - "4176", - "11074", - "3496", - "11401", - "10618", - "10084", - "27043", - "2052", - "1584", - "26584", - "16641", - "7302", - "26350", - "23061", - "29217", - "30664", - "24274", - "21780" + "29334", + "5306", + "2077", + "13770", + "23348", + "8679", + "32414", + "5308", + "19879", + "13899", + "22418" ], "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 33, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", "quantity": 28, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 40, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "address": "", + "id": "2a2d7076254c312962501c33462a8b42206a42f5304b24320d30191b6b473303", + "index": 5983, "amount": { - "quantity": 141, + "quantity": 172, + "unit": "lovelace" + }, + "derivation_path": [ + "10402", + "1720", + "10727", + "6342", + "29436", + "29039", + "7543", + "16332", + "24604", + "18863" + ], + "assets": [] + }, + { + "address": "", + "id": "086f390ddb022754781f553c3b04207669d80c61672493061f125a021f693a26", + "index": 11181, + "amount": { + "quantity": 40, "unit": "lovelace" }, + "derivation_path": [ + "14707", + "9750", + "13595", + "13164", + "20941", + "31237" + ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, + "quantity": 18, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e43", - "quantity": 19, + "quantity": 35, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 44, + "quantity": 40, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 54, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 38, + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 6, + "asset_name": "546f6b656e41", + "quantity": 5, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - }, - { - "address": "", - "amount": { - "quantity": 163, - "unit": "lovelace" + } + ], + "mint": { + "tokens": [ + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "70029ffb688aab6152f3f0586f07d42038a33c0aea60e8233bbb9695", + "assets": [ + { + "fingerprint": "asset1vm4tduge3448jc8qwyx0tn2qlrws6wzqawwta0", + "asset_name": "546f6b656e4e", + "quantity": 2564 + }, + { + "fingerprint": "asset1t2686k0zlrv3zhadqs03sknwgedpmrglyexew3", + "asset_name": "546f6b656e4f", + "quantity": 7333 + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 110, - "unit": "lovelace" + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1wh985p47ht462wqn8emk0pkq25prh0qeeh570s7l5acaxe03m9e", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "75ca7a06bebaeba538133e776786c055023bbc19cde9e7c3dfa771d3", + "assets": [ + { + "fingerprint": "asset1knj8l3t2j5fn8qwmvpd570s0khekz34dqxme6w", + "asset_name": "546f6b656e43", + "quantity": 3125 + }, + { + "fingerprint": "asset1tkve9pjxssler9fy8g6zs7cfqyjxxw7ltmzvdz", + "asset_name": "546f6b656e47", + "quantity": 2655 + }, + { + "fingerprint": "asset1jmjq5fx8eujumzxvp29kv8tdh8puwfwlx44tr0", + "asset_name": "546f6b656e4d", + "quantity": 8052 + }, + { + "fingerprint": "asset1ek4jaqhejx7hjen2hnpaa63dr0dhmdady3g34u", + "asset_name": "546f6b656e4e", + "quantity": 2453 + } + ] }, - "derivation_path": [ - "21311", - "26369", - "19405", - "19144" - ], - "assets": [] - }, - { - "address": "", - "amount": { - "quantity": 151, - "unit": "lovelace" + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1qfjr6leepz6gq9cfx7a7hn03pyh6hc6a5pxufxsmtlufqc949n9", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "02643d7f3908b480170937bbebcdf1092fabe35da04dc49a1b5ff890", + "assets": [ + { + "fingerprint": "asset1rts25j0heq4u7f32mqtzvs7a42wh567kdut2uc", + "asset_name": "546f6b656e50", + "quantity": 6476 + }, + { + "fingerprint": "asset1vh64wc6eck95ynvlclqfdlanrgrau4sgvff90d", + "asset_name": "546f6b656e51", + "quantity": 7095 + }, + { + "fingerprint": "asset1ekyrevfhte0ux9tpntzp6s6z6apnyt95cm5x47", + "asset_name": "546f6b656e49", + "quantity": 1372 + }, + { + "fingerprint": "asset17u6399altlg5jwt8r83mpwpnxdvm98u0yc3yl3", + "asset_name": "546f6b656e4d", + "quantity": 4309 + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "address": "", - "amount": { - "quantity": 227, - "unit": "lovelace" + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "acd19fa81eae90aad1acb4b4a9250cadf16d5b05fa9d6111b1056612", + "assets": [ + { + "fingerprint": "asset1q8qdjveqa6230w90g666hhhw3y6srnrl7ga2gr", + "asset_name": "546f6b656e43", + "quantity": 5842 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1wyjhp2vm87ztxn4heqmgqzwzwrxcryruuyg4m88xsthg666mrgc", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "712570a99b3f84b34eb7c8368009c270cd81907ce1115d9ce682ee8d", + "assets": [ + { + "fingerprint": "asset1qwkatz97q0hh6prc97psy425xknulrtawx83cc", + "asset_name": "546f6b656e58", + "quantity": 7977 + }, + { + "fingerprint": "asset1cqsxa7q67jstc75muk7tsujs7384qfnny029g0", + "asset_name": "546f6b656e43", + "quantity": 470 + }, + { + "fingerprint": "asset1mjq2ve2nn899jalngkvunjkw64m5yx6tuu86q2", + "asset_name": "546f6b656e55", + "quantity": 1873 + }, + { + "fingerprint": "asset18t5vpmrm6qll78nznhmq5y0c2d4ax8dlyde02k", + "asset_name": "546f6b656e48", + "quantity": 1325 + } + ] }, - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "script_validity": "valid", - "id": "6b66765be95c4e373b046b603c19090c780c1f0b2a86b47a1b5c586f433b420e", - "deposits_taken": [ - { - "quantity": 103, - "unit": "lovelace" - }, - { - "quantity": 184, - "unit": "lovelace" - }, - { - "quantity": 71, - "unit": "lovelace" - }, - { - "quantity": 246, - "unit": "lovelace" - }, - { - "quantity": 181, - "unit": "lovelace" - }, - { - "quantity": 103, - "unit": "lovelace" - }, - { - "quantity": 237, - "unit": "lovelace" - }, - { - "quantity": 202, - "unit": "lovelace" - }, - { - "quantity": 176, - "unit": "lovelace" - }, - { - "quantity": 152, - "unit": "lovelace" - } - ], - "burn": { - "tokens": [ { "policy_script": { "script": { "all": [ - "policy_vkh1ua37uc67yfgtz5wdkmd42lvcn6h6yjk00srn8wk0nllnz7h885n", + "policy_vkh1tfyg0rrd7pywrwr99n3nfn5rusy7zze9xqarxpauu2ymges46cm", { "active_from": 100 }, @@ -20678,17 +18761,62 @@ }, "script_type": "native" }, - "policy_id": "e763ee635e2250b151cdb6db557d989eafa24acf7c0733bacf9fff31", + "policy_id": "5a48878c6df048e1b8652ce334ce83e409e10b25303a3307bce289b4", "assets": [ { - "fingerprint": "asset13g5n644545s5zxmul58fc5wj9kh3x48pe72sh5", + "fingerprint": "asset19pfp3syxter8ytussk824cvjr97ty507fedavt", "asset_name": "546f6b656e43", - "quantity": 158 + "quantity": 1964 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh17tdye42zad7avf03j42vc7yffgpf0unvdjvzrdepemxqcm7ll2p", + { + "active_from": 100 + } + ] }, + "script_type": "native" + }, + "policy_id": "f2da4cd542eb7dd625f19554cc78894a0297f26c6c9821b721cecc0c", + "assets": [ + { + "fingerprint": "asset1js7fn8ccftgqrd90uv56hdm7xpyscs2npa7798", + "asset_name": "546f6b656e4f", + "quantity": 3679 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "0a61f21d7e47a5822642e97bf337b0c88cff04b018e79f069f1796b2", + "assets": [ { - "fingerprint": "asset1waa9n5mjjplgwkg4fpv00deg4td9684dycw02z", + "fingerprint": "asset12fsqqr93jh5q03a2g0957wwwsvufrj9r9vmqvm", "asset_name": "546f6b656e43", - "quantity": 5749 + "quantity": 3162 + }, + { + "fingerprint": "asset1hw9xgz3dp7x7xvkmsewhh9t7xm9c00hsn8k3dp", + "asset_name": "546f6b656e46", + "quantity": 9104 + }, + { + "fingerprint": "asset1uzqaazkqn7q3z9spsx07rd5jnq07z2fmjt0vpy", + "asset_name": "546f6b656e59", + "quantity": 8691 + }, + { + "fingerprint": "asset1ue069p52xacu7pv5lpkvk4h3vfardhg8v5p887", + "asset_name": "546f6b656e4e", + "quantity": 7607 } ] }, @@ -20696,7 +18824,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh15zxw02tax5rcc7t0s5xt8yyxk6trzvdfmzrqnzqr7dl55pyn9te", + "policy_vkh1jplap8deqzqw3t9lda8kjcchf4m0v0h8rxaj4fh3ezwtjx8kac3", { "active_from": 100 } @@ -20704,77 +18832,228 @@ }, "script_type": "native" }, - "policy_id": "a08ce7a97d35078c796f850cb39086b6963131a9d886098803f37f4a", + "policy_id": "907fd09db90080e8acbf6f4f6963174d76f63ee719bb2aa6f1c89cb9", "assets": [ { - "fingerprint": "asset1zt0wpv3rkxm2k4fayx4pgveudt7xc3n2j2r2pz", - "asset_name": "546f6b656e42", - "quantity": 6773 + "fingerprint": "asset166as2dy6v0ptvpxjlgq464jsp04veefuqq22kn", + "asset_name": "546f6b656e59", + "quantity": 9100 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh14tyk7uuyz9s0qdczldmya4n7tln955cvyvezvfqrl0uyqezlnym", + "script_type": "native" + }, + "policy_id": "aac96f73841160f03702fb764ed67e5fe65a530c2332262403fbf840", + "assets": [ + { + "fingerprint": "asset1u34hcqme3h6hh4nckm74gvdw7hyptf4lj9uq5s", + "asset_name": "546f6b656e41", + "quantity": 5288 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1hkkqmy5ev8mg04grtk2fzltfu4m2nmg4m93hu5wtz6s75ct4gse", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "bdac0d929961f687d5035d94917d69e576a9ed15d9637e51cb16a1ea", + "assets": [ + { + "fingerprint": "asset1tmfxc0gt8zsmf3gl79ggwhuc6l8jzpfxmzl666", + "asset_name": "546f6b656e56", + "quantity": 7577 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1k0q7crf5j8unpcxwjnzf4tl4er2hx5w5gpx33vf87ysw2xdfcjc", + "script_type": "native" + }, + "policy_id": "b3c1ec0d3491f930e0ce94c49aaff5c8d57351d4404d18b127f120e5", + "assets": [ + { + "fingerprint": "asset1zpmmhhcvsp9v765v20la5cwchxavahx3shxv2g", + "asset_name": "546f6b656e51", + "quantity": 226 + }, + { + "fingerprint": "asset1nucwgjn8uqtdxl8eywugcv42zwjxy2p75d4juv", + "asset_name": "546f6b656e48", + "quantity": 1821 }, { - "fingerprint": "asset1rr45sw7ln7r5hkwa90g74t6n8vk0chc28tzx89", + "fingerprint": "asset18hl2e5cdtwyua7w27rkyxgn2tawtc68kucxt7c", + "asset_name": "546f6b656e48", + "quantity": 4353 + }, + { + "fingerprint": "asset1g6e6t3evl28pw7vqdn65crputqn3xp3hmxy2s8", + "asset_name": "546f6b656e58", + "quantity": 836 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1gaexdzj74farqy7nmya6qyl6m8nx8rz3ye94a2ft2p03xph0qf9", + "script_type": "native" + }, + "policy_id": "4772668a5eaa7a3013d3d93ba013fad9e6638c51264b5ea92b505f13", + "assets": [ + { + "fingerprint": "asset1h3gxv40whvkeacarem6warg302s0rqdry4x2x9", "asset_name": "546f6b656e55", - "quantity": 629 + "quantity": 3563 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1wczum6up5jklfmyzm7agkgw5a23wcsg840ngtu4svuxkvzaswt3", + "script_type": "native" + }, + "policy_id": "7605cdeb81a4adf4ec82dfba8b21d4eaa2ec4107abe685f2b0670d66", + "assets": [ + { + "fingerprint": "asset104g58n5gy4lf5s84e5m2g2hd8vmf27r4sr95ep", + "asset_name": "546f6b656e46", + "quantity": 6843 }, { - "fingerprint": "asset128dnrsct7ffrrj94khlxv5zxqw3d0qtqul3s6k", - "asset_name": "546f6b656e4a", - "quantity": 5745 + "fingerprint": "asset1aq3vgv8pd2updauw03v0ck2zqtgupglepn5tlp", + "asset_name": "546f6b656e42", + "quantity": 6787 + }, + { + "fingerprint": "asset1262vf3fsr6m8h7ww3qgmtufw2krut0wceftk84", + "asset_name": "546f6b656e5a", + "quantity": 6873 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh14lgrspcyzurm22afm0ju0nhs6qac26xlhpefd6v45jf2glw3xf7", + "script_type": "native" + }, + "policy_id": "afd03807041707b52ba9dbe5c7cef0d03b8568dfb87296e995a492a4", + "assets": [ + { + "fingerprint": "asset147pj77s4wmgunuq29dfqqqj4wh94frjkml5q9q", + "asset_name": "546f6b656e5a", + "quantity": 7826 + }, + { + "fingerprint": "asset1ap3p5huk7peq0uc3ufuth3utaq38ul8yawhxel", + "asset_name": "546f6b656e58", + "quantity": 6362 + }, + { + "fingerprint": "asset1q39ml7pxf5ehlj5murx247qnr8rfltn8aenp6u", + "asset_name": "546f6b656e54", + "quantity": 9987 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1qz24dgfw0dgvrxgna7ktqx3glddmk2d0838dr7uqqw5mwgnq6hj", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + }, + "script_type": "native" + }, + "policy_id": "009556a12e7b50c19913efacb01a28fb5bbb29af3c4ed1fb8003a9b7", + "assets": [ + { + "fingerprint": "asset1fezgwylt0lrma4xlx5tp3ygyu5vx000q5amduu", + "asset_name": "546f6b656e48", + "quantity": 8303 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1ksquqyen0elcs2psj5e770yz3v8mnln0h7s7hsly282wkay293f", + "script_type": "native" + }, + "policy_id": "b401c013337e7f8828309533ef3c828b0fb9fe6fbfa1ebc3e451d4eb", + "assets": [ + { + "fingerprint": "asset1nu7rzs2c4q6gtdpv0qfrshdpcne02j78lqwgp2", + "asset_name": "546f6b656e59", + "quantity": 5502 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "42d3fb50636bff29d8d103a4b756bba3a9940864a4d54adbe3380dd3", + "assets": [ + { + "fingerprint": "asset194f4t3llewv9cjg6kwvu29a088f3f875ca6sen", + "asset_name": "546f6b656e46", + "quantity": 2306 + }, + { + "fingerprint": "asset1el00wt32jla4ku9emgqeg3a33ypp2eecs73m02", + "asset_name": "546f6b656e41", + "quantity": 5716 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1sahuxfcchekk8g6886jyu5ysuvq2mexsfm2uw7p7u8jp2am2w2g", - { - "active_from": 100 - } - ] - }, + "script": "policy_vkh1ygpxau6qrzjhahqv5z0yunglr2vl90uzq3dsgefr0e6mw3wck2q", "script_type": "native" }, - "policy_id": "876fc32718be6d63a3473ea44e5090e300ade4d04ed5c7783ee1e415", + "policy_id": "22026ef34018a57edc0ca09e4e4d1f1a99f2bf82045b0465237e75b7", "assets": [ { - "fingerprint": "asset1af0v0hh6v03tmhr44jss6uvkg6qsrcs5swscmv", - "asset_name": "546f6b656e49", - "quantity": 2763 - }, - { - "fingerprint": "asset1t6693h25rx0kykczegtakv7q83axdxrxs0d0qf", - "asset_name": "546f6b656e55", - "quantity": 1316 - }, - { - "fingerprint": "asset16gzfr4pefjm73mr8w3fzgedgdv8p70flwhtf27", - "asset_name": "546f6b656e43", - "quantity": 7951 + "fingerprint": "asset1psqf8pj0kv45ppkq5wqersak4y7rdaypz9pskx", + "asset_name": "546f6b656e44", + "quantity": 9544 } ] }, { "policy_script": { - "script": "policy_vkh1r8nj6dh30vnaxyr6cl67zllc9860w6mkw9nlypgv0akdjjmf40h", - "script_type": "native" + "language_version": "v2", + "script_type": "plutus" }, - "policy_id": "19e72d36f17b27d3107ac7f5e17ff829f4f76b767167f2050c7f6cd9", + "policy_id": "d4830e56622fce6baa8714a80b10a81b777c518dd60d4235b842a476", "assets": [ { - "fingerprint": "asset1f49x6u4m825sf2n2hnthqa2fwqd3nxgn44gf8k", + "fingerprint": "asset1k0agpqf0ddtc9vfeexqwwpv6h8n0avujjdeld8", "asset_name": "546f6b656e56", - "quantity": 3876 - }, - { - "fingerprint": "asset1x68gk76mmn069kus7m4j4dzfeanphx9eh9w6rq", - "asset_name": "546f6b656e49", - "quantity": 6216 + "quantity": 5461 }, { - "fingerprint": "asset15yf887qm0pk5hgekjt7mtam4xyugljh2jspr0r", - "asset_name": "546f6b656e59", - "quantity": 3749 + "fingerprint": "asset1hz86aj6mnukfcs7ezrnvv2jadw5sr0rhzwxwu6", + "asset_name": "546f6b656e4b", + "quantity": 263 } ] }, @@ -20782,52 +19061,68 @@ "policy_script": { "script": { "all": [ - "policy_vkh1xj38aq6c7w4jg4t2p6fg8sj9nje0qx0r5286zz0uxxp97kcjf9l", + "policy_vkh1a0ezu5a3z8m76jdwycnag95fhydw2zpnxxyqt3ztc6m27allugq", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "34a27e8358f3ab24556a0e9283c2459cb2f019e3a28fa109fc31825f", + "policy_id": "ebf22e53b111f7ed49ae2627d41689b91ae50833318805c44bc6b6af", "assets": [ { - "fingerprint": "asset1r8emf8kckaggkc294kr667ly6hq68px7jtca4m", - "asset_name": "546f6b656e4c", - "quantity": 4459 + "fingerprint": "asset1m3lsl8kw96yrhpxwps4yswpkzcetflzkwdcnfm", + "asset_name": "546f6b656e52", + "quantity": 828 + }, + { + "fingerprint": "asset12xucff2yschtsa22fgzk0vmlz689ks68g3uat9", + "asset_name": "546f6b656e51", + "quantity": 5783 + }, + { + "fingerprint": "asset1mruyzvflhyf4qeug2xl3d8e4y4pg4mlq8amgzh", + "asset_name": "546f6b656e5a", + "quantity": 6595 + }, + { + "fingerprint": "asset1vxxxv9hx5v02qxaefex826u2exswvfwes4ncaa", + "asset_name": "546f6b656e48", + "quantity": 9417 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1gtkgegd47j99a9rg9aw7sjz9gm9cn07m3z2m3xcj445qwh62l5z", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "42ec8ca1b5f48a5e94682f5de8484546cb89bfdb8895b89b12ad6807", + "policy_id": "a82b6b59334c9f523b61f98227f982e8e9ef9b01492568f2bbcbafd8", "assets": [ { - "fingerprint": "asset1v3a2sttadfkeuzmcar6tqdf97yfe7tld749wyt", - "asset_name": "546f6b656e48", - "quantity": 3571 + "fingerprint": "asset1yu5p5a0raak6ktkr9zl4gruggwy9shzw368uhw", + "asset_name": "546f6b656e50", + "quantity": 9406 }, { - "fingerprint": "asset1qy5nrxdgc7eawueanx4af7az72w552ns3mffr4", - "asset_name": "546f6b656e49", - "quantity": 1073 + "fingerprint": "asset13sqekqsjhawrc5e8kq90fkgrsws9ycnva02vhh", + "asset_name": "546f6b656e4f", + "quantity": 607 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "693cf939b8dbb9ab16e26919df276c7c91aa0e962fad0e123276c1e4", + "assets": [ + { + "fingerprint": "asset16n9xws2d7mgy7jkmuurygsua69wcluf8zrjecx", + "asset_name": "546f6b656e55", + "quantity": 4883 } ] }, @@ -20835,508 +19130,332 @@ "policy_script": { "script": { "all": [ - "policy_vkh1gx4kqjga2u0zau6fzvwxfng4yeq9y7ha4fhcynfnmy2twtywnd5", + "policy_vkh1ay0ga2d4xsdyg4snk50h9tjdjzc06mn6hq55ezn0fql5wd9we38", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "41ab60491d571e2ef349131c64cd152640527afdaa6f824d33d914b7", + "policy_id": "e91e8ea9b5341a445613b51f72ae4d90b0fd6e7ab8294c8a6f483f47", "assets": [ { - "fingerprint": "asset13tcfwavym4ylumprk0d5ggh4qatqpn00urdpls", - "asset_name": "546f6b656e4e", - "quantity": 9484 - }, - { - "fingerprint": "asset1hx6t2h0ddc94t6ddw5uq70dez2k8ph49wug9gk", - "asset_name": "546f6b656e52", - "quantity": 636 - }, - { - "fingerprint": "asset1aerg92ldl69gugvn8w02svxua753hlylat6zr0", - "asset_name": "546f6b656e54", - "quantity": 4841 - }, - { - "fingerprint": "asset1723ytjkque43ltlg9h6ullvwnpztvdlc0rc46j", - "asset_name": "546f6b656e49", - "quantity": 6738 + "fingerprint": "asset1826euy3yhrjn5k2thqw079mf4g890ff4f3t69g", + "asset_name": "546f6b656e48", + "quantity": 2215 } ] } ], "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1nd4msww99sxfyveufctq2w20yg0kzxt6ffyhk7eht8kpw4gtsqm" - }, - "fee": { - "quantity": 8, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "mir" - }, + "wallet_policy_key_hash": "policy_vk12ce4kdpfqdz9urt48949sdpjgqz8jhmwfdhnczc3vgj5lrzl09tsjaf54r" + } + }, + { + "withdrawals": [ { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk15urwffgyz848xts2qnxmz769mfav88ztnku4er3ydke8uhu3lszq73y6e3", - "ed25519_pk1tw4shyrdxu47eqy6s382au2kcc7ett8ae3348tz2uvjgql6vcyrq7kgejn", - "ed25519_pk12ayd4l02wuy65xe6adl5tph6ltr9nrtamw8mtnzlclg5qhd6y07q42zyde", - "ed25519_pk1p9xgfjnrqsglmvwf6znrjnmwxvsvakudm8y6uagzpwrnmqx0t57qkfdvc9", - "ed25519_pk1gnxxk5ttrj4dqt2yw9av5uaq58f64pkkpqryuazl5fapkjys9mcsv2kr6l" - ], - "pool_pledge": { - "quantity": 116, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 158, + "context": "ours", + "amount": { + "quantity": 2, "unit": "lovelace" }, - "pool_id": "pool1h5jjmlkpgr3g4v7c3qqp5cegh0xysy56atgf6rpmpn3m6492yck", - "pool_margin": { - "quantity": 35.44, - "unit": "percent" - } - }, - { - "certificate_type": "quit_pool_external", - "reward_account": "" - }, - { - "certificate_type": "join_pool_external", - "pool": "pool1pxk8ljdz8l9frht48ckml3xt9s25juhkfn947xf95t3cy8lvsvr", - "reward_account": "" - }, - { - "certificate_type": "mir" - } - ], - "deposits_returned": [ - { - "quantity": 4, - "unit": "lovelace" - }, - { - "quantity": 218, - "unit": "lovelace" - }, - { - "quantity": 91, - "unit": "lovelace" - }, - { - "quantity": 55, - "unit": "lovelace" - }, - { - "quantity": 9, - "unit": "lovelace" - }, - { - "quantity": 24, - "unit": "lovelace" - }, - { - "quantity": 114, - "unit": "lovelace" - }, - { - "quantity": 248, - "unit": "lovelace" - }, - { - "quantity": 4, - "unit": "lovelace" - }, - { - "quantity": 255, - "unit": "lovelace" - }, - { - "quantity": 162, - "unit": "lovelace" - }, - { - "quantity": 85, - "unit": "lovelace" - }, - { - "quantity": 126, - "unit": "lovelace" - }, - { - "quantity": 124, - "unit": "lovelace" - }, - { - "quantity": 224, - "unit": "lovelace" - }, - { - "quantity": 13, - "unit": "lovelace" - }, - { - "quantity": 42, - "unit": "lovelace" - }, - { - "quantity": 129, - "unit": "lovelace" - }, - { - "quantity": 203, - "unit": "lovelace" - }, - { - "quantity": 116, - "unit": "lovelace" - }, - { - "quantity": 40, - "unit": "lovelace" - }, - { - "quantity": 31, - "unit": "lovelace" - }, - { - "quantity": 209, - "unit": "lovelace" - }, - { - "quantity": 107, - "unit": "lovelace" - }, - { - "quantity": 251, - "unit": "lovelace" - }, - { - "quantity": 225, - "unit": "lovelace" + "stake_address": "" }, { - "quantity": 52, - "unit": "lovelace" + "context": "ours", + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "stake_address": "" }, { - "quantity": 125, - "unit": "lovelace" - } - ], - "metadata": { - "13": { - "bytes": "5e17733222432b503b342d2c503752274b5e" - } - }, - "collateral": [ - { - "address": "", - "id": "645736530b475d77230250147b136c5f44ab67134c5c4743070652a97a4a1255", - "index": 6144, + "context": "ours", "amount": { - "quantity": 134, + "quantity": 199, "unit": "lovelace" }, - "derivation_path": [ - "11091", - "3021", - "13434", - "27602", - "21765", - "22040", - "18227", - "18187", - "28525" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "stake_address": "" + }, + { + "amount": { + "quantity": 14, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "7458624b1916234b69073e001f4d76cfc065122a26626c08374b286be3292102", - "index": 1 + "context": "ours", + "amount": { + "quantity": 171, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "3cb9177ff61152370c367f1d4bc91bd171400c195a6420495c053d0b6054342f", - "index": 28571, "amount": { - "quantity": 141, + "quantity": 13, "unit": "lovelace" }, - "derivation_path": [ - "21136", - "15926", - "31519", - "14800", - "2005", - "4792", - "25105", - "8900", - "30342", - "31028", - "9850", - "31700", - "30589", - "3330", - "3505", - "11474", - "7800", - "5034", - "10822", - "25694", - "20156", - "28419", - "12547", - "3342", - "20910", - "13356", - "13063" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { - "id": "7a0e5902336e0c430b52bb1367457c1954210b135d3b457fdd502afe0d667959", - "index": 1 + "amount": { + "quantity": 50, + "unit": "lovelace" + }, + "stake_address": "" }, { - "address": "", - "id": "52272c0a6b38135f72453a68780110102732a7550fd52a3c21484710423426a4", - "index": 13680, + "context": "ours", "amount": { - "quantity": 2, + "quantity": 52, "unit": "lovelace" }, - "derivation_path": [ - "15521", - "20457", - "3506", - "14535", - "2156", - "18795", - "14790", - "19222", - "24811", - "29882", - "4163", - "7856", - "2977", - "30563", - "104", - "19268", - "4056", - "8334", - "12689", - "20780", - "24962", - "19407", - "27894", - "5714", - "12305", - "23736", - "15562", - "29954", - "8756", - "12101" - ], - "assets": [] + "stake_address": "" }, { - "address": "", - "id": "79272841780ee54a107b50513f3a1b3e4d1b4e31263d08b51b3e2d6634f5585c", - "index": 31622, + "context": "ours", "amount": { - "quantity": 134, + "quantity": 58, "unit": "lovelace" }, - "derivation_path": [ - "14657", - "31402", - "2303", - "27322", - "21078", - "1981", - "20942", - "15325", - "15778", - "13186", - "14931", - "1863" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "stake_address": "" }, { - "id": "2701c32c7b4029d75f6e6e442154590b71b7362c070b70057702654e5ef43278", - "index": 0 + "amount": { + "quantity": 224, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "7744337f10695d025a6db24e6b4b330c5c205e512215557b59ad2a0668937a2e", - "index": 0 + "context": "ours", + "amount": { + "quantity": 61, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "753842676b5a06050019576d223f676a0a4574396d51448f7fa14e401c2c590e", - "index": 0 + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "02720c133d405e6c418a0205be023a0e06799a2001302b362d863a397b76f327", - "index": 1 + "context": "ours", + "amount": { + "quantity": 60, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "3b3a1a6f1870772f5e10b39c015e59379c5f3a02192b2727267b2f42400b024f", + "context": "ours", + "amount": { + "quantity": 70, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "id": "2e4407ef4633786f24962b065d494a7d7cbb600b6e5d01256e143d6b53453206", "index": 0 }, { "address": "", - "id": "59240755043d0d16070b438c72277e642c0057536c0d560436647d3b78771e32", - "index": 114, + "id": "4c1f7e1624dbb12001670c7839d771534227462ea8267e715d666c6e3d1d7aab", + "index": 26324, "amount": { - "quantity": 37, + "quantity": 210, "unit": "lovelace" }, "derivation_path": [ - "13240", - "2258", - "11833", - "30912", - "27296", - "14113", - "2440", - "17016", - "12077", - "9496", - "10155", - "18607" + "7329", + "7199", + "21085", + "32151", + "5386", + "1673", + "12092" ], "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 43, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e45", - "quantity": 4, + "quantity": 30, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "77277949cd1b1f444c03e04063725632357e0d25c4160b72674d241f6131423b", - "index": 0 + "address": "", + "id": "18520a1255665c536c492c23c666010335ed3453540d23610e54654c6f1b117e", + "index": 30507, + "amount": { + "quantity": 228, + "unit": "lovelace" + }, + "derivation_path": [ + "10072", + "22113", + "32103", + "7507", + "16044", + "22148", + "25714", + "10556", + "2513", + "8761", + "20025", + "3883", + "9850", + "16983", + "13359", + "1039", + "11887", + "28581", + "4997", + "23626", + "13469", + "23589", + "3115", + "14474", + "14002", + "29302", + "16297", + "14340", + "24174" + ], + "assets": [] }, { "address": "", - "id": "4bce5216251533244d4b7d13467c175d07730b091027165e5e6a042c75187f24", - "index": 30444, + "id": "693772364838103d575b1f456d6ceb65620e3e400603b6a47a0a915c247a4730", + "index": 8112, "amount": { - "quantity": 9, + "quantity": 227, "unit": "lovelace" }, "derivation_path": [ - "14538", - "27924", - "19503" + "20062", + "15857", + "19671", + "15735", + "20257", + "3861", + "17518", + "32438", + "27843", + "32588", + "25336", + "19443", + "28515", + "12489", + "19173", + "20465", + "1014", + "30524", + "13756", + "28652", + "9988", + "8915", + "10667", + "23877", + "11329", + "16756", + "15864", + "3526", + "2346" ], "assets": [] }, { - "id": "a60c4088556c0f6c325561895a2c3f306722587845605020310c47f369795868", + "id": "43191f443243226219397b2590441c345d309337dc632245555d4d6b56514554", + "index": 1 + }, + { + "id": "223c76633f0d652c5024fe21486b504474173a3faf3739554c06311160164b6e", + "index": 1 + }, + { + "id": "18480816752334c535004fdc130b49556071481b476e8c2a1946564f7146141d", "index": 0 }, + { + "id": "2a3d6e3f18d575304e3020494e3fc87643d505494e26280f203a37262f347351", + "index": 0 + } + ], + "collateral_outputs": [ { "address": "", - "id": "0e1c0466042a7a7d2f0c042b50543714916f0e53214a464b5c17668855537b38", - "index": 5305, "amount": { - "quantity": 190, + "quantity": 47, "unit": "lovelace" }, - "derivation_path": [ - "458", - "28944", - "4355", - "27285", - "14043", - "21376", - "19151", - "602", - "27527", - "13707", - "11612", - "16531", - "2204", - "5292", - "22872" - ], "assets": [] - }, + } + ], + "outputs": [ { "address": "", - "id": "1632dda1cdab0316653a65c23f3b7a6e5d4e2f52572716141724a074205e7d4a", - "index": 30658, "amount": { - "quantity": 164, + "quantity": 55, "unit": "lovelace" }, "derivation_path": [ - "17650", - "24963", - "1653", - "1560", - "5873", - "14484", - "30604", - "26764", - "16522", - "19131", - "11454", - "14096", - "5094", - "14566", - "31153", - "951", - "18059", - "7655", - "30944" + "9478", + "13133", + "26958", + "18477", + "30625", + "26631", + "28012", + "28302", + "21369", + "22739", + "9727", + "17450", + "11779", + "7817", + "22643", + "1413", + "25610", + "16944", + "21083", + "7775", + "3248", + "28890", + "21405", + "26850", + "29526", + "7557", + "24218", + "17553" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "quantity": 17, "policy_id": "33333333333333333333333333333333333333333333333333333333" } @@ -21344,331 +19463,184 @@ }, { "address": "", - "id": "8589e5370af04e033221432213394d203416a1694544677c0c7b125019560735", - "index": 14451, "amount": { - "quantity": 250, + "quantity": 245, "unit": "lovelace" }, - "derivation_path": [ - "15135", - "8328", - "2690", - "20882", - "8705", - "9935", - "1118", - "19595", - "16336", - "22857", - "21745", - "28313" - ], "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", "quantity": 18, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e42", - "quantity": 21, + "quantity": 10, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 11, + "quantity": 7, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { - "id": "43796ae367362f4d1235312f4c0b76561913ab293d7d662f643b6a5a6f6db603", - "index": 1 + "address": "", + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "derivation_path": [ + "829", + "25691", + "11949", + "10877", + "14563", + "31851", + "16207", + "7437", + "6205", + "10128", + "13428", + "6071", + "2768", + "16372", + "16865", + "30070", + "31753", + "4337", + "3500", + "6212" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "address": "", - "id": "1fde0133336318539f4ef51b008c3a09181f5628501c6614090a216bb5034a18", - "index": 4742, "amount": { - "quantity": 97, + "quantity": 108, "unit": "lovelace" }, "derivation_path": [ - "26685", - "26219", - "18481", - "20358", - "15358", - "30896", - "1126", - "1093", - "11938", - "27341", - "17059", - "11872", - "22727", - "25514", - "2715", - "15786" + "22445", + "23843", + "31648", + "25696", + "22609", + "2093", + "29755", + "23198", + "29534", + "31624", + "11924", + "473", + "7966", + "31048", + "16412", + "30573", + "23036", + "15955", + "16602", + "13838", + "10917", + "22398", + "10254" ], "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e41", "quantity": 24, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, + "asset_name": "546f6b656e43", + "quantity": 17, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, { "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] + } + ], + "script_validity": "invalid", + "id": "17137306104c74dd7d747c26715c073f2d3f622e7f0b3a5d57d2803d585d6f50", + "deposits_taken": [ + { + "quantity": 132, + "unit": "lovelace" }, { - "id": "6a783c1943e8514503140c04553c5a6b3c517f29236a391e2b611d58582bb926", - "index": 0 + "quantity": 127, + "unit": "lovelace" }, { - "id": "68a36c110347635fb10a2aa46f1a1a195f737c64593d2d639349324e72744460", - "index": 0 + "quantity": 174, + "unit": "lovelace" }, { - "id": "453c36614a5e751d550b32076e4d04d7773c287b1d3b62720d421f927e5c48a0", - "index": 0 + "quantity": 201, + "unit": "lovelace" }, { - "id": "e81d313b2205423b479e106952545836af40d6337a3a5769052a11c86c1766bf", - "index": 1 + "quantity": 111, + "unit": "lovelace" }, { - "address": "", - "id": "74b0805b322d23014506a157540a2e44d331f743570a201073d22b16483c06d0", - "index": 20685, - "amount": { - "quantity": 11, - "unit": "lovelace" - }, - "derivation_path": [ - "17966", - "3571", - "20993", - "23578", - "26968", - "2857", - "7894", - "12797", - "22626", - "28477", - "18947", - "12142", - "28557", - "9536", - "10077", - "5778", - "31098", - "25437", - "19703", - "18495", - "2449", - "10995", - "2160", - "12515", - "8697", - "4591", - "13317" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "quantity": 63, + "unit": "lovelace" }, { - "id": "6b5944310fb526651f5579244a4d2a562a521f33c65f23d356153b0913142652", - "index": 1 + "quantity": 255, + "unit": "lovelace" } ], - "mint": { + "burn": { "tokens": [ - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "6b156a75a4408ec21907499003648b172de1e9f73df15eaec9394e65", - "assets": [ - { - "fingerprint": "asset15avhphta50yduakv7j07pt6fkdq2mkmqj7ekmh", - "asset_name": "546f6b656e50", - "quantity": 5133 - }, - { - "fingerprint": "asset1p0fr0r4agpchqaluaj94npcmn5ljmvk5urgsu7", - "asset_name": "546f6b656e45", - "quantity": 1646 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "ee007c8a3d8e107235ecfdda2356539be17991f53034405c8021047a", - "assets": [ - { - "fingerprint": "asset1n0tm70wa2pv42yqaazyphlztxyysme0vf4fvlt", - "asset_name": "546f6b656e44", - "quantity": 1995 - }, - { - "fingerprint": "asset19rn5mv4pxgn5fggjtmunrw27n4vpjxkvmzzd3k", - "asset_name": "546f6b656e4a", - "quantity": 8856 - }, - { - "fingerprint": "asset1d2slyhd7665mfdqylkjyhmk4f3w89sm5yrckn8", - "asset_name": "546f6b656e52", - "quantity": 1000 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "0717b885ccaa69ce04cb6769fa9643527ea83b2ee7d16b574bcc0f20", - "assets": [ - { - "fingerprint": "asset1z8ayz6yyccg4zsam3zltxfe2efmzvlnsvn0x6j", - "asset_name": "546f6b656e4c", - "quantity": 8263 - }, - { - "fingerprint": "asset1xj0xpt9ewlqv86xpra4j4av99fhyew3q95a0ee", - "asset_name": "546f6b656e52", - "quantity": 3833 - }, - { - "fingerprint": "asset1h968l636uf4zrwgzvnpfska2rq0eq4f9jmh2x5", - "asset_name": "546f6b656e46", - "quantity": 7084 - }, - { - "fingerprint": "asset1t49z65lqfnl355z24c8e24ntuv39s5nuwd0770", - "asset_name": "546f6b656e54", - "quantity": 4244 - } - ] - }, { "policy_script": { "language_version": "v1", "script_type": "plutus" }, - "policy_id": "418bdcdaeca1127d98fb31e3a5b5f08caa3638d2ad3929f9859dba09", - "assets": [ - { - "fingerprint": "asset196h8vwjgwx2fp98uzapmhdmj2ecmhlknrl7llv", - "asset_name": "546f6b656e51", - "quantity": 5091 - }, - { - "fingerprint": "asset1tr795w39nk56kcjtuxaugzvd4zdnszql4lkn55", - "asset_name": "546f6b656e58", - "quantity": 2110 - }, - { - "fingerprint": "asset122kvf4p2yxkvz4jm2zvllyefzehs0y9wg39qcd", - "asset_name": "546f6b656e4d", - "quantity": 6282 - }, - { - "fingerprint": "asset192w0txq52d2zakjguu0aczws844n74y35xhk4c", - "asset_name": "546f6b656e57", - "quantity": 8101 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1p6f4yspmw72eccesp8378rq5k039weglcc2xutgx676qq93s5r4", - "script_type": "native" - }, - "policy_id": "0e9352403b77959c633009e3e38c14b3e257651fc6146e2d06d7b400", - "assets": [ - { - "fingerprint": "asset18zw06f6e30yzxhdkscncgv35gdamkl3sjr7ssz", - "asset_name": "546f6b656e41", - "quantity": 2708 - }, - { - "fingerprint": "asset1c0w75k8jnqaqktlmadg47clfd69tpsz3qzysd9", - "asset_name": "546f6b656e4d", - "quantity": 937 - }, - { - "fingerprint": "asset1v7dahauff93jgrzcqr4ts3zmvx0n4fqetgnq8l", - "asset_name": "546f6b656e57", - "quantity": 5995 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1la7cu3pdvk3x6x9uyz3mtzr9ax4guvc8x35qmwu6fx06s4gf5cw", - "script_type": "native" - }, - "policy_id": "ff7d8e442d65a26d18bc20a3b58865e9aa8e330734680dbb9a499fa8", + "policy_id": "caaba38db4678cb11c6d64638a247d4cfbd2e934fd8b0c346366d714", "assets": [ { - "fingerprint": "asset1qr2yg7de87d0lkmrqfytgd62wkh2svep8c67w9", - "asset_name": "546f6b656e52", - "quantity": 3783 - }, - { - "fingerprint": "asset1z0s6ap9z3c88c8vfvant7h7krvkdps4wn72sux", - "asset_name": "546f6b656e43", - "quantity": 8544 - }, - { - "fingerprint": "asset1tvs6lf8yg6g4xyvjgtsqnd8ys4ejwndm0luj4n", + "fingerprint": "asset1eg4npwnke5nvk7nasxpjgkz2xj3794za3ja3lr", "asset_name": "546f6b656e57", - "quantity": 7013 + "quantity": 4608 }, { - "fingerprint": "asset18c530w8h9j7pl326ek4rnq967esfdlhzm2j6v5", - "asset_name": "546f6b656e58", - "quantity": 3189 + "fingerprint": "asset1p8lhf7ywcwe068lylh2869ep0z7n6enct094gh", + "asset_name": "546f6b656e44", + "quantity": 3034 } ] }, @@ -21677,22 +19649,22 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "e5e7481529ee2ab0a9ab09044fb5b2f54fd931b85f713addc1a011b1", + "policy_id": "59fd4c2a841db3d3f576f3f0ceb521b922b344501fd521f01f5e4554", "assets": [ { - "fingerprint": "asset1pval248lkymdunjmvuj93ed5tlw5kjpe0htu66", - "asset_name": "546f6b656e43", - "quantity": 3306 + "fingerprint": "asset1vkgw82ew8yme22q5wuyakz004n9tt5jprg5wsk", + "asset_name": "546f6b656e4f", + "quantity": 8075 }, { - "fingerprint": "asset1r6nnwa2s3r9st02l88dnt8yurwfugjx7gd7ja5", - "asset_name": "546f6b656e50", - "quantity": 5665 + "fingerprint": "asset1uqknnuafdahzsz2rppqll3k3nhre9kn4nk0duh", + "asset_name": "546f6b656e4d", + "quantity": 4730 }, { - "fingerprint": "asset1e4z5n7rjmh27tqeftrkl864uvp2unsrhyuek5j", - "asset_name": "546f6b656e49", - "quantity": 8443 + "fingerprint": "asset1q8maqc42c790f3wh7l7g43h58wv9q7nl4g4k24", + "asset_name": "546f6b656e4a", + "quantity": 6437 } ] }, @@ -21700,7 +19672,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1ttzd6pk4tqkqveht2j4l05nmc5cfnafahkcq943mrep3u4pud4c", + "policy_vkh1pq99er0eesz7kdeltkggtg955vx0t83ctag8f4tg5lukwz4ua02", { "active_from": 100 } @@ -21708,74 +19680,12 @@ }, "script_type": "native" }, - "policy_id": "5ac4dd06d5582c0666eb54abf7d27bc53099f53dbdb002d63b1e431e", + "policy_id": "080a5c8df9cc05eb373f5d9085a0b4a30cf59e385f5074d568a7f967", "assets": [ { - "fingerprint": "asset1uuj5vcucmsz5sff7hcy3qk6d6vxp4ayyuwf33u", - "asset_name": "546f6b656e4d", - "quantity": 3805 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "e82197c6c42ab6b290f7dfb34b7536e0397e65d0789ad8378a00a5d1", - "assets": [ - { - "fingerprint": "asset195tg7ef9gcsl0cvqs7gxrw2t6swkdaewfnjy7y", - "asset_name": "546f6b656e4d", - "quantity": 5990 - }, - { - "fingerprint": "asset1dc5802ccud55h07nncgdymam62w47ra3aj5quz", - "asset_name": "546f6b656e4b", - "quantity": 6650 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1aqjn5qexwcpwckz6k0dcj5uu7v44x9lntxfwr03vzpc2xmpuue9", - "script_type": "native" - }, - "policy_id": "e8253a03267602ec585ab3db89539cf32b5317f35992e1be2c1070a3", - "assets": [ - { - "fingerprint": "asset13eel9eadgghgdeccngq9jrz4yapwksdq3xyhjd", - "asset_name": "546f6b656e41", - "quantity": 7647 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1dez9e73ekp25w6a7vy7tcvp49fpc75n2ycr56gnsx5xxcjyfwnr", - "script_type": "native" - }, - "policy_id": "6e445cfa39b055476bbe613cbc30352a438f526a26074d2270350c6c", - "assets": [ - { - "fingerprint": "asset1e84dkxzk8ygrcptazr3dulnrrwvwxz7f5umr2m", - "asset_name": "546f6b656e4e", - "quantity": 5231 - }, - { - "fingerprint": "asset1fkchgrfp86k67hsmvzwexnqw3cpq42la3dtht6", - "asset_name": "546f6b656e5a", - "quantity": 9151 - }, - { - "fingerprint": "asset1a2luagney38n93c4ckfuzqc76kdzcxwr9qu2x3", - "asset_name": "546f6b656e53", - "quantity": 3934 - }, - { - "fingerprint": "asset1ffyu0763d7srmyqf3dgh5rpgucjacsncd69sys", - "asset_name": "546f6b656e5a", - "quantity": 4356 + "fingerprint": "asset1s835gv3caagdkfzgn5mpvnm2tat6rgunpz662f", + "asset_name": "546f6b656e57", + "quantity": 4144 } ] }, @@ -21783,110 +19693,34 @@ "policy_script": { "script": { "all": [ - "policy_vkh1gavlde9tzhq42w6ka8unu3s0uel57sze0uq70pd88k4gz32xthf", + "policy_vkh1derwzpde2zgt5wrwrgtj99a5mutyww79hkgrt45n25d5s6c3uv2", { "active_from": 100 - }, - { - "active_until": 150 } ] }, "script_type": "native" }, - "policy_id": "4759f6e4ab15c1553b56e9f93e460fe67f4f40597f01e785a73daa81", - "assets": [ - { - "fingerprint": "asset1umxewtlpwua39c3nf8huk25a6ul2t700s32g0n", - "asset_name": "546f6b656e46", - "quantity": 8836 - }, - { - "fingerprint": "asset13t2n7uzhh7sagrhsx7jv6zznwlgmwhangewmzs", - "asset_name": "546f6b656e44", - "quantity": 3424 - }, - { - "fingerprint": "asset1g5lty28t8gdftdq6qz973l3wxuqzlf7adeaa7f", - "asset_name": "546f6b656e4c", - "quantity": 1212 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "623cbf79273c6fb5669531bc992a912e1b3e4b1feeb6d0c03cf87774", - "assets": [ - { - "fingerprint": "asset1yyfpsmp9ah8j8v597mpq3h7lpgkmwv2xz5suq0", - "asset_name": "546f6b656e47", - "quantity": 8715 - }, - { - "fingerprint": "asset1527nm9y0pkywdddh0fcr4739lafcl0eujpqe30", - "asset_name": "546f6b656e57", - "quantity": 4962 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" - }, - "policy_id": "af1255785322e884434d6e169f51f86180544dc07bc3a93906a12001", + "policy_id": "6e46e105b95090ba386e1a172297b4df16473bc5bd9035d693551b48", "assets": [ { - "fingerprint": "asset1x8g8z37twq2xy5kq8jqmuvwgasz969ugx5s8uj", - "asset_name": "546f6b656e47", - "quantity": 5989 - }, - { - "fingerprint": "asset1xgcjha8ynrstjfzqaq5f78ma5xads3rap5tpd3", - "asset_name": "546f6b656e47", - "quantity": 6376 - }, - { - "fingerprint": "asset17xjxx9xc7v02g7f6xt456lfnhduusq5pa6jeht", - "asset_name": "546f6b656e48", - "quantity": 910 + "fingerprint": "asset1fhjqa6u7tu3c0mg6hplppxd6whe8fh4hqlzpf0", + "asset_name": "546f6b656e51", + "quantity": 3836 } ] }, { "policy_script": { - "script": { - "all": [ - "policy_vkh1kj76f56ynacvj2w53h79p50yjejne880u2ykhw9ah5l7j4nmsq2", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, + "script": "policy_vkh16grdnl3xvu58mam99szhuj9czl64kvp07825nmul0ug8kzrvgtn", "script_type": "native" }, - "policy_id": "b4bda4d3449f70c929d48dfc50d1e496653c9cefe2896bb8bdbd3fe9", + "policy_id": "d206d9fe2667287df7652c057e48b817f55b302ff1d549ef9f7f107b", "assets": [ { - "fingerprint": "asset14lc0k4sl8swpw79v309stf6uh6jtx3sfpfxldm", - "asset_name": "546f6b656e55", - "quantity": 3484 - }, - { - "fingerprint": "asset1426t74908wh37rrgrfr34yvstuvtug8ws60uxp", - "asset_name": "546f6b656e4b", - "quantity": 7046 - }, - { - "fingerprint": "asset13rg7mzwct5x5908pe7extgene6vhwrns4nrfmr", - "asset_name": "546f6b656e45", - "quantity": 3742 + "fingerprint": "asset107m5jk79c683jkpcwq3ra9cl7rc3fcvm6yackj", + "asset_name": "546f6b656e4c", + "quantity": 3212 } ] }, @@ -21894,7 +19728,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1uy8p2esh28galafthv4pch8l5257u3ehvmm3lxnz4r5n5ruh8lf", + "policy_vkh190n3muqc8978aeg40kcezhxl4py3eq2ppp3tht99xu3jyjj75a7", { "active_from": 100 } @@ -21902,94 +19736,69 @@ }, "script_type": "native" }, - "policy_id": "e10e15661751d1dff52bbb2a1c5cffa2a9ee473766f71f9a62a8e93a", - "assets": [ - { - "fingerprint": "asset18wc6ecap3kul30jdzf4ekrvkxgjlurukqcmq65", - "asset_name": "546f6b656e4e", - "quantity": 3428 - }, - { - "fingerprint": "asset1fvj8p2lhrqq3n5m0nzg2qxcvq8wrr06ecjfqm6", - "asset_name": "546f6b656e4f", - "quantity": 568 - }, - { - "fingerprint": "asset1pg6fd88puf34n3l7zw0llkj6crxdcjstaauxrc", - "asset_name": "546f6b656e49", - "quantity": 6585 - }, - { - "fingerprint": "asset1crawudf25q9q2jedcl6dje74fvsn3vsnpcerdy", - "asset_name": "546f6b656e4e", - "quantity": 9398 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "9aa8a9aaedd8a6f3df5bcabb23a17f45274e142c8674dd082a232cfe", + "policy_id": "2be71df018397c7ee5157db1915cdfa8491c81410862bbaca5372322", "assets": [ { - "fingerprint": "asset1p00d6xm63ey4m6ktszmenu7aga8mw3rh7pdn26", - "asset_name": "546f6b656e59", - "quantity": 9959 - }, - { - "fingerprint": "asset14xnqreqryk2rpw3ceww67m3dnvdpgn8u7t9wqy", - "asset_name": "546f6b656e4e", - "quantity": 7688 + "fingerprint": "asset1xmsc39z4zjm5dhya4asuuxzq3pr284fay7rqnc", + "asset_name": "546f6b656e4b", + "quantity": 1681 } ] }, { "policy_script": { - "script": "policy_vkh1qdhjyke3fn9qvnm8vt374xn9me6xes5scnxhrhkcwj0jwa4seu3", + "script": { + "all": [ + "policy_vkh1pjrwufh3dxczh0lnxg9myhxejz74eastars457kpzvslvrwshum", + { + "active_from": 100 + } + ] + }, "script_type": "native" }, - "policy_id": "036f225b314cca064f6762e3ea9a65de746cc290c4cd71ded8749f27", + "policy_id": "0c86ee26f169b02bbff3320bb25cd990bd5cf60be8e15a7ac11321f6", "assets": [ { - "fingerprint": "asset1lf3s4cagde7g0x4g4r26ddeuwjylzqpswy0y73", - "asset_name": "546f6b656e41", - "quantity": 215 + "fingerprint": "asset133evx3rtnmxjzxxdm7exwtua0jru7p77y6hglg", + "asset_name": "546f6b656e54", + "quantity": 605 }, { - "fingerprint": "asset1wdgaxk83stc59w60c3j0dluqtfumqd3rmcrz68", - "asset_name": "546f6b656e53", - "quantity": 4773 + "fingerprint": "asset15xws48u0vt4dmjruxnrmsk5gcfr868kyul0mnm", + "asset_name": "546f6b656e46", + "quantity": 3282 + }, + { + "fingerprint": "asset1cx4fnc3l352wt66qtv9jhduekkj2dmxcfez89p", + "asset_name": "546f6b656e54", + "quantity": 7981 } ] }, { "policy_script": { - "script": "policy_vkh1eud2k4z43p2hkvqsljyhw0ek7h8g4q5g9q0lt5n3ma89utn2tzl", + "script": { + "all": [ + "policy_vkh1h4xrv6amtcvq5rau3p6fgc4xqzxw4r7h9drkdrt0ppkzcrrak26", + { + "active_from": 100 + } + ] + }, "script_type": "native" }, - "policy_id": "cf1aab545588557b3010fc89773f36f5ce8a8288281ff5d271df4e5e", + "policy_id": "bd4c366bbb5e180a0fbc88749462a6008cea8fd72b47668d6f086c2c", "assets": [ { - "fingerprint": "asset12vzzs8c0nh25rqa2gz0cytsrrn6zkfy32dsfeh", - "asset_name": "546f6b656e56", - "quantity": 6641 - }, - { - "fingerprint": "asset1arl6tz0mts97a3evudt0lt4vgjn9t225hvwxxd", - "asset_name": "546f6b656e53", - "quantity": 6841 - }, - { - "fingerprint": "asset1mnu2z8j57llkwgpk4e0tx8gd4ytax4qrz9qs0x", - "asset_name": "546f6b656e59", - "quantity": 2737 + "fingerprint": "asset17060rvjjl0854er069xugeduf6c2p67k0yw7tv", + "asset_name": "546f6b656e43", + "quantity": 2028 }, { - "fingerprint": "asset1y0yl6yyucq9xxq6pjag4hd49k4nlnw2tnrccpx", - "asset_name": "546f6b656e44", - "quantity": 5251 + "fingerprint": "asset1sfwh89r3833d774umyywu6k7l6uqkt4534k4hp", + "asset_name": "546f6b656e4b", + "quantity": 2108 } ] }, @@ -21998,1152 +19807,857 @@ "language_version": "v2", "script_type": "plutus" }, - "policy_id": "87f20057e3d02708537e370b6eaf20911e87c43dd84e99e4edd0e289", + "policy_id": "2af23d60582479b2954c3bf6faf847b43f924102c8afcdbc616a513d", "assets": [ { - "fingerprint": "asset1p3w3xgld96qdc5cqx6dqay8mzvj8qnntpkrkte", - "asset_name": "546f6b656e58", - "quantity": 3642 + "fingerprint": "asset1fazudut5ztuyvc3ee9g2w0y0fz5degzuygnn30", + "asset_name": "546f6b656e59", + "quantity": 2347 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh18mqlymydh9eujqmnmgp7028lhu28qgsrhums79xe3dxgjydalck", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] }, + "script_type": "native" + }, + "policy_id": "3ec1f26c8db973c90373da03e7a8ffbf14702203bf370f14d98b4c89", + "assets": [ { - "fingerprint": "asset1a8ygnjakcw2fe747n3lddnkv5lknrkdav722j4", - "asset_name": "546f6b656e4d", - "quantity": 5951 + "fingerprint": "asset1d7sa5r9wl48gytd3yg53v6angqanr77fl96hhf", + "asset_name": "546f6b656e51", + "quantity": 7338 }, { - "fingerprint": "asset1nwlcvdg8jye0fmxrek3hhe5xjmzh0t69vwx728", - "asset_name": "546f6b656e50", - "quantity": 7427 + "fingerprint": "asset1tnawdmf9c7qtmvv9mp8ala0lufzz2xw0a2v4qe", + "asset_name": "546f6b656e55", + "quantity": 486 }, { - "fingerprint": "asset1dpc50e6fdxkzgk08u09ufms2l86kscgzntnaza", - "asset_name": "546f6b656e46", - "quantity": 5943 + "fingerprint": "asset1dx8thdv0vy0yd2z54rmpf3p60tac4wxkxv085s", + "asset_name": "546f6b656e42", + "quantity": 2522 } ] }, { "policy_script": { - "script": "policy_vkh1sk6xzel32gxf5vnawxrh86093wfqzhwhyfd8j9h4v0sc6nswt8a", - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "85b46167f1520c9a327d718773e9e58b92015dd7225a7916f563e18d", + "policy_id": "6fc9c6eeed343809148a7014efeef71938fa0048fae4874461634e13", "assets": [ { - "fingerprint": "asset1rc6mdz4huuh4rkf2752sxpea56uwjtwnrrruak", - "asset_name": "546f6b656e4b", - "quantity": 6740 - }, - { - "fingerprint": "asset1rj0ppkga6ygtakzsh3gkv0tgplfjgqgtpyyu4c", - "asset_name": "546f6b656e47", - "quantity": 6248 + "fingerprint": "asset1kdcjx5h8x4zksm85jwcwgaclxyhkeadcp4jghx", + "asset_name": "546f6b656e54", + "quantity": 1993 } ] }, { "policy_script": { - "language_version": "v1", + "language_version": "v2", "script_type": "plutus" }, - "policy_id": "d690dfce895cecbc210166a314007cfbb8c0847d1f980c32d9934523", + "policy_id": "f9b30a28f972a43a409c0ae4bcd9ed587406acb475c3526a5827575d", "assets": [ { - "fingerprint": "asset17h7my20aw3z8plgxnh74ysh2nt057s54df0e0z", - "asset_name": "546f6b656e4e", - "quantity": 6702 + "fingerprint": "asset16lal3fzpxxc6vlkndmxhgdxn9tj6x65zthxlqk", + "asset_name": "546f6b656e49", + "quantity": 6532 }, { - "fingerprint": "asset165xn80n7vszcau8jgj49skxp6xq9w3m2lmwwx9", - "asset_name": "546f6b656e4d", - "quantity": 3339 + "fingerprint": "asset1tjark5ecn6s9em03fnrzfl545et0fnt354vqhe", + "asset_name": "546f6b656e54", + "quantity": 333 }, { - "fingerprint": "asset1lh3wf337r5xwelrccvzz6fjucahkfu9zylmqa7", - "asset_name": "546f6b656e50", - "quantity": 2419 + "fingerprint": "asset184jhl7tzl9f56gdmj9jxta0rsjzlep7t7f39fj", + "asset_name": "546f6b656e5a", + "quantity": 7296 }, { - "fingerprint": "asset1e2nfxwjzs2keurqpwuvgft8wjdm9vp8mmy3tmh", - "asset_name": "546f6b656e54", - "quantity": 9749 + "fingerprint": "asset1t8s7uh7286k38cregzglfz8uwry9tzpedmzrtf", + "asset_name": "546f6b656e42", + "quantity": 4913 } ] } ], "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vk1wqgqwzjjg30s7h6k9sqpu56t8k28tk3qzgt3yecr25y5kypn8fqsrqvnkn" - } - }, - { - "withdrawals": [ + "wallet_policy_key_hash": "policy_vk1yewjggzlkg7jx5nnhzt8qqa8yuky26q3953n4c6tza065tt5ycfqxjmxxc" + }, + "fee": { + "quantity": 46, + "unit": "lovelace" + }, + "certificates": [ { - "context": "ours", - "amount": { - "quantity": 24, - "unit": "lovelace" - }, - "stake_address": "" + "certificate_type": "quit_pool_external", + "reward_account": "" }, { - "context": "ours", - "amount": { - "quantity": 15, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1evftrhg495dnuhquud5u2drgfkjlhqcgyz6mzncteqtr70txxepsh46uvq", + "ed25519_pk10ksvnll6f6s4hj5pk5e45r4q9v3hxqzla09589m5h7n6k9rpuensyykx2r", + "ed25519_pk1dsh0eydz0m36436ylzjame8lk3l7zr7x0v9cft4yktjyldrxrjxsg7qx5a", + "ed25519_pk1540r08m9vzp24zr6juvh9rqptf8qggg07m8nfy4gv8sy8h8g9hhqnn9sve", + "ed25519_pk1gzz6ayt2eh7svk6d9c5e52sad4vgxjp59vfmnw308qflr7gcs4ls4aeyuy", + "ed25519_pk1g3h6dk6g8jpn3503f654aqulnpk822hg2j3t45jp7txehqwu028qg78nyz", + "ed25519_pk1q0vcawrevg5wruu44ccstxpwjqr83c5kdwzglmu93fs5x5pvw28sr50m7s", + "ed25519_pk1kqzeja9gqmgwmr9ucn94q8twlq72w93lpup8mhsvpeqnfrkznwaqjd7gc5", + "ed25519_pk13lpcrzzfdm90npt7hmej7ulktthv64kzs3tter84ghdu2ckpu2zs0f60k7", + "ed25519_pk1tgltpzv2uexpnvp2a6h5jzelykdhstk0dh2myre3wd8jrc8465ys4snk4f", + "ed25519_pk1sth5vtwncptad5qxurkkeywvencrlss6rw44n92fm7wee58mxxas3duny6", + "ed25519_pk1s9zalnltyyx5jg4xdntqqwwu8k6cs9qph03ltmujld6xzns7nlds28qlds", + "ed25519_pk17pajz3kyf36d2r7kqsc2893mdgmlrjcasdwt78r2vxn3lvg2u3ss9pluql", + "ed25519_pk1gfzztm293sxp4k2vjyj2drmael3nuyyt6fz6n5d9aln7xm4nwelsldl77l", + "ed25519_pk1cxeuh4d9p3uwqhvkxffr0v6ymc4mf7mmh6vgq3qdq8n924z8rpxqc88qtv", + "ed25519_pk1h0ws89lqa2vlvcshkml9pw8u2dfcppwavpf63x3rcflvlu8vs5hsk5lhtf", + "ed25519_pk15m3keaxganxkx3mfaqy2h44tcs6whtunv4h8gkssgqw027va80jqk9r0s9", + "ed25519_pk1pp9rjveyu6f5zrrqzc84hccufj0869cd6qrlv65tqgp6jtv9407q7ss6z4", + "ed25519_pk1sluc0e6t5zgxm23uavh43h2wvsp0tg7v3hguv5jdxa0zlgugldlqp5ey5s", + "ed25519_pk1uyqudh4j5ekgg2zmmla7w92lnz9phjzs9frewzy7ndldz5qsaveq7u6tnl", + "ed25519_pk1npmejqtuqglaz2arznlutp9zxf2ddhmhvq3a69smjvtt6dsxpqssxvxvwe", + "ed25519_pk1nzkle5c06q4s8ttslc5m9arqzeur4m5wn6ywepuzh0jasxfwzj4sgp8dxu", + "ed25519_pk1cql9w35rvafqcw8ezwegwdg34u6922702947l6j8sahlg0s6r8fsjh7lje", + "ed25519_pk1pwk4g27kapdd62mxw7qdz8c3j69956evep4mn8my0n5yk9qaqj9qmj3uth", + "ed25519_pk1t5tkyc4n0p4pwt5c2rrpsvnczqjyyd0pedt7cry00lekgapq4w7qn5hzzm", + "ed25519_pk1udn8wtesv5v4ke8y5ms724gnewwn7jjhute5f7ru67fsd94j5v9qmyzl5q" + ], + "pool_pledge": { + "quantity": 54, "unit": "lovelace" }, - "stake_address": "" - } - ], - "inputs": [ + "pool_cost": { + "quantity": 186, + "unit": "lovelace" + }, + "pool_id": "pool1p4mp3hq3y9fz0kfc72r3kcmxnpdmu20t6y5g8tuecpp5czr42sn", + "pool_margin": { + "quantity": 38.13, + "unit": "percent" + } + }, { - "id": "1926038a44560c21276a5b355b083e5b650a236c3830d8282036ac125c736049", - "index": 1 + "certificate_type": "genesis" }, { - "id": "0b17767350870310480cf9762627c8795473280b0d330b0b55097b1b644f3442", - "index": 1 + "certificate_type": "mir" }, { - "id": "0965242d2a6d35b305aa516b5e354d24347a01366714e70e4353133b5f475c15", - "index": 0 + "certificate_type": "deregister_pool", + "pool_id": "pool12ntj7dwff5qgjctfuuvhay43cf965624uchx6gmu3f8rq9zun8a", + "retirement_epoch": 13187 }, { - "address": "", - "id": "4961522e4a74603a7b467b032e31342b151bac503c0b68403d95fa03076a9b31", - "index": 11681, - "amount": { - "quantity": 241, - "unit": "lovelace" - }, - "derivation_path": [ - "10576", - "26103", - "8451", - "7683", - "11272", - "22050", - "18127", - "1820", - "7834", - "27759", - "1525", - "29124", - "9729", - "10369", - "3804", - "28238", - "20863", - "29215", - "13708", - "27212", - "29868", - "14245" - ], - "assets": [] + "certificate_type": "mir" }, { - "id": "021c7e7b006f11045d3f5c7a5702386f8475fb307b3ce50e22044346124e3a2a", - "index": 0 + "certificate_type": "deregister_pool", + "pool_id": "pool180wwuu57c58lcw84p759hwqqaq73rr9ejmttcu5uz7nxs7rwk0e", + "retirement_epoch": 2740 }, { - "address": "", - "id": "cd3b2e65ce4d50cb02753b3c665b3129666207453e357ac529864548750b127f", - "index": 13888, - "amount": { - "quantity": 184, + "certificate_type": "deregister_pool", + "pool_id": "pool1upzxm3mvfrm50005ecfvvuzg6cuq97d2z0z77mjf7xmxss09sk2", + "retirement_epoch": 23565 + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk13qgst0vaq2mr08lwhqthmezhv50ljw83vxc4rqzsf6tcpsh3m47spvfrhz", + "ed25519_pk1wrn7pw692hkvtd2zrhdwpzhswfusmg7208uz67l6czwulc9sl2cs287e0h", + "ed25519_pk1ky22xlh7us0tye5vtl8z7rf4thu63563gpfwvh9arr0n7kvhpa8qzmc8c8", + "ed25519_pk1m94e2nkc8kns850rxemaa9vp8gdaez7av5q43ew6e393597rw7yqczdlw8", + "ed25519_pk1dmwkuermwve5j5mfvmkyzg0pmvhgf2uwsr2hdx2ne2er5c9r64pszrkwhc", + "ed25519_pk186e70f6mwajghxr5tf8rypvr8d0evucwcag064zxlu4xpn7urnwqjz8wyu", + "ed25519_pk19a6hktp5ametefgzeca07s9cqwlllggc7wkeyqx9nkvnsjqnvhdsmjwjfj", + "ed25519_pk1puaxh3amm4txncm70xxmulq65ytqq2qscm3ex7xk9e3l3cg0ykgs3swdh7", + "ed25519_pk1ehyvfreryvd9nkj7gs29lqr8xsphc87h5yzef2rnfszj996d9cws6vsshq", + "ed25519_pk1al59dk2vs5c32x06uwvg06myfez8y2z5hv53jfev7t8zd2c74ztsws6m79", + "ed25519_pk1rhm3ypug5qvg8yhfvda2pttd52tshf2x2eux3c4arx0cs5jqg6wqr4d30x", + "ed25519_pk1g4mjp2y6ggjekv0hmynp47n53eve43fya5995zrs075txu3c8wns7emngj", + "ed25519_pk19wrz82lykdp2pj70s2r9vugaeknk564x8dkg49ac44jdyh9a9e2q9zfqwj", + "ed25519_pk1z8yfhhq0wd9xvgy77kx82rtr8v5r39zdj3duh6a30gnml4rcjuuqrj6hf8", + "ed25519_pk198u0jsrtreq3xpkgmwkte2aplv95ahn8uqu3n8zgd9z580gsxktqdaall2", + "ed25519_pk18vdz8ghwvel9c343uxut9r9rddp2ytr5efq7hax6tntj087erw6qryhesk", + "ed25519_pk1sv78zr8jm6ux6xp0lpgsav64ngq3wlryqxg9uthvpyklerr6s42qw9tqdk", + "ed25519_pk1tcrh9fw05556pckdjvwhfqzhv5093c27r5zjlgqlhkxctzwct84qruhm3m", + "ed25519_pk1cx4wc94dv6gwylzjxeyftknhv9nhfm048m3plgcsnqypgq8lv9js5aygdz", + "ed25519_pk1x4jjweylse0lrgjavtmeyak0x3cljwdvl9valtknzjhh89a3xvjqtknrnp", + "ed25519_pk1dwq83uhgp53754n5esrl366cn3sffg7mvf2smhsg4lup0h08c4ds30fzcl" + ], + "pool_pledge": { + "quantity": 147, "unit": "lovelace" }, - "derivation_path": [ - "21260", - "18908", - "2265", - "5492", - "6188", - "12691", - "9084", - "16536", - "16972", - "30052", - "28124", - "18952", - "12152", - "3615", - "15823", - "14429", - "16477", - "4425", - "10744", - "18184", - "30273", - "28656", - "29885", - "25664" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "pool_cost": { + "quantity": 154, + "unit": "lovelace" + }, + "pool_id": "pool1pdljlf5vwt99pt0r8pz0dml7ntm6zh3t8qq0zzrtkh2hgua9zm6", + "pool_margin": { + "quantity": 5.79, + "unit": "percent" + } }, { - "id": "7d1c4db261ce09837e9000d9010572c077604f284f8027dcad0c379443f1770e", - "index": 0 + "certificate_type": "genesis" }, { - "address": "", - "id": "180f5001573332681e753aa6314274520e4f14554c13014cac5d1b601716226d", - "index": 9556, - "amount": { - "quantity": 249, + "certificate_type": "quit_pool_external", + "reward_account": "" + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1rs0ay4wnw0ns9wxqn7d2cc6tcw8mdj9njvvzhwyn9tu6d3500w7qz9nwu8", + "ed25519_pk1e4363h73vls70mkl3ezsqwc0g9v5vrck2zz0fp5r9s99906g0egq00rmec", + "ed25519_pk1ef0xtfuvcpsuj8kqvlej92a6gqswh4zrzdhstmjkm4dx73q4xrls6jcqh4", + "ed25519_pk16ua4urwjdd0xqpky0908g07yaw4pm9qqalcpwejf20e67pay90squpcnd2", + "ed25519_pk1d08jrwx7a354jwnhcrmygu4d7crxdef3s50wz090rm2radfqj0pqv44v44", + "ed25519_pk1m759heaus3xd7mdcp560ta6lcgu8lvv2nwtjx9nkhnkjk7a8twhqxttn8j", + "ed25519_pk1lftya838r4uwcwcl43spl40rn23hytls8hwq8nv566rlkux0d96sws8usw", + "ed25519_pk1rv7x2papkjlt2v83hl3ndg0z7pk2y7xrfatyut6fnkqp7k96n72sclvpdj", + "ed25519_pk1aupc5jfjserggey7vn960ety5tqlpskzlrxn73fjagmrpg0w3xesaryfha", + "ed25519_pk18dfrpu6a5eww48xlhfm3wys55yxeuepterysrz8jlvhy9vrqzj0qghtwud", + "ed25519_pk1gju9megp5fg8ta45h7jpr58dphy3dfml4yljzhxwn4tl98rum6lsntj7ey", + "ed25519_pk13kt8q2rhd6e2ey44w6udpmpx9vgfs9zypt35rmm0mf474u02tdcq3g4ghh", + "ed25519_pk1w6laxhe2ym5x07wz4vmf0c972lgl98u904hsy2p5adttkflwyfhqa204mp", + "ed25519_pk10qlcm4sgm5knynaamzxnra9y875pakey853zd94zlt0j06pg640q90ltpj", + "ed25519_pk1h9p7juelfmp556rdll943xswwl6kylex6muldmu6l0jh5ztl7hds04983m", + "ed25519_pk1uvh32kpcccvg2cdh8d5gphpzv40ef5aljw5vd3qvddc947v8zgzswu9tx3", + "ed25519_pk1yjlmf5ccu0nyhlhdztcus3kx3v9cqxjj5r0xc9xcxtalh7lhchxqqyr0k3", + "ed25519_pk1j78m9vyrkp45ymsf467vt3uxmv36zta85fas8q0475spsydep2qq0nhca3", + "ed25519_pk14tmfuxj47nvpywqaxuh3nsj65fd728p5jg9hdjc7mstdln52ks4qgapd4y", + "ed25519_pk1s73cyq423d7jj9qsap0jy0sg829t9tz67lg2sm2u8r69furxxxmq5cdqya", + "ed25519_pk1v3utc0x3ynxegswfsy7qtt9l6xst5uvxu2k3wyxal7nmgzl2jmpqh70gvz" + ], + "pool_pledge": { + "quantity": 154, "unit": "lovelace" }, - "derivation_path": [ - "28603", - "28648", - "9261", - "16809", - "31809", - "18247", - "6808", - "5714", - "21299", - "3526", - "15801", - "18697", - "23231", - "22635", - "14388", - "4822", - "597", - "24975", - "9283", - "28872", - "191", - "31686", - "28635", - "29729" + "pool_cost": { + "quantity": 8, + "unit": "lovelace" + }, + "pool_id": "pool14hgjyfx906jhff82sg9qt9zwkp8at2zcp6gje58d66stzqj4fpy", + "pool_margin": { + "quantity": 40.37, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk17e305fl8mfjrqqwh3h84c9q6g7uxpeq6mnuxft6pc2599a3f3a3smsqm5r" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "pool_pledge": { + "quantity": 79, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 134, + "unit": "lovelace" + }, + "pool_id": "pool1y9xc4843ypmxwgpusk3lng7a2y6n4qndcg4sacu7dly7sl3def2", + "pool_margin": { + "quantity": 97.28, + "unit": "percent" + } }, { - "address": "", - "id": "5c322340561e663446f503515f6d4eb8776cf22b340a128172001025df3b1471", - "index": 17268, - "amount": { - "quantity": 11, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1amfs2nz9kulrjamkhc2hx4qfn625kvp82p58fgzfkmqa9km4yuzsvmdtjp", + "ed25519_pk15ukqtsfulquwhcdqccfzuumda39633xwkt3mdfmm4tehgyjtprssfcupge", + "ed25519_pk1rkp2ut5v5v7x8twc4drav4q2qh9pyntffe9y620tdje4y4h4edaqz4m6gy", + "ed25519_pk10d5saqg5qsev2wz0kzajdn3p68kd070gyqcrmwh7vpvnev6qh0lqzgna0m", + "ed25519_pk17r2ldy286y2uccvnw8uka23cwhhg0w4lee4jgwkv0cgzzak07uxsfqqkl9", + "ed25519_pk15um0xavnfv8frusaurwu8u56kqv95ys4a8ndd6wcc409e85ku2xq00j3dv", + "ed25519_pk1hx20q3t0fxns8y9elegcuyr7tpghdhq7ju3ewtswjrg7etjuh9zqggqu9f" + ], + "pool_pledge": { + "quantity": 63, "unit": "lovelace" }, - "derivation_path": [ - "9621", - "1598", - "29818", - "3229", - "12182", - "18230", - "21792", - "29589", - "27912", - "23848", - "11264", - "18739", - "7182", - "29548", - "17678", - "11818" + "pool_cost": { + "quantity": 122, + "unit": "lovelace" + }, + "pool_id": "pool17udsfr9pw6p47mv6kzd9ynxddjmz9655ppf0ncarwyyrjsuwrwv", + "pool_margin": { + "quantity": 85.87, + "unit": "percent" + } + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1n46c5c2l589qtdsvgwfxgt96tjuldl2vd235e7wremfltvednp8s6ntpft", + "ed25519_pk1cs6w57g3ayxrvzzfqjayhfkurp7dcux5f95yumetgvsp8dzssnjs00pxyq", + "ed25519_pk1hl3vd2jhd3txmn9662tgk2knwt9efa5t28a34y8jet5vvk660z9q0qnn5r", + "ed25519_pk1dw3glsjyehda3xsmeht2qadn606dkn0x0hc96x6xzccjhgp6teyq7e3073", + "ed25519_pk1yr76ppfgtkl3d80d4szmwhz7f3v4fv9uyymsd378lpd6khl7lfxshfvxjw", + "ed25519_pk10wz7288gvaulgxcvn4qndwl2v6hvexcfvymwnhnfy4sfjzvw428swffvtc", + "ed25519_pk154jgdu9t8g7nraghmcvjc7kt2r4n355q3uxhmf2d70y2zlurmlws3euds3", + "ed25519_pk1xexnmqpwj0q8qfvqm5qjuh0k6x8f7u2gd02lc4kg9p6hzvzus4rsmm5d4n", + "ed25519_pk1fp8spwfdr5txq6ysg5vt7jqun2wvjweds0yw6268vyw2g8yeuphswygld4", + "ed25519_pk1vtt0lr8uujknehsx9c8fy88yt8w6mtf7suxh7c27jkkaljtyj99q45dg03", + "ed25519_pk1mlr42fk6tuahfwvdu30y7g6h3888hvg3z82t3s4yct7mfm9uh5msm7atrv", + "ed25519_pk1kz64s9f2w4yatz89u5ezsqgwt50ksqw3yr2h0zre9c83k376qgrqz76e68" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } + "pool_pledge": { + "quantity": 167, + "unit": "lovelace" + }, + "pool_cost": { + "quantity": 200, + "unit": "lovelace" + }, + "pool_id": "pool1cptnqrgsnhp50nvrpwhhpyys7erdgwdxeerrz67d922d5585gzj", + "pool_margin": { + "quantity": 32.06, + "unit": "percent" + } + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1r9sa4ef2u5fnaw8xu2qr87kkt9e2u4ut5qq369453jze2nm3g4v", + "reward_account": "" + }, + { + "certificate_type": "join_pool_external", + "pool": "pool1zys8uaagt6x6mexm5zwh8e2mwl3n7m03ry68n5lwkgmay5zpjcc", + "reward_account": "" + }, + { + "certificate_type": "register_reward_account", + "reward_account_path": [ + "29227", + "850", + "17681", + "5312", + "9381" ] }, { - "id": "d56b2b2b65ac6166c86705345a6f4f0779332d174d09fb6e384a26f97cea2f6f", - "index": 0 + "certificate_type": "deregister_pool", + "pool_id": "pool1ggvr6qaf433ucsppn6xufv2nxe0trelj9a9acvyydhhyv9spk5f", + "retirement_epoch": 8635 }, { - "id": "646351613335103d54342e397548012d0f1a0349776e3c0b59351c63247b05cb", - "index": 1 + "certificate_type": "deregister_pool", + "pool_id": "pool1w5w9a2drt4tvqv7tr0477e7s8ckk4wvczwft4rfacv78sfypxzl", + "retirement_epoch": 11867 }, { - "address": "", - "id": "764d5d7a24287120664e0b14ee392bfb106c7e361c59a9143b724e904b535d5c", - "index": 2411, - "amount": { - "quantity": 224, + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk173ffzwa4mx9uuza5kx47vwrzskcsedeee0k3y4ryq75v3ykh6u9sazjrkz", + "ed25519_pk1efx0w9tce0ggr6llp2ncukhxmwy8yaq00hzcpzm2reyxmnerdl5qgm3vc8", + "ed25519_pk12nqk2nm3fp2wczny22scd7l6a04rleu70efyqfnmd8d4aphvalcqtz724p", + "ed25519_pk1fx6jd2y69qxsz2d9h4ys3wyjdck4lx4hpjxr4nrvcuztpg9w26vs2kx8pc", + "ed25519_pk19wqfl3f8f0ngmemj6mws5uyf3cx3p0u070ur7asae5xausklapqqxldr49", + "ed25519_pk1g0v3hragcvdu0g3ttk4pxfsvkqvy0gkuzc86fze997tt30rpzgasmgdjsp", + "ed25519_pk1mhz7c256quta5hwqpu9n9whzpxxs8mnnal35s8g5hthrqjzs6q8s2pd2uv", + "ed25519_pk17pr83m744973nevg30f77l6c59cfm93zkcsypf4m76vpqngnezzs2zc3ca", + "ed25519_pk1ujkvhxa08xnsr64fv0ld8j844fsddqgxpq8c3h4a3pmccasl07vqcdqprh", + "ed25519_pk15exkvvmgtumkx472ye9dh74pc0np6kp6ttxwswljtxmpvw5maf6s204vje", + "ed25519_pk1gmms3ug48x9wgyyj3t32y9fd2xrfpgytjxfg8uahxk2wnd4fqsaqmw0e6k", + "ed25519_pk1s2wny0zw4t9xx6dgxkwtc929wfw69xzfjchyf7y3m83tphy6spdqcgjdh3", + "ed25519_pk1ewdh320r5qacx5l9mrdjpvqhxquuxswfecvxpezy9vuv0g68a7sshaq9v9", + "ed25519_pk1ukl4xphxu47tu0p707auejsq3uj230rtk5wl2l3mh75mdth7qdvqdjwc2t", + "ed25519_pk1m37jllw7x7f39sfzfhumc6fxyzlgs7vrtfq7hcjmvcrjg3y0rtmqjsvsrp" + ], + "pool_pledge": { + "quantity": 27, "unit": "lovelace" }, - "derivation_path": [ - "30285", - "7437", - "28115", - "27277", - "10674", - "31060", - "3384", - "26188", - "4400", - "23567", - "9692", - "17896", - "16384", - "9703", - "12802", - "17081", - "16179", - "4756", - "6498", - "10569", - "17029", - "9657", - "17599", - "4146", - "25241", - "13207", - "6439", - "11223" - ], - "assets": [] + "pool_cost": { + "quantity": 245, + "unit": "lovelace" + }, + "pool_id": "pool106qufnkzkyw3wg6sl337ys5dez40lzumpkmjfe6r3tsfsuk22u5", + "pool_margin": { + "quantity": 96.63, + "unit": "percent" + } }, { - "address": "", - "id": "3660080d152bca1d0a7b7a7e1be029066677a8706172727ee04d3e521adf5246", - "index": 22775, - "amount": { - "quantity": 234, + "certificate_type": "mir" + }, + { + "certificate_type": "deregister_pool", + "pool_id": "pool1epzfzyx4cfa2ku3v524q0cw3xsemaa4j4ssk9tcutjnekhsj58l", + "retirement_epoch": 10095 + }, + { + "certificate_type": "genesis" + }, + { + "certificate_type": "quit_pool", + "reward_account_path": [ + "19065", + "22879", + "9809", + "7823", + "18402" + ] + }, + { + "certificate_type": "register_pool", + "pool_owners": [ + "ed25519_pk1pv4f2z49xrzweehjy00unl89zs4v5nms4u9lc6en5zjfne8566tsvsznv3", + "ed25519_pk1525aaw4cwahjdhdup75whqxe6tzt9gx0nk9fyj49gtg69smx6fcszkt2pm", + "ed25519_pk187yntextz2ny4gswwncp46467fdcnrslva4zt94v9u40t8k56chsn7awws", + "ed25519_pk14gwlntnvhag803umumsn354nlkunutq3z9ev2n5taavgqwg0y5pqv73dsg", + "ed25519_pk1gtdfmqtw9f4v5gxupz9gt9ea48v0hhqlpfruaw67rcx885chmnxs0war4f", + "ed25519_pk1tf3k2wnj9q0wgm80lzjxv7x5zq3lfxvg2nc599g0ztxk58xn67ksn78jn7", + "ed25519_pk10a8gqfqws8hpvpg5yc6gaqzppn3mjn8v4u4fx32g7f7sjptvrw9sk6ntt2", + "ed25519_pk1twldy4lkgca9ykew585f34xa768n55stly82f0j9gd34ezevry7svrug2n", + "ed25519_pk1yxephzgj9u4ym0p5xw5c9zkm0fxkdzl6x4sse7st67f4kmhgldlsw62res", + "ed25519_pk1dk2nk99frc09t99dvagexypn6j6myv40qjynw8f5l229lzzw860svwd05a", + "ed25519_pk1ra4mdgfz9rjy0gsqksd7l8gyy9t2f0xs3rxyzrnekql0cmdljrdqftwxwa" + ], + "pool_pledge": { + "quantity": 56, "unit": "lovelace" }, - "derivation_path": [ - "7204", - "604", - "9974", - "25362", - "17274", - "1553", - "26033", - "14959", - "10095", - "3463", - "16053", - "948", - "5575", - "25505", - "21307", - "24847", - "19081", - "25421", - "4803", - "552", - "16313", - "17583" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "pool_cost": { + "quantity": 27, + "unit": "lovelace" + }, + "pool_id": "pool1kjag42e5ljgp3a25xc25agyvetztnqj7j9t9ezvjsfctq62q98a", + "pool_margin": { + "quantity": 18.49, + "unit": "percent" + } + } + ], + "deposits_returned": [ + { + "quantity": 74, + "unit": "lovelace" }, { - "id": "7275120a5f74d20259295360416b1c0b1a72473e1b0e5f0c469eab5507272b39", - "index": 0 + "quantity": 43, + "unit": "lovelace" }, { - "id": "1f15206505431870141f029d643724271b5d1d19c0623a177f3c1644103a750f", - "index": 1 + "quantity": 68, + "unit": "lovelace" }, { - "id": "6c41395f650c1407052c6e3a741969130bbe787607766b2e7e2e4a464c1e4741", - "index": 0 + "quantity": 144, + "unit": "lovelace" }, { - "id": "3d7d0c1d4775461f9808541103bfd46719521f0b534a02f80f797676b6536621", - "index": 0 + "quantity": 128, + "unit": "lovelace" + }, + { + "quantity": 78, + "unit": "lovelace" + }, + { + "quantity": 7, + "unit": "lovelace" + }, + { + "quantity": 120, + "unit": "lovelace" } ], - "collateral_outputs": [ - { - "address": "", - "amount": { - "quantity": 34, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 54, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 42, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 52, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, + "metadata": { + "13": { + "map": [ { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "k": { + "string": "衱𣸨󰌑" + }, + "v": { + "bytes": "ed26733323567063676d51061a60860f16293e48487161" + } } ] } - ], - "outputs": [ + }, + "collateral": [ { "address": "", + "id": "5b4b8e756d3169850905547ee407fb7a003830275e655506f47440461d541782", + "index": 11312, "amount": { - "quantity": 23, + "quantity": 70, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "derivation_path": [ + "7010", + "21829", + "19781", + "13083", + "11154", + "27556", + "6990", + "23176", + "22238", + "272", + "15572", + "20234", + "19701", + "20679", + "8114", + "13314", + "5157", + "15431", + "19742", + "27243", + "151", + "28259" + ], + "assets": [] + }, + { + "id": "768e66840c3c2c2424a0563670750e58250aa923262332eacb544b6d6031697f", + "index": 1 + }, + { + "id": "f9e52d4b0276e785721a034a095344211e1f4d172424234f3bb0793a3f691916", + "index": 1 + }, + { + "id": "0c300a5515365ec47a484724026aab2b496d752f6c711e6076de76d147780722", + "index": 1 + }, + { + "id": "707d551c6005507c56006e6d3853532cec2c137de668767838186b543917602f", + "index": 1 }, { "address": "", + "id": "0d5a11227d19c147196f43786c44694a3f7b06747d0a3c5ce26d3d08021a5bb3", + "index": 9507, "amount": { - "quantity": 243, - "unit": "lovelace" - }, - "derivation_path": [ - "15581", - "5540", - "28763", - "9497", - "8402", - "13702", - "13310", - "13268", - "30436", - "2490", - "30897", - "15223", - "14887", - "31317", - "27082", - "3670", - "5568", - "13185", - "11446", - "10366", - "20788", - "22679", - "8818", - "5311" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] + "quantity": 88, + "unit": "lovelace" + }, + "derivation_path": [ + "17511", + "2740", + "20523", + "927", + "4367", + "17767", + "10934", + "26502", + "11889", + "4788", + "10705", + "20273", + "10147", + "20500", + "9781", + "6014" + ], + "assets": [] + }, + { + "id": "685bd61e070b524f662949480d67542d401a3c0a5d19302e4e086fe4231c7c3b", + "index": 1 }, { "address": "", + "id": "5d3f792d8803d7890237140a083b7b08566015530f6e0c16535a674f2a19f637", + "index": 25099, "amount": { - "quantity": 135, + "quantity": 121, "unit": "lovelace" }, + "derivation_path": [ + "17657", + "6444", + "6981", + "14044", + "20613", + "3366", + "21136", + "12660", + "30243", + "7852", + "12320", + "22452", + "24354", + "26521", + "24093", + "10721", + "25311" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 6, + "asset_name": "546f6b656e42", + "quantity": 15, "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - ], - "script_validity": "valid", - "id": "4943597a5621416e387d671418195904790a4ba75c911b073e60061f3e480b7f", - "deposits_taken": [], - "burn": { - "tokens": [ - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1jev4g6vmuhgf99jv83kaat6wmvgwg985x0dk9u2lyk7pcewz6js", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "965954699be5d092964c3c6ddeaf4edb10e414f433db62f15f25bc1c", - "assets": [ - { - "fingerprint": "asset1msfp7r4eywudhpjatkrc3hdwzt7he0fj056y85", - "asset_name": "546f6b656e4b", - "quantity": 8670 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1jldfu8swnllmtmtfvuexy3yypdyvputhtjqvd40hgkdy5cex5ut", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" - }, - "policy_id": "97da9e1e0e9fffb5ed6967326244840b48c0f1775c80c6d5f7459a4a", - "assets": [ - { - "fingerprint": "asset1hmcr2afcj6t7dnmcfn7llpe708mxak86ypz23f", - "asset_name": "546f6b656e41", - "quantity": 3983 - }, - { - "fingerprint": "asset1ghlgfxtm3r5qq5cmy2v985wt3skavf7x9v8zr2", - "asset_name": "546f6b656e4a", - "quantity": 9158 - }, - { - "fingerprint": "asset1hjxv5mfr09twr5v2jt0kgxgt8fstpc0sfkrtjc", - "asset_name": "546f6b656e4a", - "quantity": 4293 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh1lqu8e0lmqg0ren35mtl4m2vscjlnn0yws3rwlwcdqqcvwvg96zj", - "script_type": "native" - }, - "policy_id": "f8387cbffb021e3cce34daff5da990c4bf39bc8e8446efbb0d0030c7", - "assets": [ - { - "fingerprint": "asset1qhyp8hz2lxg0y8aanq853k3jmgdtjct26tythx", - "asset_name": "546f6b656e54", - "quantity": 4624 - }, - { - "fingerprint": "asset1xs5dh589cjwqq6fcstzvmjr4ql40jv9z3van5t", - "asset_name": "546f6b656e4a", - "quantity": 8963 - }, - { - "fingerprint": "asset1hy74cnmx98gc3mxa5ld0s00rvntagda52d90me", - "asset_name": "546f6b656e55", - "quantity": 3773 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "2ee3e922e178c2ef991433af9b2b36c7a15710dfe26ba7e37b8efab1", - "assets": [ - { - "fingerprint": "asset1ak6lx2vhfdsfn2zwj0kdcjv46f9rxp665g3cfv", - "asset_name": "546f6b656e44", - "quantity": 2277 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "85d086df0bb8833cae800063e8e45dd4a969882450e4ed9fdc8d0756", - "assets": [ - { - "fingerprint": "asset1nw5csy7yq85d9gg04fev9affdw80rcg74aec69", - "asset_name": "546f6b656e5a", - "quantity": 1218 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" - }, - "policy_id": "15df69547b8f6836b4db841916ed18f35adfc1581a35c4345afda075", - "assets": [ - { - "fingerprint": "asset1nj72huespwvp4vt0lp28vlwmxv4y5kfxrmplck", - "asset_name": "546f6b656e4c", - "quantity": 3420 - }, - { - "fingerprint": "asset1v6c8kmq4dpxt4vjmt5kydk9prpumgpfhyp6nds", - "asset_name": "546f6b656e4c", - "quantity": 4989 - }, - { - "fingerprint": "asset16s425z8hh0qmd78md0y6r6g6geutrhgt2m2z6a", - "asset_name": "546f6b656e51", - "quantity": 5321 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1jr9f7n3yldz3pprat4hzcndwawgq82uvgacyd5ldzxvpj0y3fl3", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "90ca9f4e24fb4510847d5d6e2c4daeeb9003ab8c477046d3ed119819", - "assets": [ - { - "fingerprint": "asset15gd7efq7atcpckxss27kjfup3q03psz86awqpr", - "asset_name": "546f6b656e42", - "quantity": 8471 - }, - { - "fingerprint": "asset1a559sl3ag99qttcqxej0vaz0nrm8fzcpwpd9t5", - "asset_name": "546f6b656e4c", - "quantity": 596 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh17pwfkjwfk8w27qgysxzfn06dhgd35zekyckzpr8fp5lxwr67hu0", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "f05c9b49c9b1dcaf0104818499bf4dba1b1a0b36262c208ce90d3e67", - "assets": [ - { - "fingerprint": "asset16wuwr74tcneexhxve8nyw4qjd2adkmnw0gdwly", - "asset_name": "546f6b656e52", - "quantity": 3066 - }, - { - "fingerprint": "asset1u67xtvx0tmvhs4tg9w2jwfyglpfku9dss8wug8", - "asset_name": "546f6b656e51", - "quantity": 7404 - }, - { - "fingerprint": "asset1xc60uwvrntwvt22teszyc23gvshu8xvl9x3l72", - "asset_name": "546f6b656e45", - "quantity": 7432 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1tadh4uhuu52y6hqpntd4v2ks0ej0hds2ts642m5uxz7rwxnhfr7", - { - "active_from": 100 - } - ] - }, - "script_type": "native" - }, - "policy_id": "5f5b7af2fce5144d5c019adb562ad07e64fbb60a5c35556e9c30bc37", - "assets": [ - { - "fingerprint": "asset1a2l8200ckfe3tlzaeuxq78k4acdyrguaguueuz", - "asset_name": "546f6b656e51", - "quantity": 671 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1yymthgyfv3phzulvq53hwdx9e06nsc90lnlmngyvs3qmwnen6hu", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" }, - "policy_id": "2136bba08964437173ec05237734c5cbf53860affcffb9a08c8441b7", - "assets": [ - { - "fingerprint": "asset1yhf375wklelyy7ra5v3lx0dv65y5vumqsqthjr", - "asset_name": "546f6b656e42", - "quantity": 235 - }, - { - "fingerprint": "asset1dj3hnuva5jl0s0syy9nk86253n0pd0jk9vvrnm", - "asset_name": "546f6b656e46", - "quantity": 506 - }, - { - "fingerprint": "asset1wl4vugkgdpvnlpvmx4hjd5szjmgc2rnzz4s03l", - "asset_name": "546f6b656e59", - "quantity": 3828 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh12aa3yjg0g5fmkh9d6em7zrmudv8s3xv8xdcpfrdfcw64c5s9veu", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "577b12490f4513bb5cadd677e10f7c6b0f0899873370148da9c3b55c", - "assets": [ - { - "fingerprint": "asset1ptjxn39y7e6p5y00enhufglr8ady078r0kef08", - "asset_name": "546f6b656e4f", - "quantity": 7762 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "c1babebffef293b434a0fee6dd406db60b42938dece56d2685603963", - "assets": [ - { - "fingerprint": "asset1swhkxedygmt4jmvxmevgz3al95lnfp9fhk20v7", - "asset_name": "546f6b656e59", - "quantity": 8180 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "policy_id": "a6374e3b382eb8424b2b65ce58a75554a2f57ad428a1efd4290d3693", - "assets": [ - { - "fingerprint": "asset1qses8cf3xy0c0j3tyay62jm04au6zm3g2ycrg2", - "asset_name": "546f6b656e56", - "quantity": 5145 - }, - { - "fingerprint": "asset1kejfwg9fresdpmk3x5t2nkphywjm2mhapmyrw6", - "asset_name": "546f6b656e59", - "quantity": 5228 - }, - { - "fingerprint": "asset1yqecnmky0gzc9yrsq4hane0ql5lqsf2q9l3tkk", - "asset_name": "546f6b656e43", - "quantity": 6399 - }, - { - "fingerprint": "asset1x0p7g78jm4uu6cemkvsk7sc82gc2ny243n39f5", - "asset_name": "546f6b656e58", - "quantity": 1136 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "a9cc85a9bd79a4d9412394edd3369ce1a5c1275e4ef9c350929d1173", - "assets": [ - { - "fingerprint": "asset1xhfnxw2vfe9509krzzvte4rfnr0zz9z3m6c4aw", - "asset_name": "546f6b656e49", - "quantity": 748 - }, - { - "fingerprint": "asset1c7w47paud4mkzcl7muste0u03gdz260fejhkxl", - "asset_name": "546f6b656e58", - "quantity": 791 - }, - { - "fingerprint": "asset105v5dch88ynfwf3gux46455u8ph7t332eyjeju", - "asset_name": "546f6b656e54", - "quantity": 3747 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1rve9xm2wfq0hga4era5kpg6935lqcff9sja9afkmm2p574cdaex", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "1b32536d4e481f7476b91f6960a3458d3e0c252584ba5ea6dbda834f", - "assets": [ - { - "fingerprint": "asset16j7kqjdyauxycfql4z2ljka0dsvreh3cufce4c", - "asset_name": "546f6b656e5a", - "quantity": 1230 - }, - { - "fingerprint": "asset1njd80lw6vvppc9ycj0mmlyg2x0ce82fpk42uyg", - "asset_name": "546f6b656e43", - "quantity": 8181 - }, - { - "fingerprint": "asset1qhml9n4hkxmuf335fz2070vndwtpf6pl55zfml", - "asset_name": "546f6b656e4b", - "quantity": 6801 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "policy_id": "3b3860c1e20ffb3ef40738af32b8dc01faad7e6850a172293b9edd6c", - "assets": [ - { - "fingerprint": "asset1kq4usygn66rxyrkv8x4ljdr98kellvl84zzen2", - "asset_name": "546f6b656e5a", - "quantity": 2097 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, - "policy_id": "4df8a96827ea9386f51d6f1a5eefa7c34c296e050b7a70d13331be15", - "assets": [ - { - "fingerprint": "asset1fqfz788j9tyjqccja6mdc2943p0m7z0vmhsswf", - "asset_name": "546f6b656e52", - "quantity": 1110 - } - ] - }, - { - "policy_script": { - "language_version": "v1", - "script_type": "plutus" + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, - "policy_id": "7f228d698b8c70bda69cc0211ab47c637ea6255b348f4b4060e481ba", - "assets": [ - { - "fingerprint": "asset1ygu967suuw9zmpkxrhjqyege3uqturx60eymyy", - "asset_name": "546f6b656e41", - "quantity": 5422 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh12ehvr6gruhfucd0dmy8zj72kw0gele84puka2c5ncdcfywcdx35", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, - "policy_id": "566ec1e903e5d3cc35edd90e29795673d19fe4f50f2dd56293c37092", - "assets": [ - { - "fingerprint": "asset10fr9z2dw5jlxfsfzud0vvqkfjeanxlhlhu4lfk", - "asset_name": "546f6b656e4e", - "quantity": 62 - }, - { - "fingerprint": "asset19jl9jp5j49kj9wyztqhp8c4lkfs2wuch9yhpdk", - "asset_name": "546f6b656e52", - "quantity": 8963 - }, - { - "fingerprint": "asset1jzx780fqpejfn5a4p3mrenjjv25pqtyje37e0k", - "asset_name": "546f6b656e55", - "quantity": 9010 - }, - { - "fingerprint": "asset1dgkd8xv2xkk7s0gq6e8zzvxazth39pfcxpvx36", - "asset_name": "546f6b656e58", - "quantity": 1515 - } - ] + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "1562204428782d506768665372cd6a28507809d05747351c38a5d2fd6e1662a1", + "index": 0 + }, + { + "address": "", + "id": "5a4eae130c16d505234d281681100305da247a74267f7e26367522053c541175", + "index": 26533, + "amount": { + "quantity": 64, + "unit": "lovelace" }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh1hda3wvy86n060k3c4lwvtmnq49p3sgj08njfpfz4r25k7ve2qlu", - { - "active_from": 100 - } - ] - }, - "script_type": "native" + "derivation_path": [ + "14924", + "8213", + "18349", + "30256", + "25639", + "11050", + "70", + "8800" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 44, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "bb7b173087d4dfa7da38afdcc5ee60a94318224f3ce490a4551aa96f", - "assets": [ - { - "fingerprint": "asset10wyx9c6ga3y3wplryryfx5vs5tcffhgr598fly", - "asset_name": "546f6b656e46", - "quantity": 9008 - }, - { - "fingerprint": "asset195mmjmxpc6gl5njl7z9gy2t4re2zq7fwn8ptph", - "asset_name": "546f6b656e52", - "quantity": 8943 - }, - { - "fingerprint": "asset1wxv6agm4v5s56ks4x9jdutrvae5fh5skya2htz", - "asset_name": "546f6b656e44", - "quantity": 8007 - }, - { - "fingerprint": "asset1xjljll8trq3erpap93zypud92g0rm65td5d3vl", - "asset_name": "546f6b656e51", - "quantity": 2536 - } - ] - }, - { - "policy_script": { - "language_version": "v2", - "script_type": "plutus" + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "policy_id": "35e559742fc4beb0be60dedb230b8e7dcbc478834831f9465607a24f", - "assets": [ - { - "fingerprint": "asset19rsatrfr80ypmszzkw44wyzey63hp5d54p755q", - "asset_name": "546f6b656e42", - "quantity": 3093 - }, - { - "fingerprint": "asset1z2ae8x79ffa4dfw4yzkldps2aa4jr2d5amjnum", - "asset_name": "546f6b656e54", - "quantity": 5168 - } - ] - }, - { - "policy_script": { - "script": { - "all": [ - "policy_vkh103kdqasdwx8l8d4r34zf6ews0gykxvqv2kry67fz4a95qv70vdj", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - }, - "script_type": "native" + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "policy_id": "7c6cd0760d718ff3b6a38d449d65d07a0963300c55864d7922af4b40", - "assets": [ - { - "fingerprint": "asset1gtvczjp7hxe00sxqlzkuqd90tshl4mcxu7zx0y", - "asset_name": "546f6b656e59", - "quantity": 907 - }, - { - "fingerprint": "asset1mt9rr0x36g0apgjs4hsg4jgu09ake7ymvgk0rm", - "asset_name": "546f6b656e50", - "quantity": 8191 - } - ] + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "id": "0f09574f0808536e6149617867254b1caf751503377c3bc67966f3b2340a493e", + "index": 1 + }, + { + "id": "583c37045ec93cbf5a4701c32e4d767a4366ce361e19208e076e73170e640956", + "index": 0 + }, + { + "id": "7e2c23481f212b7e5b3270a96672e16e603265b6547c7074332c0c092e7afc7c", + "index": 1 + }, + { + "address": "", + "id": "06232a246b7b241761502c7ffc171ca70127c178461b16460425b58420543979", + "index": 9593, + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "derivation_path": [ + "16778", + "17339", + "25532", + "1798", + "12196", + "11751", + "4059", + "16741", + "1660", + "16957", + "31405", + "29615" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "address": "", + "id": "1b693257216d28504b551c3a490e9b515d1cfcc9cb423a0e7e8e5a53360b692e", + "index": 15323, + "amount": { + "quantity": 129, + "unit": "lovelace" }, + "derivation_path": [ + "489", + "13082", + "29167", + "9777", + "24412", + "30022", + "15622", + "10753", + "3099", + "22939", + "13793", + "6990", + "26622", + "27084", + "4889", + "4799" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "id": "46465b45612d57410e6fb00ed66c2d511252832ba9341e42792c70f90872113f", + "index": 1 + }, + { + "id": "7927526a27ac3d4a2f2c073e5841c369a8412a115613924c3146143c0057614f", + "index": 0 + }, + { + "id": "293e02750b57d67e01b032545a173c0a4e56715423594e670a11123c302f5f77", + "index": 1 + } + ], + "mint": { + "tokens": [ { "policy_script": { - "script": "policy_vkh1elr04yl5d8ku8mqg864dclwlzfj2c5hdg3n3nmnys09twvmm2kv", - "script_type": "native" + "language_version": "v1", + "script_type": "plutus" }, - "policy_id": "cfc6fa93f469edc3ec083eaadc7ddf1264ac52ed446719ee6483cab7", + "policy_id": "50daaa0d1aec634bbfd2da3a44a66e7c88e2dea2b1580141515e67f2", "assets": [ { - "fingerprint": "asset1yhcu6ruxftn7jgyxhrm4w77hc8m0le8uu4w2xt", - "asset_name": "546f6b656e54", - "quantity": 9149 + "fingerprint": "asset1gj3fz3u4v0vvrw8u5akxy6j0s4nxr9q95wqv9q", + "asset_name": "546f6b656e56", + "quantity": 7733 }, { - "fingerprint": "asset1pn5ynyaeruzy3xpalqaq4m7szrq0n2emyrvmje", - "asset_name": "546f6b656e42", - "quantity": 8105 + "fingerprint": "asset1p2mmhv72hedg97y5n4yq5en4shvna7xxnz9cnk", + "asset_name": "546f6b656e55", + "quantity": 6031 }, { - "fingerprint": "asset1a6tztr2vq25nf9ewc0zavjzl0r6dkkme9vv539", - "asset_name": "546f6b656e50", - "quantity": 9137 + "fingerprint": "asset1z5rm7lh4a2m4rq8sxr977z32e3sp0ej0zgcsxk", + "asset_name": "546f6b656e48", + "quantity": 7334 }, { - "fingerprint": "asset19ky88xm8vgjw9pg7l3f3n4mh433jn5688pt5af", - "asset_name": "546f6b656e48", - "quantity": 382 + "fingerprint": "asset1nqm4kv804pqqym6hg08ntn6xfkw4w4ftmmf520", + "asset_name": "546f6b656e55", + "quantity": 176 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "97178738d240a343025d2069147951c68ae639fcc5460a640a1a5018", + "policy_id": "8aec47b571c1c55d9713a99ec802703ff7086239133ac43619c48b9e", "assets": [ { - "fingerprint": "asset1q6gu8d68e3yjnm2dhdwke2vmhnmqprdkj02ftn", - "asset_name": "546f6b656e47", - "quantity": 1087 + "fingerprint": "asset1nkdnz6dswqpzkt0akxkgvryyjgt6k6z3tuvl5a", + "asset_name": "546f6b656e45", + "quantity": 8849 + }, + { + "fingerprint": "asset1hrwn24n7j6m09rrsmuc207fwn6ecy6m8r7jme5", + "asset_name": "546f6b656e48", + "quantity": 2521 } ] }, { "policy_script": { - "language_version": "v2", + "language_version": "v1", "script_type": "plutus" }, - "policy_id": "927a6891d1b2ffaefa4df183ca0785798d225bf3825d0ae925a397fb", + "policy_id": "fd81726cbbc0d9155b4552eb788858fc577d0c815ed604bbf96c0f52", "assets": [ { - "fingerprint": "asset1ezr04lwz7n6tm5azt4xrgdqh5a6skpe0wlmaqu", - "asset_name": "546f6b656e4c", - "quantity": 3022 - }, - { - "fingerprint": "asset1u4adnzc25x89nya7js8uvxdcquaq972qxl07wu", - "asset_name": "546f6b656e43", - "quantity": 6430 + "fingerprint": "asset183sd5ah4avss5x2jpsryqu2szm3j2578qusg23", + "asset_name": "546f6b656e42", + "quantity": 9427 } ] }, @@ -23152,22 +20666,22 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "cc67679415e14f11704fc2bf1119c1354da1e4ecbfdb1a0490e19165", + "policy_id": "f42569eb7e37ac0764f060315f9a1355813bbaee67f88ec95bd11eea", "assets": [ { - "fingerprint": "asset12wwkta4mq8pzy7c9hdxmt5qu6cd6xtzs3rn98x", - "asset_name": "546f6b656e58", - "quantity": 3865 + "fingerprint": "asset1g97uat9d0npupaksapr7rcje4rhtqnt4hcy2em", + "asset_name": "546f6b656e4d", + "quantity": 2600 }, { - "fingerprint": "asset178zp0us5glxgx0tcpec7f9f5vp30yq6rl3200c", - "asset_name": "546f6b656e4c", - "quantity": 9337 + "fingerprint": "asset1hcxkfdpx0c4aga264wqqgskx305syjwyak4lxd", + "asset_name": "546f6b656e49", + "quantity": 9177 }, { - "fingerprint": "asset1hrr36uhcc27kf4tws0gg4094lc3t53r6lypys2", - "asset_name": "546f6b656e4f", - "quantity": 9185 + "fingerprint": "asset14tw7e0nlwhrqsygxlewks8flnmjh0yy322r4el", + "asset_name": "546f6b656e57", + "quantity": 7942 } ] }, @@ -23175,436 +20689,185 @@ "policy_script": { "script": { "all": [ - "policy_vkh1x4r8tucrqfddjp0hq2hxpqap0xt5my6up2h9nur2vlw3vqdlnq6", + "policy_vkh1g394z2fcf2mzaw9enw63lamnxr937yhvfgac069rsdu0u7afaua", { "active_from": 100 }, { "active_until": 150 } - ] - }, - "script_type": "native" - }, - "policy_id": "354675f303025ad905f702ae6083a179974d935c0aae59f06a67dd16", - "assets": [ - { - "fingerprint": "asset19a5xadsdmjj8cuz3pzr6j2w45y92atcafn650v", - "asset_name": "546f6b656e4d", - "quantity": 5396 - }, - { - "fingerprint": "asset1tgg9r07gxq2qvfav2we8sekt5qr60rqcayzjra", - "asset_name": "546f6b656e47", - "quantity": 8670 - }, - { - "fingerprint": "asset1aa5wzyzp0uuef5n2ry9vvwgyvre4nt76jpdsny", - "asset_name": "546f6b656e4d", - "quantity": 108 - } - ] - }, - { - "policy_script": { - "script": "policy_vkh17etqqu68cfsfgj6763aaw0f9cr6m5nrlwujs6s9ns3e4qd4zeya", - "script_type": "native" - }, - "policy_id": "f656007347c260944b5ed47bd73d25c0f5ba4c7f77250d40b3847350", - "assets": [ - { - "fingerprint": "asset10v4hlcmcz9xp36da35ye6sp2v5n3uqduzeert7", - "asset_name": "546f6b656e59", - "quantity": 9209 - }, - { - "fingerprint": "asset1n9fzze0r7400vv48z9va28sx4qduj5dctjhvga", - "asset_name": "546f6b656e4b", - "quantity": 3532 - }, - { - "fingerprint": "asset1nqwmcemkcm73aprzyvawruzrn84ltnexc9rx6k", - "asset_name": "546f6b656e54", - "quantity": 4737 - }, - { - "fingerprint": "asset18szwsnc5rxptuvcw432q84f6pnpcswzezdfkmm", - "asset_name": "546f6b656e4a", - "quantity": 9917 - } - ] - } - ], - "wallet_policy_key_index": "0H", - "wallet_policy_key_hash": "policy_vkh1yzc278sagdcvc6jmw3fnen2jxegq7rjgfy8zw80ldaenwuyqkk6" - }, - "fee": { - "quantity": 67, - "unit": "lovelace" - }, - "certificates": [ - { - "certificate_type": "quit_pool", - "reward_account_path": [ - "171", - "1044", - "3882", - "15502", - "27464" - ] - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk157ef2maslgdqya0n750wqs3zp63qrpazk7spfujgpjrnctma4vvsy4k2sz", - "ed25519_pk1k8csmtkfkvtepkewfe7tzydryplcya404tyntxxs8pyynunxln9q2xxtl4", - "ed25519_pk1z4g5d630ts3pdshe8zww5u48wjdw4a7n3hd5c2xnpa66djwstgnse9p67w", - "ed25519_pk1we22euatngduv06ejq3qucnytakej0mt95ylhxn9p3n6gl55m9rsd8v8jl", - "ed25519_pk1w9dm774p2cxpfq4xfqrrw7r68vlq6zqr439nvah5rqf2zntxtsnqctqdrc", - "ed25519_pk1gdhp87k6ms89q72qkals8vnfyh5hq4z6lse84wmeqqylqh2wezdqz5kxsx", - "ed25519_pk1fz8x3k4hza4yc0n0d3jrwhnppzjphh26da592jh6lmagwhq8kv8sgx0c7x", - "ed25519_pk10nhrqkwtp0r6g5c5shgrgc2x9f9w07cxmgxhtu9lllh282wvtgcqcvqm69", - "ed25519_pk13wpt48j9mua9k9dycfyhv5psagqtsm2zvrtke9jpj45jsedg2rtsh3ctej", - "ed25519_pk1qnej94j8tc38d0v4pk2a2lfg7470ysp2w38hctdgvngvmfa75ngsz65e0l", - "ed25519_pk135y0jl7hdmyk7dgx8sdwz6g78x8e6uwwtllkfpjppzers3ej7qvs2syuh9", - "ed25519_pk1a2k9hcm0v0nj8al9u7ru5jncehw3k0atwj262d0pjy9e4gxthpxqz90nan", - "ed25519_pk17u8ucsahqe2fgpf5255rq8wgt5pzuaa0t0adskqsd6fkkwpa0sgs450e7y", - "ed25519_pk1sae84m9dflxndyw8mjndfpu6qlzk4jw3xzpepvj44lxtnlk4ucasz0cfnv", - "ed25519_pk1rf4s8s4ae6mzpv7uzh0r4xem8462dftwwedajqhfns7e9ycc6nfssymthh", - "ed25519_pk1494ka6f89ak5es52uxukga230vvscsyet4ny4cgy9wlfp8t0l40q96q4ac", - "ed25519_pk19s3d6t9peeyfx9ypv5vdkpzkwa0f42l8em64c79dljn0dgay5yysstqmsm", - "ed25519_pk10835mz88m8glcxhj99jdzz35umxhk2p3p88vk0mu5kwfv0xmau2qmhxnn2", - "ed25519_pk1mwzdqp0qpzw68q7h2sanz6wlmh0c5p2nm6f22xthdf9quksjy39sx8v6ka", - "ed25519_pk18ax4eq8hxr8cy0wt9wwj5e52dv690l42yecvt9ekry46py9ak9pqcejl64", - "ed25519_pk1l3ktjvlntq5c2jpem7amf32xzjdeujvpc7twxd898q603cpwg9ss538em6", - "ed25519_pk10a09mzm3g8mq2sszklu56zysc9dx82jl424309j2v79j6axxethq0qfhgu", - "ed25519_pk14fmwfe47gq97c7pufafyq5njmae48lzf83w5ce5lv0yazqejv6cqtruxfx", - "ed25519_pk1nzct5y6a8nf82f36kgyvn8atk3q0x5c0fyw3gje467d4m4tryucq7gj29j", - "ed25519_pk1lqcj09k5hug9phn4huz6mpcff8anqfq94hp46pxqpj6krhmjg7rs4utpll", - "ed25519_pk13sahfc3d687hzfxpqdpjqd39c8rf8869zyxxdju7dht6zkd73unsu6uc64", - "ed25519_pk15t8jghjtd6akwaerltrpu8pr00m2t7j7znlr8vqf0fa3006jnd6qsmqqs9", - "ed25519_pk12pkr4z5ulmwjgjq8cgk2z34qpjgkjcmg469uvaqhmrh0tsr6zg8qug2vl4", - "ed25519_pk13nvvp60jj3srz3fzlwguamcy3a5zuffhqas4my2t4lmhqp5t2acqenqjxm", - "ed25519_pk1cjn5udgw4vt8jmkz6zmjgaat880elejf45el7z85yztng3xpwmsqhhf82t" - ], - "pool_pledge": { - "quantity": 21, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 85, - "unit": "lovelace" - }, - "pool_id": "pool1pc6y2nrtrt3a2juuwmvrptk5r75v82e5yhtfgw9vv9wy677lgwf", - "pool_margin": { - "quantity": 44.29, - "unit": "percent" - } - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk12djv96uel38ehlfwkf2v2l4w4xhmsgwuvxnkl3rzglxv952fkc3sap36rh", - "ed25519_pk1hafla00jgh4zgakqt6eph773hf25se9s6ra5x8ddad2u764nrsvq53c3ca", - "ed25519_pk1pcy53emqpe70zyx89ge32yfyvkc72mtcndm9nrwdrmd8aw3dfwxshuvddr", - "ed25519_pk108dgv3wfqmdx7pufh9f2pwlsdpyhkk4sjk6qz4r3vwyrsfzqw3jsfrqx7p", - "ed25519_pk1kqyreqek45tymeuvqt89thv884dj8zsada68jutwm664qxa4xfnqpd7trt", - "ed25519_pk1pf5uw6a5p79cwxkyyctfgfp7ycj72aljqcauxu8kan3et57gkmxs7uq0ts", - "ed25519_pk1aanwyc0wgfec5p3erefyasr7e82tsj5z26hndxk86h08vmvglrjsgs7wc3", - "ed25519_pk13rx5n88gygrqc5wgl6tkyumehj579ea742jg2jx97n7vj55kunrqjw2w7f", - "ed25519_pk13gqdlgj7gn04tqmlpt3gwymmrkjxp7005vdsnj6fmax0zd6gl5kscmfxht", - "ed25519_pk1mzhcgsredtkqpjcehxlgm55qa5mjve2pa5yedy4ev87rtqmcmgxq8jpfve" - ], - "pool_pledge": { - "quantity": 100, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 233, - "unit": "lovelace" - }, - "pool_id": "pool17jygdcrjwdjkc4lltjj8du5dlemrcgjdhaw2768e0s0kws4c05m", - "pool_margin": { - "quantity": 87.12, - "unit": "percent" - } - }, - { - "certificate_type": "register_reward_account", - "reward_account_path": [ - "2936", - "14997", - "9532", - "1184", - "1434" - ] - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1pq94chuwwrads9pyqyu27e8z3uc3nekd25xf2qve6d0nyn79l0p", - "retirement_epoch": 21267 - }, - { - "certificate_type": "join_pool", - "pool": "pool1nu49skmgsmu9hvf6gxhu6vzwjsvn3m9vgdcyutyw9yjkjw6kqsw", - "reward_account_path": [ - "3466", - "14252", - "10757", - "27860", - "2323" - ] - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1h0wg974g93mcrmmwtgrcfl5ezhpxuxepg4cyrlpkk9wmuaycm5t", - "retirement_epoch": 31622 - }, - { - "certificate_type": "genesis" - }, - { - "certificate_type": "join_pool", - "pool": "pool1nvf8dkvsktkaxgumktesyu9h7den3nqca5geq2ftde9zu3kzxhh", - "reward_account_path": [ - "31806", - "28218", - "30082", - "30598", - "17368" - ] - }, - { - "certificate_type": "register_pool", - "pool_owners": [ - "ed25519_pk1fprkwxyy4kc7yt32t4hzqkdcr8pdu8tlzt2k9az75wv9klxnrljsugv0dy", - "ed25519_pk1knyn6w0rcllnfn5ae4zmgmnzwey7w3m8rqn4grzfj6fk4ex092jsksexfq", - "ed25519_pk1w6eeh3jcawmnep7u6wumpt2gvpv3r75tqkcl79ryr6zthpqty7hqpm4zy9", - "ed25519_pk1uxupfncz44fkvrgdkwk6fadt574cpd2cg9nc2v635quahwcswehs6frv4v", - "ed25519_pk1n02cz8q4m2kz34azytgnyp8ymftv0lfm3w2lex3srj8zgssaqy6sd0lllg", - "ed25519_pk1v94wm945fszna2rp4xjuc2emq4ajpp6cty9ekr235pfkjvxptzpqe70uh6", - "ed25519_pk13hlnup0mt5r5hqwfjcey68wdc0mvlwv0qak748jqdw4msrkrufyq6nwx2r", - "ed25519_pk16kz8x4w78gyrpgg7kf3xkrmh0tlugac6scejxf2m069anw38mtasx7sxsf", - "ed25519_pk150r60de9r8nqd6atjgl3j55swfwktnfmrhgv775p6gkgpp3v92usxmd975", - "ed25519_pk1z06mxt7j69crr7z0y46l4xzmv4zcf2d5acq3ttxd3n42xscml9jq6plngt", - "ed25519_pk1c7tvw3zl7je8hserefpmshr5vecfzvxcqfmgxrv439nmh805ckws53hftz", - "ed25519_pk1dstxaj2zfds5z04v3awp3shjlufnfn7mdhpheq8wp2sm45ckwtyqthcdf5", - "ed25519_pk1084pt438vcjrc2jkkel9vtazxdqel9dack2mj9flv39dtv8fg25qwa2c3k", - "ed25519_pk1648dtyj0w26pq6cj49saghsn9lze5z6uqwnd2uyxrkcvz90avrtq7m986p", - "ed25519_pk1h4w8karkzs0kpuwc7fhnexar76la37r0e8yy7wh0nyn3xvfjdkkq4gr5rq", - "ed25519_pk1ryrlslcjwj4anxuag869hm0xd8j6d3yqm4v3z22e6tj66ckhw2dsp4hd87", - "ed25519_pk182n6rr49yzv4k70nku6u2c7c20q2q8nz8czke49t7cvlhqluf7jse33szc", - "ed25519_pk1hc2k8xsvzy962yw5wyc8waxy4mkvea447py3ntvhw4sx7m43f7jsg4y872", - "ed25519_pk1gqakfhnj8pwumkcv60ev0hmpu8tj33dul02tk6xr56mqvjg3njlscad63w", - "ed25519_pk1z03ls3hrr7rpmjn5m0a4qamvyp2r76f8leqv708amdes9jr5ddssv4zs5g", - "ed25519_pk15mjtnlc5t4xkwzvuxc6sessng574f5262826unl4dwvrf3umsa0szkk6ye", - "ed25519_pk1w9q3gq9f97vj8ryz63yjumppmcwz6zh69qev9t7ksesps2tmgqvsurp7n2" - ], - "pool_pledge": { - "quantity": 32, - "unit": "lovelace" - }, - "pool_cost": { - "quantity": 237, - "unit": "lovelace" - }, - "pool_id": "pool16tka3hynjway629dmeydev0juxyavkd6lzmg6grunzprygzehqz", - "pool_margin": { - "quantity": 87.97, - "unit": "percent" - } - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1anmk60cd3cwamc5d0vgahept7gx73l2m2dw82xy7tzzpzew2dnl", - "retirement_epoch": 789 - }, - { - "certificate_type": "deregister_pool", - "pool_id": "pool1fscxtmpwcs2guxxpdxjlhpvda398axlacfcvdf8c59v8q99fzrx", - "retirement_epoch": 1805 - } - ], - "deposits_returned": [ - { - "quantity": 85, - "unit": "lovelace" - }, - { - "quantity": 218, - "unit": "lovelace" - }, - { - "quantity": 31, - "unit": "lovelace" - }, - { - "quantity": 192, - "unit": "lovelace" - }, - { - "quantity": 136, - "unit": "lovelace" - }, - { - "quantity": 232, - "unit": "lovelace" - }, - { - "quantity": 217, - "unit": "lovelace" - } - ], - "metadata": null, - "collateral": [ - { - "address": "", - "id": "006b39684b57792744024f7a711c05597a68514650c94c2de615542a62085923", - "index": 26528, - "amount": { - "quantity": 217, - "unit": "lovelace" - }, - "derivation_path": [ - "30746", - "23500", - "2334", - "32230", - "890", - "26680" - ], - "assets": [] - }, - { - "address": "", - "id": "74114c130475350e615f4525a0362752687e355373cb7474755d5c133e3f6e22", - "index": 2051, - "amount": { - "quantity": 36, - "unit": "lovelace" - }, - "derivation_path": [ - "18722", - "3597", - "14978", - "22420", - "30016", - "9552", - "21183", - "18090", - "32086", - "15103", - "7580", - "19637", - "23895", - "17901", - "9641", - "31498", - "14151", - "10215", - "5476", - "5054", - "5159", - "2307", - "10388", - "20589", - "28647", - "8272", - "12089", - "8003", - "2682" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "id": "2b6e573e57246c23477d371b4d70385c5f107c955e44239600577e3924247d0e", - "index": 1 - }, - { - "address": "", - "id": "3537570e5a6a244879127471c177a1c74a535d6d547144b60165457736451b06", - "index": 4306, - "amount": { - "quantity": 124, - "unit": "lovelace" + ] + }, + "script_type": "native" + }, + "policy_id": "444b5129384ab62eb8b99bb51ff77330cb1f12ec4a3b87e8a38378fe", + "assets": [ + { + "fingerprint": "asset1x6ht40gchxu3ea0j5nws9zzyfgw6kvsv6dks27", + "asset_name": "546f6b656e4d", + "quantity": 9575 + }, + { + "fingerprint": "asset1ffpkxad8vd4qxnwf9vunytyhuxhepk0acnlk2h", + "asset_name": "546f6b656e47", + "quantity": 8921 + }, + { + "fingerprint": "asset1xj5ewkrffzuvygfk7ph64n6qpec508lf506nt7", + "asset_name": "546f6b656e4f", + "quantity": 8001 + } + ] }, - "derivation_path": [ - "32320", - "24539", - "21951", - "8895", - "10698", - "9972", - "28808", - "2677", - "14177", - "17117", - "11642", - "20317", - "26958", - "11118", - "31560", - "13038", - "1215", - "16296", - "14916", - "20797", - "29635", - "30243", - "6910", - "22035", - "5452", - "14400" - ], - "assets": [] - }, - { - "id": "45313184157c1db7434d25520a635a362013050f57872331000c1baa747b1858", - "index": 1 - }, - { - "id": "00486e4b434342092f7e601b4874516c1f6569246027006340362e6f38783b1c", - "index": 1 - }, - { - "id": "29451a2962125f222c0956441d421731893e8572726d792d1e39ed0b3b581400", - "index": 1 - } - ], - "mint": { - "tokens": [ { "policy_script": { "language_version": "v1", "script_type": "plutus" }, - "policy_id": "60a54a1a43eda475f48f394d361783280fc9c48b267a64b819aa50eb", + "policy_id": "bd94705ab4b675525bbcde8c3e277bde1d187e65e16fb6d47279ad0f", + "assets": [ + { + "fingerprint": "asset1s4mrta0gp3my97hr3hlqjeg5k6kk9e3r8zcf49", + "asset_name": "546f6b656e52", + "quantity": 6407 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1dkg6dz49t4yxmqspfzfzzn356d54tph2p82xnm7w3vu2y6vvmcg", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "6d91a68aa55d486d82014892214e34d3695586ea09d469efce8b38a2", + "assets": [ + { + "fingerprint": "asset15rvutn3kwk6wpfeku6e8840pmrtact6t2gvsw5", + "asset_name": "546f6b656e4c", + "quantity": 978 + }, + { + "fingerprint": "asset1e85wznlgtvaw97vgmt3udg320zqfku0xqye424", + "asset_name": "546f6b656e4f", + "quantity": 1724 + }, + { + "fingerprint": "asset1aj4qr5wr756xr6p82f39zpzyk3kg4s7vcxjzr4", + "asset_name": "546f6b656e49", + "quantity": 7166 + }, + { + "fingerprint": "asset1nw2cv744l2zc5zap4c04fmvwq369awsjueztaa", + "asset_name": "546f6b656e4e", + "quantity": 2279 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1c8eqrh3sp7s703yuujw3hruseh0uwjle5fw99fv978jskwh7n6q", + "script_type": "native" + }, + "policy_id": "c1f201de300fa1e7c49ce49d1b8f90cddfc74bf9a25c52a585f1e50b", + "assets": [ + { + "fingerprint": "asset152cpvtga3eejg29mge7ecsqecxkguw0k2pcr5w", + "asset_name": "546f6b656e4b", + "quantity": 6193 + }, + { + "fingerprint": "asset1aqgv87x8ghp493zu08j3mh9qfkqu7nn0aqaenr", + "asset_name": "546f6b656e47", + "quantity": 1863 + }, + { + "fingerprint": "asset12jp9f6edmxtev0fuk2qjgddh9f6n6u93rl04z0", + "asset_name": "546f6b656e54", + "quantity": 8151 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh14su38svem8uw0qlxh4td7aq24p6hh6pdk3au84xu8rld763duec", + { + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "ac3913c199d9f8e783e6bd56df740aa8757be82db47bc3d4dc38fedf", "assets": [ { - "fingerprint": "asset1l8dnd04xsfvx7ertw9dy78m5uzdgax0gdzej8h", + "fingerprint": "asset1wek43xk2d8skx6k0v2u0kdk2vg605dm3lv3pke", "asset_name": "546f6b656e41", - "quantity": 4541 + "quantity": 6114 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "3b8820880378fad1356bf72f48b6923ae6d4d2267b95e5b40e7d7a3a", + "assets": [ + { + "fingerprint": "asset1x8pgf3wq3f724mzlqwfgn2k3u3wvh8y0y3m6yq", + "asset_name": "546f6b656e57", + "quantity": 6425 }, { - "fingerprint": "asset1zqfwwakc0flcr07sc6x0t9pghuptrs0w75e65t", - "asset_name": "546f6b656e53", - "quantity": 2459 + "fingerprint": "asset1lyrt3r9acvxnr4ss23tmwaqneu42dedm63gmlr", + "asset_name": "546f6b656e51", + "quantity": 3159 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh123rdeq0gry62clsfx0vv8u7khpnz53ksteaydqgxg9tvj627npp", + "script_type": "native" + }, + "policy_id": "5446dc81e81934ac7e0933d8c3f3d6b8662a46d05e7a4681064156c9", + "assets": [ + { + "fingerprint": "asset1s2er6n2pektt3cjk78kppnrhhmemtw8nrywsef", + "asset_name": "546f6b656e59", + "quantity": 4537 }, { - "fingerprint": "asset1rnst7qpx2zk3xhu9zecycxvg955yqsuajsxjm6", - "asset_name": "546f6b656e4d", - "quantity": 4634 + "fingerprint": "asset1c6wdcr8wxl65k866ser0ufl792t6nqdrww54yx", + "asset_name": "546f6b656e47", + "quantity": 7392 }, { - "fingerprint": "asset13c9rff7flh4pcfhx0nefaxwngd0mttxu3vxlcf", - "asset_name": "546f6b656e44", - "quantity": 3125 + "fingerprint": "asset12cue7t2vyknwrj99rp4hpl3mdle8qjkkwf05aa", + "asset_name": "546f6b656e46", + "quantity": 2410 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1r89fu3mf7s94vxl7rgtjdg6n6763mr36j60ucqatfj2axn879w3", + "script_type": "native" + }, + "policy_id": "19ca9e4769f40b561bfe1a1726a353d7b51d8e3a969fcc03ab4c95d3", + "assets": [ + { + "fingerprint": "asset17wdu5lfp3rnuj8vrsldzyh43lteqpy6tgyle7x", + "asset_name": "546f6b656e56", + "quantity": 4052 } ] }, @@ -23613,22 +20876,51 @@ "language_version": "v1", "script_type": "plutus" }, - "policy_id": "82a2f6c9b3fc01fb45e9aa1cd52d05b46b183c0cd026655f2f6b4fcf", + "policy_id": "b55e08f1620e5530cb2eb04307bedbd0a6f2af11c7c59d8b7776c0bb", "assets": [ { - "fingerprint": "asset1gad4gate4xpc9m6k9mgx2h6ytwhtex9lukxswt", - "asset_name": "546f6b656e46", - "quantity": 9708 + "fingerprint": "asset1qwwrg4c58katevn4pe7aph5fwmm7nhxjl8lxxc", + "asset_name": "546f6b656e58", + "quantity": 3764 }, { - "fingerprint": "asset1m9q0erq2ulctkhh56w8a7kqpj5v7py8eml2xmw", - "asset_name": "546f6b656e58", - "quantity": 8414 + "fingerprint": "asset1gmtlt4ctaru8e96qpq23ta2efdujlamch2tgtp", + "asset_name": "546f6b656e59", + "quantity": 9944 }, { - "fingerprint": "asset1tt3s4fk7huetzjqcdsxjrkva3ejksayndmf82q", - "asset_name": "546f6b656e56", - "quantity": 2 + "fingerprint": "asset153r8hu7l5mdvkkkvfuvsngzs5hs6h2exqg9u6h", + "asset_name": "546f6b656e55", + "quantity": 2204 + } + ] + }, + { + "policy_script": { + "script": "policy_vkh1uf4507v3use3y9t2j5yeu4x8tgsac3agdfd373t3up3jk9f6xv5", + "script_type": "native" + }, + "policy_id": "e26b47f991e43312156a95099e54c75a21dc47a86a5b1f4571e0632b", + "assets": [ + { + "fingerprint": "asset1uw0vdv8clagr7efc0hnesj38ywlf9xvppshn6z", + "asset_name": "546f6b656e5a", + "quantity": 503 + }, + { + "fingerprint": "asset16zzjwgtzxkrdqzlg0hgm4ercad4nrxhj05scut", + "asset_name": "546f6b656e50", + "quantity": 1720 + }, + { + "fingerprint": "asset1xff0pn04m36tddzrq78w2fz7hs9qkqhdv0wemh", + "asset_name": "546f6b656e53", + "quantity": 2388 + }, + { + "fingerprint": "asset12h6wun7z5dg7wd3rcjyx8ml99fmrzfvlsehgy4", + "asset_name": "546f6b656e53", + "quantity": 746 } ] }, @@ -23636,38 +20928,111 @@ "policy_script": { "script": { "all": [ - "policy_vkh1e8ypwkqvd6nmhht8g7xxkww7gevt4cpf8a2749humsewg54zd6n", + "policy_vkh1a67pwd47fyxc0zkezfxej834w8ujnjvjtq96yhcpfv2l2qlagrv", { "active_from": 100 - }, + } + ] + }, + "script_type": "native" + }, + "policy_id": "eebc1736be490d878ad9124d991e3571f929c992580ba25f014b15f5", + "assets": [ + { + "fingerprint": "asset1nqsdq8lm448wv2mcwwjc3srptphtxcxjkgrmrt", + "asset_name": "546f6b656e57", + "quantity": 2155 + }, + { + "fingerprint": "asset1fj2y5rkzavy2jywuwezy09x7slqmgzc68v7v7h", + "asset_name": "546f6b656e59", + "quantity": 9146 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh1t80tdamaqr0r70gq5qj6c75sy95mjdn0g25szder66a9u5g6sv7", { - "active_until": 150 + "active_from": 100 + } + ] + }, + "script_type": "native" + }, + "policy_id": "59deb6f77d00de3f3d00a025ac7a902169b9366f42a9013723d6ba5e", + "assets": [ + { + "fingerprint": "asset1qdazzvp7qklczx39sd7rl23af2yzy0zz3dcx95", + "asset_name": "546f6b656e47", + "quantity": 7888 + }, + { + "fingerprint": "asset13cskc4hhm5hrvutmcv43wn78j9hx309axd25m8", + "asset_name": "546f6b656e48", + "quantity": 6541 + }, + { + "fingerprint": "asset1s4jrxxwmakv3y2sszwz6pde4armc96sh663d7c", + "asset_name": "546f6b656e4e", + "quantity": 5185 + }, + { + "fingerprint": "asset19fj4r9jh6mx4mef0rdhu5arku50f53cv56mmvh", + "asset_name": "546f6b656e54", + "quantity": 1376 + } + ] + }, + { + "policy_script": { + "script": { + "all": [ + "policy_vkh15ltwsdsfs2m3l85cwek8frne5y7uc5s6r4ykle3j0df8xk00het", + { + "active_from": 100 } ] }, "script_type": "native" }, - "policy_id": "c9c817580c6ea7bbdd67478c6b39de4658bae0293f55ea96fcdc32e4", + "policy_id": "a7d6e8360982b71f9e98766c748e79a13dcc521a1d496fe6327b5273", "assets": [ { - "fingerprint": "asset1kw0w8k5wrzejzqnfml53hx04ley82kypv8kn5h", + "fingerprint": "asset13xhhu5qrlga8hgqyucwv79s88uqxkq2pvf4aep", "asset_name": "546f6b656e50", - "quantity": 5417 + "quantity": 9349 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "45dfefd274dc18640ba0af09c50758a944a9719abb873ac470950cc9", + "assets": [ + { + "fingerprint": "asset1vpl6awk0twpteyshgavpe2fu978gx9sw3jaq6m", + "asset_name": "546f6b656e46", + "quantity": 8066 }, { - "fingerprint": "asset1jjzq06un8uy3j3hjtzvlsmuejflceqd63gdll4", - "asset_name": "546f6b656e58", - "quantity": 7445 + "fingerprint": "asset1n86hcvqstxw08arjhvqmcfe4jxuqhr62prmcrm", + "asset_name": "546f6b656e42", + "quantity": 3407 }, { - "fingerprint": "asset12rl970q3kgrykhaaqcwl0w3me465jxhwdu67qw", - "asset_name": "546f6b656e55", - "quantity": 1106 + "fingerprint": "asset124lyaxf7qncrzetdu6zre2759np4xqj58yr544", + "asset_name": "546f6b656e5a", + "quantity": 9727 }, { - "fingerprint": "asset1ugrp9sn698shff8r5xvp8kehfjllpcwmp3as5e", - "asset_name": "546f6b656e44", - "quantity": 495 + "fingerprint": "asset1e6fsy9lg0ycvxndl6es8nwhtx50jp4fsvxrpnl", + "asset_name": "546f6b656e46", + "quantity": 8271 } ] }, @@ -23675,7 +21040,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1tr80ammyn3nn2ysyrjuvsx36a9nlxphuunmvh5d43rgl58fwsd3", + "policy_vkh18ax44h6nyy7usrjsthmw9yxy9558gj2n9mf9rtm59qgzztedu9e", { "active_from": 100 }, @@ -23686,17 +21051,31 @@ }, "script_type": "native" }, - "policy_id": "58cefeef649c673512041cb8c81a3ae967f306fce4f6cbd1b588d1fa", + "policy_id": "3f4d5adf53213dc80e505df6e290c42d287449532ed251af74281021", "assets": [ { - "fingerprint": "asset12hacxlgj9x6rzruhtrvv2p0d9r2hrumgnevkvm", - "asset_name": "546f6b656e46", - "quantity": 8359 + "fingerprint": "asset1jf4xt49maqtjymvrdxtp4xqh2g506t3n9w0qee", + "asset_name": "546f6b656e52", + "quantity": 6884 + } + ] + }, + { + "policy_script": { + "language_version": "v2", + "script_type": "plutus" + }, + "policy_id": "4cf5941f66504859780d1b15d06ec4986f016cb54cf6d05803cb34f0", + "assets": [ + { + "fingerprint": "asset1w57gs0ywth9xa4ufvrdusupxy8tt584puq2ftc", + "asset_name": "546f6b656e49", + "quantity": 2406 }, { - "fingerprint": "asset1mff3cn06y4kvsv6tehpqaq0weyhxku4w5qz49k", - "asset_name": "546f6b656e4d", - "quantity": 559 + "fingerprint": "asset1j2txv0wwnykedtr8lchu6penct2a564kz28452", + "asset_name": "546f6b656e57", + "quantity": 4900 } ] }, @@ -23704,7 +21083,7 @@ "policy_script": { "script": { "all": [ - "policy_vkh1wcqjdnlm6a68k7cyrgtgf79zvftwq6yjvmnz94nl5zafzdkrj7l", + "policy_vkh14rmnvlsydau67d9dtae79jnpg2s9l6f8pjl0h9t4gr0pj40mf8c", { "active_from": 100 }, @@ -23715,32 +21094,42 @@ }, "script_type": "native" }, - "policy_id": "760126cffbd7747b7b041a1684f8a26256e0689266e622d67fa0ba91", + "policy_id": "a8f7367e046f79af34ad5f73e2ca6142a05fe9270cbefb957540de19", "assets": [ { - "fingerprint": "asset1a4m5hafrkdsv8fd0e9phv4djlg84cug2mzv9j5", - "asset_name": "546f6b656e54", - "quantity": 554 - }, - { - "fingerprint": "asset1az34sl0pscf78mkfxgec8u0qkwk3v82ww933vx", - "asset_name": "546f6b656e5a", - "quantity": 2209 + "fingerprint": "asset1fneephqu6a2sjgtpw8euu6z3dncshyytvljzrl", + "asset_name": "546f6b656e50", + "quantity": 4195 }, { - "fingerprint": "asset1vpnevj584fldwrsellu0tqrtdvyzmu78mh9h2g", + "fingerprint": "asset14xcctwzamhutrrm9as00vpjycqfkwejz5zqc9e", "asset_name": "546f6b656e43", - "quantity": 9463 + "quantity": 5789 + } + ] + }, + { + "policy_script": { + "language_version": "v1", + "script_type": "plutus" + }, + "policy_id": "33894335afe1783b69f25baac30deea43cd5d0d027d1b7c803814b5b", + "assets": [ + { + "fingerprint": "asset1aqjl6np2v9ecptd8eyh4tq3cw0dc6n4gg7jeja", + "asset_name": "546f6b656e4c", + "quantity": 3276 }, { - "fingerprint": "asset1dyjjxnhnst7ex8ff7qetdvl4grpq5vejq27sam", - "asset_name": "546f6b656e45", - "quantity": 9331 + "fingerprint": "asset12c33c6tj8dhq7nmvmsxr6nkeh4x3clqvjlhqwf", + "asset_name": "546f6b656e4c", + "quantity": 4019 } ] } ], - "wallet_policy_key_index": "0H" + "wallet_policy_key_index": "0H", + "wallet_policy_key_hash": "policy_vkh1yag3d566x4w5xvsmpfcfz5csxver3cp8rdv4c4d7q3c9yds4884" } } ] diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 2f6d32d1717..040f4573391 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -318,7 +318,11 @@ import Cardano.Wallet.Primitive.Types.UTxO import Cardano.Wallet.TokenMetadata ( TokenMetadataError (..) ) import Cardano.Wallet.Transaction - ( AnyScript (..), PlutusScriptInfo (..), PlutusVersion (..) ) + ( AnyScript (..) + , PlutusScriptInfo (..) + , PlutusVersion (..) + , ValidityIntervalExplicit (..) + ) import Cardano.Wallet.Unsafe ( unsafeFromText, unsafeXPrv ) import Control.Lens @@ -433,6 +437,7 @@ import Test.QuickCheck , scale , shrinkIntegral , sized + , suchThat , vector , vectorOf , (.&&.) @@ -1235,6 +1240,8 @@ spec = parallel $ do (x :: ApiDecodedTransaction ('Testnet 0)) , scriptValidity = scriptValidity (x :: ApiDecodedTransaction ('Testnet 0)) + , validityInterval = validityInterval + (x :: ApiDecodedTransaction ('Testnet 0)) } in x' === x .&&. show x' === show x @@ -2255,6 +2262,12 @@ instance Arbitrary (ApiAnyCertificate n) where , OtherCertificate <$> arbitrary ] +instance Arbitrary ValidityIntervalExplicit where + arbitrary = do + slot1 <- arbitrary + slot2 <- arbitrary `suchThat` (> slot1) + pure $ ValidityIntervalExplicit (Quantity slot1) (Quantity slot2) + instance Arbitrary (ApiDecodedTransaction n) where arbitrary = ApiDecodedTransaction <$> arbitrary @@ -2271,6 +2284,7 @@ instance Arbitrary (ApiDecodedTransaction n) where <*> arbitrary <*> arbitrary <*> arbitrary + <*> arbitrary instance Arbitrary StakeAddress where arbitrary = do diff --git a/lib/core/test/unit/Cardano/WalletSpec.hs b/lib/core/test/unit/Cardano/WalletSpec.hs index b94417fb131..18c036c712f 100644 --- a/lib/core/test/unit/Cardano/WalletSpec.hs +++ b/lib/core/test/unit/Cardano/WalletSpec.hs @@ -1399,6 +1399,7 @@ dummyTransactionLayer = TransactionLayer , emptyTokenMapWithScripts , emptyTokenMapWithScripts , [] + , Nothing ) , updateTx = \sealed _update -> pure sealed diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs index 78d84077575..e5bb0911e10 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs @@ -228,6 +228,7 @@ import Cardano.Wallet.Transaction , PlutusScriptInfo (..) , PlutusVersion (..) , TokenMapWithScripts (..) + , ValidityIntervalExplicit (..) , emptyTokenMapWithScripts ) import Cardano.Wallet.Unsafe @@ -269,7 +270,7 @@ import Data.Function import Data.IntCast ( intCast ) import Data.List - ( unzip4 ) + ( unzip5 ) import Data.Map.Strict ( Map ) import Data.Maybe @@ -522,7 +523,7 @@ fromShelleyBlock -> (W.Block, [W.PoolCertificate]) fromShelleyBlock gp blk@(ShelleyBlock (SL.Block _ (SL.TxSeq txs')) _) = let - (txs, certs, _, _) = unzip4 $ map fromShelleyTx $ toList txs' + (txs, certs, _, _, _) = unzip5 $ map fromShelleyTx $ toList txs' certs' = mconcat certs in ( W.Block @@ -539,7 +540,7 @@ fromAllegraBlock -> (W.Block, [W.PoolCertificate]) fromAllegraBlock gp blk@(ShelleyBlock (SL.Block _ (SL.TxSeq txs')) _) = let - (txs, certs, _, _) = unzip4 $ map fromAllegraTx $ toList txs' + (txs, certs, _, _, _) = unzip5 $ map fromAllegraTx $ toList txs' certs' = mconcat certs in ( W.Block @@ -556,7 +557,7 @@ fromMaryBlock -> (W.Block, [W.PoolCertificate]) fromMaryBlock gp blk@(ShelleyBlock (SL.Block _ (SL.TxSeq txs')) _) = let - (txs, certs, _, _) = unzip4 $ map fromMaryTx $ toList txs' + (txs, certs, _, _, _) = unzip5 $ map fromMaryTx $ toList txs' certs' = mconcat certs in ( W.Block @@ -581,7 +582,7 @@ fromAlonzoBlock fromAlonzoBlock gp blk@(ShelleyBlock (SL.Block _ txSeq) _) = let Alonzo.TxSeq txs' = txSeq - (txs, certs, _, _) = unzip4 $ map fromAlonzoValidatedTx $ toList txs' + (txs, certs, _, _, _) = unzip5 $ map fromAlonzoValidatedTx $ toList txs' certs' = mconcat certs in ( W.Block @@ -1343,7 +1344,12 @@ toShelleyCoin (W.Coin c) = SL.Coin $ intCast c fromCardanoTx :: Cardano.Tx era - -> (W.Tx, TokenMapWithScripts, TokenMapWithScripts, [Certificate]) + -> ( W.Tx + , TokenMapWithScripts + , TokenMapWithScripts + , [Certificate] + , Maybe ValidityIntervalExplicit + ) fromCardanoTx = \case Cardano.ShelleyTx era tx -> case era of Cardano.ShelleyBasedEraShelley -> @@ -1359,9 +1365,11 @@ fromCardanoTx = \case , emptyTokenMapWithScripts , emptyTokenMapWithScripts , [] + , Nothing ) where - extract (tx, certs, mint, burn) = (tx, mint, burn, certs) + extract (tx, certs, mint, burn, validity) = + (tx, mint, burn, certs, validity) -- NOTE: For resolved inputs we have to pass in a dummy value of 0. fromShelleyTx @@ -1370,6 +1378,7 @@ fromShelleyTx , [W.Certificate] , TokenMapWithScripts , TokenMapWithScripts + , Maybe ValidityIntervalExplicit ) fromShelleyTx tx = ( W.Tx @@ -1396,6 +1405,7 @@ fromShelleyTx tx = , map fromShelleyCert (toList certs) , emptyTokenMapWithScripts , emptyTokenMapWithScripts + , Nothing ) where SL.Tx bod@(SL.TxBody ins outs certs wdrls fee _ _ _) _ mmd = tx @@ -1406,6 +1416,7 @@ fromAllegraTx , [W.Certificate] , TokenMapWithScripts , TokenMapWithScripts + , Maybe ValidityIntervalExplicit ) fromAllegraTx tx = ( W.Tx @@ -1433,6 +1444,7 @@ fromAllegraTx tx = , map fromShelleyCert (toList certs) , emptyTokenMapWithScripts , emptyTokenMapWithScripts + , Nothing ) where SL.Tx bod@(MA.TxBody ins outs certs wdrls fee _ _ _ _) _ mmd = tx @@ -1448,6 +1460,7 @@ fromMaryTx , [W.Certificate] , TokenMapWithScripts , TokenMapWithScripts + , Maybe ValidityIntervalExplicit ) fromMaryTx tx = ( W.Tx @@ -1474,6 +1487,7 @@ fromMaryTx tx = , map fromShelleyCert (toList certs) , TokenMapWithScripts assetsToMint mintScriptMap , TokenMapWithScripts assetsToBurn burnScriptMap + , Nothing ) where SL.Tx bod wits mad = tx @@ -1542,6 +1556,7 @@ fromAlonzoTxBodyAndAux , [W.Certificate] , TokenMapWithScripts , TokenMapWithScripts + , Maybe ValidityIntervalExplicit ) fromAlonzoTxBodyAndAux bod mad wits = ( W.Tx @@ -1568,6 +1583,7 @@ fromAlonzoTxBodyAndAux bod mad wits = , map fromShelleyCert (toList certs) , TokenMapWithScripts assetsToMint mintScriptMap , TokenMapWithScripts assetsToBurn burnScriptMap + , Nothing ) where Alonzo.TxBody @@ -1622,6 +1638,7 @@ fromAlonzoValidatedTx , [W.Certificate] , TokenMapWithScripts , TokenMapWithScripts + , Maybe ValidityIntervalExplicit ) fromAlonzoValidatedTx (Alonzo.ValidatedTx bod wits _isValidating aux) = fromAlonzoTxBodyAndAux bod aux wits @@ -1632,9 +1649,10 @@ fromAlonzoTx , [W.Certificate] , TokenMapWithScripts , TokenMapWithScripts + , Maybe ValidityIntervalExplicit ) fromAlonzoTx (Alonzo.ValidatedTx bod wits (Alonzo.IsValid isValid) aux) = - (\(tx, c, m, b) -> (tx { W.scriptValidity = validity }, c, m, b)) + (\(tx, c, m, b, i) -> (tx { W.scriptValidity = validity }, c, m, b, i)) $ fromAlonzoTxBodyAndAux bod aux wits where validity = diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index 6dba3842c4d..670db02986b 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -189,6 +189,7 @@ import Cardano.Wallet.Transaction , TxFeeAndChange (..) , TxFeeUpdate (..) , TxUpdate (..) + , ValidityIntervalExplicit , mapTxFeeAndChange , withdrawalToCoin ) @@ -396,7 +397,7 @@ mkTx networkId payload ttl (rewardAcnt, pwdAcnt) addrResolver wdrl cs fees era = let signed = signTransaction networkId acctResolver (const Nothing) addrResolver inputResolver (unsigned, mkExtraWits unsigned) - let withResolvedInputs (tx, _, _, _) = tx + let withResolvedInputs (tx, _, _, _, _) = tx { resolvedInputs = second txOutCoin <$> F.toList (view #inputs cs) } Right ( withResolvedInputs (fromCardanoTx signed) @@ -487,7 +488,7 @@ signTransaction certs = cardanoCertKeysForWitnesses $ Cardano.txCertificates bodyContent mintBurnScripts = - let (_, toMint, toBurn, _) = fromCardanoTx $ + let (_, toMint, toBurn, _, _) = fromCardanoTx $ Cardano.makeSignedTransaction wits body in -- Note that we use 'nub' here because multiple scripts can share @@ -655,7 +656,12 @@ newTransactionLayer networkId = TransactionLayer _decodeSealedTx :: SealedTx - -> (Tx, TokenMapWithScripts, TokenMapWithScripts, [Certificate]) + -> ( Tx + , TokenMapWithScripts + , TokenMapWithScripts + , [Certificate] + , Maybe ValidityIntervalExplicit + ) _decodeSealedTx (cardanoTx -> InAnyCardanoEra _era tx) = fromCardanoTx tx _evaluateTransactionBalance diff --git a/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs b/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs index 4479f7389c3..1116d71a9b9 100644 --- a/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs +++ b/lib/shelley/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs @@ -2216,7 +2216,7 @@ balanceTransactionSpec = do let balance = balanceTransaction' wallet testStdGenSeed let totalOutput tx = - let (wtx, _, _, _) = + let (wtx, _, _, _, _) = decodeTx testTxLayer (sealedTxFromCardano' tx) in F.foldMap (view (#tokens . #coin)) (view #outputs wtx) @@ -3733,12 +3733,12 @@ estimateSignedTxSizeSpec = forAllGoldens goldens f = forM_ goldens $ \x -> Hspec.counterexample (show x) $ f x -fst4 :: (a, b, c, d) -> a -fst4 (a,_,_,_) = a +fst5 :: (a, b, c, d, e) -> a +fst5 (a,_,_,_, _) = a sealedInputs :: SealedTx -> Set TxIn sealedInputs = - Set.fromList . map fst . view #resolvedInputs . fst4 . _decodeSealedTx + Set.fromList . map fst . view #resolvedInputs . fst5 . _decodeSealedTx sealedCollateralInputs :: SealedTx -> Set TxIn @@ -3746,13 +3746,13 @@ sealedCollateralInputs = Set.fromList . map fst . view #resolvedCollateralInputs - . fst4 + . fst5 . _decodeSealedTx sealedOutputs :: SealedTx -> Set TxOut sealedOutputs = - Set.fromList . view #outputs . fst4 . _decodeSealedTx + Set.fromList . view #outputs . fst5 . _decodeSealedTx sealedNumberOfRedeemers :: SealedTx -> Int sealedNumberOfRedeemers sealedTx = @@ -3774,7 +3774,7 @@ sealedNumberOfRedeemers sealedTx = sealedFee :: forall era. Cardano.IsCardanoEra era => Cardano.Tx era -> Maybe Coin sealedFee = - view #fee . fst4 . _decodeSealedTx . sealedTxFromCardano' + view #fee . fst5 . _decodeSealedTx . sealedTxFromCardano' paymentPartialTx :: [TxOut] -> PartialTx Cardano.AlonzoEra paymentPartialTx txouts = PartialTx (Cardano.Tx body []) [] [] diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 61736334633..509cf7c7496 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -2643,6 +2643,15 @@ components: - <<: *otherCertificate title: genesis or MIR certificate + ApiValidityIntervalExplicit: &ApiValidityIntervalExplicit + type: object + required: + - invalid_before + - invalid_hereafter + properties: + invalid_before: *numberOfSlots + invalid_hereafter: *numberOfSlots + ApiDecodedTransaction: &ApiDecodedTransaction type: object required: @@ -2672,6 +2681,7 @@ components: deposits_taken: *deposits deposits_returned: *deposits script_validity: *txScriptValidity + validity_interval: *ApiValidityIntervalExplicit x-txBody: &txBody oneOf: From 7a0fe61b075b09561bd7be1ae454e733f928eb86 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 27 Apr 2022 20:00:25 +0200 Subject: [PATCH 12/31] add support of validity in decodeTx - part 2 add Data.Interval add Data.IntervalSpec revert adding Data.Interval --- .../Scenario/API/Shelley/TransactionsNew.hs | 23 +++++++++++++- lib/core/cardano-wallet-core.cabal | 3 +- .../Cardano/Wallet/Shelley/Compatibility.hs | 30 ++++++++++++++----- 3 files changed, 46 insertions(+), 10 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 923d2ce7e7e..d0f6ef9a2b7 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 @@ -118,7 +118,7 @@ import Cardano.Wallet.Primitive.Types.Tx , sealedTxFromCardanoBody ) import Cardano.Wallet.Transaction - ( AnyScript (..) ) + ( AnyScript (..), ValidityIntervalExplicit (..) ) import Cardano.Wallet.Unsafe ( unsafeFromHex, unsafeMkMnemonic ) import Control.Arrow @@ -1152,10 +1152,31 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do [ expectResponseCode HTTP.status202 ] + let (SlotNo toSlot) = sl + let validityInterval = + ValidityIntervalExplicit (Quantity 0) (Quantity $ toSlot + 10) + + let rTxCBOR = getFromResponse #transaction rTx + let decodePayload1 = Json (toJSON $ ApiSerialisedTransaction rTxCBOR) + rDecodedTx1 <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload1 + verify rDecodedTx1 + [ expectResponseCode HTTP.status202 + , expectField #validityInterval (`shouldBe` Just validityInterval) + ] + let apiTx = getFromResponse #transaction rTx signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] + let decodePayload2 = Json (toJSON signedTx) + rDecodedTx2 <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload2 + verify rDecodedTx2 + [ expectResponseCode HTTP.status202 + , expectField #validityInterval (`shouldBe` Just validityInterval) + ] + submittedTx <- submitTxWithWid ctx wa signedTx verify submittedTx [ expectSuccess diff --git a/lib/core/cardano-wallet-core.cabal b/lib/core/cardano-wallet-core.cabal index b0e964e1662..6258b31baa4 100644 --- a/lib/core/cardano-wallet-core.cabal +++ b/lib/core/cardano-wallet-core.cabal @@ -63,6 +63,7 @@ library , contra-tracer , cryptonite , data-default + , data-interval , dbvar , deepseq , digest @@ -394,7 +395,7 @@ test-suite unit , should-not-typecheck , splitmix , strict-non-empty-containers - , openapi3 == 3.2.2 + , openapi3 == 3.2.2 , servant-openapi3 , string-qq , temporary diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs index e5bb0911e10..d3aff290aae 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs @@ -1405,10 +1405,10 @@ fromShelleyTx tx = , map fromShelleyCert (toList certs) , emptyTokenMapWithScripts , emptyTokenMapWithScripts - , Nothing + , Just (ValidityIntervalExplicit (Quantity 0) (Quantity ttl)) ) where - SL.Tx bod@(SL.TxBody ins outs certs wdrls fee _ _ _) _ mmd = tx + SL.Tx bod@(SL.TxBody ins outs certs wdrls fee (O.SlotNo ttl) _ _) _ mmd = tx fromAllegraTx :: SLAPI.Tx (Cardano.ShelleyLedgerEra AllegraEra) @@ -1444,16 +1444,30 @@ fromAllegraTx tx = , map fromShelleyCert (toList certs) , emptyTokenMapWithScripts , emptyTokenMapWithScripts - , Nothing + , Just (fromLedgerTxValidity ttl) ) where - SL.Tx bod@(MA.TxBody ins outs certs wdrls fee _ _ _ _) _ mmd = tx + SL.Tx bod@(MA.TxBody ins outs certs wdrls fee ttl _ _ _) _ mmd = tx -- fixme: [ADP-525] It is fine for now since we do not look at script -- pre-images. But this is precisely what we want as part of the -- multisig/script balance reporting. toSLMetadata (MA.AuxiliaryData blob _scripts) = SL.Metadata blob +fromLedgerTxValidity + :: MA.ValidityInterval + -> ValidityIntervalExplicit +fromLedgerTxValidity (MA.ValidityInterval from to) = + case (from, to) of + (MA.SNothing, MA.SJust (O.SlotNo s)) -> + ValidityIntervalExplicit (Quantity 0) (Quantity s) + (MA.SNothing, MA.SNothing) -> + ValidityIntervalExplicit (Quantity 0) (Quantity maxBound) + (MA.SJust (O.SlotNo s1), MA.SJust (O.SlotNo s2)) -> + ValidityIntervalExplicit (Quantity s1) (Quantity s2) + (MA.SJust (O.SlotNo s1), MA.SNothing) -> + ValidityIntervalExplicit (Quantity s1) (Quantity maxBound) + fromMaryTx :: SLAPI.Tx (Cardano.ShelleyLedgerEra MaryEra) -> ( W.Tx @@ -1487,11 +1501,11 @@ fromMaryTx tx = , map fromShelleyCert (toList certs) , TokenMapWithScripts assetsToMint mintScriptMap , TokenMapWithScripts assetsToBurn burnScriptMap - , Nothing + , Just (fromLedgerTxValidity ttl) ) where SL.Tx bod wits mad = tx - MA.TxBody ins outs certs wdrls fee _valid _upd _adh mint = bod + MA.TxBody ins outs certs wdrls fee ttl _upd _adh mint = bod (assetsToMint, assetsToBurn) = fromLedgerMintValue mint scriptMap = fromMaryScriptMap $ Shelley.scriptWits wits @@ -1583,7 +1597,7 @@ fromAlonzoTxBodyAndAux bod mad wits = , map fromShelleyCert (toList certs) , TokenMapWithScripts assetsToMint mintScriptMap , TokenMapWithScripts assetsToBurn burnScriptMap - , Nothing + , Just (fromLedgerTxValidity ttl) ) where Alonzo.TxBody @@ -1593,7 +1607,7 @@ fromAlonzoTxBodyAndAux bod mad wits = certs wdrls fee - _valid + ttl _upd _reqSignerHashes mint From 4405d40025ac187df1ce0fd0a5de0456cf2f5da5 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 28 Apr 2022 15:21:10 +0200 Subject: [PATCH 13/31] adding slot interval computation in scripts --- lib/core/cardano-wallet-core.cabal | 1 + .../Primitive/AddressDerivation/MintBurn.hs | 44 +++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/lib/core/cardano-wallet-core.cabal b/lib/core/cardano-wallet-core.cabal index 6258b31baa4..997ffa2176d 100644 --- a/lib/core/cardano-wallet-core.cabal +++ b/lib/core/cardano-wallet-core.cabal @@ -72,6 +72,7 @@ library , errors , exact-combinatorics , exceptions + , extended-reals , extra , fast-logger , file-embed diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index d78b05c3133..84a031ef854 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -29,6 +29,8 @@ module Cardano.Wallet.Primitive.AddressDerivation.MintBurn , policyDerivationPath , toTokenMapAndScript , toTokenPolicyId + , toSlotInterval + , withinSlotInterval ) where import Prelude @@ -67,16 +69,24 @@ import Cardano.Wallet.Primitive.Types.TokenQuantity ( TokenQuantity (..) ) import Cardano.Wallet.Util ( invariant ) +import Data.ExtendedReal + ( Extended (..) ) +import Data.Interval + ( Interval, (<=..<=) ) import Data.List.NonEmpty ( NonEmpty ) import Data.Map.Strict ( Map ) import Data.Maybe ( isJust ) +import Data.Word + ( Word64 ) import Numeric.Natural ( Natural ) import qualified Cardano.Address.Script as CA +import qualified Data.Interval as I +import qualified Data.List as L import qualified Data.List.NonEmpty as NE import qualified Data.Map.Strict as Map @@ -190,3 +200,37 @@ replaceCosigner cosignerMap = \case (Map.lookup c cosignerMap) isJust in hashVerificationKey @key CA.Policy (liftRawKey xpub) + +toSlotInterval + :: Script a + -> [Interval Natural] +toSlotInterval = \case + RequireSignatureOf _ -> + [allSlots] + RequireAllOf xs -> + [I.intersections (concatMap toSlotInterval xs)] + RequireAnyOf xs -> + concatMap toSlotInterval xs + RequireSomeOf _ xs -> + concatMap toSlotInterval xs + ActiveFromSlot s -> + [Finite s <=..<= maxSlot] + ActiveUntilSlot s -> + [minSlot <=..<= Finite s] + where + minSlot = fromIntegral $ minBound @Word64 + maxSlot = fromIntegral $ maxBound @Word64 + allSlots = minSlot <=..<= maxSlot + +-- tx validity interval must be subset of interval from timelock +-- tx validity interval is defined by specifying (from,to) slot interval +withinSlotInterval + :: Natural + -> Natural + -> [Interval Natural] + -> Bool +withinSlotInterval from to = + L.any (txValidityInterval `I.isSubsetOf`) + where + txValidityInterval = + Finite from <=..<= Finite to From 20ff5bf45ccc78f4cd548f22a8a1485cee262d0e Mon Sep 17 00:00:00 2001 From: IOHK Date: Thu, 28 Apr 2022 13:24:05 +0000 Subject: [PATCH 14/31] Regenerate nix --- nix/materialized/stack-nix/cardano-wallet-core.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/materialized/stack-nix/cardano-wallet-core.nix b/nix/materialized/stack-nix/cardano-wallet-core.nix index 4f619b1d43a..7acc45fcaa0 100644 --- a/nix/materialized/stack-nix/cardano-wallet-core.nix +++ b/nix/materialized/stack-nix/cardano-wallet-core.nix @@ -59,6 +59,7 @@ (hsPkgs."contra-tracer" or (errorHandler.buildDepError "contra-tracer")) (hsPkgs."cryptonite" or (errorHandler.buildDepError "cryptonite")) (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."data-interval" or (errorHandler.buildDepError "data-interval")) (hsPkgs."dbvar" or (errorHandler.buildDepError "dbvar")) (hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) (hsPkgs."digest" or (errorHandler.buildDepError "digest")) @@ -67,6 +68,7 @@ (hsPkgs."errors" or (errorHandler.buildDepError "errors")) (hsPkgs."exact-combinatorics" or (errorHandler.buildDepError "exact-combinatorics")) (hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions")) + (hsPkgs."extended-reals" or (errorHandler.buildDepError "extended-reals")) (hsPkgs."extra" or (errorHandler.buildDepError "extra")) (hsPkgs."fast-logger" or (errorHandler.buildDepError "fast-logger")) (hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed")) From 18457284f2fbf7dd43e401153c69f165b8868e3f Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 28 Apr 2022 17:08:34 +0200 Subject: [PATCH 15/31] compare tx validity with timelocks --- lib/core/src/Cardano/Wallet.hs | 1 + lib/core/src/Cardano/Wallet/Api/Server.hs | 16 +++++++++++++++- lib/core/src/Cardano/Wallet/Api/Types.hs | 1 + .../Primitive/AddressDerivation/MintBurn.hs | 10 ++++++---- specifications/api/swagger.yaml | 14 ++++++++++++++ 5 files changed, 37 insertions(+), 5 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 1ec968176f5..a617f2f6511 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -3462,6 +3462,7 @@ data ErrConstructTx | ErrConstructTxAssetNameTooLong | ErrConstructTxMintOrBurnAssetQuantityOutOfBounds | ErrConstructTxWrongValidityBounds + | ErrConstructTxValidityIntervalNotWithinScriptTimelock | ErrConstructTxNotImplemented String -- ^ Temporary error constructor. deriving (Show, Eq) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 3afbe0f323a..5664d18d436 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -375,7 +375,7 @@ import Cardano.Wallet.Primitive.AddressDerivation.Byron import Cardano.Wallet.Primitive.AddressDerivation.Icarus ( IcarusKey ) import Cardano.Wallet.Primitive.AddressDerivation.MintBurn - ( toTokenMapAndScript, toTokenPolicyId ) + ( toTokenMapAndScript, toTokenPolicyId, withinSlotInterval, toSlotInterval ) import Cardano.Wallet.Primitive.AddressDerivation.SharedKey ( SharedKey (..) ) import Cardano.Wallet.Primitive.AddressDerivation.Shelley @@ -2308,6 +2308,14 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do when (hereafter < before || isThereNegativeTime) $ liftHandler $ throwE ErrConstructTxWrongValidityBounds + let notWithinValidityInterval (ApiMintBurnData (ApiT scriptTempl) _ _) = + not $ withinSlotInterval before hereafter $ + toSlotInterval scriptTempl + when + ( isJust mintingBurning' && + L.any notWithinValidityInterval (NE.toList $ fromJust mintingBurning') + ) $ liftHandler $ throwE ErrConstructTxValidityIntervalNotWithinScriptTimelock + (wdrl, _) <- mkRewardAccountBuilder @_ @s @_ @n ctx wid (body ^. #withdrawal) @@ -4393,6 +4401,12 @@ instance IsServerError ErrConstructTx where , "with wrong validity bounds. Please make sure before validity bound " , "is preceding hereafter validity bound, and nonnegative times are used." ] + ErrConstructTxValidityIntervalNotWithinScriptTimelock -> + apiError err403 ValidityIntervalNotInsideScriptTimelock $ mconcat + [ "It looks like I've created a transaction " + , "with validity interval that is not inside script's timelock interval." + , "Please make sure validity interval is subset of script's timelock interval." + ] ErrConstructTxNotImplemented _ -> apiError err501 NotImplemented "This feature is not yet implemented." diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index e74d7b2aa76..a703a364cab 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1713,6 +1713,7 @@ data ApiErrorCode | WalletNotResponding | WithdrawalNotWorth | WrongEncryptionPassphrase + | ValidityIntervalNotInsideScriptTimelock deriving (Eq, Generic, Show, Data, Typeable) deriving anyclass NFData diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index 84a031ef854..94b962d56be 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -59,6 +59,8 @@ import Cardano.Wallet.Primitive.AddressDiscovery ( coinTypeAda ) import Cardano.Wallet.Primitive.Passphrase ( Passphrase (..) ) +import Cardano.Wallet.Primitive.Types + ( SlotNo (..) ) import Cardano.Wallet.Primitive.Types.Hash ( Hash (..) ) import Cardano.Wallet.Primitive.Types.TokenMap @@ -225,12 +227,12 @@ toSlotInterval = \case -- tx validity interval must be subset of interval from timelock -- tx validity interval is defined by specifying (from,to) slot interval withinSlotInterval - :: Natural - -> Natural + :: SlotNo + -> SlotNo -> [Interval Natural] -> Bool -withinSlotInterval from to = +withinSlotInterval (SlotNo from) (SlotNo to) = L.any (txValidityInterval `I.isSubsetOf`) where txValidityInterval = - Finite from <=..<= Finite to + Finite (fromIntegral from) <=..<= Finite (fromIntegral to) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 509cf7c7496..bd3d3549789 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -4152,6 +4152,19 @@ x-errInvalidValidityBounds: &errInvalidValidityBounds type: string enum: ['invalid_validity_bounds'] +x-errValidityIntervalNotInsideScriptTimelock: &errValidityIntervalNotInsideScriptTimelock + <<: *responsesErr + title: validity_interval_not_inside_script_timelock + properties: + message: + type: string + description: + Occurs when upon transaction construction the transaction's validity + interval is not inside the native script's timelock interval. + code: + type: string + enum: ['validity_interval_not_inside_script_timelock'] + x-errInputsDepleted: &errInputsDepleted <<: *responsesErr title: inputs_depleted @@ -5202,6 +5215,7 @@ x-responsesConstructTransaction: &responsesConstructTransaction - <<: *errAssetNameTooLong - <<: *errMintOrBurnAssetQuantityOutOfBounds - <<: *errInvalidValidityBounds + - <<: *errValidityIntervalNotInsideScriptTimelock <<: *responsesErr404WalletNotFound <<: *responsesErr406 <<: *responsesErr415UnsupportedMediaType From bf848b02317abe610d14a68a9f41cd51241ccb2b Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 28 Apr 2022 17:31:40 +0200 Subject: [PATCH 16/31] add integration test showing the interval/timelock case --- .../Test/Integration/Framework/TestData.hs | 8 +++ .../Scenario/API/Shelley/TransactionsNew.hs | 61 ++++++++++++++++++- 2 files changed, 68 insertions(+), 1 deletion(-) diff --git a/lib/core-integration/src/Test/Integration/Framework/TestData.hs b/lib/core-integration/src/Test/Integration/Framework/TestData.hs index 3cbb2a66867..003763b0192 100644 --- a/lib/core-integration/src/Test/Integration/Framework/TestData.hs +++ b/lib/core-integration/src/Test/Integration/Framework/TestData.hs @@ -110,6 +110,7 @@ module Test.Integration.Framework.TestData , errMsg403AssetNameTooLong , errMsg403MintOrBurnAssetQuantityOutOfBounds , errMsg403InvalidValidityBounds + , errMsg403ValidityIntervalNotInsideScriptTimelock ) where import Prelude @@ -708,6 +709,13 @@ errMsg403InvalidValidityBounds = mconcat , "is preceding hereafter validity bound, and nonnegative times are used." ] +errMsg403ValidityIntervalNotInsideScriptTimelock :: String +errMsg403ValidityIntervalNotInsideScriptTimelock = mconcat + [ "It looks like I've created a transaction " + , "with validity interval that is not inside script's timelock interval." + , "Please make sure validity interval is subset of script's timelock interval." + ] + -------------------------------------------------------------------------------- -- Transaction metadata -------------------------------------------------------------------------------- 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 d0f6ef9a2b7..35a6ec57f4a 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 @@ -214,6 +214,7 @@ import Test.Integration.Framework.TestData , errMsg403NonNullReward , errMsg403NotDelegating , errMsg403NotEnoughMoney + , errMsg403ValidityIntervalNotInsideScriptTimelock , errMsg404NoSuchPool , errMsg404NoWallet ) @@ -3273,7 +3274,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do mintAssetsCheck ctx wa tokenName' payload scriptUsed it "TRANS_NEW_CREATE_10e - Minting assets with timelocks \ - \successful as validity interval is included in time interval \ + \successful as validity interval is inside time interval \ \of a script" $ \ctx -> runResourceT $ do @@ -3328,6 +3329,64 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do mintAssetsCheck ctx wa tokenName' payload scriptUsed + it "TRANS_NEW_CREATE_10e - Minting assets with timelocks \ + \not successful as validity interval is not inside time interval \ + \of a script" $ + \ctx -> runResourceT $ do + + -- slot 0 sl+10 + -- |-----------> validity interval + -- + -- |--------------> script's timelock interval + -- slot 5 sl+11 + + wa <- fixtureWallet ctx + addrs <- listAddresses @n ctx wa + let destination = (addrs !! 1) ^. #id + + let (Right tokenName') = mkTokenName "ab12" + + rSlot <- request @ApiNetworkInformation ctx + Link.getNetworkInfo Default Empty + verify rSlot + [ expectSuccess + ] + let (SlotNo sl) = + getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + + let payload = Json [json|{ + "validity_interval": { + "invalid_hereafter": { + "quantity": #{sl + 10}, + "unit": "slot" + } + }, + "mint_burn": [{ + "policy_script_template": + { "all": + [ "cosigner#0", + { "active_until": #{sl + 11} }, + { "active_from": 5 } + ] + }, + "asset_name": #{toText tokenName'}, + "operation": + { "mint" : + { "receiving_address": #{destination}, + "quantity": 50000 + } + } + }] + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status403 + , expectErrorMessage + errMsg403ValidityIntervalNotInsideScriptTimelock + ] + it "TRANS_NEW_CREATE_10f - Burning assets without timelock" $ \ctx -> runResourceT $ do From 1a6378afa939620e4a7177103f4f03b431947465 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 28 Apr 2022 20:27:03 +0200 Subject: [PATCH 17/31] add toSlotInterval unit tests --- lib/core/cardano-wallet-core.cabal | 1 + lib/core/src/Cardano/Wallet/Api/Server.hs | 6 +- .../Primitive/AddressDerivation/MintBurn.hs | 7 +- .../AddressDerivation/MintBurnSpec.hs | 82 ++++++++++++++++++- .../src/Cardano/Wallet/Shelley/Transaction.hs | 7 +- 5 files changed, 95 insertions(+), 8 deletions(-) diff --git a/lib/core/cardano-wallet-core.cabal b/lib/core/cardano-wallet-core.cabal index 997ffa2176d..d779f221ae3 100644 --- a/lib/core/cardano-wallet-core.cabal +++ b/lib/core/cardano-wallet-core.cabal @@ -343,6 +343,7 @@ test-suite unit , contra-tracer , cryptonite , data-default + , data-interval , dbvar , directory , deepseq diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 5664d18d436..586f971b2b0 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -375,7 +375,11 @@ import Cardano.Wallet.Primitive.AddressDerivation.Byron import Cardano.Wallet.Primitive.AddressDerivation.Icarus ( IcarusKey ) import Cardano.Wallet.Primitive.AddressDerivation.MintBurn - ( toTokenMapAndScript, toTokenPolicyId, withinSlotInterval, toSlotInterval ) + ( toSlotInterval + , toTokenMapAndScript + , toTokenPolicyId + , withinSlotInterval + ) import Cardano.Wallet.Primitive.AddressDerivation.SharedKey ( SharedKey (..) ) import Cardano.Wallet.Primitive.AddressDerivation.Shelley diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index 94b962d56be..adf7f6b944f 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -212,9 +212,9 @@ toSlotInterval = \case RequireAllOf xs -> [I.intersections (concatMap toSlotInterval xs)] RequireAnyOf xs -> - concatMap toSlotInterval xs + concatMap toSlotInterval (filterOutSig xs) RequireSomeOf _ xs -> - concatMap toSlotInterval xs + concatMap toSlotInterval (filterOutSig xs) ActiveFromSlot s -> [Finite s <=..<= maxSlot] ActiveUntilSlot s -> @@ -223,6 +223,9 @@ toSlotInterval = \case minSlot = fromIntegral $ minBound @Word64 maxSlot = fromIntegral $ maxBound @Word64 allSlots = minSlot <=..<= maxSlot + isNotSig (RequireSignatureOf _) = False + isNotSig _ = True + filterOutSig = filter isNotSig -- tx validity interval must be subset of interval from timelock -- tx validity interval is defined by specifying (from,to) slot interval diff --git a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs index 175ce91d06e..86293d1141c 100644 --- a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs @@ -13,7 +13,7 @@ import Prelude import Cardano.Address.Derivation ( XPrv, XPub, xprvToBytes ) import Cardano.Address.Script - ( KeyHash ) + ( KeyHash, KeyRole (..), Script (..), keyHashFromBytes ) import Cardano.Mnemonic ( Mnemonic, SomeMnemonic (..) ) import Cardano.Wallet.Primitive.AddressDerivation @@ -26,7 +26,7 @@ import Cardano.Wallet.Primitive.AddressDerivation , liftRawKey ) import Cardano.Wallet.Primitive.AddressDerivation.MintBurn - ( derivePolicyKeyAndHash, derivePolicyPrivateKey ) + ( derivePolicyKeyAndHash, derivePolicyPrivateKey, toSlotInterval ) import Cardano.Wallet.Primitive.AddressDerivation.Shelley ( ShelleyKey ) import Cardano.Wallet.Primitive.AddressDerivationSpec @@ -35,12 +35,20 @@ import Cardano.Wallet.Primitive.Passphrase ( Passphrase ) import Cardano.Wallet.Unsafe ( unsafeBech32Decode, unsafeFromHex, unsafeMkMnemonic, unsafeXPrv ) +import Codec.Binary.Encoding + ( fromBase16 ) import Data.Function ( (&) ) +import Data.Interval + ( Interval, empty, (<=..<=) ) import Data.Text ( Text ) +import Data.Word + ( Word64 ) import GHC.TypeNats ( KnownNat ) +import Numeric.Natural + ( Natural ) import Test.Hspec ( Expectation, Spec, describe, it, shouldBe ) import Test.Hspec.Extra @@ -59,6 +67,12 @@ import qualified Data.Text.Encoding as T spec :: Spec spec = do parallel $ describe "Mint/Burn Policy key Address Derivation Properties" $ do + let minSlot = fromIntegral $ minBound @Word64 + let maxSlot = fromIntegral $ maxBound @Word64 + let hashKeyTxt :: Text + hashKeyTxt = "deeae4e895d8d57378125ed4fd540f9bf245d59f7936a504379cfc1e" + let hashKey = toKeyHash hashKeyTxt + it "Policy key derivation from master key works for various indexes" $ property prop_keyDerivationFromXPrv it "Policy public key hash matches private key" $ @@ -86,6 +100,63 @@ spec = do "1f07b91d27ca1cbf911ccfba254315733b3c908575ce2fc29d4c6965" -- Hash of child key 1855H/1815H/16H generated by -- cardano-address CLI from test mnemonic + it "Unit tests for toSlotInterval" $ do + unit_toSlotInterval hashKey + [fromIntegral @Natural 0 <=..<= maxSlot] + + unit_toSlotInterval (RequireAllOf [hashKey, ActiveFromSlot 120]) + [fromIntegral @Natural 120 <=..<= maxSlot] + + unit_toSlotInterval (RequireAllOf [hashKey, ActiveUntilSlot 120]) + [minSlot <=..<= fromIntegral @Natural 120] + + unit_toSlotInterval (RequireAnyOf [hashKey, ActiveFromSlot 120]) + [fromIntegral @Natural 120 <=..<= maxSlot] + + unit_toSlotInterval (RequireAnyOf [hashKey, ActiveUntilSlot 120]) + [minSlot <=..<= fromIntegral @Natural 120] + + unit_toSlotInterval (RequireSomeOf 1 [hashKey, ActiveFromSlot 120]) + [fromIntegral @Natural 120 <=..<= maxSlot] + + unit_toSlotInterval (RequireSomeOf 1 [hashKey, ActiveUntilSlot 120]) + [minSlot <=..<= fromIntegral @Natural 120] + + unit_toSlotInterval (RequireAllOf + [ hashKey + , ActiveFromSlot 100 + , ActiveUntilSlot 120]) + [fromIntegral @Natural 100 <=..<= fromIntegral @Natural 120] + + unit_toSlotInterval (RequireAllOf + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100]) + [ empty ] + + unit_toSlotInterval (RequireAnyOf + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100]) + [ fromIntegral @Natural 120 <=..<= maxSlot + , minSlot <=..<= fromIntegral @Natural 100 + ] + + unit_toSlotInterval (RequireSomeOf 1 + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100]) + [ fromIntegral @Natural 120 <=..<= maxSlot + , minSlot <=..<= fromIntegral @Natural 100 + ] + + +toKeyHash :: Text -> Script KeyHash +toKeyHash txt = case fromBase16 (T.encodeUtf8 txt) of + Right bs -> case keyHashFromBytes (Payment, bs) of + Just kh -> RequireSignatureOf kh + Nothing -> error "Hash key not valid" + Left _ -> error "Hash key not valid" {------------------------------------------------------------------------------- Properties @@ -220,6 +291,13 @@ unit_comparePolicyKeyHashes mnemonic index goldenPolicyKeyHashHex = in walletPolicyKeyHashBytes `shouldBe` goldenPolicyKeyHashBytes +unit_toSlotInterval + :: Script KeyHash + -> [Interval Natural] + -> Expectation +unit_toSlotInterval script interval = + toSlotInterval @KeyHash script `shouldBe` interval + goldenTestMnemonic :: Mnemonic 24 goldenTestMnemonic = unsafeMkMnemonic @24 [ "history", "stable", "illegal", "holiday" diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index 670db02986b..3b600f090e2 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -2124,9 +2124,10 @@ mkUnsignedTx era ttl cs md wdrls certs fees mintData burnData allScripts = Just lowerBoundSupported -> Cardano.TxValidityLowerBound lowerBoundSupported from Nothing -> Cardano.TxValidityNoLowerBound - in ( maybe Cardano.TxValidityNoLowerBound toLowerBound (fst ttl) - , Cardano.TxValidityUpperBound txValidityUpperBoundSupported $ snd ttl - ) + in bimap + (maybe Cardano.TxValidityNoLowerBound toLowerBound) + (Cardano.TxValidityUpperBound txValidityUpperBoundSupported) + ttl , Cardano.txMetadata = maybe From e864c887a49cb9563d17c8b1e0a40466a0658d5a Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 28 Apr 2022 22:40:27 +0200 Subject: [PATCH 18/31] add unit testing for withinSlotInterval --- lib/core/cardano-wallet-core.cabal | 1 - .../Primitive/AddressDerivation/MintBurn.hs | 29 ++-- .../AddressDerivation/MintBurnSpec.hs | 134 +++++++++++++++++- 3 files changed, 153 insertions(+), 11 deletions(-) diff --git a/lib/core/cardano-wallet-core.cabal b/lib/core/cardano-wallet-core.cabal index d779f221ae3..7d6a82c89d5 100644 --- a/lib/core/cardano-wallet-core.cabal +++ b/lib/core/cardano-wallet-core.cabal @@ -72,7 +72,6 @@ library , errors , exact-combinatorics , exceptions - , extended-reals , extra , fast-logger , file-embed diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index adf7f6b944f..0ce9c35fccf 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -71,8 +71,6 @@ import Cardano.Wallet.Primitive.Types.TokenQuantity ( TokenQuantity (..) ) import Cardano.Wallet.Util ( invariant ) -import Data.ExtendedReal - ( Extended (..) ) import Data.Interval ( Interval, (<=..<=) ) import Data.List.NonEmpty @@ -92,6 +90,7 @@ import qualified Data.List as L import qualified Data.List.NonEmpty as NE import qualified Data.Map.Strict as Map + -- | Purpose for forged policy keys is a constant set to 1855' (or 0x8000073F) -- following the original CIP-1855: "Forging policy keys for HD Wallets". -- @@ -210,32 +209,44 @@ toSlotInterval = \case RequireSignatureOf _ -> [allSlots] RequireAllOf xs -> - [I.intersections (concatMap toSlotInterval xs)] + let (timelocks, rest) = L.partition isTimelockOrSig xs + in trimAllSlots $ + [ I.intersections (concatMap toSlotInterval timelocks) ] ++ concatMap toSlotInterval rest RequireAnyOf xs -> concatMap toSlotInterval (filterOutSig xs) RequireSomeOf _ xs -> concatMap toSlotInterval (filterOutSig xs) ActiveFromSlot s -> - [Finite s <=..<= maxSlot] + [fromIntegral s <=..<= maxSlot] ActiveUntilSlot s -> - [minSlot <=..<= Finite s] + [minSlot <=..<= fromIntegral s] where minSlot = fromIntegral $ minBound @Word64 maxSlot = fromIntegral $ maxBound @Word64 allSlots = minSlot <=..<= maxSlot isNotSig (RequireSignatureOf _) = False isNotSig _ = True + isTimelockOrSig (ActiveFromSlot _) = True + isTimelockOrSig (ActiveUntilSlot _) = True + isTimelockOrSig (RequireSignatureOf _) = True + isTimelockOrSig _ = False + trimAllSlots interval = + let notAllSlots = filter (/= allSlots) interval + in if L.null notAllSlots then + interval + else + notAllSlots filterOutSig = filter isNotSig --- tx validity interval must be subset of interval from timelock +-- tx validity interval must be a subset of a interval from script's timelock -- tx validity interval is defined by specifying (from,to) slot interval withinSlotInterval :: SlotNo -> SlotNo -> [Interval Natural] -> Bool -withinSlotInterval (SlotNo from) (SlotNo to) = - L.any (txValidityInterval `I.isSubsetOf`) +withinSlotInterval (SlotNo from) (SlotNo to) interval = + L.any (txValidityInterval `I.isSubsetOf`) interval where txValidityInterval = - Finite (fromIntegral from) <=..<= Finite (fromIntegral to) + fromIntegral from <=..<= fromIntegral to diff --git a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs index 86293d1141c..bfa4d3fd4c3 100644 --- a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs @@ -26,13 +26,19 @@ import Cardano.Wallet.Primitive.AddressDerivation , liftRawKey ) import Cardano.Wallet.Primitive.AddressDerivation.MintBurn - ( derivePolicyKeyAndHash, derivePolicyPrivateKey, toSlotInterval ) + ( derivePolicyKeyAndHash + , derivePolicyPrivateKey + , toSlotInterval + , withinSlotInterval + ) import Cardano.Wallet.Primitive.AddressDerivation.Shelley ( ShelleyKey ) import Cardano.Wallet.Primitive.AddressDerivationSpec () import Cardano.Wallet.Primitive.Passphrase ( Passphrase ) +import Cardano.Wallet.Primitive.Types + ( SlotNo (..) ) import Cardano.Wallet.Unsafe ( unsafeBech32Decode, unsafeFromHex, unsafeMkMnemonic, unsafeXPrv ) import Codec.Binary.Encoding @@ -150,6 +156,123 @@ spec = do , minSlot <=..<= fromIntegral @Natural 100 ] + it "Unit tests for withinSlotInterval" $ do + unit_withinSlotInterval + hashKey + (SlotNo 10, SlotNo 100) + True + + unit_withinSlotInterval + (RequireAllOf [hashKey, ActiveFromSlot 120]) + (SlotNo 10, SlotNo 100) + False + + unit_withinSlotInterval + (RequireAllOf [hashKey, ActiveFromSlot 120]) + (SlotNo 10, SlotNo 130) + False + + unit_withinSlotInterval + (RequireAllOf [hashKey, ActiveUntilSlot 120]) + (SlotNo 10, SlotNo 100) + True + + unit_withinSlotInterval + (RequireAllOf [hashKey, ActiveUntilSlot 120]) + (SlotNo 10, SlotNo 130) + False + + unit_withinSlotInterval + (RequireAllOf + [ hashKey + , ActiveFromSlot 100 + , ActiveUntilSlot 120]) + (SlotNo 100, SlotNo 120) + True + + unit_withinSlotInterval + (RequireAllOf + [ hashKey + , ActiveFromSlot 100 + , ActiveUntilSlot 120]) + (SlotNo 90, SlotNo 100) + False + + unit_withinSlotInterval + (RequireAllOf + [ hashKey + , ActiveFromSlot 100 + , ActiveUntilSlot 120]) + (SlotNo 110, SlotNo 130) + False + + unit_withinSlotInterval + (RequireAnyOf + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100]) + (SlotNo 90, SlotNo 110) + False + + unit_withinSlotInterval + (RequireAnyOf + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100]) + (SlotNo 110, SlotNo 150) + False + + unit_withinSlotInterval + (RequireAnyOf + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100]) + (SlotNo 120, SlotNo 150) + True + + unit_withinSlotInterval + (RequireAllOf + [ hashKey + , RequireAnyOf + [ RequireAllOf [ActiveFromSlot 50, ActiveUntilSlot 100] + , RequireAllOf [ActiveFromSlot 150, ActiveUntilSlot 200] + ] + ]) + (SlotNo 60, SlotNo 90) + True + + unit_withinSlotInterval + (RequireAllOf + [ hashKey + , RequireAnyOf + [ RequireAllOf [ActiveFromSlot 50, ActiveUntilSlot 100] + , RequireAllOf [ActiveFromSlot 150, ActiveUntilSlot 200] + ] + ]) + (SlotNo 155, SlotNo 190) + True + + unit_withinSlotInterval + (RequireAllOf + [ hashKey + , RequireAnyOf + [ RequireAllOf [ActiveFromSlot 50, ActiveUntilSlot 100] + , RequireAllOf [ActiveFromSlot 150, ActiveUntilSlot 200] + ] + ]) + (SlotNo 155, SlotNo 210) + False + + unit_withinSlotInterval + (RequireAllOf + [ hashKey + , RequireAnyOf + [ RequireAllOf [ActiveFromSlot 50, ActiveUntilSlot 100] + , RequireAllOf [ActiveFromSlot 150, ActiveUntilSlot 200] + ] + ]) + (SlotNo 110, SlotNo 120) + False toKeyHash :: Text -> Script KeyHash toKeyHash txt = case fromBase16 (T.encodeUtf8 txt) of @@ -298,6 +421,15 @@ unit_toSlotInterval unit_toSlotInterval script interval = toSlotInterval @KeyHash script `shouldBe` interval +unit_withinSlotInterval + :: Script KeyHash + -> (SlotNo, SlotNo) + -> Bool + -> Expectation +unit_withinSlotInterval script (from,to) expectation = + withinSlotInterval from to (toSlotInterval @KeyHash script) + `shouldBe` expectation + goldenTestMnemonic :: Mnemonic 24 goldenTestMnemonic = unsafeMkMnemonic @24 [ "history", "stable", "illegal", "holiday" From c9dc7f4e726bdb0265a28bc7cacdb9b2b2a2f923 Mon Sep 17 00:00:00 2001 From: IOHK Date: Thu, 28 Apr 2022 20:42:05 +0000 Subject: [PATCH 19/31] Regenerate nix --- nix/materialized/stack-nix/cardano-wallet-core.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/materialized/stack-nix/cardano-wallet-core.nix b/nix/materialized/stack-nix/cardano-wallet-core.nix index 7acc45fcaa0..c3752048f0e 100644 --- a/nix/materialized/stack-nix/cardano-wallet-core.nix +++ b/nix/materialized/stack-nix/cardano-wallet-core.nix @@ -68,7 +68,6 @@ (hsPkgs."errors" or (errorHandler.buildDepError "errors")) (hsPkgs."exact-combinatorics" or (errorHandler.buildDepError "exact-combinatorics")) (hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions")) - (hsPkgs."extended-reals" or (errorHandler.buildDepError "extended-reals")) (hsPkgs."extra" or (errorHandler.buildDepError "extra")) (hsPkgs."fast-logger" or (errorHandler.buildDepError "fast-logger")) (hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed")) @@ -309,6 +308,7 @@ (hsPkgs."contra-tracer" or (errorHandler.buildDepError "contra-tracer")) (hsPkgs."cryptonite" or (errorHandler.buildDepError "cryptonite")) (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."data-interval" or (errorHandler.buildDepError "data-interval")) (hsPkgs."dbvar" or (errorHandler.buildDepError "dbvar")) (hsPkgs."directory" or (errorHandler.buildDepError "directory")) (hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) From 400dace5ce69eb3d963e064f66a1f34848dc0462 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 00:25:53 +0000 Subject: [PATCH 20/31] Formatting fixes. - use 4-space indents. - avoid variable-length indentation. - limit line lengths to 80 characters where practical. - use only a single blank line between top-level definitions. --- .../Scenario/API/Shelley/TransactionsNew.hs | 291 ++++++++++-------- lib/core/src/Cardano/Wallet/Api/Server.hs | 35 ++- lib/core/src/Cardano/Wallet/Api/Types.hs | 3 +- .../Primitive/AddressDerivation/MintBurn.hs | 13 +- lib/core/src/Cardano/Wallet/Transaction.hs | 14 +- .../AddressDerivation/MintBurnSpec.hs | 47 ++- .../Cardano/Wallet/Shelley/Compatibility.hs | 12 +- .../src/Cardano/Wallet/Shelley/Transaction.hs | 26 +- 8 files changed, 243 insertions(+), 198 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 35a6ec57f4a..23680a6e375 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 @@ -257,19 +257,22 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectErrorMessage errMsg403InvalidConstructTx ] - it "TRANS_NEW_CREATE_01b - Validity interval only is not allowed" $ \ctx -> runResourceT $ do + it "TRANS_NEW_CREATE_01b - \ + \Validity interval only is not allowed" $ + \ctx -> runResourceT $ do + wa <- fixtureWallet ctx - let validityInterval = Json [json|{ - "validity_interval": { - "invalid_before": { - "quantity": 10, - "unit": "second" - }, - "invalid_hereafter": { - "quantity": 50, - "unit": "second" + let validityInterval = Json [json| + { "validity_interval": + { "invalid_before": + { "quantity": 10 + , "unit": "second" + } + , "invalid_hereafter": + { "quantity": 50 + , "unit": "second" + } } - } }|] rTx <- request @(ApiConstructTransaction n) ctx @@ -1084,7 +1087,10 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectErrorMessage errMsg403NotEnoughMoney ] - it "TRANS_NEW_VALIDITY_INTERVAL_01a - Validity interval with second" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_01a - \ + \Validity interval with second" $ + \ctx -> runResourceT $ do + wa <- fixtureWallet ctx wb <- emptyWallet ctx addrs <- listAddresses @n ctx wb @@ -1101,8 +1107,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do }], "validity_interval": { "invalid_hereafter": { - "quantity": 50, - "unit": "second" + "quantity": 50, + "unit": "second" } } }|] @@ -1123,28 +1129,30 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectResponseCode HTTP.status202 ] - it "TRANS_NEW_VALIDITY_INTERVAL_01b - Validity interval with slot" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_01b - \ + \Validity interval with slot" $ + \ctx -> runResourceT $ do + wa <- fixtureWallet ctx rSlot <- request @ApiNetworkInformation ctx - Link.getNetworkInfo Default Empty - verify rSlot - [ expectSuccess - ] - let sl = getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot - - let payload = Json [json|{ - "withdrawal": "self", - "validity_interval": { - "invalid_before": { - "quantity": 0, - "unit": "slot" - }, - "invalid_hereafter": { - "quantity": #{sl + 10}, - "unit": "slot" + Link.getNetworkInfo Default Empty + verify rSlot [expectSuccess] + let sl = getFromResponse + (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": + { "quantity": 0 + , "unit": "slot" + } + , "invalid_hereafter": + { "quantity": #{sl + 10} + , "unit": "slot" + } } - } }|] rTx <- request @(ApiConstructTransaction n) ctx @@ -1184,22 +1192,24 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectResponseCode HTTP.status202 ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - validity bound should precede" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Validity bound should precede" $ + \ctx -> runResourceT $ do wa <- fixtureWallet ctx - let payload = Json [json|{ - "withdrawal": "self", - "validity_interval": { - "invalid_before": { - "quantity": 100, - "unit": "second" - }, - "invalid_hereafter": { - "quantity": 50, - "unit": "second" + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": + { "quantity": 100 + , "unit": "second" + } + , "invalid_hereafter": + { "quantity": 50 + , "unit": "second" + } } - } }|] rTx <- request @(ApiConstructTransaction n) ctx @@ -1209,19 +1219,20 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectErrorMessage errMsg403InvalidValidityBounds ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - Missing lower validity interval is \ - \acceptable" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Missing lower validity interval is acceptable" $ + \ctx -> runResourceT $ do wa <- fixtureWallet ctx - let payload = Json [json|{ - "withdrawal": "self", - "validity_interval": { - "invalid_hereafter": { - "quantity": 10, - "unit": "second" + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_hereafter": + { "quantity": 10 + , "unit": "second" + } } - } }|] rTx <- request @(ApiConstructTransaction n) ctx @@ -1230,19 +1241,20 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do [ expectResponseCode HTTP.status202 ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - Missing upper validity interval is \ - \acceptable" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Missing upper validity interval is acceptable" $ + \ctx -> runResourceT $ do wa <- fixtureWallet ctx - let payload = Json [json|{ - "withdrawal": "self", - "validity_interval": { - "invalid_before": { - "quantity": 10, - "unit": "second" - } - } + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": + { "quantity": 10 + , "unit": "second" + } + } }|] rTx <- request @(ApiConstructTransaction n) ctx @@ -1251,48 +1263,56 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do [ expectResponseCode HTTP.status202 ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval slot should be >= 0" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Validity interval slot should be >= 0" $ + \ctx -> runResourceT $ do wa <- fixtureWallet ctx - let payload = Json [json|{ - "withdrawal": "self", - "validity_interval": { - "invalid_before": { - "quantity": -1, - "unit": "slot" - }, - "invalid_hereafter": { - "quantity": -1, - "unit": "slot" + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": + { "quantity": -1 + , "unit": "slot" + } + , "invalid_hereafter": + { "quantity": -1 + , "unit": "slot" + } } - } }|] rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload verify rTx [ expectResponseCode HTTP.status400 - , expectErrorMessage "parsing Word64 failed, value is either floating or will cause over or underflow" + , expectErrorMessage + "parsing Word64 failed, \ + \value is either floating or will cause over or underflow" ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - Validity interval 'unspecified'" $ \ctx -> runResourceT $ do + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Validity interval 'unspecified'" $ + \ctx -> runResourceT $ do wa <- fixtureWallet ctx - let payload = Json [json|{ - "withdrawal": "self", - "validity_interval": { - "invalid_before": "unspecified", - "invalid_hereafter": "unspecified" - } + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": "unspecified" + , "invalid_hereafter": "unspecified" + } }|] rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload verify rTx [ expectResponseCode HTTP.status400 - , expectErrorMessage "parsing ApiValidityBound object failed, expected Object, but encountered String" + , expectErrorMessage + "parsing ApiValidityBound object failed, \ + \expected Object, but encountered String" ] it "TRANS_NEW_DECODE_01a - \ @@ -2945,7 +2965,10 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectResponseCode HTTP.status202 ] - it "TRANS_NEW_CREATE_MULTI_TX - Tx including payments, delegation, metadata, withdrawals, validity_interval" $ \ctx -> runResourceT $ do + it "TRANS_NEW_CREATE_MULTI_TX - Tx including \ + \payments, delegation, metadata, withdrawals, validity_interval" $ + \ctx -> runResourceT $ do + wa <- fixtureWallet ctx wb <- emptyWallet ctx addrs <- listAddresses @n ctx wb @@ -2959,11 +2982,10 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ctx (Link.listStakePools arbitraryStake) Empty rSlot <- request @ApiNetworkInformation ctx - Link.getNetworkInfo Default Empty - verify rSlot - [ expectSuccess - ] - let sl = getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + Link.getNetworkInfo Default Empty + verify rSlot [expectSuccess] + let sl = getFromResponse + (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot let payload = Json [json|{ "payments": [{ @@ -2990,14 +3012,14 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do "metadata": { "1": { "string": "hello" } }, "validity_interval": { "invalid_before": { - "quantity": #{sl - 1}, - "unit": "slot" + "quantity": #{sl - 1}, + "unit": "slot" }, "invalid_hereafter": { - "quantity": 30, - "unit": "second" + "quantity": 30, + "unit": "second" } - } + } }|] rTx <- request @(ApiConstructTransaction n) ctx @@ -3291,20 +3313,18 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let (Right tokenName') = mkTokenName "ab12" rSlot <- request @ApiNetworkInformation ctx - Link.getNetworkInfo Default Empty - verify rSlot - [ expectSuccess - ] - let (SlotNo sl) = - getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + Link.getNetworkInfo Default Empty + verify rSlot [expectSuccess] + let SlotNo sl = getFromResponse + (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot let payload = Json [json|{ "validity_interval": { "invalid_hereafter": { - "quantity": #{sl + 10}, - "unit": "slot" + "quantity": #{sl + 10}, + "unit": "slot" } - }, + }, "mint_burn": [{ "policy_script_template": { "all": @@ -3329,9 +3349,9 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do mintAssetsCheck ctx wa tokenName' payload scriptUsed - it "TRANS_NEW_CREATE_10e - Minting assets with timelocks \ - \not successful as validity interval is not inside time interval \ - \of a script" $ + it "TRANS_NEW_CREATE_10e - \ + \Minting assets with timelocks not successful as validity interval \ + \is not inside time interval of a script" $ \ctx -> runResourceT $ do -- slot 0 sl+10 @@ -3347,37 +3367,36 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let (Right tokenName') = mkTokenName "ab12" rSlot <- request @ApiNetworkInformation ctx - Link.getNetworkInfo Default Empty - verify rSlot - [ expectSuccess - ] - let (SlotNo sl) = - getFromResponse (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot - - let payload = Json [json|{ - "validity_interval": { - "invalid_hereafter": { - "quantity": #{sl + 10}, - "unit": "slot" + Link.getNetworkInfo Default Empty + verify rSlot [expectSuccess] + let SlotNo sl = getFromResponse + (#nodeTip . #absoluteSlotNumber . #getApiT) rSlot + + let payload = Json [json| + { "validity_interval": + { "invalid_hereafter": + { "quantity": #{sl + 10} + , "unit": "slot" + } } - }, - "mint_burn": [{ - "policy_script_template": - { "all": - [ "cosigner#0", - { "active_until": #{sl + 11} }, - { "active_from": 5 } - ] - }, - "asset_name": #{toText tokenName'}, - "operation": - { "mint" : - { "receiving_address": #{destination}, - "quantity": 50000 - } + , "mint_burn": + [ { "policy_script_template": + { "all": + [ "cosigner#0" + , { "active_until": #{sl + 11} } + , { "active_from": 5 } + ] + } + , "asset_name": #{toText tokenName'} + , "operation": + { "mint": + { "receiving_address": #{destination} + , "quantity": 50000 + } + } } - }] - }|] + ] + }|] rTx <- request @(ApiConstructTransaction n) ctx (Link.createUnsignedTransaction @'Shelley wa) Default payload diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 586f971b2b0..cd86d8d600c 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -684,7 +684,6 @@ import qualified Data.Text.Encoding as T import qualified Network.Wai.Handler.Warp as Warp import qualified Network.Wai.Handler.WarpTLS as Warp - -- | How the server should listen for incoming requests. data Listen = ListenOnPort Port @@ -2268,8 +2267,8 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do let md = body ^? #metadata . traverse . #getApiT - let isValidityBoundTimeNegative (ApiValidityBoundAsTimeFromNow (Quantity sec)) = - sec < 0 + let isValidityBoundTimeNegative + (ApiValidityBoundAsTimeFromNow (Quantity sec)) = sec < 0 isValidityBoundTimeNegative _ = False let isThereNegativeTime = case body ^. #validityInterval of @@ -2297,16 +2296,22 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do (before, hereafter) <- case body ^. #validityInterval of Nothing -> do - before' <- fromValidityBound (Left ApiValidityBoundUnspecified) - hereafter' <- fromValidityBound (Right ApiValidityBoundUnspecified) + before' <- + fromValidityBound (Left ApiValidityBoundUnspecified) + hereafter' <- + fromValidityBound (Right ApiValidityBoundUnspecified) pure (before', hereafter') Just (ApiValidityInterval before' hereafter') -> do - before'' <- case before' of - Nothing -> fromValidityBound (Left ApiValidityBoundUnspecified) - Just val -> fromValidityBound (Left val) - hereafter'' <- case hereafter' of - Nothing -> fromValidityBound (Right ApiValidityBoundUnspecified) - Just val -> fromValidityBound (Right val) + before'' <- case before' of + Nothing -> + fromValidityBound (Left ApiValidityBoundUnspecified) + Just val -> + fromValidityBound (Left val) + hereafter'' <- case hereafter' of + Nothing -> + fromValidityBound (Right ApiValidityBoundUnspecified) + Just val -> + fromValidityBound (Right val) pure (before'', hereafter'') when (hereafter < before || isThereNegativeTime) $ @@ -2318,7 +2323,9 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do when ( isJust mintingBurning' && L.any notWithinValidityInterval (NE.toList $ fromJust mintingBurning') - ) $ liftHandler $ throwE ErrConstructTxValidityIntervalNotWithinScriptTimelock + ) + $ liftHandler + $ throwE ErrConstructTxValidityIntervalNotWithinScriptTimelock (wdrl, _) <- mkRewardAccountBuilder @_ @s @_ @n ctx wid (body ^. #withdrawal) @@ -2799,7 +2806,9 @@ submitTransaction ctx apiw@(ApiT wid) apitx@(ApiSerialisedTransaction (ApiT seal (acct, _, path) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid let wdrl = getOurWdrl acct path apiDecoded let txCtx = defaultTransactionCtx - { txValidityInterval = (Nothing, ttl) -- ADP-1193 get it from decodeTx + { -- TODO: [ADP-1193] + -- Get this from decodeTx: + txValidityInterval = (Nothing, ttl) , txWithdrawal = wdrl , txDelegationAction = delAction } diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index a703a364cab..bf0cf71362a 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -4105,7 +4105,8 @@ instance EncodeAddress n => ToJSON (ApiMintData n) where -- tokens selected are up to the implementation. newtype ApiBurnData = ApiBurnData { quantity :: Natural - } deriving (Eq, Generic, Show) + } + deriving (Eq, Generic, Show) deriving anyclass NFData instance FromJSON ApiBurnData where diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index 0ce9c35fccf..eb4a6c3e6f6 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -90,7 +90,6 @@ import qualified Data.List as L import qualified Data.List.NonEmpty as NE import qualified Data.Map.Strict as Map - -- | Purpose for forged policy keys is a constant set to 1855' (or 0x8000073F) -- following the original CIP-1855: "Forging policy keys for HD Wallets". -- @@ -211,7 +210,8 @@ toSlotInterval = \case RequireAllOf xs -> let (timelocks, rest) = L.partition isTimelockOrSig xs in trimAllSlots $ - [ I.intersections (concatMap toSlotInterval timelocks) ] ++ concatMap toSlotInterval rest + [ I.intersections (concatMap toSlotInterval timelocks) ] + ++ concatMap toSlotInterval rest RequireAnyOf xs -> concatMap toSlotInterval (filterOutSig xs) RequireSomeOf _ xs -> @@ -232,10 +232,11 @@ toSlotInterval = \case isTimelockOrSig _ = False trimAllSlots interval = let notAllSlots = filter (/= allSlots) interval - in if L.null notAllSlots then - interval - else - notAllSlots + in + if L.null notAllSlots + then interval + else notAllSlots + filterOutSig = filter isNotSig -- tx validity interval must be a subset of a interval from script's timelock diff --git a/lib/core/src/Cardano/Wallet/Transaction.hs b/lib/core/src/Cardano/Wallet/Transaction.hs index b6e352cab65..f0245afa592 100644 --- a/lib/core/src/Cardano/Wallet/Transaction.hs +++ b/lib/core/src/Cardano/Wallet/Transaction.hs @@ -322,13 +322,13 @@ data TransactionLayer k tx = TransactionLayer -- The set of constraints that apply to all transactions. , decodeTx - :: tx - -> ( Tx - , TokenMapWithScripts - , TokenMapWithScripts - , [Certificate] - , Maybe ValidityIntervalExplicit - ) + :: tx -> + ( Tx + , TokenMapWithScripts + , TokenMapWithScripts + , [Certificate] + , Maybe ValidityIntervalExplicit + ) -- ^ Decode an externally-created transaction. , updateTx diff --git a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs index bfa4d3fd4c3..9d7e3c89ca4 100644 --- a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs @@ -76,7 +76,8 @@ spec = do let minSlot = fromIntegral $ minBound @Word64 let maxSlot = fromIntegral $ maxBound @Word64 let hashKeyTxt :: Text - hashKeyTxt = "deeae4e895d8d57378125ed4fd540f9bf245d59f7936a504379cfc1e" + hashKeyTxt = + "deeae4e895d8d57378125ed4fd540f9bf245d59f7936a504379cfc1e" let hashKey = toKeyHash hashKeyTxt it "Policy key derivation from master key works for various indexes" $ @@ -128,30 +129,42 @@ spec = do unit_toSlotInterval (RequireSomeOf 1 [hashKey, ActiveUntilSlot 120]) [minSlot <=..<= fromIntegral @Natural 120] - unit_toSlotInterval (RequireAllOf - [ hashKey - , ActiveFromSlot 100 - , ActiveUntilSlot 120]) + unit_toSlotInterval + (RequireAllOf + [ hashKey + , ActiveFromSlot 100 + , ActiveUntilSlot 120 + ] + ) [fromIntegral @Natural 100 <=..<= fromIntegral @Natural 120] - unit_toSlotInterval (RequireAllOf - [ hashKey - , ActiveFromSlot 120 - , ActiveUntilSlot 100]) + unit_toSlotInterval + (RequireAllOf + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100 + ] + ) [ empty ] - unit_toSlotInterval (RequireAnyOf - [ hashKey - , ActiveFromSlot 120 - , ActiveUntilSlot 100]) + unit_toSlotInterval + (RequireAnyOf + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100 + ] + ) [ fromIntegral @Natural 120 <=..<= maxSlot , minSlot <=..<= fromIntegral @Natural 100 ] - unit_toSlotInterval (RequireSomeOf 1 - [ hashKey - , ActiveFromSlot 120 - , ActiveUntilSlot 100]) + unit_toSlotInterval + (RequireSomeOf 1 + [ hashKey + , ActiveFromSlot 120 + , ActiveUntilSlot 100 + ] + ) [ fromIntegral @Natural 120 <=..<= maxSlot , minSlot <=..<= fromIntegral @Natural 100 ] diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs index d3aff290aae..3ad208cf568 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Compatibility.hs @@ -1344,12 +1344,12 @@ toShelleyCoin (W.Coin c) = SL.Coin $ intCast c fromCardanoTx :: Cardano.Tx era - -> ( W.Tx - , TokenMapWithScripts - , TokenMapWithScripts - , [Certificate] - , Maybe ValidityIntervalExplicit - ) + -> ( W.Tx + , TokenMapWithScripts + , TokenMapWithScripts + , [Certificate] + , Maybe ValidityIntervalExplicit + ) fromCardanoTx = \case Cardano.ShelleyTx era tx -> case era of Cardano.ShelleyBasedEraShelley -> diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs index 3b600f090e2..ffbd704ce6c 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Transaction.hs @@ -655,13 +655,13 @@ newTransactionLayer networkId = TransactionLayer } _decodeSealedTx - :: SealedTx - -> ( Tx - , TokenMapWithScripts - , TokenMapWithScripts - , [Certificate] - , Maybe ValidityIntervalExplicit - ) + :: SealedTx -> + ( Tx + , TokenMapWithScripts + , TokenMapWithScripts + , [Certificate] + , Maybe ValidityIntervalExplicit + ) _decodeSealedTx (cardanoTx -> InAnyCardanoEra _era tx) = fromCardanoTx tx _evaluateTransactionBalance @@ -2124,10 +2124,11 @@ mkUnsignedTx era ttl cs md wdrls certs fees mintData burnData allScripts = Just lowerBoundSupported -> Cardano.TxValidityLowerBound lowerBoundSupported from Nothing -> Cardano.TxValidityNoLowerBound - in bimap - (maybe Cardano.TxValidityNoLowerBound toLowerBound) - (Cardano.TxValidityUpperBound txValidityUpperBoundSupported) - ttl + in + bimap + (maybe Cardano.TxValidityNoLowerBound toLowerBound) + (Cardano.TxValidityUpperBound txValidityUpperBoundSupported) + ttl , Cardano.txMetadata = maybe @@ -2191,7 +2192,8 @@ mkUnsignedTx era ttl cs md wdrls certs fees mintData burnData allScripts = ShelleyBasedEraMary -> Cardano.ValidityUpperBoundInMaryEra ShelleyBasedEraAlonzo -> Cardano.ValidityUpperBoundInAlonzoEra - txValidityLowerBoundSupported :: Maybe (Cardano.ValidityLowerBoundSupportedInEra era) + txValidityLowerBoundSupported + :: Maybe (Cardano.ValidityLowerBoundSupportedInEra era) txValidityLowerBoundSupported = case era of ShelleyBasedEraShelley -> Nothing ShelleyBasedEraAllegra -> Just Cardano.ValidityLowerBoundInAllegraEra From 92d03658c4f92301066a8db444b10fb0b55608ca Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 00:32:02 +0000 Subject: [PATCH 21/31] Simplify definition of `fromValidityBound`. We use `LambdaCase` to remove repetition of the function name, and factor out the common call to `liftIO`. --- lib/core/src/Cardano/Wallet/Api/Server.hs | 25 ++++++++++++----------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index cd86d8d600c..e9df5b453a9 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2281,18 +2281,19 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do isValidityBoundTimeNegative hereafter' _ -> False - let fromValidityBound (Left ApiValidityBoundUnspecified) = - liftIO $ pure $ SlotNo 0 - fromValidityBound (Right ApiValidityBoundUnspecified) = - liftIO $ W.getTxExpiry ti Nothing - fromValidityBound (Right (ApiValidityBoundAsTimeFromNow (Quantity sec))) = - liftIO $ W.getTxExpiry ti (Just sec) - fromValidityBound (Left (ApiValidityBoundAsTimeFromNow (Quantity sec))) = - liftIO $ W.getTxExpiry ti (Just sec) - fromValidityBound (Right (ApiValidityBoundAsSlot (Quantity slot))) = - liftIO $ pure $ SlotNo slot - fromValidityBound (Left (ApiValidityBoundAsSlot (Quantity slot))) = - liftIO $ pure $ SlotNo slot + let fromValidityBound = liftIO . \case + Left ApiValidityBoundUnspecified -> + pure $ SlotNo 0 + Right ApiValidityBoundUnspecified -> + W.getTxExpiry ti Nothing + Right (ApiValidityBoundAsTimeFromNow (Quantity sec)) -> + W.getTxExpiry ti (Just sec) + Left (ApiValidityBoundAsTimeFromNow (Quantity sec)) -> + W.getTxExpiry ti (Just sec) + Right (ApiValidityBoundAsSlot (Quantity slot)) -> + pure $ SlotNo slot + Left (ApiValidityBoundAsSlot (Quantity slot)) -> + pure $ SlotNo slot (before, hereafter) <- case body ^. #validityInterval of Nothing -> do From d57012dc9e66b8dee9067849f768d61155ddfbc7 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 02:45:54 +0000 Subject: [PATCH 22/31] Use eta-reduction to simplify `withinSlotInterval`. --- .../Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index eb4a6c3e6f6..47e872315d5 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -246,8 +246,8 @@ withinSlotInterval -> SlotNo -> [Interval Natural] -> Bool -withinSlotInterval (SlotNo from) (SlotNo to) interval = - L.any (txValidityInterval `I.isSubsetOf`) interval +withinSlotInterval (SlotNo from) (SlotNo to) = + L.any (txValidityInterval `I.isSubsetOf`) where txValidityInterval = fromIntegral from <=..<= fromIntegral to From 310b7fd37f91249d50b07c2f7193194a97fbccc7 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 00:35:19 +0000 Subject: [PATCH 23/31] Use list append in `toSlotInterval` instead of concatenation. --- .../Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index 47e872315d5..4262342a2b6 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -209,9 +209,10 @@ toSlotInterval = \case [allSlots] RequireAllOf xs -> let (timelocks, rest) = L.partition isTimelockOrSig xs - in trimAllSlots $ - [ I.intersections (concatMap toSlotInterval timelocks) ] - ++ concatMap toSlotInterval rest + in + trimAllSlots + $ I.intersections (concatMap toSlotInterval timelocks) + : concatMap toSlotInterval rest RequireAnyOf xs -> concatMap toSlotInterval (filterOutSig xs) RequireSomeOf _ xs -> From baece1b4d8b3f6086b36f52d11da22940a3175ad Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 00:37:48 +0000 Subject: [PATCH 24/31] Use `LambdaCase` to simplify definitions within `toSlotInterval`. --- .../Primitive/AddressDerivation/MintBurn.hs | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index 4262342a2b6..c034f7c0f22 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -225,12 +225,17 @@ toSlotInterval = \case minSlot = fromIntegral $ minBound @Word64 maxSlot = fromIntegral $ maxBound @Word64 allSlots = minSlot <=..<= maxSlot - isNotSig (RequireSignatureOf _) = False - isNotSig _ = True - isTimelockOrSig (ActiveFromSlot _) = True - isTimelockOrSig (ActiveUntilSlot _) = True - isTimelockOrSig (RequireSignatureOf _) = True - isTimelockOrSig _ = False + + isNotSig = \case + RequireSignatureOf _ -> False + _ -> True + + isTimelockOrSig = \case + ActiveFromSlot _ -> True + ActiveUntilSlot _ -> True + RequireSignatureOf _ -> True + _ -> False + trimAllSlots interval = let notAllSlots = filter (/= allSlots) interval in From 2f13c086fb9d390d9093a45bcf9e8cf31a5f48df Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 06:10:10 +0000 Subject: [PATCH 25/31] Revise API validity interval descriptions and error messages. --- .../src/Test/Integration/Framework/TestData.hs | 17 +++++++++-------- .../Scenario/API/Shelley/TransactionsNew.hs | 6 +++--- lib/core/src/Cardano/Wallet/Api/Server.hs | 17 +++++++++-------- specifications/api/swagger.yaml | 9 +++++---- 4 files changed, 26 insertions(+), 23 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Framework/TestData.hs b/lib/core-integration/src/Test/Integration/Framework/TestData.hs index 003763b0192..499e2a9a0b9 100644 --- a/lib/core-integration/src/Test/Integration/Framework/TestData.hs +++ b/lib/core-integration/src/Test/Integration/Framework/TestData.hs @@ -703,17 +703,18 @@ errMsg403MintOrBurnAssetQuantityOutOfBounds = mconcat ] errMsg403InvalidValidityBounds :: String -errMsg403InvalidValidityBounds = mconcat - [ "It looks like I've created a transaction " - , "with wrong validity bounds. Please make sure before validity bound " - , "is preceding hereafter validity bound, and nonnegative times are used." +errMsg403InvalidValidityBounds = unwords + [ "Attempted to create a transaction with invalid validity bounds." + , "Please make sure that the 'invalid_before' bound precedes the" + , "'invalid_hereafter' bound, and that you have not used negative" + , "time values." ] errMsg403ValidityIntervalNotInsideScriptTimelock :: String -errMsg403ValidityIntervalNotInsideScriptTimelock = mconcat - [ "It looks like I've created a transaction " - , "with validity interval that is not inside script's timelock interval." - , "Please make sure validity interval is subset of script's timelock interval." +errMsg403ValidityIntervalNotInsideScriptTimelock = unwords + [ "Attempted to create a transaction with a validity interval" + , "that is not a subinterval of an associated script's timelock" + , "interval." ] -------------------------------------------------------------------------------- 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 23680a6e375..8603a7496fe 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 @@ -1193,7 +1193,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ] it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Validity bound should precede" $ + \Validity bounds should be ordered correctly" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx @@ -1220,7 +1220,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ] it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Missing lower validity interval is acceptable" $ + \Missing lower validity bound is acceptable" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx @@ -1242,7 +1242,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ] it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Missing upper validity interval is acceptable" $ + \Missing upper validity bound is acceptable" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index e9df5b453a9..cb1418dc89a 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -4410,16 +4410,17 @@ instance IsServerError ErrConstructTx where , "not exceed 9223372036854775807 (2^63 - 1)." ] ErrConstructTxWrongValidityBounds -> - apiError err403 InvalidValidityBounds $ mconcat - [ "It looks like I've created a transaction " - , "with wrong validity bounds. Please make sure before validity bound " - , "is preceding hereafter validity bound, and nonnegative times are used." + apiError err403 InvalidValidityBounds $ T.unwords + [ "Attempted to create a transaction with invalid validity bounds." + , "Please make sure that the 'invalid_before' bound precedes the" + , "'invalid_hereafter' bound, and that you have not used negative" + , "time values." ] ErrConstructTxValidityIntervalNotWithinScriptTimelock -> - apiError err403 ValidityIntervalNotInsideScriptTimelock $ mconcat - [ "It looks like I've created a transaction " - , "with validity interval that is not inside script's timelock interval." - , "Please make sure validity interval is subset of script's timelock interval." + apiError err403 ValidityIntervalNotInsideScriptTimelock $ T.unwords + [ "Attempted to create a transaction with a validity interval" + , "that is not a subinterval of an associated script's timelock" + , "interval." ] ErrConstructTxNotImplemented _ -> apiError err501 NotImplemented diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index bd3d3549789..2ec48a2790e 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -4146,8 +4146,9 @@ x-errInvalidValidityBounds: &errInvalidValidityBounds message: type: string description: - Occurs when upon transaction construction before validity bound does - not precede hereafter valdity bound or negative time is used. + Occurs when attempting to create a transaction with invalid validity + bounds. The 'invalid_before' bound must precede the 'invalid_hereafter' + bound, and the given time values must not be negative. code: type: string enum: ['invalid_validity_bounds'] @@ -4159,8 +4160,8 @@ x-errValidityIntervalNotInsideScriptTimelock: &errValidityIntervalNotInsideScrip message: type: string description: - Occurs when upon transaction construction the transaction's validity - interval is not inside the native script's timelock interval. + Occurs when attempting to create a transaction with a validity interval + that is not a subinterval of an associated script's timelock interval. code: type: string enum: ['validity_interval_not_inside_script_timelock'] From 1b832197deeb87329b0d003219d71337f9851b17 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 06:49:10 +0000 Subject: [PATCH 26/31] Replace `fromIntegral` with safer `intCast` and `Finite` constructor. Justification: - Using `fromIntegral` can hide unsafe integral narrowing conversions. - Using `intCast` eliminates this class of error statically. When creating values of `Data.Interval.Extended`, we can use the `Finite` constructor instead of `fromIntegral`. The following expressions are equivalent: > Finite 1000 :: Extended Int Finite 1000 > fromIntegral 1000 :: Extended Int Finite 1000 > Finite 1000 == fromIntegral 1000 True --- .../Primitive/AddressDerivation/MintBurn.hs | 12 ++++--- .../AddressDerivation/MintBurnSpec.hs | 31 ++++++++++--------- 2 files changed, 24 insertions(+), 19 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index c034f7c0f22..56dbc967d92 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -71,6 +71,8 @@ import Cardano.Wallet.Primitive.Types.TokenQuantity ( TokenQuantity (..) ) import Cardano.Wallet.Util ( invariant ) +import Data.IntCast + ( intCast ) import Data.Interval ( Interval, (<=..<=) ) import Data.List.NonEmpty @@ -218,12 +220,12 @@ toSlotInterval = \case RequireSomeOf _ xs -> concatMap toSlotInterval (filterOutSig xs) ActiveFromSlot s -> - [fromIntegral s <=..<= maxSlot] + [I.Finite s <=..<= maxSlot] ActiveUntilSlot s -> - [minSlot <=..<= fromIntegral s] + [minSlot <=..<= I.Finite s] where - minSlot = fromIntegral $ minBound @Word64 - maxSlot = fromIntegral $ maxBound @Word64 + minSlot = I.Finite $ intCast $ minBound @Word64 + maxSlot = I.Finite $ intCast $ maxBound @Word64 allSlots = minSlot <=..<= maxSlot isNotSig = \case @@ -256,4 +258,4 @@ withinSlotInterval (SlotNo from) (SlotNo to) = L.any (txValidityInterval `I.isSubsetOf`) where txValidityInterval = - fromIntegral from <=..<= fromIntegral to + I.Finite (intCast from) <=..<= I.Finite (intCast to) diff --git a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs index 9d7e3c89ca4..1eb0f09bcda 100644 --- a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs @@ -45,6 +45,8 @@ import Codec.Binary.Encoding ( fromBase16 ) import Data.Function ( (&) ) +import Data.IntCast + ( intCast ) import Data.Interval ( Interval, empty, (<=..<=) ) import Data.Text @@ -68,13 +70,14 @@ import qualified Cardano.Address.Script as CA import qualified Cardano.Wallet.Primitive.AddressDerivation.Shelley as Shelley import qualified Data.ByteString as BS import qualified Data.ByteString.Lazy as BL +import qualified Data.Interval as I import qualified Data.Text.Encoding as T spec :: Spec spec = do parallel $ describe "Mint/Burn Policy key Address Derivation Properties" $ do - let minSlot = fromIntegral $ minBound @Word64 - let maxSlot = fromIntegral $ maxBound @Word64 + let minSlot = I.Finite $ intCast $ minBound @Word64 + let maxSlot = I.Finite $ intCast $ maxBound @Word64 let hashKeyTxt :: Text hashKeyTxt = "deeae4e895d8d57378125ed4fd540f9bf245d59f7936a504379cfc1e" @@ -109,25 +112,25 @@ spec = do -- cardano-address CLI from test mnemonic it "Unit tests for toSlotInterval" $ do unit_toSlotInterval hashKey - [fromIntegral @Natural 0 <=..<= maxSlot] + [I.Finite @Natural 0 <=..<= maxSlot] unit_toSlotInterval (RequireAllOf [hashKey, ActiveFromSlot 120]) - [fromIntegral @Natural 120 <=..<= maxSlot] + [I.Finite @Natural 120 <=..<= maxSlot] unit_toSlotInterval (RequireAllOf [hashKey, ActiveUntilSlot 120]) - [minSlot <=..<= fromIntegral @Natural 120] + [minSlot <=..<= I.Finite @Natural 120] unit_toSlotInterval (RequireAnyOf [hashKey, ActiveFromSlot 120]) - [fromIntegral @Natural 120 <=..<= maxSlot] + [I.Finite @Natural 120 <=..<= maxSlot] unit_toSlotInterval (RequireAnyOf [hashKey, ActiveUntilSlot 120]) - [minSlot <=..<= fromIntegral @Natural 120] + [minSlot <=..<= I.Finite @Natural 120] unit_toSlotInterval (RequireSomeOf 1 [hashKey, ActiveFromSlot 120]) - [fromIntegral @Natural 120 <=..<= maxSlot] + [I.Finite @Natural 120 <=..<= maxSlot] unit_toSlotInterval (RequireSomeOf 1 [hashKey, ActiveUntilSlot 120]) - [minSlot <=..<= fromIntegral @Natural 120] + [minSlot <=..<= I.Finite @Natural 120] unit_toSlotInterval (RequireAllOf @@ -136,7 +139,7 @@ spec = do , ActiveUntilSlot 120 ] ) - [fromIntegral @Natural 100 <=..<= fromIntegral @Natural 120] + [I.Finite @Natural 100 <=..<= I.Finite @Natural 120] unit_toSlotInterval (RequireAllOf @@ -154,8 +157,8 @@ spec = do , ActiveUntilSlot 100 ] ) - [ fromIntegral @Natural 120 <=..<= maxSlot - , minSlot <=..<= fromIntegral @Natural 100 + [ I.Finite @Natural 120 <=..<= maxSlot + , minSlot <=..<= I.Finite @Natural 100 ] unit_toSlotInterval @@ -165,8 +168,8 @@ spec = do , ActiveUntilSlot 100 ] ) - [ fromIntegral @Natural 120 <=..<= maxSlot - , minSlot <=..<= fromIntegral @Natural 100 + [ I.Finite @Natural 120 <=..<= maxSlot + , minSlot <=..<= I.Finite @Natural 100 ] it "Unit tests for withinSlotInterval" $ do From 99cf447f2d86412811f3bb31706534af41d363d9 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 29 Apr 2022 07:09:30 +0000 Subject: [PATCH 27/31] Rename `slotInterval` to `scriptSlotIntervals`. This function takes a script and returns a list of slot intervals, rather than just a single interval. --- lib/core/src/Cardano/Wallet/Api/Server.hs | 4 +- .../Primitive/AddressDerivation/MintBurn.hs | 14 +++---- .../AddressDerivation/MintBurnSpec.hs | 41 +++++++++++-------- 3 files changed, 33 insertions(+), 26 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index cb1418dc89a..b663a2a27f4 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -375,7 +375,7 @@ import Cardano.Wallet.Primitive.AddressDerivation.Byron import Cardano.Wallet.Primitive.AddressDerivation.Icarus ( IcarusKey ) import Cardano.Wallet.Primitive.AddressDerivation.MintBurn - ( toSlotInterval + ( scriptSlotIntervals , toTokenMapAndScript , toTokenPolicyId , withinSlotInterval @@ -2320,7 +2320,7 @@ constructTransaction ctx genChange knownPools getPoolStatus (ApiT wid) body = do let notWithinValidityInterval (ApiMintBurnData (ApiT scriptTempl) _ _) = not $ withinSlotInterval before hereafter $ - toSlotInterval scriptTempl + scriptSlotIntervals scriptTempl when ( isJust mintingBurning' && L.any notWithinValidityInterval (NE.toList $ fromJust mintingBurning') diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index 56dbc967d92..aa1102a8e1a 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -29,7 +29,7 @@ module Cardano.Wallet.Primitive.AddressDerivation.MintBurn , policyDerivationPath , toTokenMapAndScript , toTokenPolicyId - , toSlotInterval + , scriptSlotIntervals , withinSlotInterval ) where @@ -203,22 +203,22 @@ replaceCosigner cosignerMap = \case isJust in hashVerificationKey @key CA.Policy (liftRawKey xpub) -toSlotInterval +scriptSlotIntervals :: Script a -> [Interval Natural] -toSlotInterval = \case +scriptSlotIntervals = \case RequireSignatureOf _ -> [allSlots] RequireAllOf xs -> let (timelocks, rest) = L.partition isTimelockOrSig xs in trimAllSlots - $ I.intersections (concatMap toSlotInterval timelocks) - : concatMap toSlotInterval rest + $ I.intersections (concatMap scriptSlotIntervals timelocks) + : concatMap scriptSlotIntervals rest RequireAnyOf xs -> - concatMap toSlotInterval (filterOutSig xs) + concatMap scriptSlotIntervals (filterOutSig xs) RequireSomeOf _ xs -> - concatMap toSlotInterval (filterOutSig xs) + concatMap scriptSlotIntervals (filterOutSig xs) ActiveFromSlot s -> [I.Finite s <=..<= maxSlot] ActiveUntilSlot s -> diff --git a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs index 1eb0f09bcda..4bf76f05aae 100644 --- a/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Primitive/AddressDerivation/MintBurnSpec.hs @@ -28,7 +28,7 @@ import Cardano.Wallet.Primitive.AddressDerivation import Cardano.Wallet.Primitive.AddressDerivation.MintBurn ( derivePolicyKeyAndHash , derivePolicyPrivateKey - , toSlotInterval + , scriptSlotIntervals , withinSlotInterval ) import Cardano.Wallet.Primitive.AddressDerivation.Shelley @@ -110,29 +110,36 @@ spec = do "1f07b91d27ca1cbf911ccfba254315733b3c908575ce2fc29d4c6965" -- Hash of child key 1855H/1815H/16H generated by -- cardano-address CLI from test mnemonic - it "Unit tests for toSlotInterval" $ do - unit_toSlotInterval hashKey + + it "Unit tests for scriptSlotIntervals" $ do + unit_scriptSlotIntervals hashKey [I.Finite @Natural 0 <=..<= maxSlot] - unit_toSlotInterval (RequireAllOf [hashKey, ActiveFromSlot 120]) + unit_scriptSlotIntervals + (RequireAllOf [hashKey, ActiveFromSlot 120]) [I.Finite @Natural 120 <=..<= maxSlot] - unit_toSlotInterval (RequireAllOf [hashKey, ActiveUntilSlot 120]) + unit_scriptSlotIntervals + (RequireAllOf [hashKey, ActiveUntilSlot 120]) [minSlot <=..<= I.Finite @Natural 120] - unit_toSlotInterval (RequireAnyOf [hashKey, ActiveFromSlot 120]) + unit_scriptSlotIntervals + (RequireAnyOf [hashKey, ActiveFromSlot 120]) [I.Finite @Natural 120 <=..<= maxSlot] - unit_toSlotInterval (RequireAnyOf [hashKey, ActiveUntilSlot 120]) + unit_scriptSlotIntervals + (RequireAnyOf [hashKey, ActiveUntilSlot 120]) [minSlot <=..<= I.Finite @Natural 120] - unit_toSlotInterval (RequireSomeOf 1 [hashKey, ActiveFromSlot 120]) + unit_scriptSlotIntervals + (RequireSomeOf 1 [hashKey, ActiveFromSlot 120]) [I.Finite @Natural 120 <=..<= maxSlot] - unit_toSlotInterval (RequireSomeOf 1 [hashKey, ActiveUntilSlot 120]) + unit_scriptSlotIntervals + (RequireSomeOf 1 [hashKey, ActiveUntilSlot 120]) [minSlot <=..<= I.Finite @Natural 120] - unit_toSlotInterval + unit_scriptSlotIntervals (RequireAllOf [ hashKey , ActiveFromSlot 100 @@ -141,7 +148,7 @@ spec = do ) [I.Finite @Natural 100 <=..<= I.Finite @Natural 120] - unit_toSlotInterval + unit_scriptSlotIntervals (RequireAllOf [ hashKey , ActiveFromSlot 120 @@ -150,7 +157,7 @@ spec = do ) [ empty ] - unit_toSlotInterval + unit_scriptSlotIntervals (RequireAnyOf [ hashKey , ActiveFromSlot 120 @@ -161,7 +168,7 @@ spec = do , minSlot <=..<= I.Finite @Natural 100 ] - unit_toSlotInterval + unit_scriptSlotIntervals (RequireSomeOf 1 [ hashKey , ActiveFromSlot 120 @@ -430,12 +437,12 @@ unit_comparePolicyKeyHashes mnemonic index goldenPolicyKeyHashHex = in walletPolicyKeyHashBytes `shouldBe` goldenPolicyKeyHashBytes -unit_toSlotInterval +unit_scriptSlotIntervals :: Script KeyHash -> [Interval Natural] -> Expectation -unit_toSlotInterval script interval = - toSlotInterval @KeyHash script `shouldBe` interval +unit_scriptSlotIntervals script interval = + scriptSlotIntervals @KeyHash script `shouldBe` interval unit_withinSlotInterval :: Script KeyHash @@ -443,7 +450,7 @@ unit_withinSlotInterval -> Bool -> Expectation unit_withinSlotInterval script (from,to) expectation = - withinSlotInterval from to (toSlotInterval @KeyHash script) + withinSlotInterval from to (scriptSlotIntervals @KeyHash script) `shouldBe` expectation goldenTestMnemonic :: Mnemonic 24 From dba91a2e1761a9b7d1ebcc600b54114c9d0eaefd Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 29 Apr 2022 09:40:56 +0200 Subject: [PATCH 28/31] scriptSlotIntervals enhancement --- .../Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs index aa1102a8e1a..39de473447f 100644 --- a/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs +++ b/lib/core/src/Cardano/Wallet/Primitive/AddressDerivation/MintBurn.hs @@ -216,9 +216,9 @@ scriptSlotIntervals = \case $ I.intersections (concatMap scriptSlotIntervals timelocks) : concatMap scriptSlotIntervals rest RequireAnyOf xs -> - concatMap scriptSlotIntervals (filterOutSig xs) + trimAllSlots $ concatMap scriptSlotIntervals (filterOutSig xs) RequireSomeOf _ xs -> - concatMap scriptSlotIntervals (filterOutSig xs) + trimAllSlots $ concatMap scriptSlotIntervals (filterOutSig xs) ActiveFromSlot s -> [I.Finite s <=..<= maxSlot] ActiveUntilSlot s -> From b4be703de068a42b90b40d9b4ff6ea6c02f9a053 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 29 Apr 2022 13:59:17 +0200 Subject: [PATCH 29/31] integration code reshuffling to soothe plutus --- .../Scenario/API/Shelley/TransactionsNew.hs | 245 +++++++++--------- 1 file changed, 122 insertions(+), 123 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 8603a7496fe..36a66e4c6ae 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 @@ -1192,129 +1192,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectResponseCode HTTP.status202 ] - it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Validity bounds should be ordered correctly" $ - \ctx -> runResourceT $ do - - wa <- fixtureWallet ctx - - let payload = Json [json| - { "withdrawal": "self" - , "validity_interval": - { "invalid_before": - { "quantity": 100 - , "unit": "second" - } - , "invalid_hereafter": - { "quantity": 50 - , "unit": "second" - } - } - }|] - - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status403 - , expectErrorMessage errMsg403InvalidValidityBounds - ] - - it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Missing lower validity bound is acceptable" $ - \ctx -> runResourceT $ do - - wa <- fixtureWallet ctx - - let payload = Json [json| - { "withdrawal": "self" - , "validity_interval": - { "invalid_hereafter": - { "quantity": 10 - , "unit": "second" - } - } - }|] - - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status202 - ] - - it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Missing upper validity bound is acceptable" $ - \ctx -> runResourceT $ do - - wa <- fixtureWallet ctx - - let payload = Json [json| - { "withdrawal": "self" - , "validity_interval": - { "invalid_before": - { "quantity": 10 - , "unit": "second" - } - } - }|] - - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status202 - ] - - it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Validity interval slot should be >= 0" $ - \ctx -> runResourceT $ do - - wa <- fixtureWallet ctx - - let payload = Json [json| - { "withdrawal": "self" - , "validity_interval": - { "invalid_before": - { "quantity": -1 - , "unit": "slot" - } - , "invalid_hereafter": - { "quantity": -1 - , "unit": "slot" - } - } - }|] - - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status400 - , expectErrorMessage - "parsing Word64 failed, \ - \value is either floating or will cause over or underflow" - ] - - it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ - \Validity interval 'unspecified'" $ - \ctx -> runResourceT $ do - - wa <- fixtureWallet ctx - - let payload = Json [json| - { "withdrawal": "self" - , "validity_interval": - { "invalid_before": "unspecified" - , "invalid_hereafter": "unspecified" - } - }|] - - rTx <- request @(ApiConstructTransaction n) ctx - (Link.createUnsignedTransaction @'Shelley wa) Default payload - verify rTx - [ expectResponseCode HTTP.status400 - , expectErrorMessage - "parsing ApiValidityBound object failed, \ - \expected Object, but encountered String" - ] - it "TRANS_NEW_DECODE_01a - \ \multiple-output transaction with all covering inputs" $ \ctx -> runResourceT $ do @@ -3628,6 +3505,128 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectField #policyId (`shouldBe` (ApiT tokenPolicyId')) ] + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Validity bounds should be ordered correctly" $ + \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": + { "quantity": 100 + , "unit": "second" + } + , "invalid_hereafter": + { "quantity": 50 + , "unit": "second" + } + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status403 + , expectErrorMessage errMsg403InvalidValidityBounds + ] + + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Missing lower validity bound is acceptable" $ + \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_hereafter": + { "quantity": 10 + , "unit": "second" + } + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status202 + ] + + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Missing upper validity bound is acceptable" $ + \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": + { "quantity": 10 + , "unit": "second" + } + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status202 + ] + + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Validity interval slot should be >= 0" $ + \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": + { "quantity": -1 + , "unit": "slot" + } + , "invalid_hereafter": + { "quantity": -1 + , "unit": "slot" + } + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status400 + , expectErrorMessage + "parsing Word64 failed, \ + \value is either floating or will cause over or underflow" + ] + + it "TRANS_NEW_VALIDITY_INTERVAL_02 - \ + \Validity interval 'unspecified'" $ + \ctx -> runResourceT $ do + + wa <- fixtureWallet ctx + + let payload = Json [json| + { "withdrawal": "self" + , "validity_interval": + { "invalid_before": "unspecified" + , "invalid_hereafter": "unspecified" + } + }|] + + rTx <- request @(ApiConstructTransaction n) ctx + (Link.createUnsignedTransaction @'Shelley wa) Default payload + verify rTx + [ expectResponseCode HTTP.status400 + , expectErrorMessage + "parsing ApiValidityBound object failed, \ + \expected Object, but encountered String" + ] where -- | Just one million Ada, in Lovelace. From 2586145311ba20832db1eea67493ef3f01b07b59 Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Fri, 29 Apr 2022 14:44:56 +0200 Subject: [PATCH 30/31] remove unspecified from swagger --- specifications/api/swagger.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 2ec48a2790e..82ac3be5301 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1683,19 +1683,12 @@ x-transactionTTL: &transactionTTL <<: *numberOfSeconds -x-unspecified: &unspecified - type: string - enum: - - unspecified - x-validityBound: &validityBound oneOf: - <<: *numberOfSeconds title: number of seconds - <<: *numberOfSlots title: number of slots - - <<: *unspecified - title: unspecified x-stakePoolApparentPerformance: &stakePoolApparentPerformance description: | From a50537e06e300133896ac8a739a4562e3bb9b773 Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Fri, 29 Apr 2022 16:27:32 +0200 Subject: [PATCH 31/31] Addtional comment to validity_interval --- specifications/api/swagger.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 82ac3be5301..339ae382459 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -3400,7 +3400,13 @@ components: ApiValidityInterval: &ApiValidityInterval description: | - Specify only invalid_before or invalid_hereafter or both + Specify only invalid_before or invalid_hereafter or both. + + Please note that, if not set, the default values are: + - `"invalid_before": {"quantity":0, "unit":"slot"}` + - `"invalid_hereafter":{"quantity":7200, "unit":"second"}` + + Which translates to 2h transaction TTL. type: object properties: invalid_before: *validityBound