From 7bda41c959110f65697e36b5b2238b9597595309 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 14 Oct 2021 14:31:21 +0200 Subject: [PATCH 01/31] add first version of endpoint in swagger --- specifications/api/swagger.yaml | 51 +++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 77e5ff44d86..a092b59a313 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -2256,6 +2256,28 @@ components: metadata: *transactionMetadata script_validity: *txScriptValidity + ApiDecodedTransaction: &ApiDecodedTransaction + type: object + required: + - id + - fee + - deposit + - inputs + - outputs + - withdrawals + - mint + properties: + id: *transactionId + fee: *amount + deposit: *amount + inputs: *transactionInputs + outputs: *transactionOutputs + collateral: *transactionCollateral + withdrawals: *transactionWithdrawals + mint: *transactionMint + metadata: *transactionMetadata + script_validity: *txScriptValidity + x-txBody: &txBody oneOf: - <<: *serialisedTransactionBase64 @@ -4758,6 +4780,17 @@ x-responsesSignTransaction: &responsesSignTransaction application/json: schema: *ApiSignedTransaction +x-responsesDecodedTransaction: &responsesDecodedTransaction + <<: *responsesErr400 + <<: *responsesErr404WalletNotFound + <<: *responsesErr406 + <<: *responsesErr415UnsupportedMediaType + 202: + description: Accepted + content: + application/json: + schema: *ApiDecodedTransaction + x-responsesSubmitTransaction: &responsesSubmitTransaction <<: *responsesErr400 <<: *responsesErr404WalletNotFound @@ -5526,6 +5559,24 @@ paths: schema: *ApiSignTransactionPostData responses: *responsesSignTransaction + /wallets/{walletId}/transactions-decode: + post: + operationId: decodeTransaction + tags: ["Transactions New"] + summary: Decode + description: | +

status: unstable

+ + Decode a serialized transaction. + parameters: + - *parametersWalletId + requestBody: + required: true + content: + application/json: + schema: *ApiSerialisedTransaction + responses: *responsesDecodedTransaction + /wallets/{walletId}/addresses: get: operationId: listAddresses From 9728b0946e50c2d6f897fdead2d459f2d044101e Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 14 Oct 2021 16:38:00 +0200 Subject: [PATCH 02/31] add basic types --- lib/core/src/Cardano/Wallet/Api.hs | 10 ++++++ lib/core/src/Cardano/Wallet/Api/Client.hs | 9 +++++ lib/core/src/Cardano/Wallet/Api/Server.hs | 12 +++++++ lib/core/src/Cardano/Wallet/Api/Types.hs | 33 +++++++++++++++++++ .../src/Cardano/Wallet/Shelley/Api/Server.hs | 2 ++ 5 files changed, 66 insertions(+) diff --git a/lib/core/src/Cardano/Wallet/Api.hs b/lib/core/src/Cardano/Wallet/Api.hs index c6a0f1f6c1e..fb6077fbd1c 100644 --- a/lib/core/src/Cardano/Wallet/Api.hs +++ b/lib/core/src/Cardano/Wallet/Api.hs @@ -61,6 +61,7 @@ module Cardano.Wallet.Api , CreateTransactionOld , PostTransactionFeeOld , BalanceTransaction + , DecodeTransaction , StakePools , ListStakePools @@ -177,6 +178,7 @@ import Cardano.Wallet.Api.Types , ApiCoinSelectionT , ApiConstructTransactionDataT , ApiConstructTransactionT + , ApiDecodedTransactionT , ApiFee , ApiHealthCheck , ApiMaintenanceAction @@ -528,6 +530,7 @@ type ShelleyTransactions n = :<|> CreateTransactionOld n :<|> PostTransactionFeeOld n :<|> BalanceTransaction n + :<|> DecodeTransaction n -- | https://input-output-hk.github.io/cardano-wallet/api/#operation/constructTransaction type ConstructTransaction n = "wallets" @@ -588,6 +591,13 @@ type BalanceTransaction n = "wallets" :> ReqBody '[JSON] (ApiBalanceTransactionPostDataT n) :> PostAccepted '[JSON] ApiSerialisedTransaction +-- | https://input-output-hk.github.io/cardano-wallet/api/#operation/decodeTransaction +type DecodeTransaction n = "wallets" + :> Capture "walletId" (ApiT WalletId) + :> "transactions-decode" + :> ReqBody '[JSON] ApiSerialisedTransaction + :> PostAccepted '[JSON] (ApiDecodedTransactionT n) + {------------------------------------------------------------------------------- Shelley Migrations diff --git a/lib/core/src/Cardano/Wallet/Api/Client.hs b/lib/core/src/Cardano/Wallet/Api/Client.hs index 812ba8b7d94..70fed7f1da0 100644 --- a/lib/core/src/Cardano/Wallet/Api/Client.hs +++ b/lib/core/src/Cardano/Wallet/Api/Client.hs @@ -67,6 +67,7 @@ import Cardano.Wallet.Api.Types , ApiCoinSelectionT , ApiConstructTransactionDataT , ApiConstructTransactionT + , ApiDecodedTransactionT , ApiFee , ApiNetworkClock , ApiNetworkInformation (..) @@ -194,6 +195,10 @@ data TransactionClient = TransactionClient :: ApiT WalletId -> ApiBalanceTransactionPostDataT Aeson.Value -> ClientM ApiSerialisedTransaction + , decodeTransaction + :: ApiT WalletId + -> ApiSerialisedTransaction + -> ClientM (ApiDecodedTransactionT Aeson.Value) } data AddressClient = AddressClient @@ -310,6 +315,7 @@ transactionClient = :<|> _postTransaction :<|> _postTransactionFee :<|> _balanceTransaction + :<|> _decodeTransaction = client (Proxy @("v2" :> (ShelleyTransactions Aeson.Value))) _postExternalTransaction @@ -325,6 +331,7 @@ transactionClient = , getTransaction = _getTransaction , constructTransaction = _constructTransaction , balanceTransaction = _balanceTransaction + , decodeTransaction = _decodeTransaction } fromSerialisedTx :: ApiBytesT base SerialisedTx -> ApiT SealedTx @@ -357,6 +364,7 @@ byronTransactionClient = , getTransaction = _getTransaction , constructTransaction = _constructTransaction , balanceTransaction = error "balance transaction endpoint not supported for byron" + , decodeTransaction = error "decode transaction endpoint not supported for byron" } -- | Produces an 'AddressClient n' working against the /wallets API @@ -458,3 +466,4 @@ type instance PostTransactionOldDataT Aeson.Value = Aeson.Value type instance PostTransactionFeeOldDataT Aeson.Value = Aeson.Value type instance ApiPutAddressesDataT Aeson.Value = Aeson.Value type instance ApiBalanceTransactionPostDataT Aeson.Value = Aeson.Value +type instance ApiDecodedTransactionT Aeson.Value = Aeson.Value diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 5255f8cb7ab..0e114414cd3 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -92,6 +92,7 @@ module Cardano.Wallet.Api.Server , mkSharedWallet , mintBurnAssets , balanceTransaction + , decodeTransaction -- * Server error responses , IsServerError(..) @@ -209,6 +210,7 @@ import Cardano.Wallet.Api.Types , ApiCoinSelectionWithdrawal (..) , ApiConstructTransaction (..) , ApiConstructTransactionData (..) + , ApiDecodedTransaction , ApiEpochInfo (ApiEpochInfo) , ApiEra (..) , ApiErrorCode (..) @@ -2246,6 +2248,16 @@ balanceTransaction ctx genChange (ApiT wid) body = do where nl = ctx ^. networkLayer +decodeTransaction + :: forall ctx s k n. + ( ctx ~ ApiLayer s k + ) + => ctx + -> ApiT WalletId + -> ApiSerialisedTransaction + -> Handler (ApiDecodedTransaction n) +decodeTransaction _ctx _wid (ApiSerialisedTransaction (ApiT _sealed)) = undefined + joinStakePool :: forall ctx s n k. ( ctx ~ ApiLayer s k diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index e8bb6830658..2229b5615ce 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -162,6 +162,8 @@ module Cardano.Wallet.Api.Types , ApiBalanceTransactionPostData (..) , ApiExternalInput (..) , ApiRedeemer (..) + , ApiRedeemerCertificate (..) + , ApiDecodedTransaction (..) -- * API Types (Byron) , ApiByronWallet (..) @@ -217,6 +219,7 @@ module Cardano.Wallet.Api.Types , ApiWalletMigrationPostDataT , PostMintBurnAssetDataT , ApiBalanceTransactionPostDataT + , ApiDecodedTransactionT -- * API Type Conversions , coinToQuantity @@ -1131,6 +1134,19 @@ data ApiTransaction (n :: NetworkDiscriminant) = ApiTransaction } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData +data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction + { id :: !(ApiT (Hash "Tx")) + , fee :: !(Quantity "lovelace" Natural) + , inputs :: ![ApiTxInput n] + , outputs :: ![AddressAmount (ApiT Address, Proxy n)] + , collateral :: ![ApiTxCollateral n] + , withdrawals :: ![ApiWithdrawal n] + , mint :: !(ApiT W.TokenMap) + , metadata :: !ApiTxMetadata + , scriptValidity :: !(Maybe (ApiT TxScriptValidity)) + } deriving (Eq, Generic, Show, Typeable) + deriving anyclass NFData + -- | The response cardano-wallet returns upon successful submission of a -- mint/burn transaction. data ApiMintedBurnedTransaction (n :: NetworkDiscriminant) = ApiMintedBurnedTransaction @@ -2940,6 +2956,19 @@ instance where toJSON = genericToJSON defaultRecordTypeOptions +instance + ( DecodeAddress n + , DecodeStakeAddress n + ) => FromJSON (ApiDecodedTransaction n) + where + parseJSON = genericParseJSON defaultRecordTypeOptions +instance + ( EncodeAddress n + , EncodeStakeAddress n + ) => ToJSON (ApiDecodedTransaction n) + where + toJSON = genericToJSON defaultRecordTypeOptions + instance FromJSON (ApiT TxMetadata) where parseJSON = fmap ApiT . either (fail . displayError) pure @@ -3548,6 +3577,7 @@ type family ApiWalletMigrationPlanPostDataT (n :: k) :: Type type family ApiWalletMigrationPostDataT (n :: k1) (s :: k2) :: Type type family ApiPutAddressesDataT (n :: k) :: Type type family ApiBalanceTransactionPostDataT (n :: k) :: Type +type family ApiDecodedTransactionT (n :: k) :: Type type instance ApiAddressT (n :: NetworkDiscriminant) = ApiAddress n @@ -3596,6 +3626,9 @@ type instance ApiMintedBurnedTransactionT (n :: NetworkDiscriminant) = type instance ApiBalanceTransactionPostDataT (n :: NetworkDiscriminant) = ApiBalanceTransactionPostData n +type instance ApiDecodedTransactionT (n :: NetworkDiscriminant) = + ApiDecodedTransaction n + {------------------------------------------------------------------------------- SMASH interfacing types -------------------------------------------------------------------------------} diff --git a/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs b/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs index 1a7e05748e0..55ff65c1fb6 100644 --- a/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs +++ b/lib/shelley/src/Cardano/Wallet/Shelley/Api/Server.hs @@ -64,6 +64,7 @@ import Cardano.Wallet.Api.Server , balanceTransaction , constructTransaction , createMigrationPlan + , decodeTransaction , delegationFee , deleteTransaction , deleteWallet @@ -315,6 +316,7 @@ server byron icarus shelley multisig spl ntp = :<|> postTransactionOld shelley (delegationAddress @n) :<|> postTransactionFeeOld shelley :<|> balanceTransaction shelley (delegationAddress @n) + :<|> decodeTransaction shelley shelleyMigrations :: Server (ShelleyMigrations n) shelleyMigrations = From c007ecca904b692fc99aecd8f30e7dc99643cee9 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 15 Oct 2021 15:44:20 +0200 Subject: [PATCH 03/31] change inputs to be more general in ApiDecodedTransaction clean --- lib/core/src/Cardano/Wallet/Api/Server.hs | 17 ++++++++++-- lib/core/src/Cardano/Wallet/Api/Types.hs | 25 +++++++++++++++--- specifications/api/swagger.yaml | 32 ++++++++++++++++++----- 3 files changed, 63 insertions(+), 11 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 0e114414cd3..49bef40c88e 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -210,7 +210,7 @@ import Cardano.Wallet.Api.Types , ApiCoinSelectionWithdrawal (..) , ApiConstructTransaction (..) , ApiConstructTransactionData (..) - , ApiDecodedTransaction + , ApiDecodedTransaction (..) , ApiEpochInfo (ApiEpochInfo) , ApiEra (..) , ApiErrorCode (..) @@ -2256,7 +2256,20 @@ decodeTransaction -> ApiT WalletId -> ApiSerialisedTransaction -> Handler (ApiDecodedTransaction n) -decodeTransaction _ctx _wid (ApiSerialisedTransaction (ApiT _sealed)) = undefined +decodeTransaction ctx _wid (ApiSerialisedTransaction (ApiT sealed)) = do + let (Tx txid feeM coll inps outs wdrlMap meta vldt) = decodeTx tl sealed + pure $ ApiDecodedTransaction + { id = ApiT txid + , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) + , inputs = [] + , outputs = [] + , collateral = [] + , withdrawals = [] + , metadata = ApiTxMetadata $ ApiT <$> meta + , scriptValidity = Nothing + } + where + tl = ctx ^. W.transactionLayer @k joinStakePool :: forall ctx s n k. diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 2229b5615ce..65f6f3e25ac 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -164,6 +164,7 @@ module Cardano.Wallet.Api.Types , ApiRedeemer (..) , ApiRedeemerCertificate (..) , ApiDecodedTransaction (..) + , ApiTxInputGeneral (..) -- * API Types (Byron) , ApiByronWallet (..) @@ -1134,14 +1135,19 @@ data ApiTransaction (n :: NetworkDiscriminant) = ApiTransaction } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData +data ApiTxInputGeneral (n :: NetworkDiscriminant) = + ExternalInput (ApiT TxIn, Quantity "lovelace" Natural) + | WalletInput (ApiCoinSelectionInput n) + deriving (Eq, Generic, Show, Typeable) + deriving anyclass NFData + data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction { id :: !(ApiT (Hash "Tx")) , fee :: !(Quantity "lovelace" Natural) - , inputs :: ![ApiTxInput n] + , inputs :: ![ApiTxInputGeneral n] , outputs :: ![AddressAmount (ApiT Address, Proxy n)] - , collateral :: ![ApiTxCollateral n] + , collateral :: ![ApiTxInputGeneral n] , withdrawals :: ![ApiWithdrawal n] - , mint :: !(ApiT W.TokenMap) , metadata :: !ApiTxMetadata , scriptValidity :: !(Maybe (ApiT TxScriptValidity)) } deriving (Eq, Generic, Show, Typeable) @@ -2969,6 +2975,19 @@ instance where toJSON = genericToJSON defaultRecordTypeOptions +instance + ( DecodeAddress n + , DecodeStakeAddress n + ) => FromJSON (ApiTxInputGeneral n) + where + parseJSON = genericParseJSON defaultRecordTypeOptions +instance + ( EncodeAddress n + , EncodeStakeAddress n + ) => ToJSON (ApiTxInputGeneral n) + where + toJSON = genericToJSON defaultRecordTypeOptions + instance FromJSON (ApiT TxMetadata) where parseJSON = fmap ApiT . either (fail . displayError) pure diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index a092b59a313..89274790a53 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1309,6 +1309,30 @@ x-transactionResolvedInputs: &transactionResolvedInputs type: integer minimum: 0 +x-transactionInputsWithoutSource: &transactionInputsWithoutSource + description: | + A list of transaction inputs without source. + type: array + minItems: 0 + items: + type: object + required: + - id + - index + properties: + id: *transactionId + index: + type: integer + minimum: 0 + +x-transactionInputsGeneral: &transactionInputsGeneral + nullable: false + oneOf: + - <<: *transactionInputsWithoutSource + title: tx inputs without source not belonging to a given wallet + - <<: *transactionResolvedInputs + title: tx inputs belonging to a given wallet + x-transactionResolvedCollateral: &transactionResolvedCollateral description: A list of transaction inputs used for collateral type: array @@ -2261,20 +2285,16 @@ components: required: - id - fee - - deposit - inputs - outputs - withdrawals - - mint properties: id: *transactionId fee: *amount - deposit: *amount - inputs: *transactionInputs + inputs: *transactionInputsGeneral outputs: *transactionOutputs - collateral: *transactionCollateral + collateral: *transactionInputsGeneral withdrawals: *transactionWithdrawals - mint: *transactionMint metadata: *transactionMetadata script_validity: *txScriptValidity From c88c5242c239cdb02631b01c3dbf94a3e2a3b215 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 15 Oct 2021 16:21:23 +0200 Subject: [PATCH 04/31] deal with colls, inps and outs --- lib/core/src/Cardano/Wallet/Api/Server.hs | 26 ++++++++++++++--------- specifications/api/swagger.yaml | 2 ++ 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 49bef40c88e..c9c6dcf7321 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -248,6 +248,7 @@ import Cardano.Wallet.Api.Types , ApiTxCollateral (..) , ApiTxId (..) , ApiTxInput (..) + , ApiTxInputGeneral (..) , ApiTxMetadata (..) , ApiUtxoStatistics (..) , ApiWallet (..) @@ -2257,19 +2258,21 @@ decodeTransaction -> ApiSerialisedTransaction -> Handler (ApiDecodedTransaction n) decodeTransaction ctx _wid (ApiSerialisedTransaction (ApiT sealed)) = do - let (Tx txid feeM coll inps outs wdrlMap meta vldt) = decodeTx tl sealed + let (Tx txid feeM colls inps outs wdrlMap meta vldt) = decodeTx tl sealed pure $ ApiDecodedTransaction { id = ApiT txid , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) - , inputs = [] - , outputs = [] - , collateral = [] + , inputs = map toInp inps + , outputs = map (toAddressAmount @n) outs + , collateral =map toInp colls , withdrawals = [] , metadata = ApiTxMetadata $ ApiT <$> meta , scriptValidity = Nothing } where tl = ctx ^. W.transactionLayer @k + toInp (txin, Coin c) = + ExternalInput (ApiT txin, Quantity $ fromIntegral c) joinStakePool :: forall ctx s n k. @@ -3157,14 +3160,14 @@ mkApiTransaction timeInterpreter setTimeReference tx = do , depth = Nothing , direction = ApiT (tx ^. (#txMeta . #direction)) , inputs = - [ ApiTxInput (fmap toAddressAmount o) (ApiT i) + [ ApiTxInput (fmap (toAddressAmount @n) o) (ApiT i) | (i, o) <- tx ^. #txInputs ] , collateral = [ ApiTxCollateral (fmap toAddressAmountNoAssets o) (ApiT i) | (i, o) <- tx ^. #txCollateral ] - , outputs = toAddressAmount <$> tx ^. #txOutputs + , outputs = toAddressAmount @n <$> tx ^. #txOutputs , withdrawals = mkApiWithdrawal @n <$> Map.toList (tx ^. #txWithdrawals) , mint = mempty -- TODO: ADP-xxx , status = ApiT (tx ^. (#txMeta . #status)) @@ -3227,16 +3230,19 @@ mkApiTransaction timeInterpreter setTimeReference tx = do txOutValue :: TxOut -> Natural txOutValue = fromIntegral . unCoin . txOutCoin - toAddressAmount :: TxOut -> AddressAmount (ApiT Address, Proxy n) - toAddressAmount (TxOut addr (TokenBundle.TokenBundle coin assets)) = - AddressAmount (ApiT addr, Proxy @n) (mkApiCoin coin) (ApiT assets) - toAddressAmountNoAssets :: TxOut -> AddressAmountNoAssets (ApiT Address, Proxy n) toAddressAmountNoAssets (TxOut addr (TokenBundle.TokenBundle coin _)) = AddressAmountNoAssets (ApiT addr, Proxy @n) (mkApiCoin coin) +toAddressAmount + :: forall (n :: NetworkDiscriminant). () + => TxOut + -> AddressAmount (ApiT Address, Proxy n) +toAddressAmount (TxOut addr (TokenBundle.TokenBundle coin assets)) = + AddressAmount (ApiT addr, Proxy @n) (mkApiCoin coin) (ApiT assets) + mkApiCoin :: Coin -> Quantity "lovelace" Natural diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 89274790a53..fdcb69b454c 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1319,11 +1319,13 @@ x-transactionInputsWithoutSource: &transactionInputsWithoutSource required: - id - index + - amount properties: id: *transactionId index: type: integer minimum: 0 + amount: *amount x-transactionInputsGeneral: &transactionInputsGeneral nullable: false From d6b999cc152f2b5482f29722ffa946cfacd5768a Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 15 Oct 2021 19:37:13 +0200 Subject: [PATCH 05/31] deal with withdrawals --- lib/core/src/Cardano/Wallet/Api/Server.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index c9c6dcf7321..64d7b07214b 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2264,8 +2264,8 @@ decodeTransaction ctx _wid (ApiSerialisedTransaction (ApiT sealed)) = do , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) , inputs = map toInp inps , outputs = map (toAddressAmount @n) outs - , collateral =map toInp colls - , withdrawals = [] + , collateral = map toInp colls + , withdrawals = map toWrdl $ Map.assocs wdrlMap , metadata = ApiTxMetadata $ ApiT <$> meta , scriptValidity = Nothing } @@ -2273,6 +2273,8 @@ decodeTransaction ctx _wid (ApiSerialisedTransaction (ApiT sealed)) = do tl = ctx ^. W.transactionLayer @k toInp (txin, Coin c) = ExternalInput (ApiT txin, Quantity $ fromIntegral c) + toWrdl (rewardKey, (Coin c)) = + ApiWithdrawal (ApiT rewardKey, Proxy @n) (Quantity $ fromIntegral c) joinStakePool :: forall ctx s n k. From c9f4b340ffc263d209cdbbdb17e59272b6c0b41c Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 15 Oct 2021 19:46:42 +0200 Subject: [PATCH 06/31] deal with validity interval --- lib/core/src/Cardano/Wallet/Api/Server.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 64d7b07214b..050c7d94177 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2267,7 +2267,7 @@ decodeTransaction ctx _wid (ApiSerialisedTransaction (ApiT sealed)) = do , collateral = map toInp colls , withdrawals = map toWrdl $ Map.assocs wdrlMap , metadata = ApiTxMetadata $ ApiT <$> meta - , scriptValidity = Nothing + , scriptValidity = ApiT <$> vldt } where tl = ctx ^. W.transactionLayer @k From df4f127303472196c77da9fdc7fd490fcdd62e3b Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 15 Oct 2021 20:51:27 +0200 Subject: [PATCH 07/31] add lookupTxIns in Cardano.Wallet --- lib/core/src/Cardano/Wallet.hs | 34 +++++++++++++++++++++++ lib/core/src/Cardano/Wallet/Api/Server.hs | 14 +++++++++- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index dba914f1705..efecfd64e27 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -101,9 +101,11 @@ module Cardano.Wallet , importRandomAddresses , listAddresses , normalizeDelegationAddress + , lookupTxIns , ErrCreateRandomAddress(..) , ErrImportRandomAddress(..) , ErrImportAddress(..) + , ErrDecodeTx (..) -- ** Payment , getTxExpiry @@ -1169,6 +1171,33 @@ manageRewardBalance _ ctx wid = db & \DBLayer{..} -> do Address -------------------------------------------------------------------------------} +lookupTxIns + :: forall ctx s k. + ( HasDBLayer IO s k ctx + , KnownAddresses s + , IsOurs s Address + ) + => ctx + -> WalletId + -> [TxIn] + -> ExceptT ErrDecodeTx IO [(TxIn, Maybe (TxOut, NonEmpty DerivationIndex))] +lookupTxIns ctx wid txins = db & \DBLayer{..} -> do + cp <- mapExceptT atomically + $ withExceptT ErrDecodeTxNoSuchWallet + $ withNoSuchWallet wid + $ readCheckpoint wid + let walletAddr = knownAddresses (getState cp) + pure $ map (tryGetTxOutPath cp walletAddr) txins + where + db = ctx ^. dbLayer @IO @s @k + tryGetTxOutPath cp walletAddr txin = + case UTxO.lookup txin (totalUTxO mempty cp) of + Nothing -> (txin, Nothing) + Just (txout@(TxOut addr _)) -> + let path:_ = map (\(_, _,p) -> p) $ + filter (\(addr', _,_) -> addr' == addr) walletAddr + in (txin, Just (txout, path)) + -- | List all addresses of a wallet with their metadata. Addresses -- are ordered from the most-recently-discovered to the oldest known. listAddresses @@ -2825,6 +2854,11 @@ data ErrWitnessTx | ErrWitnessTxIncorrectTTL PastHorizonException deriving (Show, Eq) +-- | Errors that can occur when decoding a transaction. +newtype ErrDecodeTx + = ErrDecodeTxNoSuchWallet ErrNoSuchWallet + deriving (Show, Eq) + -- | Errors that can occur when submitting a signed transaction to the network. data ErrSubmitTx = ErrSubmitTxNetwork ErrPostTx diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 050c7d94177..8b8dc5059f5 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -137,6 +137,7 @@ import Cardano.Wallet , ErrConstructTx (..) , ErrCreateMigrationPlan (..) , ErrCreateRandomAddress (..) + , ErrDecodeTx (..) , ErrDerivePublicKey (..) , ErrFetchRewards (..) , ErrGetTransaction (..) @@ -2252,13 +2253,17 @@ balanceTransaction ctx genChange (ApiT wid) body = do decodeTransaction :: forall ctx s k n. ( ctx ~ ApiLayer s k + , KnownAddresses s + , IsOurs s Address ) => ctx -> ApiT WalletId -> ApiSerialisedTransaction -> Handler (ApiDecodedTransaction n) -decodeTransaction ctx _wid (ApiSerialisedTransaction (ApiT sealed)) = do +decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do let (Tx txid feeM colls inps outs wdrlMap meta vldt) = decodeTx tl sealed + _txinsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> + liftHandler $ W.lookupTxIns wrk wid (fst <$> inps) pure $ ApiDecodedTransaction { id = ApiT txid , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) @@ -3711,6 +3716,13 @@ instance IsServerError ErrConstructTx where apiError err501 NotImplemented "This feature is not yet implemented." +instance IsServerError ErrDecodeTx where + toServerError = \case + ErrDecodeTxNoSuchWallet e -> (toServerError e) + { errHTTPCode = 404 + , errReasonPhrase = errReasonPhrase err404 + } + instance IsServerError ErrBalanceTx where toServerError = \case ErrBalanceTxTxAlreadyBalanced -> From bd277def231552ba838c5d91f40cfc03a7d2defc Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 15 Oct 2021 21:06:24 +0200 Subject: [PATCH 08/31] use lookupTxIns for inps and collaterals in decodeTransaction --- lib/core/src/Cardano/Wallet/Api/Server.hs | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 8b8dc5059f5..4da897541f5 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2262,22 +2262,35 @@ decodeTransaction -> Handler (ApiDecodedTransaction n) decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do let (Tx txid feeM colls inps outs wdrlMap meta vldt) = decodeTx tl sealed - _txinsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> + txinsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> liftHandler $ W.lookupTxIns wrk wid (fst <$> inps) + collsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> + liftHandler $ W.lookupTxIns wrk wid (fst <$> colls) pure $ ApiDecodedTransaction { id = ApiT txid , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) - , inputs = map toInp inps + , inputs = zipWith toInp txinsOutsPaths inps , outputs = map (toAddressAmount @n) outs - , collateral = map toInp colls + , collateral = zipWith toInp collsOutsPaths colls , withdrawals = map toWrdl $ Map.assocs wdrlMap , metadata = ApiTxMetadata $ ApiT <$> meta , scriptValidity = ApiT <$> vldt } where tl = ctx ^. W.transactionLayer @k - toInp (txin, Coin c) = - ExternalInput (ApiT txin, Quantity $ fromIntegral c) + toInp (txin@(TxIn txid ix), txoutPathM) (_, Coin c) = + case txoutPathM of + Nothing -> + ExternalInput (ApiT txin, Quantity $ fromIntegral c) + Just (TxOut addr (TokenBundle _c tmap), path) -> + WalletInput $ ApiCoinSelectionInput + { id = ApiT txid + , index = ix + , address = (ApiT addr, Proxy @n) + , derivationPath = NE.map ApiT path + , amount = Quantity $ fromIntegral c + , assets = ApiT tmap + } toWrdl (rewardKey, (Coin c)) = ApiWithdrawal (ApiT rewardKey, Proxy @n) (Quantity $ fromIntegral c) From 2d46976b2f7eaea34ec10750e1f48e92e5f47a9a Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 18 Oct 2021 15:33:02 +0200 Subject: [PATCH 09/31] improve handling inputs --- lib/core/src/Cardano/Wallet/Api/Server.hs | 14 +++++----- lib/core/src/Cardano/Wallet/Api/Types.hs | 20 ++++++++++++-- specifications/api/swagger.yaml | 32 ++++++++++++++++++++--- 3 files changed, 54 insertions(+), 12 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 4da897541f5..796161f0f19 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -258,6 +258,7 @@ import Cardano.Wallet.Api.Types , ApiWalletDelegation (..) , ApiWalletDelegationNext (..) , ApiWalletDelegationStatus (..) + , ApiWalletInput (..) , ApiWalletMigrationBalance (..) , ApiWalletMigrationPlan (..) , ApiWalletMigrationPlanPostData (..) @@ -2261,7 +2262,7 @@ decodeTransaction -> ApiSerialisedTransaction -> Handler (ApiDecodedTransaction n) decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do - let (Tx txid feeM colls inps outs wdrlMap meta vldt) = decodeTx tl sealed + let (Tx txid feeM colls inps outs wdrlMap meta vldt, _toMint, _toBurn) = decodeTx tl sealed txinsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> liftHandler $ W.lookupTxIns wrk wid (fst <$> inps) collsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> @@ -2278,17 +2279,18 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do } where tl = ctx ^. W.transactionLayer @k - toInp (txin@(TxIn txid ix), txoutPathM) (_, Coin c) = + toInp (txin@(TxIn txid ix), txoutPathM) (_, Coin cTaken) = case txoutPathM of Nothing -> - ExternalInput (ApiT txin, Quantity $ fromIntegral c) - Just (TxOut addr (TokenBundle _c tmap), path) -> - WalletInput $ ApiCoinSelectionInput + ExternalInput (ApiT txin, Quantity $ fromIntegral cTaken) + Just (TxOut addr (TokenBundle (Coin cInitial) tmap), path) -> + WalletInput $ ApiWalletInput { id = ApiT txid , index = ix , address = (ApiT addr, Proxy @n) , derivationPath = NE.map ApiT path - , amount = Quantity $ fromIntegral c + , amountBefore = Quantity $ fromIntegral cInitial + , amountSent = Quantity $ fromIntegral cTaken , assets = ApiT tmap } toWrdl (rewardKey, (Coin c)) = diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index 65f6f3e25ac..e87ae48e76f 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -162,8 +162,8 @@ module Cardano.Wallet.Api.Types , ApiBalanceTransactionPostData (..) , ApiExternalInput (..) , ApiRedeemer (..) - , ApiRedeemerCertificate (..) , ApiDecodedTransaction (..) + , ApiWalletInput (..) , ApiTxInputGeneral (..) -- * API Types (Byron) @@ -1135,9 +1135,20 @@ data ApiTransaction (n :: NetworkDiscriminant) = ApiTransaction } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData +data ApiWalletInput (n :: NetworkDiscriminant) = ApiWalletInput + { id :: !(ApiT (Hash "Tx")) + , index :: !Word32 + , address :: !(ApiT Address, Proxy n) + , derivationPath :: NonEmpty (ApiT DerivationIndex) + , amountBefore :: !(Quantity "lovelace" Natural) + , amountSent :: !(Quantity "lovelace" Natural) + , assets :: !(ApiT W.TokenMap) + } deriving (Eq, Generic, Show, Typeable) + deriving anyclass NFData + data ApiTxInputGeneral (n :: NetworkDiscriminant) = ExternalInput (ApiT TxIn, Quantity "lovelace" Natural) - | WalletInput (ApiCoinSelectionInput n) + | WalletInput (ApiWalletInput n) deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData @@ -2962,6 +2973,11 @@ instance where toJSON = genericToJSON defaultRecordTypeOptions +instance DecodeAddress n => FromJSON (ApiWalletInput n) where + parseJSON = genericParseJSON defaultRecordTypeOptions +instance EncodeAddress n => ToJSON (ApiWalletInput n) where + toJSON = genericToJSON defaultRecordTypeOptions + instance ( DecodeAddress n , DecodeStakeAddress n diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index fdcb69b454c..19af12e259d 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1309,9 +1309,9 @@ x-transactionResolvedInputs: &transactionResolvedInputs type: integer minimum: 0 -x-transactionInputsWithoutSource: &transactionInputsWithoutSource +x-transactionInputsOutsideWallet: &transactionInputsOutsideWallet description: | - A list of transaction inputs without source. + A list of transaction inputs not belonging to a given wallet. type: array minItems: 0 items: @@ -1327,12 +1327,36 @@ x-transactionInputsWithoutSource: &transactionInputsWithoutSource minimum: 0 amount: *amount +x-transactionInputsInsideWallet: &transactionInputsInsideWallet + description: | + A list of transaction inputs belonging to a given wallet. + type: array + items: + type: object + required: + - id + - index + - address + - amount_before + - amount_picked + - derivation_path + properties: + address: *addressId + amount_before: *amount + amount_sent: *amount + assets: *walletAssets + id: *transactionId + derivation_path: *derivationPath + index: + type: integer + minimum: 0 + x-transactionInputsGeneral: &transactionInputsGeneral nullable: false oneOf: - - <<: *transactionInputsWithoutSource + - <<: *transactionInputsOutsideWallet title: tx inputs without source not belonging to a given wallet - - <<: *transactionResolvedInputs + - <<: *transactionInputsInsideWallet title: tx inputs belonging to a given wallet x-transactionResolvedCollateral: &transactionResolvedCollateral From ab51465dcc1d3505621216f4d2efef409bea87c0 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 18 Oct 2021 15:55:56 +0200 Subject: [PATCH 10/31] generalize withdrawals in swagger --- specifications/api/swagger.yaml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 19af12e259d..e84a951baba 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1211,6 +1211,29 @@ x-transactionWithdrawals: &transactionWithdrawals stake_address: *stakeAddress amount: *amount +x-ours: &ours + type: string + enum: ["our"] + description: | + Used when withdrawal or output is ours. + +x-transactionWithdrawalsGeneral: &transactionWithdrawalsGeneral + description: | + A list of withdrawals from stake addresses. Withdrawal belonging to the wallet + is underlined. + type: array + minItems: 0 + items: + type: object + additionalProperties: false + required: + - stake_address + - amount + properties: + stake_address: *stakeAddress + amount: *amount + context: *ours + x-softIndex: &softIndex type: integer minimum: 0 @@ -2320,7 +2343,7 @@ components: inputs: *transactionInputsGeneral outputs: *transactionOutputs collateral: *transactionInputsGeneral - withdrawals: *transactionWithdrawals + withdrawals: *transactionWithdrawalsGeneral metadata: *transactionMetadata script_validity: *txScriptValidity From fd34bde2530340c02f85dd359b9935404e8f04a7 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 18 Oct 2021 21:01:21 +0200 Subject: [PATCH 11/31] deal with withdrawals --- lib/core/src/Cardano/Wallet/Api/Server.hs | 26 +++++++++++------ lib/core/src/Cardano/Wallet/Api/Types.hs | 35 ++++++++++++++++++++++- 2 files changed, 51 insertions(+), 10 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 796161f0f19..6a412302562 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -269,6 +269,7 @@ import Cardano.Wallet.Api.Types , ApiWalletUtxoSnapshot (..) , ApiWalletUtxoSnapshotEntry (..) , ApiWithdrawal (..) + , ApiWithdrawalGeneral (..) , ApiWithdrawalPostData (..) , ByronWalletFromXPrvPostData , ByronWalletPostData (..) @@ -279,6 +280,7 @@ import Cardano.Wallet.Api.Types , MinWithdrawal (..) , PostTransactionFeeOldData (..) , PostTransactionOldData (..) + , ResourceContext (..) , VerificationKeyHashing (..) , WalletOrAccountPostData (..) , WalletPostData (..) @@ -342,7 +344,6 @@ import Cardano.Wallet.Primitive.AddressDiscovery.Sequential ( DerivationPrefix (..) , ParentContext (..) , SeqState (..) - , context , defaultAddressPoolGap , gap , mkSeqStateFromAccountXPub @@ -1065,7 +1066,7 @@ mkSharedWallet ctx wid cp meta pending progress = case getState cp of cp let available = availableBalance pending cp let total = totalBalance pending reward cp - let (ParentContextShared _ pTemplate dTemplateM) = context pool + let (ParentContextShared _ pTemplate dTemplateM) = pool ^. #context pure $ ApiSharedWallet $ Right $ ApiActiveSharedWallet { id = ApiT wid , name = ApiT $ meta ^. #name @@ -2256,6 +2257,8 @@ decodeTransaction ( ctx ~ ApiLayer s k , KnownAddresses s , IsOurs s Address + , Typeable s + , Typeable n ) => ctx -> ApiT WalletId @@ -2263,17 +2266,19 @@ decodeTransaction -> Handler (ApiDecodedTransaction n) decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do let (Tx txid feeM colls inps outs wdrlMap meta vldt, _toMint, _toBurn) = decodeTx tl sealed - txinsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> - liftHandler $ W.lookupTxIns wrk wid (fst <$> inps) - collsOutsPaths <- withWorkerCtx ctx wid liftE liftE $ \wrk -> - liftHandler $ W.lookupTxIns wrk wid (fst <$> colls) + (txinsOutsPaths, collsOutsPaths, acct) <- + withWorkerCtx ctx wid liftE liftE $ \wrk -> do + txinsOutsPaths <- liftHandler $ W.lookupTxIns wrk wid (fst <$> inps) + (acct, _, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid + collsOutsPaths <- liftHandler $ W.lookupTxIns wrk wid (fst <$> colls) + pure (txinsOutsPaths, collsOutsPaths, acct) pure $ ApiDecodedTransaction { id = ApiT txid , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) , inputs = zipWith toInp txinsOutsPaths inps , outputs = map (toAddressAmount @n) outs , collateral = zipWith toInp collsOutsPaths colls - , withdrawals = map toWrdl $ Map.assocs wdrlMap + , withdrawals = map (toWrdl acct) $ Map.assocs wdrlMap , metadata = ApiTxMetadata $ ApiT <$> meta , scriptValidity = ApiT <$> vldt } @@ -2293,8 +2298,11 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do , amountSent = Quantity $ fromIntegral cTaken , assets = ApiT tmap } - toWrdl (rewardKey, (Coin c)) = - ApiWithdrawal (ApiT rewardKey, Proxy @n) (Quantity $ fromIntegral c) + toWrdl acct (rewardKey, (Coin c)) = + if rewardKey == acct then + ApiWithdrawalGeneral (ApiT rewardKey, Proxy @n) (Quantity $ fromIntegral c) Our + else + ApiWithdrawalGeneral (ApiT rewardKey, Proxy @n) (Quantity $ fromIntegral c) External joinStakePool :: forall ctx s n k. diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index e87ae48e76f..ba1556bd48a 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -165,6 +165,8 @@ module Cardano.Wallet.Api.Types , ApiDecodedTransaction (..) , ApiWalletInput (..) , ApiTxInputGeneral (..) + , ResourceContext (..) + , ApiWithdrawalGeneral (..) -- * API Types (Byron) , ApiByronWallet (..) @@ -1152,13 +1154,24 @@ data ApiTxInputGeneral (n :: NetworkDiscriminant) = deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData +data ResourceContext = External | Our + deriving (Eq, Generic, Show, Typeable) + deriving anyclass NFData + +data ApiWithdrawalGeneral n = ApiWithdrawalGeneral + { stakeAddress :: !(ApiT W.RewardAccount, Proxy n) + , amount :: !(Quantity "lovelace" Natural) + , context :: !ResourceContext + } deriving (Eq, Generic, Show) + deriving anyclass NFData + data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction { id :: !(ApiT (Hash "Tx")) , fee :: !(Quantity "lovelace" Natural) , inputs :: ![ApiTxInputGeneral n] , outputs :: ![AddressAmount (ApiT Address, Proxy n)] , collateral :: ![ApiTxInputGeneral n] - , withdrawals :: ![ApiWithdrawal n] + , withdrawals :: ![ApiWithdrawalGeneral n] , metadata :: !ApiTxMetadata , scriptValidity :: !(Maybe (ApiT TxScriptValidity)) } deriving (Eq, Generic, Show, Typeable) @@ -3161,6 +3174,26 @@ instance DecodeStakeAddress n => FromJSON (ApiWithdrawal n) where instance EncodeStakeAddress n => ToJSON (ApiWithdrawal n) where toJSON = genericToJSON defaultRecordTypeOptions +instance DecodeStakeAddress n => FromJSON (ApiWithdrawalGeneral n) where + parseJSON obj = do + myResource <- + (withObject "ApiWithdrawalGeneral" $ + \o -> o .:? "context" :: Aeson.Parser (Maybe Text)) obj + case myResource of + Nothing -> do + (ApiWithdrawal addr amt) <- parseJSON obj :: Aeson.Parser (ApiWithdrawal n) + pure $ ApiWithdrawalGeneral addr amt External + _ -> do + (ApiWithdrawal addr amt) <- parseJSON obj :: Aeson.Parser (ApiWithdrawal n) + pure $ ApiWithdrawalGeneral addr amt Our +instance EncodeStakeAddress n => ToJSON (ApiWithdrawalGeneral n) where + toJSON (ApiWithdrawalGeneral addr amt ctx) = do + let obj = [ "stake_address" .= toJSON addr + , "amount" .= toJSON amt] + case ctx of + External -> object obj + Our -> object $ obj ++ ["context" .= String "ours"] + instance {-# OVERLAPS #-} (DecodeStakeAddress n) => FromJSON (ApiT W.RewardAccount, Proxy n) where From 16d8bac63f5a7a6abb5b1eb459fdfbba2cda8e44 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Tue, 19 Oct 2021 13:50:15 +0200 Subject: [PATCH 12/31] first integration test for decode tx --- .../Test/Integration/Framework/TestData.hs | 5 -- .../Scenario/API/Shelley/TransactionsNew.hs | 49 ++++++++++--------- lib/core/src/Cardano/Wallet/Api/Link.hs | 16 ++++++ 3 files changed, 43 insertions(+), 27 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Framework/TestData.hs b/lib/core-integration/src/Test/Integration/Framework/TestData.hs index 525857a95ef..a867ab16058 100644 --- a/lib/core-integration/src/Test/Integration/Framework/TestData.hs +++ b/lib/core-integration/src/Test/Integration/Framework/TestData.hs @@ -97,7 +97,6 @@ module Test.Integration.Framework.TestData , errMsg403TemplateInvalidDuplicateXPub , errMsg403TemplateInvalidScript , errMsg403InvalidConstructTx - , errMsg403transactionAlreadyBalanced ) where import Prelude @@ -622,10 +621,6 @@ errMsg400ScriptNotUniformRoles :: String errMsg400ScriptNotUniformRoles = "All keys of a script must have the same role: either payment or delegation." -errMsg403transactionAlreadyBalanced :: String -errMsg403transactionAlreadyBalanced = - "The transaction is already balanced. Please send a transaction that requires more inputs/outputs to be picked to be balanced." - -------------------------------------------------------------------------------- -- 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 39a9c7cbdb7..f0ef94ae06c 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 @@ -31,10 +31,14 @@ import Cardano.Wallet.Api.Types ( ApiCoinSelection (withdrawals) , ApiCoinSelectionInput (..) , ApiConstructTransaction (..) + , ApiDecodedTransaction + , ApiFee (..) , ApiSerialisedTransaction , ApiStakePool , ApiT (..) , ApiTransaction + , ApiTxInputGeneral (..) + , ApiTxMetadata (..) , ApiWallet , DecodeAddress , DecodeStakeAddress @@ -50,9 +54,11 @@ import Cardano.Wallet.Primitive.Types.Address ( Address (..) ) import Cardano.Wallet.Primitive.Types.Coin ( Coin (..) ) -import Cardano.Wallet.Primitive.Types.Tx - ( Direction (..) +import Cardano.Wallet.Primitive.Types.Hash + ( Hash (..) ) + , Direction (..) , SealedTx + , TxIn (..) , TxStatus (..) , cardanoTx , getSealedTxBody @@ -133,7 +139,6 @@ import Test.Integration.Framework.TestData , errMsg403MinUTxOValue , errMsg403NotDelegating , errMsg403NotEnoughMoney - , errMsg403transactionAlreadyBalanced , errMsg404NoSuchPool ) @@ -1075,24 +1080,23 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do -- update with sign / submit tx where applicable -- end to end join pool and get rewards - it "TRANS_NEW_BALANCE_01a - multiple-output transaction with all covering inputs present" $ \ctx -> runResourceT $ do - - liftIO $ pendingWith "ADP-1179: Behavior needs to be clarified" + it "TRANS_DECODE_01a - multiple-output transaction with all covering inputs" $ \ctx -> runResourceT $ do -- constructing source wallet let initialAmt = minUTxOValue (_mainEra ctx) wa <- fixtureWalletWith @n ctx [initialAmt] - -- the tx involes two outputs : + -- The normal tx was created for some wallets and they are different than the wa. + -- The transaction involves four outputs with the amounts : -- 999978 -- 999978 - -- results in two changes -- 49998927722 -- 49998927722 -- incurs the fee of -- 144600 - -- and involves one input + -- and involves one external input -- 100000000000 + -- no metadata, no collaterals, no withdrawals let serializedTxHex = "84a600818258200eaa33be8780935ca5a7c1e628a2d54402446f96236c\ \a8f1770e07fa22ba8648000d80018482583901a65f0e7aea387adbc109\ @@ -1106,21 +1110,22 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do \2b143b1ce1b68ccb62f8e8437b3089fc61d21ddfcbd4d43652bf05c40c\ \346fa794871423b65052d7614c1b0000000ba42b176a021a000234d803\ \198ceb0e80a0f5f6" :: Text - let balancePayload = Json [json|{ - "transaction": { "cborHex" : #{serializedTxHex}, "description": "", "type": "Tx AlonzoEra" }, - "inputs": [ - { "txIn" : "0eaa33be8780935ca5a7c1e628a2d54402446f96236ca8f1770e07fa22ba8648#0" - , "txOut" : - { "value" : { "lovelace": 100000000000 } - , "address": "addr1vx0d0kyppx3qls8laq5jvpq0qa52d0gahm8tsyj2jpg0lpg4ue9lt" - } - }] + + let theTxHash = Hash "\SO\170\&3\190\135\128\147\\\165\167\193\230(\162\213D\STXDo\150#l\168\241w\SO\a\250\"\186\134H" + + let decodePayload = Json [json|{ + "transaction": #{serializedTxHex} }|] - rTx <- request @(ApiConstructTransaction n) ctx - (Link.balanceTransaction @'Shelley wa) Default balancePayload + rTx <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload verify rTx - [ expectResponseCode HTTP.status403 - , expectErrorMessage errMsg403transactionAlreadyBalanced + [ expectResponseCode HTTP.status202 + , expectField (#fee . #getQuantity) (`shouldBe` 144600) + , expectField #withdrawals (`shouldBe` []) + , expectField #collateral (`shouldBe` []) + , expectField #metadata (`shouldBe` (ApiTxMetadata Nothing)) + , expectField #inputs + (`shouldBe` [ExternalInput (ApiT (TxIn theTxHash 0), Quantity 0)]) ] it "TRANS_NEW_BALANCE_01d - single-output transaction with missing covering inputs" $ \ctx -> runResourceT $ do diff --git a/lib/core/src/Cardano/Wallet/Api/Link.hs b/lib/core/src/Cardano/Wallet/Api/Link.hs index 5e340d8bfa4..97d978d4c75 100644 --- a/lib/core/src/Cardano/Wallet/Api/Link.hs +++ b/lib/core/src/Cardano/Wallet/Api/Link.hs @@ -83,6 +83,7 @@ module Cardano.Wallet.Api.Link , createUnsignedTransaction , signTransaction , balanceTransaction + , decodeTransaction -- * StakePools , listStakePools @@ -681,6 +682,21 @@ balanceTransaction w = discriminate @style where wid = w ^. typed @(ApiT WalletId) +decodeTransaction + :: forall style w. + ( HasCallStack + , HasType (ApiT WalletId) w + , Discriminate style + ) + => w + -> (Method, Text) +decodeTransaction w = discriminate @style + (endpoint @(Api.DecodeTransaction Net) (wid &)) + (notSupported "Byron") + (notSupported "Shared") + where + wid = w ^. typed @(ApiT WalletId) + -- -- Stake Pools -- From 802639a4a095bf736e26cd4cecfd084203d27a2c Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Tue, 19 Oct 2021 13:59:51 +0200 Subject: [PATCH 13/31] rm unneeded errors from ErrBalanceTx --- lib/core/src/Cardano/Wallet.hs | 4 +--- lib/core/src/Cardano/Wallet/Api/Server.hs | 8 -------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index efecfd64e27..7742ff2cfa9 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -2823,11 +2823,9 @@ data ErrSignPayment -- | Errors that can occur when balancing transaction. data ErrBalanceTx - = ErrBalanceTxTxAlreadyBalanced - | ErrBalanceTxUpdateError ErrUpdateSealedTx + = ErrBalanceTxUpdateError ErrUpdateSealedTx | ErrBalanceTxSelectAssets ErrSelectAssets | ErrBalanceTxAssignRedeemers ErrAssignRedeemers - | ErrBalanceTxNotImplemented deriving (Show, Eq) -- | Errors that can occur when constructing an unsigned transaction. diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 6a412302562..aaea3e16e83 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -3748,11 +3748,6 @@ instance IsServerError ErrDecodeTx where instance IsServerError ErrBalanceTx where toServerError = \case - ErrBalanceTxTxAlreadyBalanced -> - apiError err403 TransactionAlreadyBalanced $ mconcat - [ "The transaction is already balanced. " - , "Please send a transaction that requires more inputs/outputs to be picked to be balanced." - ] ErrBalanceTxUpdateError ErrByronTxNotSupported -> apiError err403 CreatedInvalidTransaction "Balancing Byron transactions is not supported." @@ -3766,9 +3761,6 @@ instance IsServerError ErrBalanceTx where ] ErrBalanceTxSelectAssets err -> toServerError err ErrBalanceTxAssignRedeemers err -> toServerError err - ErrBalanceTxNotImplemented -> - apiError err501 NotImplemented - "This feature is not yet implemented." instance IsServerError ErrMintBurnAssets where toServerError = \case From ef01d0f14b299ff8d0e185e6c5dc895a58cc0522 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Tue, 19 Oct 2021 14:24:33 +0200 Subject: [PATCH 14/31] unpend single output tx test --- .../Test/Integration/Scenario/API/Shelley/TransactionsNew.hs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index f0ef94ae06c..8ae34722791 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 @@ -383,6 +383,10 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ] it "TRANS_NEW_CREATE_04a - Single Output Transaction" $ \ctx -> runResourceT $ do +<<<<<<< HEAD +======= + +>>>>>>> 14b12431a (unpend single output tx test) let initialAmt = 3 * minUTxOValue (_mainEra ctx) wa <- fixtureWalletWith @n ctx [initialAmt] wb <- emptyWallet ctx @@ -400,6 +404,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectField (#coinSelection . #change) (`shouldSatisfy` (not . null)) , expectField (#fee . #getQuantity) (`shouldSatisfy` (> 0)) ] + let expectedFee = getFromResponse (#fee . #getQuantity) rTx let expectedFee = getFromResponse (#fee . #getQuantity) rTx let filterInitialAmt = From 06bc13941fa571fc681e11f74df0c8680ef3814c Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 20 Oct 2021 19:16:12 +0200 Subject: [PATCH 15/31] fix address comparing in lookupTxIns --- .../Scenario/API/Shelley/TransactionsNew.hs | 17 +++++++++++- lib/core/src/Cardano/Wallet.hs | 27 ++++++++++++------- lib/core/src/Cardano/Wallet/Api/Server.hs | 8 +++--- 3 files changed, 39 insertions(+), 13 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 8ae34722791..adf09cbae34 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 @@ -33,7 +33,7 @@ import Cardano.Wallet.Api.Types , ApiConstructTransaction (..) , ApiDecodedTransaction , ApiFee (..) - , ApiSerialisedTransaction + , ApiSerialisedTransaction (..) , ApiStakePool , ApiT (..) , ApiTransaction @@ -157,6 +157,10 @@ import qualified Data.Text.Encoding as T import qualified Network.HTTP.Types.Status as HTTP import qualified Test.Integration.Plutus as PlutusScenario + +import qualified Debug.Trace as TR + + spec :: forall n. ( DecodeAddress n , DecodeStakeAddress n @@ -405,6 +409,17 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectField (#fee . #getQuantity) (`shouldSatisfy` (> 0)) ] let expectedFee = getFromResponse (#fee . #getQuantity) rTx + let txCbor = getFromResponse #transaction rTx + let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) + rDecodedTx <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload + TR.trace ("rDecodedTx"<>show rDecodedTx) $ verify rDecodedTx + [ expectResponseCode HTTP.status202 + , expectField (#fee . #getQuantity) (`shouldBe` expectedFee) + , expectField #withdrawals (`shouldBe` []) + , expectField #collateral (`shouldBe` []) + , expectField #metadata (`shouldBe` (ApiTxMetadata Nothing)) + ] let expectedFee = getFromResponse (#fee . #getQuantity) rTx let filterInitialAmt = diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 7742ff2cfa9..1952035202c 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -561,7 +561,6 @@ import qualified Data.Set as Set import qualified Data.Text as T import qualified Data.Vector as V - -- $Development -- __Naming Conventions__ -- @@ -1172,31 +1171,41 @@ manageRewardBalance _ ctx wid = db & \DBLayer{..} -> do -------------------------------------------------------------------------------} lookupTxIns - :: forall ctx s k. + :: forall ctx s k (n :: NetworkDiscriminant). ( HasDBLayer IO s k ctx , KnownAddresses s , IsOurs s Address + , WalletKey k + , DelegationAddress n k ) => ctx -> WalletId -> [TxIn] + -> XPub -> ExceptT ErrDecodeTx IO [(TxIn, Maybe (TxOut, NonEmpty DerivationIndex))] -lookupTxIns ctx wid txins = db & \DBLayer{..} -> do +lookupTxIns ctx wid txins xpub = db & \DBLayer{..} -> do cp <- mapExceptT atomically $ withExceptT ErrDecodeTxNoSuchWallet $ withNoSuchWallet wid $ readCheckpoint wid - let walletAddr = knownAddresses (getState cp) - pure $ map (tryGetTxOutPath cp walletAddr) txins + let f (addr, addrState, ix) = + ( liftDelegationAddress @n @k ((\(Right finger) -> finger) $ + paymentKeyFingerprint @k addr) (liftRawKey @k xpub) + , addrState + , ix ) + let walletAddrs = map f $ knownAddresses (getState cp) + pure $ map (tryGetTxOutPath cp walletAddrs) txins where db = ctx ^. dbLayer @IO @s @k - tryGetTxOutPath cp walletAddr txin = + tryGetTxOutPath cp walletAddrs txin = case UTxO.lookup txin (totalUTxO mempty cp) of Nothing -> (txin, Nothing) Just (txout@(TxOut addr _)) -> - let path:_ = map (\(_, _,p) -> p) $ - filter (\(addr', _,_) -> addr' == addr) walletAddr - in (txin, Just (txout, path)) + let path = map (\(_, _,p) -> p) $ + filter (\(addr', _,_) -> addr' == addr) walletAddrs + in case path of + [] -> (txin, Nothing) -- will probably use error here + path':_ -> (txin, Just (txout, path')) -- | List all addresses of a wallet with their metadata. Addresses -- are ordered from the most-recently-discovered to the oldest known. diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index aaea3e16e83..70de551ce85 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2259,6 +2259,8 @@ decodeTransaction , IsOurs s Address , Typeable s , Typeable n + , DelegationAddress n k + , WalletKey k ) => ctx -> ApiT WalletId @@ -2268,9 +2270,9 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do let (Tx txid feeM colls inps outs wdrlMap meta vldt, _toMint, _toBurn) = decodeTx tl sealed (txinsOutsPaths, collsOutsPaths, acct) <- withWorkerCtx ctx wid liftE liftE $ \wrk -> do - txinsOutsPaths <- liftHandler $ W.lookupTxIns wrk wid (fst <$> inps) - (acct, _, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid - collsOutsPaths <- liftHandler $ W.lookupTxIns wrk wid (fst <$> colls) + (acct, xpub, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid + txinsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> inps) xpub + collsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> colls) xpub pure (txinsOutsPaths, collsOutsPaths, acct) pure $ ApiDecodedTransaction { id = ApiT txid From 12b1125f96438c769a442ded5dc6fb6f958ceece Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 20 Oct 2021 20:25:28 +0200 Subject: [PATCH 16/31] finish integration test for inputs --- .../Scenario/API/Shelley/TransactionsNew.hs | 69 ++++++++++++++----- lib/core/src/Cardano/Wallet/Api/Server.hs | 5 +- lib/core/src/Cardano/Wallet/Api/Types.hs | 3 +- specifications/api/swagger.yaml | 6 +- 4 files changed, 56 insertions(+), 27 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 adf09cbae34..cb3e8ebe161 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 @@ -59,6 +59,7 @@ import Cardano.Wallet.Primitive.Types.Hash , Direction (..) , SealedTx , TxIn (..) + , TxScriptValidity (..) , TxStatus (..) , cardanoTx , getSealedTxBody @@ -97,7 +98,7 @@ import Numeric.Natural import Test.Hspec ( SpecWith, describe, pendingWith ) import Test.Hspec.Expectations.Lifted - ( shouldBe, shouldNotBe, shouldSatisfy ) + ( shouldBe, shouldNotBe, shouldNotSatisfy, shouldSatisfy ) import Test.Hspec.Extra ( it ) import Test.Integration.Framework.DSL @@ -158,9 +159,6 @@ import qualified Network.HTTP.Types.Status as HTTP import qualified Test.Integration.Plutus as PlutusScenario -import qualified Debug.Trace as TR - - spec :: forall n. ( DecodeAddress n , DecodeStakeAddress n @@ -387,10 +385,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ] it "TRANS_NEW_CREATE_04a - Single Output Transaction" $ \ctx -> runResourceT $ do -<<<<<<< HEAD -======= ->>>>>>> 14b12431a (unpend single output tx test) let initialAmt = 3 * minUTxOValue (_mainEra ctx) wa <- fixtureWalletWith @n ctx [initialAmt] wb <- emptyWallet ctx @@ -411,14 +406,34 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let expectedFee = getFromResponse (#fee . #getQuantity) rTx let txCbor = getFromResponse #transaction rTx let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) - rDecodedTx <- request @(ApiDecodedTransaction n) ctx + let sharedExpectationsBetweenWallets = + [ expectResponseCode HTTP.status202 + , expectField (#fee . #getQuantity) (`shouldBe` expectedFee) + , expectField #withdrawals (`shouldBe` []) + , expectField #collateral (`shouldBe` []) + , expectField #metadata (`shouldBe` (ApiTxMetadata Nothing)) + , expectField #scriptValidity (`shouldBe` (Just $ ApiT TxScriptValid)) + ] + + -- After constructing tx the cbor is as expected, both wallets share common information + -- source wallet sees inputs as his, target wallet sees them as external + let isInpOurs inp = case inp of + ExternalInput _ -> False + WalletInput _ -> True + let areOurs = all isInpOurs + + rDecodedTxSource <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodePayload - TR.trace ("rDecodedTx"<>show rDecodedTx) $ verify rDecodedTx - [ expectResponseCode HTTP.status202 - , expectField (#fee . #getQuantity) (`shouldBe` expectedFee) - , expectField #withdrawals (`shouldBe` []) - , expectField #collateral (`shouldBe` []) - , expectField #metadata (`shouldBe` (ApiTxMetadata Nothing)) + verify rDecodedTxSource $ + sharedExpectationsBetweenWallets ++ + [ expectField #inputs (`shouldSatisfy` areOurs) + ] + + rDecodedTxTarget <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wb) Default decodePayload + verify rDecodedTxTarget $ + sharedExpectationsBetweenWallets ++ + [ expectField #inputs (`shouldNotSatisfy` areOurs) ] let expectedFee = getFromResponse (#fee . #getQuantity) rTx @@ -434,10 +449,28 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do void $ submitTx ctx signedTx [ expectResponseCode HTTP.status202 ] - eventually "Target wallet balance is increased by amt" $ do - rWb <- request @ApiWallet ctx - (Link.getWallet @'Shelley wb) Default Empty - verify rWb + -- After signing tx the cbor is as before modulo added wtinesses, + -- and in line what was there after construction. + let txCbor' = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) + let decodePayload' = Json (toJSON $ ApiSerialisedTransaction txCbor') + rDecodedTxSource' <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload' + verify rDecodedTxSource' $ + sharedExpectationsBetweenWallets ++ + [ expectField #inputs (`shouldSatisfy` areOurs) + ] + + rDecodedTxTarget' <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wb) Default decodePayload' + verify rDecodedTxTarget' $ + sharedExpectationsBetweenWallets ++ + [ expectField #inputs (`shouldNotSatisfy` areOurs) + ] + + eventually "Source wallet balance is decreased by amt + fee" $ do + rWa <- request @ApiWallet ctx + (Link.getWallet @'Shelley wa) Default Empty + verify rWa [ expectSuccess , expectField (#balance . #available . #getQuantity) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 70de551ce85..ba47f16f06e 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2290,14 +2290,13 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do case txoutPathM of Nothing -> ExternalInput (ApiT txin, Quantity $ fromIntegral cTaken) - Just (TxOut addr (TokenBundle (Coin cInitial) tmap), path) -> + Just (TxOut addr (TokenBundle (Coin c) tmap), path) -> WalletInput $ ApiWalletInput { id = ApiT txid , index = ix , address = (ApiT addr, Proxy @n) , derivationPath = NE.map ApiT path - , amountBefore = Quantity $ fromIntegral cInitial - , amountSent = Quantity $ fromIntegral cTaken + , amount = Quantity $ fromIntegral c , assets = ApiT tmap } toWrdl acct (rewardKey, (Coin c)) = diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index ba1556bd48a..aa46df8d9a0 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1142,8 +1142,7 @@ data ApiWalletInput (n :: NetworkDiscriminant) = ApiWalletInput , index :: !Word32 , address :: !(ApiT Address, Proxy n) , derivationPath :: NonEmpty (ApiT DerivationIndex) - , amountBefore :: !(Quantity "lovelace" Natural) - , amountSent :: !(Quantity "lovelace" Natural) + , amount :: !(Quantity "lovelace" Natural) , assets :: !(ApiT W.TokenMap) } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index e84a951baba..041e72b46a3 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1360,13 +1360,11 @@ x-transactionInputsInsideWallet: &transactionInputsInsideWallet - id - index - address - - amount_before - - amount_picked + - amount - derivation_path properties: address: *addressId - amount_before: *amount - amount_sent: *amount + amount: *amount assets: *walletAssets id: *transactionId derivation_path: *derivationPath From 4a9b08c1cf05f57e06a0c07674eefb2b442ce684 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 20 Oct 2021 21:02:00 +0200 Subject: [PATCH 17/31] amend ExternalInput definition - we do not know amount from cbor here --- .../Integration/Scenario/API/Shelley/TransactionsNew.hs | 2 +- lib/core/src/Cardano/Wallet.hs | 1 + lib/core/src/Cardano/Wallet/Api/Server.hs | 8 ++++---- lib/core/src/Cardano/Wallet/Api/Types.hs | 2 +- specifications/api/swagger.yaml | 2 -- 5 files changed, 7 insertions(+), 8 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 cb3e8ebe161..75ad56091d3 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 @@ -1178,7 +1178,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , expectField #collateral (`shouldBe` []) , expectField #metadata (`shouldBe` (ApiTxMetadata Nothing)) , expectField #inputs - (`shouldBe` [ExternalInput (ApiT (TxIn theTxHash 0), Quantity 0)]) + (`shouldBe` [ExternalInput (ApiT (TxIn theTxHash 0))]) ] it "TRANS_NEW_BALANCE_01d - single-output transaction with missing covering inputs" $ \ctx -> runResourceT $ do diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 1952035202c..7c0e922173e 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -1188,6 +1188,7 @@ lookupTxIns ctx wid txins xpub = db & \DBLayer{..} -> do $ withExceptT ErrDecodeTxNoSuchWallet $ withNoSuchWallet wid $ readCheckpoint wid + -- NOTE it is working properly for base address. let f (addr, addrState, ix) = ( liftDelegationAddress @n @k ((\(Right finger) -> finger) $ paymentKeyFingerprint @k addr) (liftRawKey @k xpub) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index ba47f16f06e..374ce00ee76 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2277,19 +2277,19 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do pure $ ApiDecodedTransaction { id = ApiT txid , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) - , inputs = zipWith toInp txinsOutsPaths inps + , inputs = map toInp txinsOutsPaths , outputs = map (toAddressAmount @n) outs - , collateral = zipWith toInp collsOutsPaths colls + , collateral = map toInp collsOutsPaths , withdrawals = map (toWrdl acct) $ Map.assocs wdrlMap , metadata = ApiTxMetadata $ ApiT <$> meta , scriptValidity = ApiT <$> vldt } where tl = ctx ^. W.transactionLayer @k - toInp (txin@(TxIn txid ix), txoutPathM) (_, Coin cTaken) = + toInp (txin@(TxIn txid ix), txoutPathM) = case txoutPathM of Nothing -> - ExternalInput (ApiT txin, Quantity $ fromIntegral cTaken) + ExternalInput (ApiT txin) Just (TxOut addr (TokenBundle (Coin c) tmap), path) -> WalletInput $ ApiWalletInput { id = ApiT txid diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index aa46df8d9a0..a5912c40f09 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1148,7 +1148,7 @@ data ApiWalletInput (n :: NetworkDiscriminant) = ApiWalletInput deriving anyclass NFData data ApiTxInputGeneral (n :: NetworkDiscriminant) = - ExternalInput (ApiT TxIn, Quantity "lovelace" Natural) + ExternalInput (ApiT TxIn) | WalletInput (ApiWalletInput n) deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 041e72b46a3..4a85cf8671d 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1342,13 +1342,11 @@ x-transactionInputsOutsideWallet: &transactionInputsOutsideWallet required: - id - index - - amount properties: id: *transactionId index: type: integer minimum: 0 - amount: *amount x-transactionInputsInsideWallet: &transactionInputsInsideWallet description: | From 6b1dc157075602aec61536836c1ff6ca95723111 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 20 Oct 2021 21:09:34 +0200 Subject: [PATCH 18/31] generalize outputs in swagger --- specifications/api/swagger.yaml | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 4a85cf8671d..4aba8e3dee2 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1378,6 +1378,34 @@ x-transactionInputsGeneral: &transactionInputsGeneral - <<: *transactionInputsInsideWallet title: tx inputs belonging to a given wallet +x-transactionOutputsInsideWallet: &transactionOutputsInsideWallet + description: | + A list of target outputs with amount specified belonging to wallet + type: array + minItems: 0 + items: + type: object + required: + - address + - amount_incoming + - amount_current + - derivation_path + properties: + address: *addressId + amount_incoming: *amount + assets_incoming: *walletAssets + amount_current: *amount + assets_current: *walletAssets + derivation_path: *derivationPath + +x-transactionOutputsGeneral: &transactionOutputsGeneral + nullable: false + oneOf: + - <<: *transactionOutputs + title: tx outputs not belonging to a given wallet + - <<: *transactionOutputsInsideWallet + title: tx outputs belonging to a given wallet + x-transactionResolvedCollateral: &transactionResolvedCollateral description: A list of transaction inputs used for collateral type: array @@ -2337,7 +2365,7 @@ components: id: *transactionId fee: *amount inputs: *transactionInputsGeneral - outputs: *transactionOutputs + outputs: *transactionOutputsGeneral collateral: *transactionInputsGeneral withdrawals: *transactionWithdrawalsGeneral metadata: *transactionMetadata From 2d5d30e7318e14ed09c94b6ba8e2db9e4fe8a9eb Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 20 Oct 2021 21:44:10 +0200 Subject: [PATCH 19/31] add generalized output type --- lib/core/src/Cardano/Wallet/Api/Server.hs | 3 +- lib/core/src/Cardano/Wallet/Api/Types.hs | 38 ++++++++++++++++++++++- specifications/api/swagger.yaml | 6 ++-- 3 files changed, 42 insertions(+), 5 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 374ce00ee76..d605729f882 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -251,6 +251,7 @@ import Cardano.Wallet.Api.Types , ApiTxInput (..) , ApiTxInputGeneral (..) , ApiTxMetadata (..) + , ApiTxOutputGeneral (..) , ApiUtxoStatistics (..) , ApiWallet (..) , ApiWalletAssetsBalance (..) @@ -2278,7 +2279,7 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do { id = ApiT txid , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) , inputs = map toInp txinsOutsPaths - , outputs = map (toAddressAmount @n) outs + , outputs = map (ExternalOutput . toAddressAmount @n) outs , collateral = map toInp collsOutsPaths , withdrawals = map (toWrdl acct) $ Map.assocs wdrlMap , metadata = ApiTxMetadata $ ApiT <$> meta diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index a5912c40f09..c4ca9d587ce 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -167,6 +167,8 @@ module Cardano.Wallet.Api.Types , ApiTxInputGeneral (..) , ResourceContext (..) , ApiWithdrawalGeneral (..) + , ApiWalletOutput (..) + , ApiTxOutputGeneral (..) -- * API Types (Byron) , ApiByronWallet (..) @@ -1164,11 +1166,27 @@ data ApiWithdrawalGeneral n = ApiWithdrawalGeneral } deriving (Eq, Generic, Show) deriving anyclass NFData +data ApiWalletOutput (n :: NetworkDiscriminant) = ApiWalletOutput + { address :: !(ApiT Address, Proxy n) + , amount :: !(Quantity "lovelace" Natural) + , assets :: !(ApiT W.TokenMap) + , derivationPath :: NonEmpty (ApiT DerivationIndex) + , amountIncoming :: !(Quantity "lovelace" Natural) + , assetsIncoming :: !(ApiT W.TokenMap) + } deriving (Eq, Generic, Show, Typeable) + deriving anyclass NFData + +data ApiTxOutputGeneral (n :: NetworkDiscriminant) = + ExternalOutput (AddressAmount (ApiT Address, Proxy n)) + | WalletOutput (ApiWalletOutput n) + deriving (Eq, Generic, Show, Typeable) + deriving anyclass NFData + data ApiDecodedTransaction (n :: NetworkDiscriminant) = ApiDecodedTransaction { id :: !(ApiT (Hash "Tx")) , fee :: !(Quantity "lovelace" Natural) , inputs :: ![ApiTxInputGeneral n] - , outputs :: ![AddressAmount (ApiT Address, Proxy n)] + , outputs :: ![ApiTxOutputGeneral n] , collateral :: ![ApiTxInputGeneral n] , withdrawals :: ![ApiWithdrawalGeneral n] , metadata :: !ApiTxMetadata @@ -2990,6 +3008,11 @@ instance DecodeAddress n => FromJSON (ApiWalletInput n) where instance EncodeAddress n => ToJSON (ApiWalletInput n) where toJSON = genericToJSON defaultRecordTypeOptions +instance DecodeAddress n => FromJSON (ApiWalletOutput n) where + parseJSON = genericParseJSON defaultRecordTypeOptions +instance EncodeAddress n => ToJSON (ApiWalletOutput n) where + toJSON = genericToJSON defaultRecordTypeOptions + instance ( DecodeAddress n , DecodeStakeAddress n @@ -3003,6 +3026,19 @@ instance where toJSON = genericToJSON defaultRecordTypeOptions +instance + ( DecodeAddress n + , DecodeStakeAddress n + ) => FromJSON (ApiTxOutputGeneral n) + where + parseJSON = genericParseJSON defaultRecordTypeOptions +instance + ( EncodeAddress n + , EncodeStakeAddress n + ) => ToJSON (ApiTxOutputGeneral n) + where + toJSON = genericToJSON defaultRecordTypeOptions + instance ( DecodeAddress n , DecodeStakeAddress n diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 4aba8e3dee2..2aa8180c268 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1388,14 +1388,14 @@ x-transactionOutputsInsideWallet: &transactionOutputsInsideWallet required: - address - amount_incoming - - amount_current + - amount - derivation_path properties: address: *addressId amount_incoming: *amount assets_incoming: *walletAssets - amount_current: *amount - assets_current: *walletAssets + amount: *amount + assets: *walletAssets derivation_path: *derivationPath x-transactionOutputsGeneral: &transactionOutputsGeneral From 6b895e70d08f0c45c45138dfe4c77a8021818026 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 21 Oct 2021 13:30:54 +0200 Subject: [PATCH 20/31] first impl of txout enricher --- lib/core/src/Cardano/Wallet.hs | 32 ++++++++++++++++++++ lib/core/src/Cardano/Wallet/Api/Server.hs | 36 ++++++++++++++++------- 2 files changed, 58 insertions(+), 10 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 7c0e922173e..99ab200f815 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -102,6 +102,7 @@ module Cardano.Wallet , listAddresses , normalizeDelegationAddress , lookupTxIns + , lookupTxOuts , ErrCreateRandomAddress(..) , ErrImportRandomAddress(..) , ErrImportAddress(..) @@ -557,6 +558,7 @@ import qualified Data.ByteString as BS import qualified Data.Foldable as F import qualified Data.List as L import qualified Data.List.NonEmpty as NE +import qualified Data.Map.Strict as Map import qualified Data.Set as Set import qualified Data.Text as T import qualified Data.Vector as V @@ -1208,6 +1210,36 @@ lookupTxIns ctx wid txins xpub = db & \DBLayer{..} -> do [] -> (txin, Nothing) -- will probably use error here path':_ -> (txin, Just (txout, path')) +lookupTxOuts + :: forall ctx s k. + ( HasDBLayer IO s k ctx + , KnownAddresses s + , IsOurs s Address + ) + => ctx + -> WalletId + -> [TxOut] + -> ExceptT ErrDecodeTx IO [(TxOut, Maybe (TxOut, NonEmpty DerivationIndex))] +lookupTxOuts ctx wid txouts = db & \DBLayer{..} -> do + cp <- mapExceptT atomically + $ withExceptT ErrDecodeTxNoSuchWallet + $ withNoSuchWallet wid + $ readCheckpoint wid + let walletAddrs = knownAddresses (getState cp) + pure $ map (tryGetTxOutPath cp walletAddrs) txouts + where + db = ctx ^. dbLayer @IO @s @k + tryGetTxOutPath cp walletAddrs txout@(TxOut addr _) = + let allTxOuts = Map.elems $ unUTxO $ totalUTxO mempty cp + in case map (\(_, _,p) -> p) (filter (\(addr', _,_) -> addr' == addr) walletAddrs) of + [] -> (txout, Nothing) + path:_ -> + let bundles = + foldr (<>) TokenBundle.empty $ + map tokens $ + filter (\(TxOut addr' _) -> addr == addr') allTxOuts + in (txout, Just (TxOut addr bundles, path)) + -- | List all addresses of a wallet with their metadata. Addresses -- are ordered from the most-recently-discovered to the oldest known. listAddresses diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index d605729f882..5dd7dd2959f 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -264,6 +264,7 @@ import Cardano.Wallet.Api.Types , ApiWalletMigrationPlan (..) , ApiWalletMigrationPlanPostData (..) , ApiWalletMigrationPostData (..) + , ApiWalletOutput (..) , ApiWalletPassphrase (..) , ApiWalletPassphraseInfo (..) , ApiWalletSignData (..) @@ -2269,17 +2270,18 @@ decodeTransaction -> Handler (ApiDecodedTransaction n) decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do let (Tx txid feeM colls inps outs wdrlMap meta vldt, _toMint, _toBurn) = decodeTx tl sealed - (txinsOutsPaths, collsOutsPaths, acct) <- + (txinsOutsPaths, collsOutsPaths, outsPath, acct) <- withWorkerCtx ctx wid liftE liftE $ \wrk -> do (acct, xpub, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid txinsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> inps) xpub collsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> colls) xpub - pure (txinsOutsPaths, collsOutsPaths, acct) + outsPath <- liftHandler $ W.lookupTxOuts @_ @s @k wrk wid outs + pure (txinsOutsPaths, collsOutsPaths, outsPath, acct) pure $ ApiDecodedTransaction { id = ApiT txid , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) , inputs = map toInp txinsOutsPaths - , outputs = map (ExternalOutput . toAddressAmount @n) outs + , outputs = map toOut outsPath , collateral = map toInp collsOutsPaths , withdrawals = map (toWrdl acct) $ Map.assocs wdrlMap , metadata = ApiTxMetadata $ ApiT <$> meta @@ -2287,19 +2289,33 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do } where tl = ctx ^. W.transactionLayer @k + toOut (txoutIncoming, txoutPathM) = + case txoutPathM of + Nothing -> + ExternalOutput $ toAddressAmount @n txoutIncoming + Just (TxOut addr (TokenBundle (Coin c) tmap), path) -> + let (AddressAmount _ c' tmap') = toAddressAmount @n txoutIncoming + in WalletOutput $ ApiWalletOutput + { address = (ApiT addr, Proxy @n) + , amount = Quantity $ fromIntegral c + , assets = ApiT tmap + , derivationPath = NE.map ApiT path + , amountIncoming = c' + , assetsIncoming = tmap' + } toInp (txin@(TxIn txid ix), txoutPathM) = case txoutPathM of Nothing -> ExternalInput (ApiT txin) Just (TxOut addr (TokenBundle (Coin c) tmap), path) -> WalletInput $ ApiWalletInput - { id = ApiT txid - , index = ix - , address = (ApiT addr, Proxy @n) - , derivationPath = NE.map ApiT path - , amount = Quantity $ fromIntegral c - , assets = ApiT tmap - } + { id = ApiT txid + , index = ix + , address = (ApiT addr, Proxy @n) + , derivationPath = NE.map ApiT path + , amount = Quantity $ fromIntegral c + , assets = ApiT tmap + } toWrdl acct (rewardKey, (Coin c)) = if rewardKey == acct then ApiWithdrawalGeneral (ApiT rewardKey, Proxy @n) (Quantity $ fromIntegral c) Our From ef329b1d422e0a8f3391251d986f61a509436d12 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 21 Oct 2021 16:47:56 +0200 Subject: [PATCH 21/31] add more tests for outputs of wallet in integration testing post rebase adjustments --- .../Scenario/API/Shelley/TransactionsNew.hs | 119 ++++++++++++++---- lib/core/src/Cardano/Wallet.hs | 31 ++++- lib/core/src/Cardano/Wallet/Api/Server.hs | 2 +- 3 files changed, 119 insertions(+), 33 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 75ad56091d3..55d9ec42e83 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 @@ -28,18 +28,20 @@ import Cardano.Crypto.DSIGN.Class import Cardano.Mnemonic ( SomeMnemonic (..), mnemonicToText ) import Cardano.Wallet.Api.Types - ( ApiCoinSelection (withdrawals) + ( ApiAddress (..) + , ApiCoinSelection (withdrawals) , ApiCoinSelectionInput (..) , ApiConstructTransaction (..) , ApiDecodedTransaction - , ApiFee (..) , ApiSerialisedTransaction (..) , ApiStakePool , ApiT (..) , ApiTransaction , ApiTxInputGeneral (..) , ApiTxMetadata (..) + , ApiTxOutputGeneral (..) , ApiWallet + , ApiWalletOutput (..) , DecodeAddress , DecodeStakeAddress , EncodeAddress (..) @@ -47,7 +49,12 @@ import Cardano.Wallet.Api.Types , WalletStyle (..) ) import Cardano.Wallet.Primitive.AddressDerivation - ( HardDerivation (..), PaymentAddress (..), Role (..), WalletKey (..) ) + ( DerivationIndex (..) + , HardDerivation (..) + , PaymentAddress (..) + , Role (..) + , WalletKey (..) + ) import Cardano.Wallet.Primitive.AddressDerivation.Icarus ( IcarusKey ) import Cardano.Wallet.Primitive.Types.Address @@ -56,7 +63,8 @@ import Cardano.Wallet.Primitive.Types.Coin ( Coin (..) ) import Cardano.Wallet.Primitive.Types.Hash ( Hash (..) ) - , Direction (..) +import Cardano.Wallet.Primitive.Types.Tx + ( Direction (..) , SealedTx , TxIn (..) , TxScriptValidity (..) @@ -151,6 +159,7 @@ import qualified Cardano.Wallet.Api.Link as Link import qualified Cardano.Wallet.Primitive.AddressDerivation.Shelley as Shelley import qualified Cardano.Wallet.Primitive.Types.TokenMap as TokenMap import qualified Data.Aeson as Aeson +import qualified Data.List.NonEmpty as NE import qualified Data.Map.Strict as Map import qualified Data.Set as Set import qualified Data.Text as T @@ -158,7 +167,6 @@ import qualified Data.Text.Encoding as T import qualified Network.HTTP.Types.Status as HTTP import qualified Test.Integration.Plutus as PlutusScenario - spec :: forall n. ( DecodeAddress n , DecodeStakeAddress n @@ -421,12 +429,32 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do ExternalInput _ -> False WalletInput _ -> True let areOurs = all isInpOurs + addrs <- listAddresses @n ctx wb + let addrIx = 1 + let addrDest = (addrs !! addrIx) ^. #id + let expectedTxOutTarget = WalletOutput $ ApiWalletOutput + { address = addrDest + , amount = Quantity 0 + , assets = ApiT $ TokenMap.empty + , derivationPath = NE.fromList + [ ApiT (DerivationIndex 2147485500) + , ApiT (DerivationIndex 2147485463) + , ApiT (DerivationIndex 2147483648) + , ApiT (DerivationIndex 0) + , ApiT (DerivationIndex $ fromIntegral addrIx) + ] + , amountIncoming = Quantity amt + , assetsIncoming = ApiT $ TokenMap.empty + } + let isOurTxOut :: ApiTxOutputGeneral n -> [ApiTxOutputGeneral n] -> Bool + isOurTxOut expectedTxOut = (expectedTxOut `elem`) rDecodedTxSource <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodePayload verify rDecodedTxSource $ sharedExpectationsBetweenWallets ++ [ expectField #inputs (`shouldSatisfy` areOurs) + , expectField #outputs (`shouldNotSatisfy` isOurTxOut expectedTxOutTarget) ] rDecodedTxTarget <- request @(ApiDecodedTransaction n) ctx @@ -434,9 +462,9 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do verify rDecodedTxTarget $ sharedExpectationsBetweenWallets ++ [ expectField #inputs (`shouldNotSatisfy` areOurs) + , expectField #outputs (`shouldSatisfy` isOurTxOut expectedTxOutTarget) ] - let expectedFee = getFromResponse (#fee . #getQuantity) rTx let filterInitialAmt = filter (\(ApiCoinSelectionInput _ _ _ _ amt' _) -> amt' == Quantity initialAmt) let coinSelInputs = filterInitialAmt $ @@ -449,27 +477,9 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do void $ submitTx ctx signedTx [ expectResponseCode HTTP.status202 ] - -- After signing tx the cbor is as before modulo added wtinesses, - -- and in line what was there after construction. - let txCbor' = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) - let decodePayload' = Json (toJSON $ ApiSerialisedTransaction txCbor') - rDecodedTxSource' <- request @(ApiDecodedTransaction n) ctx - (Link.decodeTransaction @'Shelley wa) Default decodePayload' - verify rDecodedTxSource' $ - sharedExpectationsBetweenWallets ++ - [ expectField #inputs (`shouldSatisfy` areOurs) - ] - - rDecodedTxTarget' <- request @(ApiDecodedTransaction n) ctx - (Link.decodeTransaction @'Shelley wb) Default decodePayload' - verify rDecodedTxTarget' $ - sharedExpectationsBetweenWallets ++ - [ expectField #inputs (`shouldNotSatisfy` areOurs) - ] - - eventually "Source wallet balance is decreased by amt + fee" $ do + eventually "Target wallet balance is decreased by amt + fee" $ do rWa <- request @ApiWallet ctx - (Link.getWallet @'Shelley wa) Default Empty + (Link.getWallet @'Shelley wb) Default Empty verify rWa [ expectSuccess , expectField @@ -487,6 +497,63 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (`shouldBe` (initialAmt - amt - expectedFee)) ] + -- After signing tx the cbor is as before modulo added wtinesses, + -- and in line what was there after construction. Also as we tx was + -- accommodated in ledger output change in amount for target wallet + let expectedTxOutTarget' = WalletOutput $ ApiWalletOutput + { address = addrDest + , amount = Quantity amt -- now we have this + , assets = ApiT $ TokenMap.empty + , derivationPath = NE.fromList + [ ApiT (DerivationIndex 2147485500) + , ApiT (DerivationIndex 2147485463) + , ApiT (DerivationIndex 2147483648) + , ApiT (DerivationIndex 0) + , ApiT (DerivationIndex $ fromIntegral addrIx) + ] + , amountIncoming = Quantity amt + , assetsIncoming = ApiT $ TokenMap.empty + } + addrsSourceAll <- listAddresses @n ctx wa + --we expect change address here with x=0 as this wallet does not participated in outcoming tx before this one + let derPath = NE.fromList + [ ApiT (DerivationIndex 2147485500) + , ApiT (DerivationIndex 2147485463) + , ApiT (DerivationIndex 2147483648) + , ApiT (DerivationIndex 1) + , ApiT (DerivationIndex 0) + ] + let addrSourceChange:_ = + filter (\(ApiAddress _ _ derPath') -> derPath == derPath') addrsSourceAll + let addrSrc = addrSourceChange ^. #id + let expectedTxOutSource = WalletOutput $ ApiWalletOutput + { address = addrSrc + , amount = Quantity $ initialAmt - (amt + fromIntegral expectedFee) + , assets = ApiT $ TokenMap.empty + , derivationPath = derPath + , amountIncoming = Quantity $ initialAmt - (amt + fromIntegral expectedFee) + , assetsIncoming = ApiT $ TokenMap.empty + } + let txCbor' = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) + let decodePayload' = Json (toJSON $ ApiSerialisedTransaction txCbor') + rDecodedTxSource' <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload' + verify rDecodedTxSource' $ + sharedExpectationsBetweenWallets ++ + [ expectField #inputs (`shouldNotSatisfy` areOurs) -- the input is not anymore belonging to wallet + , expectField #outputs (`shouldNotSatisfy` isOurTxOut expectedTxOutTarget') + , expectField #outputs (`shouldSatisfy` isOurTxOut expectedTxOutSource) + ] + + rDecodedTxTarget' <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wb) Default decodePayload' + verify rDecodedTxTarget' $ + sharedExpectationsBetweenWallets ++ + [ expectField #inputs (`shouldNotSatisfy` areOurs) + , expectField #outputs (`shouldSatisfy` isOurTxOut expectedTxOutTarget') + , expectField #outputs (`shouldNotSatisfy` isOurTxOut expectedTxOutSource) + ] + it "TRANS_NEW_CREATE_04b - Cannot spend less than minUTxOValue" $ \ctx -> runResourceT $ do wa <- fixtureWallet ctx wb <- emptyWallet ctx diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 99ab200f815..0ee8fdb82ea 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -1192,8 +1192,7 @@ lookupTxIns ctx wid txins xpub = db & \DBLayer{..} -> do $ readCheckpoint wid -- NOTE it is working properly for base address. let f (addr, addrState, ix) = - ( liftDelegationAddress @n @k ((\(Right finger) -> finger) $ - paymentKeyFingerprint @k addr) (liftRawKey @k xpub) + ( extAddr @k @n addr xpub , addrState , ix ) let walletAddrs = map f $ knownAddresses (getState cp) @@ -1210,22 +1209,42 @@ lookupTxIns ctx wid txins xpub = db & \DBLayer{..} -> do [] -> (txin, Nothing) -- will probably use error here path':_ -> (txin, Just (txout, path')) +extAddr + :: forall k (n :: NetworkDiscriminant). + ( WalletKey k + , DelegationAddress n k + ) + => Address + -> XPub + -> Address +extAddr addr xpub = + liftDelegationAddress @n @k ((\(Right finger) -> finger) $ + paymentKeyFingerprint @k addr) (liftRawKey @k xpub) + lookupTxOuts - :: forall ctx s k. + :: forall ctx s k (n :: NetworkDiscriminant). ( HasDBLayer IO s k ctx , KnownAddresses s , IsOurs s Address + , WalletKey k + , DelegationAddress n k ) => ctx -> WalletId -> [TxOut] + -> XPub -> ExceptT ErrDecodeTx IO [(TxOut, Maybe (TxOut, NonEmpty DerivationIndex))] -lookupTxOuts ctx wid txouts = db & \DBLayer{..} -> do +lookupTxOuts ctx wid txouts xpub = db & \DBLayer{..} -> do cp <- mapExceptT atomically $ withExceptT ErrDecodeTxNoSuchWallet $ withNoSuchWallet wid $ readCheckpoint wid - let walletAddrs = knownAddresses (getState cp) + let f (addr, addrState, ix) = + ( extAddr @k @n addr xpub + , addrState + , ix ) + -- TO DO I need to understand why I do not see change addresses after construction here + let walletAddrs = map f $ knownAddresses (getState cp) pure $ map (tryGetTxOutPath cp walletAddrs) txouts where db = ctx ^. dbLayer @IO @s @k @@ -1237,7 +1256,7 @@ lookupTxOuts ctx wid txouts = db & \DBLayer{..} -> do let bundles = foldr (<>) TokenBundle.empty $ map tokens $ - filter (\(TxOut addr' _) -> addr == addr') allTxOuts + filter (\(TxOut addr' _) -> addr == extAddr @k @n addr' xpub) allTxOuts in (txout, Just (TxOut addr bundles, path)) -- | List all addresses of a wallet with their metadata. Addresses diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 5dd7dd2959f..f229e0d6788 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2275,7 +2275,7 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do (acct, xpub, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid txinsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> inps) xpub collsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> colls) xpub - outsPath <- liftHandler $ W.lookupTxOuts @_ @s @k wrk wid outs + outsPath <- liftHandler $ W.lookupTxOuts @_ @s @k @n wrk wid outs xpub pure (txinsOutsPaths, collsOutsPaths, outsPath, acct) pure $ ApiDecodedTransaction { id = ApiT txid From c23c8898fc782e43669defc4474fe1e86e30de44 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Fri, 22 Oct 2021 14:32:37 +0200 Subject: [PATCH 22/31] add change addr detection some cleaning --- lib/core/src/Cardano/Wallet.hs | 39 +++++++++++++++++++++-- lib/core/src/Cardano/Wallet/Api/Server.hs | 3 ++ 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 0ee8fdb82ea..10d4b7649d5 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -281,6 +281,7 @@ import Cardano.Wallet.Primitive.AddressDiscovery , IsOurs (..) , IsOwned (..) , KnownAddresses (..) + , coinTypeAda ) import Cardano.Wallet.Primitive.AddressDiscovery.Random ( ErrImportAddress (..), RndStateLike ) @@ -1228,6 +1229,9 @@ lookupTxOuts , IsOurs s Address , WalletKey k , DelegationAddress n k + , GetPurpose k + , GetAccount s k + , SoftDerivation k ) => ctx -> WalletId @@ -1243,9 +1247,16 @@ lookupTxOuts ctx wid txouts xpub = db & \DBLayer{..} -> do ( extAddr @k @n addr xpub , addrState , ix ) - -- TO DO I need to understand why I do not see change addresses after construction here let walletAddrs = map f $ knownAddresses (getState cp) - pure $ map (tryGetTxOutPath cp walletAddrs) txouts + + --We are adding next 5 change addresses + let acctK = getAccount $ getState cp + let startIx = nextChangeIx walletAddrs + let changeAddrs = map (decoratechangeAddr acctK) [startIx .. startIx + 4] + + let walletAddrs' = walletAddrs ++ changeAddrs + + pure $ map (tryGetTxOutPath cp walletAddrs') txouts where db = ctx ^. dbLayer @IO @s @k tryGetTxOutPath cp walletAddrs txout@(TxOut addr _) = @@ -1258,6 +1269,30 @@ lookupTxOuts ctx wid txouts xpub = db & \DBLayer{..} -> do map tokens $ filter (\(TxOut addr' _) -> addr == extAddr @k @n addr' xpub) allTxOuts in (txout, Just (TxOut addr bundles, path)) + getChainType (_ :| [_,_,DerivationIndex i,_]) = i + getChainType _ = error "expect 5 segment derivation path" + changeIxs = + reverse . + L.sort . + map (\(_, _,path) -> getChainType path) . + filter (\(_, _,path) -> getChainType path == fromIntegral (fromEnum UtxoInternal)) + nextChangeIx walletAddrs = case changeIxs walletAddrs of + [] -> 0 + ix:_ -> ix + 1 + changeAddrK acctK = deriveAddressPublicKey acctK UtxoInternal + constructDelegationAddr pAddr = + delegationAddress @n pAddr (liftRawKey @k xpub) + decoratechangeAddr acctK ix = + ( constructDelegationAddr $ changeAddrK acctK $ Index ix + , Unused + , NE.fromList $ map DerivationIndex + [ getIndex (getPurpose @k) + , getIndex coinTypeAda + , 0 -- when multi-account support is introduce this could change + , fromIntegral (fromEnum UtxoInternal) + , ix + ] + ) -- | List all addresses of a wallet with their metadata. Addresses -- are ordered from the most-recently-discovered to the oldest known. diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index f229e0d6788..cc82797d098 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2263,6 +2263,9 @@ decodeTransaction , Typeable n , DelegationAddress n k , WalletKey k + , SoftDerivation k + , GetAccount s k + , GetPurpose k ) => ctx -> ApiT WalletId From 428e9bad5a933da704c2a0e07f4ca300d13c0929 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 25 Oct 2021 10:35:32 +0200 Subject: [PATCH 23/31] use pool gap to determine number of candidate change addresses --- lib/core/src/Cardano/Wallet.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 10d4b7649d5..cb614cd6c54 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -289,6 +289,7 @@ import Cardano.Wallet.Primitive.AddressDiscovery.Sequential ( ParentContext (..) , SeqState , defaultAddressPoolGap + , getAddressPoolGap , mkSeqStateFromRootXPrv , purposeBIP44 ) @@ -1249,10 +1250,11 @@ lookupTxOuts ctx wid txouts xpub = db & \DBLayer{..} -> do , ix ) let walletAddrs = map f $ knownAddresses (getState cp) - --We are adding next 5 change addresses + --We are analyzing the next gapPool change addresses let acctK = getAccount $ getState cp + let g = fromIntegral $ getAddressPoolGap defaultAddressPoolGap let startIx = nextChangeIx walletAddrs - let changeAddrs = map (decoratechangeAddr acctK) [startIx .. startIx + 4] + let changeAddrs = map (decoratechangeAddr acctK) [startIx .. startIx + g] let walletAddrs' = walletAddrs ++ changeAddrs From 92eb97cb79f0fae0eaa63c2fcde2539ba7c0cb4e Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 25 Oct 2021 10:55:37 +0200 Subject: [PATCH 24/31] add integration test for metadata --- .../Scenario/API/Shelley/TransactionsNew.hs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 55d9ec42e83..2b2903d96b3 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 @@ -67,6 +67,8 @@ import Cardano.Wallet.Primitive.Types.Tx ( Direction (..) , SealedTx , TxIn (..) + , TxMetadata (..) + , TxMetadataValue (..) , TxScriptValidity (..) , TxStatus (..) , cardanoTx @@ -251,6 +253,16 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do Just (Cardano.TxMetaText "hello") -> pure () Just _ -> error "Tx metadata incorrect" + let txCbor = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) + let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) + let expMetadata = ApiT (TxMetadata (Map.fromList [(1,TxMetaText "hello")])) + rDecodedTx <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload + verify rDecodedTx + [ expectResponseCode HTTP.status202 + , expectField #metadata (`shouldBe` (ApiTxMetadata (Just expMetadata))) + ] + -- Submit tx void $ submitTx ctx signedTx [ expectResponseCode HTTP.status202 ] @@ -392,7 +404,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (`shouldBe` rewardInitialBalance) ] - it "TRANS_NEW_CREATE_04a - Single Output Transaction" $ \ctx -> runResourceT $ do + it "TRANS_NEW_CREATE_04a - Single Output Transaction with decode transaction" $ \ctx -> runResourceT $ do let initialAmt = 3 * minUTxOValue (_mainEra ctx) wa <- fixtureWalletWith @n ctx [initialAmt] From 815761a9c5e59921674bb3d118ace370bc42a7e4 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 25 Oct 2021 19:43:08 +0200 Subject: [PATCH 25/31] add integration testing for withdrawals --- .../Scenario/API/Shelley/TransactionsNew.hs | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs b/lib/core-integration/src/Test/Integration/Scenario/API/Shelley/TransactionsNew.hs index 2b2903d96b3..e970dd626cc 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 , DecodeStakeAddress , EncodeAddress (..) , EncodeStakeAddress + , ResourceContext (..) , WalletStyle (..) ) import Cardano.Wallet.Primitive.AddressDerivation @@ -295,6 +296,15 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] + let txCbor = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) + let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) + rDecodedTx <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload + verify rDecodedTx + [ expectResponseCode HTTP.status202 + , expectField #withdrawals (`shouldBe` []) + ] + -- Submit tx void $ submitTx ctx signedTx [ expectResponseCode HTTP.status202 ] @@ -332,6 +342,21 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do signedTx <- signTx ctx wa apiTx [ expectResponseCode HTTP.status202 ] + let txCbor = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) + let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) + let withdrawalWith ownership wdrls = case wdrls of + wdrl:[] -> + wdrl ^. #amount == Quantity withdrawalAmt && + wdrl ^. #context == ownership + _ -> False + + rDecodedTx <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wa) Default decodePayload + verify rDecodedTx + [ expectResponseCode HTTP.status202 + , expectField #withdrawals (`shouldSatisfy` (withdrawalWith Our)) + ] + -- Submit tx void $ submitTx ctx signedTx [ expectResponseCode HTTP.status202 ] @@ -356,6 +381,14 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do (`shouldBe` 0) ] + wb <- fixtureWallet ctx + rDecodedTx' <- request @(ApiDecodedTransaction n) ctx + (Link.decodeTransaction @'Shelley wb) Default decodePayload + verify rDecodedTx' + [ expectResponseCode HTTP.status202 + , expectField #withdrawals (`shouldSatisfy` (withdrawalWith External)) + ] + it "TRANS_NEW_CREATE_03b - Withdrawal from external wallet" $ \ctx -> runResourceT $ do liftIO $ pendingWith "ADP-1189: Issues with withdrawals from external wallets" From 0ae8f4f352d0bac1f3955886b51ed1fcba21b7d5 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Mon, 25 Oct 2021 21:22:57 +0200 Subject: [PATCH 26/31] adjust core unit tests --- .../Api/ApiDecodedTransactionTestnet0.json | 13515 ++++++++++++++++ .../Wallet/Api/ApiTxInputGeneralTestnet0.json | 184 + .../Api/ApiTxOutputGeneralTestnet0.json | 441 + ...walGeneralNetworkDiscriminantTestnet0.json | 80 + .../test/unit/Cardano/Wallet/Api/Malformed.hs | 31 + .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 77 + 6 files changed, 14328 insertions(+) create mode 100644 lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json create mode 100644 lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json create mode 100644 lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json create mode 100644 lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json new file mode 100644 index 00000000000..2baedf566f7 --- /dev/null +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json @@ -0,0 +1,13515 @@ +{ + "seed": -7841128278199154625, + "samples": [ + { + "withdrawals": [ + { + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 202, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 166, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "address": "", + "id": "542c2960605a42274c496d021f4e190121a24d277b491f332e1c08755e333e61", + "derivation_path": [ + "30", + "7018", + "19750", + "445" + ], + "assets": [], + "index": 25239 + } + } + ], + "fee": { + "quantity": 67, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 189, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 202, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 81, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 133, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 32, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 33, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 66, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "7445", + "26523", + "15523", + "7809", + "10262" + ], + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 65, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 140, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 49, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13869", + "21188", + "30363", + "3302", + "19203" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 40, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 114, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "11605", + "3318", + "24550", + "32754", + "28651", + "17789", + "29809", + "31103", + "22146", + "28188", + "10330", + "16049", + "791" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 226, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 57, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "11802", + "14672", + "11811", + "18508", + "13263", + "25697", + "29057", + "21710", + "24129", + "4530", + "2925", + "10212", + "20282", + "27447", + "27256", + "12579", + "11156", + "15033", + "11705", + "29917", + "18370", + "24899", + "23628", + "6210", + "3417" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 50, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 110, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26469", + "16363", + "12400", + "12997", + "9661", + "10135" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 43, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 149, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 52, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 32, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 184, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 2, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13369", + "24117", + "15455", + "29468", + "2174", + "11432", + "7827", + "17054", + "21020", + "22995", + "24240", + "3119", + "28468", + "2384", + "26563", + "2431", + "28882", + "20775", + "32278", + "8374", + "29171", + "26208", + "21943", + "17584" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 94, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + } + ], + "script_validity": "invalid", + "metadata": null, + "id": "1c4b6312620378785f24651d5f5e2672587e4e57743c59501c261a47481c61ca", + "collateral": [ + { + "tag": "ExternalInput", + "contents": { + "id": "40411b1f4559955e24585e2236840de5607a90375f0e0621a871581635840e32", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 221, + "unit": "lovelace" + }, + "address": "", + "id": "0835224dab5c17185902561f54cc044a4c016d543b2703301a4e246e3200a13d", + "derivation_path": [ + "23874", + "12616", + "4408", + "22213", + "15067", + "16296", + "12188", + "8487", + "23640", + "15150", + "17692", + "26968", + "4517", + "25739", + "31023", + "31070", + "18666", + "2668", + "13056" + ], + "assets": [], + "index": 20415 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "address": "", + "id": "3034446862471f6278cb3340686bb8342b446b18444b192fb8af6b123d544d5c", + "derivation_path": [ + "22814", + "30839", + "22594", + "9201", + "25442", + "18273", + "8320", + "7151", + "28685", + "6010" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 37, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 48, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 31122 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "3e6b461b355d020c1ab41531155e6140809e18300ee88a063e98152772764069", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 117, + "unit": "lovelace" + }, + "address": "", + "id": "fb794a14e84977a679570e5b3c49380e0d6089465b734032357d45933e273a30", + "derivation_path": [ + "32603", + "1201", + "32284", + "2109", + "24397", + "6338", + "27609", + "21228", + "17330", + "22773", + "14174", + "26673", + "30636", + "10933", + "1468" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 29532 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "address": "", + "id": "4a3a771a01366b2201000b4e523523577c077402b3c77353767d5f64dc42923a", + "derivation_path": [ + "13040", + "19058", + "22621", + "17732", + "31070", + "7498", + "13361", + "9276" + ], + "assets": [], + "index": 8879 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "596c233c73766e02553b4b4c252a3a42381d464d4e935258723f7c2f632aac36", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 66, + "unit": "lovelace" + }, + "address": "", + "id": "0c24848037792c502f1b4b4b46092daf311d106f374e222d1267105033735057", + "derivation_path": [ + "20735", + "9865", + "5551", + "8678", + "7535", + "20101", + "9970", + "26799", + "19026", + "5674", + "7885", + "25686", + "20228", + "924", + "16412", + "12644", + "22764", + "31125", + "16528", + "6982", + "20062" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 8346 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "04ed07176d5143641c27071647ac7295566a5baa6e6c69310338215c7218193c", + "index": 0 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 84, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 96, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 246, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 46, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 73, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 0, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 24, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 135, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 94, + "unit": "lovelace" + }, + "address": "", + "id": "ba694c90791966223712bd16c76b7f3ffb5a3bcf7731054c06456022056a4141", + "derivation_path": [ + "12012", + "13401", + "243", + "13105", + "5253", + "21486", + "11236", + "6396", + "31572", + "20105", + "9924", + "32623", + "2516", + "24736", + "23672", + "30889", + "10718", + "9757", + "28669", + "25182" + ], + "assets": [], + "index": 16312 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "10180350878948324d0123186303655264935f385c08f438a172604f2a6f2e31", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 3, + "unit": "lovelace" + }, + "address": "", + "id": "950f2c254717bb791d7365633e6d79529d1b551d601677242a49502a294f3d45", + "derivation_path": [ + "5120", + "5007", + "23286", + "16908", + "5443", + "11881", + "7347", + "9724", + "19013", + "6681", + "32561", + "4967", + "1450", + "23435" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 26885 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "7b6c67190d623f6948c00d560229576102751f32495323271e0e5b28795b4462", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 58, + "unit": "lovelace" + }, + "address": "", + "id": "49056a4345b37750041c66606b3a1e377ae12d0c0b5d086249150f4361134535", + "derivation_path": [ + "2921", + "11010", + "3114", + "17949", + "31872", + "7819", + "30856", + "10690", + "858" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 22232 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "32033067bbd303642c6806921d6d7c05f99e464d2b1020e525c62d7ee7605b5f", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 83, + "unit": "lovelace" + }, + "address": "", + "id": "501d1a77bb0a5c4465144d4462227c2b175d6e017919076a46063f0975e8556a", + "derivation_path": [ + "26621" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 12532 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "412075451c55b5a670dc2e1f3628361a657f2c15026b587d50794b40227a3f2e", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 177, + "unit": "lovelace" + }, + "address": "", + "id": "b7c6eb109c2e725e45ec1f7056237bef5d28e77f534250e778b3561b2d16f942", + "derivation_path": [ + "32154", + "26896", + "81", + "25738", + "13487", + "31537", + "4004" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 31864 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 72, + "unit": "lovelace" + }, + "address": "", + "id": "320e4377257144173f4de63a5f37492a7d4d754a55520a0563343e5654622e7b", + "derivation_path": [ + "31512", + "16808", + "25457", + "27723", + "26331", + "1812", + "6952", + "24153", + "27489", + "10617", + "24303", + "16500" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 68, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 58, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 28392 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "address": "", + "id": "38037f18591ded301e63267048161865696f47330d35dbf131cd005a50600230", + "derivation_path": [ + "16963", + "13649", + "19341", + "11718", + "11330", + "21266", + "26498", + "31567", + "28803", + "26190", + "28424", + "28847", + "27674", + "13106", + "5458", + "4993", + "32151", + "12865", + "25853", + "31631", + "11656", + "25835", + "32001", + "27229", + "9760", + "12463", + "16486", + "1566", + "28737", + "30592" + ], + "assets": [], + "index": 24318 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 49, + "unit": "lovelace" + }, + "address": "", + "id": "15ac0e966dca0f080c084a26543a183a12332648192c38260a4422781f101c27", + "derivation_path": [ + "15751", + "18849", + "31362", + "11587" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 41, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 17873 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "4faf3348081478591b71ab46625fb87601726859524e5b450c4d37136539b757", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "f681666214b84665592848423c3d72162886497901494358bf402e7a58523d38", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "address": "", + "id": "5c1950fee422082a0c0b64183eef302e383dc86559eaa2273056011f7ba5115d", + "derivation_path": [ + "390", + "29417", + "16262", + "10483", + "13301", + "27645", + "26925", + "32007", + "20959", + "1441", + "12463", + "1400", + "8114", + "5932", + "8152", + "28541", + "25018", + "27011", + "5158", + "21865", + "5798" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 596 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 73, + "unit": "lovelace" + }, + "address": "", + "id": "33755829636b720c5c014012706a7a1e251d2b430140265d461659013f39007b", + "derivation_path": [ + "22827", + "21193", + "1990", + "5646", + "9723", + "11841", + "18032", + "27700", + "1475", + "10003", + "14944", + "11297", + "28670", + "7445", + "8964", + "13439", + "32035", + "31558", + "3983", + "28089", + "11767", + "14627" + ], + "assets": [], + "index": 30189 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "0e515b24693e628a4415f321fc733c444c4b5d2b2e3573d9431f0a67122e0c99", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 181, + "unit": "lovelace" + }, + "address": "", + "id": "7d317e240f4bbf48465c30340021764392e028f12415733357401c544b1dbc15", + "derivation_path": [ + "17975", + "17232", + "7018", + "18116", + "13349", + "14942", + "30311", + "1426", + "24081", + "5377", + "18340", + "25611", + "25871", + "15204", + "29402", + "3423", + "5599", + "15956", + "14350", + "893" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 10882 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 202, + "unit": "lovelace" + }, + "address": "", + "id": "5c15c392173075495768055e4758611d3c607a4969766c0621bd6b5844633a4b", + "derivation_path": [ + "19292", + "21958", + "26310", + "4213", + "8261", + "26256", + "1863", + "13832", + "345", + "2720", + "28701", + "23067", + "5539", + "23097" + ], + "assets": [], + "index": 27903 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 178, + "unit": "lovelace" + }, + "address": "", + "id": "2e176c483901159bc315197bda455da5296c3d9265ed1c5a2c3d5e291703ef1b", + "derivation_path": [ + "16967", + "23272", + "20089", + "15052", + "4230", + "19342", + "16719", + "12817", + "9530", + "11315", + "27844", + "9157", + "19363", + "26542", + "5778", + "13206", + "2607" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 52, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 19701 + } + } + ], + "fee": { + "quantity": 65, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 224, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 45, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "7965", + "6193", + "3063" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 88, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 56, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 26, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "16858", + "27561", + "22337", + "8416", + "7106", + "30335", + "4740", + "17124", + "28261" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 217, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 45, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "22665", + "28473", + "16061", + "32216", + "31705", + "3361", + "16349", + "17547", + "32657", + "11796", + "5681", + "18141", + "4981", + "15224" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 48, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 44, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 38, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + } + ], + "metadata": { + "25": { + "int": 0 + } + }, + "id": "1d335531697f0a530428174a107c79635d6c1b5f5345397962091c4e574873ed", + "collateral": [ + { + "tag": "ExternalInput", + "contents": { + "id": "2b2d014502791006113c2e22433b20477a0313396965246e0533571a73a41a22", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 242, + "unit": "lovelace" + }, + "address": "", + "id": "173e686b4f7b0bbbc82425b0401d77226a2f325942394e61c43f8a192d4d1553", + "derivation_path": [ + "10137", + "2124", + "26467", + "904", + "16039", + "27240", + "20754", + "22998", + "27831", + "31764", + "25863", + "24068", + "6457", + "32134", + "25724", + "5196" + ], + "assets": [], + "index": 28865 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 53, + "unit": "lovelace" + }, + "address": "", + "id": "7a4e772c574979266d6c1e4f693a2e1319093be7936d6e2e271a1527135f1a53", + "derivation_path": [ + "5785", + "17235", + "12", + "23323" + ], + "assets": [], + "index": 16666 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 95, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 20, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 13, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 116, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 130, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 28, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 138, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 77, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 144, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 250, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 46, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 10, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 219, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 113, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 132, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "ExternalInput", + "contents": { + "id": "3573487ef93611526f223609f5557638fe210c790815367ff16d196709362a79", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 58, + "unit": "lovelace" + }, + "address": "", + "id": "ed66e6522d6100348fb74b2b5972bf553e8c24367c1f363f7829556c1b3e6226", + "derivation_path": [ + "7439", + "5409", + "3995", + "962", + "18975", + "9152", + "18321", + "31778", + "30511", + "22725", + "26569", + "17703", + "23441", + "25432", + "29461", + "21301", + "31746", + "5423", + "10822", + "19992", + "8327", + "25003", + "31951", + "5459", + "16831", + "19410" + ], + "assets": [], + "index": 8665 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "a6427073365525195f34f43b7d310bac3c2f69054c7e1d0108bf9a28775a123b", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 235, + "unit": "lovelace" + }, + "address": "", + "id": "a64423071f62b70188307f3fdd527e017f5a7a131930260b356108030e212a76", + "derivation_path": [ + "9824", + "9834", + "26868", + "18641", + "17658", + "28964", + "7360", + "31742", + "10576", + "28438", + "16314", + "17655", + "26955", + "20018", + "13775", + "7600", + "30306", + "987", + "22732", + "8381", + "25245", + "14269", + "24716", + "2311", + "8234", + "31985", + "13932", + "31572", + "28971", + "8845", + "18434" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 18321 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "36380c40648fb2765e9f4df71c6734255915c4515507462d727d2d1f016b3255", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 73, + "unit": "lovelace" + }, + "address": "", + "id": "643348a11572e1e4020231317d34106911b7951a282374010b2530306c0f3065", + "derivation_path": [ + "29696", + "25102", + "27782", + "8291", + "2140", + "13286", + "13609", + "31948", + "29487", + "25568", + "14686", + "9636", + "17518", + "2339", + "10527", + "5370", + "4877", + "22854", + "9932", + "31580", + "6328", + "29389" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 3132 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "191d3177185f264813227b7f495168095306660f546db8105f64367e6d06ee61", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "75574e0c40a4628cac29777ef9a46476510c8b77484e2144227bd01bf62a482c", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 136, + "unit": "lovelace" + }, + "address": "", + "id": "0a76bc4b5d537155646a6a79705bed4dd25d2d58791b2a52f412352e23746cde", + "derivation_path": [ + "17484", + "5388", + "679", + "16953", + "27673", + "16133", + "7773", + "1573", + "4367", + "14624", + "21375", + "4076", + "20425", + "23479" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 24828 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 60, + "unit": "lovelace" + }, + "address": "", + "id": "b7006f2cd92f7b0b7678e22df54d301e422f7d625d32723655a017311f262e5d", + "derivation_path": [ + "28166", + "31692", + "29497", + "16555", + "4114", + "8692", + "4330", + "21821", + "20124", + "20732", + "30705", + "25618", + "29784", + "12311", + "26034", + "29438", + "133", + "27910" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 32, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 2581 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "address": "", + "id": "3da555200c5a0212465b4a24362b124b05246004720b5a2945a77ab00b758b6a", + "derivation_path": [ + "4471", + "6428" + ], + "assets": [], + "index": 4839 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 110, + "unit": "lovelace" + }, + "address": "", + "id": "502e484b2f96622a1a592f271d30662b622c7c38625f86f5745733475f7d391f", + "derivation_path": [ + "7723", + "24530", + "26317", + "2724", + "30621", + "22057", + "27476", + "28955", + "14513", + "16758", + "20474", + "31777", + "14157" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 6615 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 180, + "unit": "lovelace" + }, + "address": "", + "id": "523a541ff14531062659327c6c6511033b0f06aac11974312a49643212406435", + "derivation_path": [ + "2201", + "5586", + "18695", + "523", + "21684", + "3200", + "7216", + "20868", + "15256" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 443 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "address": "", + "id": "f261612e357a43207e4b222e25f302cd67670c0b0b6e520d0139511843203d43", + "derivation_path": [ + "11996", + "20393" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 47, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 11016 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "14e200db7c2215203a7f3b6f726c442a056a2e698169a26e2f3b9b41c5582372", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 44, + "unit": "lovelace" + }, + "address": "", + "id": "0b55194a736e2148653114651d1a28688429651536dd796ea557684f63672d3c", + "derivation_path": [ + "8365", + "17363", + "26389", + "30577", + "23927", + "8747", + "17366", + "29946", + "24273", + "29530", + "11708", + "24967", + "866", + "9463", + "31548", + "29340", + "26969", + "5795", + "1406", + "7089", + "14480", + "28348", + "15020", + "5336", + "25335", + "24721", + "2083", + "16829", + "16111", + "26842" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 35, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 45, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 31817 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 57, + "unit": "lovelace" + }, + "address": "", + "id": "7d4e2004255b2c4930222a16843160201bdc58380f781a5b03667a3766553825", + "derivation_path": [ + "7576", + "10789", + "2110", + "14117", + "15772", + "32255", + "13069", + "17713", + "32673", + "27885", + "16830", + "9861", + "12139", + "23962", + "14961", + "5948", + "15850", + "6940", + "10737", + "2028", + "26452", + "26337", + "11430", + "25482", + "15551", + "14082", + "27055", + "10681", + "3048", + "8817", + "32360" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 42, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 53, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 9299 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "address": "", + "id": "4b12754162982187694bc04f7b300539c446197eb2a011251e3f3e18651131fc", + "derivation_path": [ + "31819", + "4582", + "7746", + "3459", + "1101", + "24065", + "15910", + "31352", + "8802", + "6422", + "22322", + "10520", + "21453", + "23052" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 8976 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "74720bda9c172868025859243475346f067cd5b9336a7d0f1f0a55247edc67a7", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 247, + "unit": "lovelace" + }, + "address": "", + "id": "5f46c242503c63470a0634237a6a24ab33416cf72457423ffd0c6b4356793f7b", + "derivation_path": [ + "17858", + "9748", + "22469", + "22262", + "21180", + "5603", + "1014", + "32257", + "12598", + "25225", + "17202", + "10619", + "1682", + "28957", + "14179", + "28334", + "16317", + "32242", + "3467" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 54, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 2297 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "52be3366245c46fd1e0e35243d84646e09201ab5c4234d507a72184a093d6870", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 30, + "unit": "lovelace" + }, + "address": "", + "id": "1f38400d73286c4d67680f4ba07a6e592e641856787d506161863f60417c5848", + "derivation_path": [ + "5336", + "1244", + "12765", + "24900", + "17359", + "4278", + "18067", + "27611", + "30333", + "31619", + "21073", + "17933", + "20397", + "25089", + "18475" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 45, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 23099 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 250, + "unit": "lovelace" + }, + "address": "", + "id": "253c5f2b691369252869287cb9504a480d6f053e413f207e77646a7848ec6456", + "derivation_path": [ + "12157", + "1759", + "24826", + "16492", + "26531", + "2972", + "6580", + "23321", + "21200", + "19442", + "30119", + "17026", + "8933", + "30166", + "6055", + "8686", + "21330" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 9185 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "721c32203310e03d1d364a224f24dd7905af57682d5756fa746a785e0c5d842d", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "3f61e57e361f54393e0e08463329624dd66a7c3d0b1aac3ef9d32d566531186d", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "093a80541d30761262184079102b05b0f7916a73184d7b3a7950776a09046675", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "0e476b0a5f0aaa780851a0521c2f762d36587d3652d6a14ae726147921733c2f", + "index": 0 + } + } + ], + "fee": { + "quantity": 67, + "unit": "lovelace" + }, + "outputs": [], + "metadata": null, + "id": "1034080ada087b4f24000e4f76395508474bd6586d13d6040ecf8c5e12892d3f", + "collateral": [ + { + "tag": "ExternalInput", + "contents": { + "id": "4664141960a83040c831434534765474691f1c6006631b78d52b190126693505", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "03530c441050d148254e4e3a65642b2b002413706b1f20020d1f6b023ce42514", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "address": "", + "id": "432c4b066923ac6a68dc9142464bd76c534705184ff55b542247551e483d3e33", + "derivation_path": [ + "31562", + "14397", + "18042", + "26265", + "11099", + "25534", + "27220", + "31892", + "10919" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 5625 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "324e3117aad0792751024cfd087d190b46953e2dc9a2280d152655325c1de8d8", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "565363281c0e047258043348976cf32837726d4f6622447dc3360c1d57087794", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "5465041a6d6bee9f01445e53704ad251726b6e0d1c7c6723333e7c4b3329281e", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "89bb604f286e096e7c5d4d34526d656f183e7e24233c1a310d96071c6b5b303e", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "19401a1752576e3da51918b35548b3446966f2b7687559402622153c040607e9", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "5d353e3c1ddf040460ee2a59252a420bf6ee500f4e7e1d655c73ab677f761973", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 66, + "unit": "lovelace" + }, + "address": "", + "id": "75172d762e2f5f7d2827f9937d625ad231821d510565187948d71475712b0504", + "derivation_path": [ + "21102", + "130", + "20022", + "259", + "24750", + "10660", + "15850", + "15662", + "29116", + "31683", + "12301", + "10440", + "16587", + "16626", + "4546", + "21246", + "28367", + "6213", + "30896", + "18329", + "27675", + "30981", + "19584", + "11930", + "32390", + "8174", + "19800", + "30706", + "12536", + "32602", + "22554" + ], + "assets": [], + "index": 28881 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 61, + "unit": "lovelace" + }, + "address": "", + "id": "586c596b78484f5bb82743996a3f446b2b625b3c7f671f3d002826b81300493a", + "derivation_path": [ + "15827", + "700", + "14073", + "28630" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 21908 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "address": "", + "id": "38d50d5042de3d3b3491406b53ec877c0e2b3045595c62164d043b69462a2b6b", + "derivation_path": [ + "12573", + "15123", + "8286", + "31749", + "20849" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 29289 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "address": "", + "id": "1852cd7b2a087b14559e7af0277d099406593652134a794c363e2a2a10662d6d", + "derivation_path": [ + "5012", + "15235", + "22451", + "6766", + "29700", + "4409", + "11309", + "11906", + "4410", + "22106", + "6410", + "25045", + "15059", + "6817", + "23329", + "8036", + "8330", + "18423", + "13588", + "23387", + "11987", + "28002" + ], + "assets": [], + "index": 11133 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "442f6cbc2117727232364bdf50533f064876e0795c52de6a7a5448526396753e", + "index": 0 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 16, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 235, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 106, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 33, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 142, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 83, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 233, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 115, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 217, + "unit": "lovelace" + }, + "address": "", + "id": "3611a5782017746791ab234b2b03556600200a4e7c491d12672d14c444047a04", + "derivation_path": [ + "10944", + "7530", + "20776", + "30108", + "29833", + "310", + "24514", + "8839", + "16672", + "6965" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 31, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 42, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 15985 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "5266050251470e2ce6a60122bd1966852c13182409641f4627407c8f6e6e210c", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "447a116d2f0f4e4f5e261e602024784a1052fa357e406a74414b192a24411b71", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "53353a772d96496c9b6a26ca0c0e364c425b3abd6b7a4e060977347956252909", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "address": "", + "id": "86ca57136ec6794f540256c245595349f846303f0f116a0d61745a7c5f647f23", + "derivation_path": [ + "18769", + "12049", + "18011", + "12392", + "27346", + "12810", + "13721", + "6165", + "31299", + "3141", + "3193", + "10706", + "188" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 9693 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 18, + "unit": "lovelace" + }, + "address": "", + "id": "4c64221d204746124f7d4f7228043e537dbc0929475b6941f9077f88fd61694d", + "derivation_path": [ + "28971", + "141", + "26534", + "14879", + "20173", + "6108", + "17237", + "10221", + "29009", + "32358", + "19894", + "12427", + "28802", + "11809", + "15910", + "24085", + "8993", + "11352", + "12705", + "28654", + "21281", + "4606", + "31109", + "10175", + "10495", + "20005", + "32635", + "25367", + "16907", + "17491" + ], + "assets": [], + "index": 5239 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6558a75924bb197e1052f766b58826296532c2a8d068ff241eb033740d58114d", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 202, + "unit": "lovelace" + }, + "address": "", + "id": "546c0d0b3c1a782ab219494b617d076d149b0f6f3280154102414631106902ba", + "derivation_path": [ + "26793", + "24155", + "24029", + "25092", + "372", + "10982", + "21657", + "12032", + "32693", + "6748", + "6892", + "27118" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 19209 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "47579150aa6620902039e9547b0317892c7e43001c370c566d6d75823d173d09", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 231, + "unit": "lovelace" + }, + "address": "", + "id": "250b21220caa4a6fad7ee77e732fd67c237e236904b46e460d61f54e46593f61", + "derivation_path": [ + "9974", + "13042", + "7029", + "31007", + "28829", + "1810", + "2780" + ], + "assets": [], + "index": 11206 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 81, + "unit": "lovelace" + }, + "address": "", + "id": "183764272d566464461d605d535f4f635421230d4af6776740314456755d2d3c", + "derivation_path": [ + "20241", + "26412", + "13523", + "16331" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 12998 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "address": "", + "id": "345e11d4c7491b33277817601e610d6f47267c273e68725e4f4a9016476b7679", + "derivation_path": [ + "12954", + "18538", + "7038", + "13305", + "3171", + "8461", + "29040", + "3569", + "22858", + "23668", + "29499", + "10906", + "8978", + "15399", + "18377", + "7221", + "8130", + "27759", + "927", + "29048", + "5015", + "11531", + "6112", + "2836", + "24424", + "24111", + "11044" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 31, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 42, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 28231 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "ea1c3424726060160e48370a6a661ccac018256c68d5760f967564fd171e1d10", + "index": 1 + } + } + ], + "fee": { + "quantity": 101, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 180, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 53, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 69, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 40, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 8, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8122", + "20991" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 40, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 173, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8730", + "32380", + "29199", + "16996", + "22455", + "17499", + "21602", + "27873" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 249, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "amount_incoming": { + "quantity": 38, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "28241", + "438", + "28507", + "10265", + "27841", + "730", + "4906", + "30396", + "3992", + "3280", + "11538", + "4542", + "20409", + "26990", + "8201", + "19395", + "6999", + "17861", + "1963", + "19653" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 116, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 189, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "19478", + "18144", + "4935", + "30255", + "6937", + "23983", + "8642", + "32197", + "26961", + "4044", + "20143", + "30371", + "8639", + "5311", + "23387", + "32224" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 31, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 36, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 209, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 40, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 41, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 39, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 54, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 0, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 66, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 66, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 236, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 40, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 93, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 98, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "22027", + "7045", + "11003", + "14201", + "27117", + "20786", + "31689", + "23995", + "25626", + "22298", + "9179", + "7842", + "17834", + "24167", + "28202", + "22095", + "23441", + "25420", + "31965", + "30893", + "1513", + "27847", + "22839" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 69, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 133, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "30129", + "2440", + "18183", + "6952", + "11666", + "17003", + "8843" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 43, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 83, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "amount_incoming": { + "quantity": 12, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "22770", + "24113", + "25327", + "5723", + "24550", + "8833", + "16426", + "31644", + "8111", + "14525", + "7448", + "28814", + "19804", + "6609", + "25176", + "4659", + "258", + "9466", + "5764" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 216, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 209, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13584", + "3554", + "32698", + "32762", + "25133", + "15417", + "23663", + "22746", + "32439", + "32365", + "6264", + "19144", + "19676", + "8966", + "25778", + "26115", + "21347", + "6978", + "20672", + "2729", + "31288", + "14943", + "6275", + "10699", + "11290", + "14203", + "21403", + "7988", + "18156", + "14829" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 208, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 204, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "21204", + "27375", + "29962", + "27021", + "28989", + "4344", + "6526", + "23828", + "13075", + "23657", + "730", + "3003", + "17519", + "27405", + "27072", + "29054" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 44, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 73, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 10, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 241, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 34, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 41, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 118, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 214, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "19331", + "8794" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 33, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 175, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 32, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 237, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18902", + "14893", + "4584", + "29664", + "14330", + "8437", + "20100", + "885", + "6965", + "2380", + "3379" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 29, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 109, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "21346", + "22090", + "27301", + "14459", + "27627", + "8277", + "32299", + "29671", + "18679", + "4549", + "29395", + "5128", + "4315", + "32066", + "4655", + "13494", + "27074", + "21838", + "17673", + "9897", + "293", + "29260", + "20006", + "5584", + "18356", + "16267", + "7970" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 49, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 197, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 53, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 16, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 247, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + } + ], + "metadata": { + "20": { + "list": [ + { + "bytes": "5725b564ca06297078a06b051079a2377557f82012301a5b1d451e7e7a24056a11444e197f2154568b233e1f530f3e4707314d1dcbdc" + } + ] + } + }, + "id": "3465256926234e5d4f5a28eb1e041d054618294a120b23e2214d272621694424", + "collateral": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 200, + "unit": "lovelace" + }, + "address": "", + "id": "57177041a6180e291c3d6426561a7b2a4734ba3a6004644c532076332f8e154f", + "derivation_path": [ + "17135", + "17567", + "4287", + "28772", + "19838", + "16268", + "11463", + "6268", + "17122", + "29059", + "29052", + "16049", + "16852", + "2689", + "21278", + "11913", + "1740", + "19126", + "3776", + "10877", + "5037", + "12720", + "10782", + "26227", + "21428", + "31959", + "27868" + ], + "assets": [], + "index": 25588 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "8a09423eb060235f6079251f9d52544c510d197366736a2f173a7ed30773d474", + "index": 0 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 193, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 51, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 117, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 64, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 230, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 138, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 196, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 65, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 140, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "ExternalInput", + "contents": { + "id": "4074603b5f71521b3a69556a12492a1d273a5f3c47ce567d0a2265db272f751a", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 71, + "unit": "lovelace" + }, + "address": "", + "id": "375815fb67b63d0c58ab481cfe67fa571e626160782c0b85204307720ee1466a", + "derivation_path": [ + "15700", + "6721", + "20670", + "7314", + "5549", + "3351", + "8286", + "1600", + "11811", + "8950", + "730", + "27932", + "17230", + "2069", + "29359", + "10997", + "1557", + "28652", + "31216", + "4804", + "2671" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 53, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 52, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 33, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 21132 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "3f48433a4965316521712568d40e29772ab32127715ef6585d7b61b84c754027", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 159, + "unit": "lovelace" + }, + "address": "", + "id": "7e6d09b60a74642553396fee120c147b1b1e3d321bec2e4c747d091c7719765d", + "derivation_path": [ + "32767", + "12675", + "30084", + "29603", + "744", + "29079" + ], + "assets": [], + "index": 10836 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "dcb810334158df09ad735b5d545fd4723b7b2f6528383f71705d1dee1d1c104b", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 87, + "unit": "lovelace" + }, + "address": "", + "id": "6c7f8afc8b3b77667b690a0e092c0e1c7772df1d56254fc489556d4e684a287c", + "derivation_path": [ + "25030", + "15577", + "29362", + "21684", + "26790", + "8307", + "28065", + "3935", + "18785", + "17498" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 14371 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "15136b3d3e6ed06f45103b336ed1004b1d624c4067646945c635745f67171f97", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 17, + "unit": "lovelace" + }, + "address": "", + "id": "5f0817495c0581393e151c4666cc206126297633081b2c2fb9323abd2a614424", + "derivation_path": [ + "15971", + "2134", + "26403", + "10473", + "21698", + "19493", + "210", + "2801", + "30114", + "12982", + "28000", + "2643", + "29120", + "7290", + "31851" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 8854 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 131, + "unit": "lovelace" + }, + "address": "", + "id": "8c75457224974845871cab0d36505144429f36344c383551010645556e427845", + "derivation_path": [ + "28736", + "3716", + "8385", + "22250", + "19450", + "9744", + "7917", + "10234", + "19192", + "31786", + "5128", + "9788" + ], + "assets": [], + "index": 11246 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 123, + "unit": "lovelace" + }, + "address": "", + "id": "7b6664557ffa21681b7a2f019ca645144a0b2637971f6f600e7e6c3c7836291f", + "derivation_path": [ + "24302", + "19370", + "20579", + "28095", + "4474", + "15748", + "24615", + "21929", + "15110", + "22956", + "27505", + "6714", + "27626", + "16517", + "19322", + "20886", + "17025", + "13088", + "20670", + "30114", + "32608", + "2616", + "29019", + "28404", + "8262", + "18259" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 31020 + } + } + ], + "fee": { + "quantity": 190, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 59, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 36, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 234, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 7, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 94, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 217, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 237, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26891", + "26506", + "12053", + "28292", + "23437", + "5652", + "1549", + "30071", + "29780", + "20750", + "14985", + "12056", + "21945", + "6846", + "25498", + "16959", + "29844", + "5342", + "3942", + "4981", + "8737", + "14925" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 59, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 127, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + } + ], + "metadata": { + "4": { + "string": "𥏼" + } + }, + "id": "4e0a27574d2d17240a5042382057eb253418777f7a11e4017207334d207f3aca", + "collateral": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 255, + "unit": "lovelace" + }, + "address": "", + "id": "381a74277e5f257b0426e60321a033593206c54a6a2c2b727d0f5258a25014c7", + "derivation_path": [ + "10675" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 29022 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "171c64165bcf04d96d2a34153a0a31347f22304c755d4c52680067331d012110", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "address": "", + "id": "f81800335b77909b20578458491a7bf012357e0f4a433276256c456b78043770", + "derivation_path": [ + "12403", + "9684", + "9870", + "3826", + "28589", + "9062", + "20993", + "9687" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 18031 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "297c7a0178293c36c9cc2c42a811145a0358121308f91b31273b070278e51e22", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "541de1cc51301d27587241033bd87def02335c6f202f044107e55b32127d5476", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 232, + "unit": "lovelace" + }, + "address": "", + "id": "67320bb74c6407702c7c1b125a3f492950087acc082b3a5b6343294f5a77ab29", + "derivation_path": [ + "8647", + "10346", + "1073", + "3364", + "12797", + "15899", + "13196", + "22764" + ], + "assets": [], + "index": 9487 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "4c3b67383652e608d617752c677b1e9f1d67f44879405d8b3ea754754319790e", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 53, + "unit": "lovelace" + }, + "address": "", + "id": "1b3d350505533b0b0a4d574665334a403f166f2e45864431613dd337a8108502", + "derivation_path": [ + "11174", + "16802", + "10015" + ], + "assets": [], + "index": 14291 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "address": "", + "id": "483f6d7b355c616a76305e254f14983a7670a866fa6a0f3e4f69106c3a475e32", + "derivation_path": [ + "32602", + "27270", + "19723", + "28556", + "21342", + "25070", + "15404", + "6482", + "13271", + "20372", + "5335", + "14167", + "20483", + "23438", + "16505", + "15554", + "28934", + "9882", + "5306", + "8103", + "25906", + "14705", + "23313", + "18752" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 9050 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 118, + "unit": "lovelace" + }, + "address": "", + "id": "6d0c35667e471311ba90020e0b79c30d4b39e9ce461dea2f30110400281e692d", + "derivation_path": [ + "31215", + "31673", + "17618", + "9886", + "30313", + "10558", + "19238" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 8147 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 128, + "unit": "lovelace" + }, + "address": "", + "id": "14120e2898743dcdc20b224b3a433e4a554f54602d77251b0b424b7b7c767b1d", + "derivation_path": [ + "29662", + "11310", + "21763", + "2618", + "12069", + "18968", + "27973", + "15955", + "22055", + "11316" + ], + "assets": [], + "index": 4483 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "address": "", + "id": "711a7065cc42411640210942654dfb0c7b71c877764a3d995069351e3e5a1101", + "derivation_path": [ + "20517", + "2609", + "19195", + "30531", + "18792", + "16832", + "19510", + "6360", + "27533", + "9623", + "19734", + "1390", + "19295", + "1569", + "31072", + "31789", + "7455", + "4697", + "3318", + "1832", + "24174" + ], + "assets": [], + "index": 22654 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "100501e4360e474835fc793c4e557f6321a62cb1ca16e67b08097726f2490924", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "090803644935ad07f751b2630d94771624774f3e462b5872f019dd0f1345400e", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "543018165a113d5e5c5b4d4d278bbe7b7707044959a97e5021691c1d7b030340", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "1172647a069e070f33af06216b8c13cd542264c62c5102160549365b61624205", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 113, + "unit": "lovelace" + }, + "address": "", + "id": "37763b21486a9e4b4316045e592b354d07394b40d14356013c16da39895ec852", + "derivation_path": [ + "15401", + "3162", + "23941", + "8521", + "28108", + "9652", + "27774", + "9098" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 2672 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 130, + "unit": "lovelace" + }, + "address": "", + "id": "2a793d6c33173eba2c80397a4c8d703d655e6060222c7b087727590c44332118", + "derivation_path": [ + "19261", + "11211", + "24263", + "11221", + "21575", + "12465", + "31397", + "20388", + "24268", + "26231", + "25818", + "6810", + "23342", + "27647", + "28867", + "5736", + "27590", + "10539", + "4169", + "25812", + "16744", + "26780", + "32278", + "27659", + "5725", + "12833", + "2687" + ], + "assets": [], + "index": 27064 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 230, + "unit": "lovelace" + }, + "address": "", + "id": "38ea642778262f31662c3d7f082840067776350126ff292c005c3534175b7314", + "derivation_path": [ + "8529", + "1679", + "9700", + "14506", + "16163", + "15321", + "27198", + "11993", + "16331", + "564", + "27494", + "31675", + "12579", + "17856", + "10779", + "16031", + "25141", + "3221", + "12525", + "11483", + "19988" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 57, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 4733 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "0a3d4f65387a2c77682c133b1c445831436755779b4d0a65832a736425564814", + "index": 0 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 195, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 29, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 158, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 30, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 168, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 151, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 55, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 59, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "address": "", + "id": "4302fa5f8368599529f1592e647d4477545d3f24c249782b36285c4e4b42a806", + "derivation_path": [ + "19498", + "111", + "26486", + "25835", + "30327", + "27938", + "18695", + "28028", + "26749", + "7628", + "19493", + "9497", + "5975", + "1213", + "9743", + "7080", + "3420", + "10995", + "22814", + "11945", + "21330", + "19721", + "32410", + "24743", + "22434", + "1926", + "24418", + "4280", + "27539", + "17095" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 922 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "f34c532a221618cd6263470d274e647f0b315663e8b121632b0b512d50063072", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 208, + "unit": "lovelace" + }, + "address": "", + "id": "8b1d0c3c016015194f052f1031497c2b3d6f2a56e67cff2a4028581d1df11553", + "derivation_path": [ + "16650", + "7855", + "20539", + "29966", + "30726", + "19483", + "23969", + "8818", + "9353", + "3643", + "6959", + "29872", + "8293", + "9762", + "27830", + "11389", + "21000", + "31787" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 19350 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "239fc3445054126a2462113779c51c214bdc5c6544bfda158e63443732284d0b", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "287e2e67813e6242506b09df6321261e7f54196d3b0ff147152c1c456f4e753d", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 85, + "unit": "lovelace" + }, + "address": "", + "id": "245d603d510c388e6b2146355a0ff6720e086d4d4d4c5e46306f0444cf2d7537", + "derivation_path": [ + "2903", + "25049", + "17863", + "16078", + "7949", + "8022", + "12803", + "25875", + "3586", + "1433", + "13701" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 24585 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "1ac4053156797c034b6e6a7241322a0258167171655757311f24017c717f0442", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "4e3c3f08527d1b230a750035cf83905d137e6807168162755f2c75066b683a20", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "03421947017015576609304f17649b555a7fbf206b2e4746064642aa3b130278", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "4f5d04587708267b09446503722e05200e595ef311126c53350f3bbd796e4d75", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "0d4a782b6c694f50604c254f255e291e7cfa3c11d2081de62dcd6b93983e676a", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 16, + "unit": "lovelace" + }, + "address": "", + "id": "110da3307a1c3707ca55886db21e0f3d357449105964b622654b73c40a31751c", + "derivation_path": [ + "29710", + "9580", + "20378", + "23392", + "13554", + "1667", + "9359" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 33, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 67, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 13764 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "8f605b37092e052031272e7e745216535e6382006a016863052c5a68714c5908", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "303a4167e90e07cf90147ad1510b7e72715ec371af59a2783f295e1b787b5848", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "5d1637666acb00b45851222c1b60325374a8567af032720d6b07067cf70d1940", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 97, + "unit": "lovelace" + }, + "address": "", + "id": "407946267d1514103923044f65403a29680c034254a292504f61554252426aab", + "derivation_path": [ + "31136", + "17174", + "16396", + "10145", + "14301", + "15656", + "3063", + "23325", + "2410", + "14189", + "27736", + "27716", + "31536", + "21619", + "7074", + "29895", + "32422", + "5662", + "7514", + "22774", + "22549", + "20739", + "28369", + "23124", + "15300" + ], + "assets": [], + "index": 23763 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6e7a767c111b392ad37b39015ebc7f36435507cc580b4b60fa6c245f61562765", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "38fb785d7a52a94f62cb41306a7e1f1c2e4cfe232eda4e37505b294473102717", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "4e7650463ad55042e44c02211d164f78065b3632140b295b6d7d2175340ea00c", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "715a62594f4ae51a03383ffbc47a6d6a762734122c532a1026c83653dd1d4368", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 28, + "unit": "lovelace" + }, + "address": "", + "id": "08c02a4879610955103142993a5acf1c1225186a15e46215650c18308b0c3852", + "derivation_path": [ + "4680", + "10622", + "31850", + "30969", + "13332", + "13544", + "6414", + "19186", + "13241", + "10160", + "30629", + "6319", + "4400", + "22835", + "8582", + "28784", + "23216", + "21195", + "32679", + "22427", + "12490", + "1044", + "3476", + "6808" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 7288 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 25, + "unit": "lovelace" + }, + "address": "", + "id": "305034f96e5c14591f7321772753a3c6057162733e4f0153141a0366134142c5", + "derivation_path": [ + "16612", + "11706", + "9412", + "32141", + "32567", + "26070", + "9985", + "17276", + "27325", + "25993", + "719", + "10478", + "25662", + "24693", + "27956", + "14022", + "29710", + "22222", + "27945", + "16075", + "9279", + "19846" + ], + "assets": [], + "index": 21386 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "08102d73714732f42f08044d23793d444d160d2700ca75104257a96e6f061809", + "index": 0 + } + } + ], + "fee": { + "quantity": 106, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 228, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 192, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "3640", + "247", + "16813", + "5330", + "26644", + "16676", + "6313", + "8333", + "15030", + "1070", + "24234", + "29220", + "19634", + "15607", + "19644" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 198, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 249, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "14385", + "31442", + "14820", + "27873", + "24613", + "21100", + "8439", + "23007", + "1629", + "935", + "26041", + "3486", + "12156", + "7002", + "6354", + "14194", + "13056", + "5401", + "8399", + "26640", + "14100", + "403", + "2334", + "2332", + "5884", + "27899" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 41, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 245, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 38, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 43, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 254, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 123, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 124, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "9718", + "12845", + "3768", + "207", + "18712", + "3836", + "14459", + "11932" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 176, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 51, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "23736", + "10445", + "26466", + "12539", + "13986", + "22620" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 187, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 87, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "11377", + "27880", + "18141", + "28514", + "6407", + "21166", + "7139", + "27260", + "20159", + "875", + "21569", + "15612", + "27463", + "11439", + "12209", + "6796", + "15156", + "9753", + "388", + "3946", + "11903", + "17050", + "14231" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 63, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 97, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "7473", + "29853", + "5659", + "11050", + "30269", + "15446", + "8857", + "729", + "26136", + "14177", + "20156", + "25064", + "5694", + "20953", + "15724", + "10038", + "10448", + "25600", + "4630", + "12507", + "1135", + "436", + "12032", + "29586", + "30143", + "19043", + "4774", + "26475", + "16461", + "29197" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 97, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 111, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "2349", + "11500", + "10766", + "1911", + "32147", + "10326", + "14073", + "720", + "15627", + "4626", + "24982", + "23360" + ], + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "amount_incoming": { + "quantity": 62, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "17010", + "23859", + "5037", + "19060", + "28955", + "27480", + "2321", + "18935", + "11098", + "7881", + "27280", + "13293", + "12923", + "12149", + "2014", + "26817", + "2357", + "17045", + "8085", + "26359", + "13615", + "8626", + "9856", + "24393", + "29525", + "29743", + "25749", + "1177" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 181, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 57, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 199, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 28, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 240, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 215, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18601", + "30477", + "8722", + "6433", + "17928" + ], + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 108, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 235, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 52, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "69", + "12928", + "26687", + "15502", + "5719", + "32546", + "8716", + "30657" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 49, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 168, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 38, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 159, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "3190", + "32196", + "26660", + "7171", + "7801", + "27669" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + } + ], + "script_validity": "valid", + "metadata": { + "10": { + "list": [ + { + "list": [ + { + "bytes": "217e644f9a3c0531193d37b3c6ee5804582c3448766978" + }, + { + "string": "𭗓𰯵" + } + ] + }, + { + "list": [ + { + "list": [ + { + "bytes": "5651783281a53c64311c3a4f6e4333646b4d17df7a" + } + ] + } + ] + }, + { + "map": [ + { + "k": { + "string": "􇣡" + }, + "v": { + "bytes": "496a5c20103475797a751b0c50653b1e0d370eff5d2f4933055441112c684155df" + } + }, + { + "k": { + "string": "􏉫" + }, + "v": { + "string": "󻇷맠􌩺􍑞" + } + } + ] + } + ] + } + }, + "id": "4d49a9162203593d737f0b4c16a317471b5c843a677c4704515103dd694e1971", + "collateral": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 28, + "unit": "lovelace" + }, + "address": "", + "id": "c13f374f05a8526b35e40b36703d1aba6e2f6d2a1c5f6a2c7d14311550125860", + "derivation_path": [ + "4847", + "21868", + "26361", + "21828", + "1609", + "1339", + "13897", + "15859", + "30378", + "17958", + "20274", + "12966", + "31357", + "15115", + "23072", + "792", + "21970", + "32755", + "3142", + "3255", + "27871", + "20145", + "17875", + "28130", + "20134", + "31728" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 32, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 25215 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 168, + "unit": "lovelace" + }, + "address": "", + "id": "6b13603c76315fac350367e5214ed54b326b4f66426f52750c1c576d1b0e6e74", + "derivation_path": [ + "24257", + "19342", + "2342", + "27027", + "6523", + "2625", + "21410", + "27343", + "29953", + "26602", + "23705", + "3435", + "17178", + "26711", + "28163", + "26117", + "1432" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 14023 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "1a1a7e1a346d553d13562c426e0b5c7a00dc28c0703c2c327d354c4316da0016", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 218, + "unit": "lovelace" + }, + "address": "", + "id": "38083d391283536535a8621b62d910b050cd482e354e39402f131b445e996905", + "derivation_path": [ + "24684", + "26712", + "27517", + "32654", + "16139", + "8186", + "10140", + "21863", + "12027", + "24988", + "4363", + "11513", + "16049", + "18245", + "13002", + "23781", + "15530", + "21701", + "19228", + "5826", + "12017", + "25965", + "17535", + "14812", + "30173", + "24334", + "17814", + "24170", + "2145" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 19811 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "2c5970132777f9005456100f4715567769c08c21874968972027203e4e5f744f", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 222, + "unit": "lovelace" + }, + "address": "", + "id": "7406737b47591b7a673b2048766b4d2e2a74582a4b21075e40fb63ab7a284134", + "derivation_path": [ + "11372", + "19137", + "17517", + "4954", + "6233" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 37, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 23498 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "4a2c8c740edce5c16d5e7f36b3db251e0576320a2145f17e2243d29c2c74355e", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "596d1c4b156b48084b554eb44657762a7d710e54771027ac713056232ca02e6a", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 55, + "unit": "lovelace" + }, + "address": "", + "id": "7a056b46482c40f5460846415d142a293662c743c942664a07a57c0405111451", + "derivation_path": [ + "14728", + "23", + "31771", + "22041", + "13607", + "6710", + "14854", + "22399", + "27156", + "5129" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 37, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 16995 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "address": "", + "id": "5441696505121b1855696c48ac01404177b918c6014b66b123db111e20515e49", + "derivation_path": [ + "6057", + "8808", + "18610", + "25995", + "24345", + "7914" + ], + "assets": [], + "index": 29013 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 23, + "unit": "lovelace" + }, + "address": "", + "id": "326a457928a441ec0270406a42737b3f1c005f7e00c42847a87e77eb467f511f", + "derivation_path": [ + "3076", + "7684", + "1451", + "3000", + "15270", + "20846", + "2295", + "18552", + "23472", + "2760", + "15024", + "24403", + "28951", + "16712", + "6395", + "6257", + "15901", + "14821", + "29082", + "1185", + "8147", + "7176", + "12240", + "1541", + "7025", + "6762", + "23823", + "17400", + "5311" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 43, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 5858 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6d564b392d642f6c084c745c4b2eba2465ab3b3c2a1557616c594a0b82456881", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 71, + "unit": "lovelace" + }, + "address": "", + "id": "552f5c8d397c74273fb30e014a034c78136dbb54115d4d5362510c465004134e", + "derivation_path": [ + "8971", + "6615", + "32757", + "27876", + "20249", + "28227", + "31055", + "11079", + "4224", + "20362" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 9422 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 55, + "unit": "lovelace" + }, + "address": "", + "id": "191800764a157201657c7b740468301b1a2aa41133645f5d6d4390701e743e38", + "derivation_path": [ + "8305", + "1707", + "2683", + "23039", + "25744", + "21474", + "1149", + "25403", + "21081", + "18734", + "10083", + "365", + "31462", + "11839" + ], + "assets": [], + "index": 8819 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 14, + "unit": "lovelace" + }, + "address": "", + "id": "3c1f592b7c4867f5d61b2c5d1040402128242fb43c3c2a18fc75881c04754344", + "derivation_path": [ + "3934", + "8387", + "20094", + "2141", + "21429", + "8855", + "12305", + "18295", + "29965", + "4673", + "5473", + "3343", + "21234", + "11602" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 10287 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "073d53572d097d775c2740563c7fc90b6b40944d48002b60311d20613d5814ac", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 125, + "unit": "lovelace" + }, + "address": "", + "id": "fc4d6c18e55a6078491190454844714d0e71223e782f2b058585a06d665a171e", + "derivation_path": [ + "21713", + "21512", + "19159", + "15621", + "6418", + "9226", + "2321", + "28645", + "6151" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 39, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 17634 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "5d359b26472bbe286755202e1d191f57702c2e4e2e28004727364c46fc414125", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "724761360bc3142f7916441b487e1c2d552f3595c9071125b61a4e494c660e25", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "0822037c51247a205214471ca8761b0d139cf54a4528135d7c642a74757e5e86", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "address": "", + "id": "666f693300156400463f0f9a7201600a770c2943165b1a5750912c2776556834", + "derivation_path": [ + "21660", + "15132", + "26075", + "15525", + "28080", + "24101", + "10299", + "3811", + "8337", + "1431", + "32245", + "29033", + "19480", + "17011", + "25959", + "4463", + "19052", + "31579", + "7659", + "1494", + "10504", + "14550", + "4620" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 49, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 40, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 36, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 12207 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6ed9452d8a11717c46322ff3467d4952176c7748521e4a5b7b5314a67c0e4c14", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "079b7853994a405d127a83766c76347f3137c1623c7873cf1e647f692928c15a", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 125, + "unit": "lovelace" + }, + "address": "", + "id": "5f624c27317a401d12410763d13a5e046f63583339883c0ce011088b69782973", + "derivation_path": [ + "25829", + "12348", + "27487", + "29407", + "13221", + "25918", + "28342", + "20465", + "20684", + "5930", + "11447", + "15870", + "17120", + "2425", + "29541", + "6110", + "27245", + "18350", + "31927", + "1168", + "23355", + "25872", + "30155", + "18788", + "955", + "2636", + "9413" + ], + "assets": [], + "index": 9926 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "73d42b51523a1a522d7d67524b1b66ae500e2b3a2d305b3f34643f2c6b3e5ba8", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "00a807ff0ed6135a395b4c502607094e570c420032ca2d74740904331b467472", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "7a15130b79630068200501081e7c1244345c5e2e22001d68683fa2d9222c019a", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 28, + "unit": "lovelace" + }, + "address": "", + "id": "8308793236083a2136510b3a7a5139111e1c45023f07492677121f6822010106", + "derivation_path": [ + "30617", + "11808", + "13312", + "19258", + "10909", + "254", + "6639" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 26160 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "2e54250c3254071c517e682558193d0e5e031f5e260c2c22a3636d6921262742", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 189, + "unit": "lovelace" + }, + "address": "", + "id": "3f3f0531242e16a41361a55fc4365501695e4d7565326e7713762a2f20e2183a", + "derivation_path": [ + "23587", + "26060", + "27205", + "15279", + "25577", + "2120", + "6898", + "31488", + "28493", + "12186", + "9282", + "1655", + "32306", + "20197", + "11514", + "22933", + "20221", + "16358", + "31495", + "12625", + "8261", + "13531", + "31217", + "21798", + "13099", + "1200", + "3762" + ], + "assets": [], + "index": 32716 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 162, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 105, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 136, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 62, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 135, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 58, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 71, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 158, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 240, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 204, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 222, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 245, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 231, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 53, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 162, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 33, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 197, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 24, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 108, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "ExternalInput", + "contents": { + "id": "1b47326c4373e8746d1c740b080b478047df693e067758722ad4d16841c40910", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "68274b62144916627d2008442e09b2681533839f7a5b6f2a5d880ac3336e645c", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6324066c733a502114602a570f2640535013647b75b65efb6a5028599b073f36", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "address": "", + "id": "24700378582d271c0a4e78413d216b3826365922677e3615632a3337347c2876", + "derivation_path": [ + "30641", + "8142", + "25485", + "27333", + "24993", + "1710", + "11076", + "1048", + "21413", + "12634", + "23653", + "27208", + "1462", + "30313", + "18485", + "30515" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 42, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 1665 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "c4350b96b50e5b572355077073243332145f5b632a7815360b2b5122136a7e72", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 134, + "unit": "lovelace" + }, + "address": "", + "id": "662d21281c2d50a063101c43e2d0030c107a507633970a39370e2702356d0e19", + "derivation_path": [ + "4416", + "3539", + "11085", + "11817", + "26647", + "9436", + "12214", + "10241", + "21343", + "22704", + "28424", + "14096", + "32747", + "2421", + "461", + "20815" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 912 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "e3487915fb7d601ae26ea95001cd28179f2ca2340bde007c773ebf3c75d8432d", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "77649651130a4f4d557371445c0106214632684a62330c53146077092b42120d", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "eb8b38333d122ba7475c413a493050172268564746204f062f7130113a6e59e8", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "address": "", + "id": "78551f12154f2b02715097714750d5754e013839ee053f0a1f5d361959763e4e", + "derivation_path": [ + "7138", + "16263", + "24314", + "29437", + "28556", + "19091", + "26672", + "23158", + "7031", + "12205", + "5662", + "21390", + "9079", + "32115", + "12322", + "24273", + "17886", + "23302", + "11774", + "12679", + "9507", + "29798", + "6404", + "6541", + "20272", + "30520" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 45, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 46, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 4155 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "2a584b27644600ab6161543ffd6e77771b45806a5f0e52055fb8ee4add5411e2", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 186, + "unit": "lovelace" + }, + "address": "", + "id": "62a56a550121397b143a6d94e46e7a3905190531556c1b4154091f14217d453c", + "derivation_path": [ + "2757", + "24157", + "11693", + "20268", + "31111", + "13775", + "19341", + "23089", + "25877", + "11364", + "9442", + "31410", + "8252", + "30240", + "26758" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 11465 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 211, + "unit": "lovelace" + }, + "address": "", + "id": "10251a1c0d444953020a19af6cf2066a124073332327622549219631667e7861", + "derivation_path": [ + "28778", + "21036", + "6160", + "9538", + "10254", + "11335", + "13684", + "20657", + "190", + "2785", + "28577", + "19453", + "23258" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 8093 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6951395bfb35197237792b5d4f541b5711f2623266243f1701ed0b18260e0006", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "54571835683318824d2c24813d685b3b4f5a253d0d2abebc4224635e1a4c823f", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 230, + "unit": "lovelace" + }, + "address": "", + "id": "6bef28513f447ef27414971b0b682755321b8e553a91445f44002f1602454b68", + "derivation_path": [ + "6857", + "2159", + "9974", + "15812", + "11624", + "20072", + "85", + "19081", + "24370", + "20569", + "29496", + "19365", + "18779", + "18110", + "19997", + "14630", + "7632", + "13742", + "343", + "22078", + "27901", + "17574", + "11847", + "15070", + "24784", + "12597" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 33, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 13 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 253, + "unit": "lovelace" + }, + "address": "", + "id": "3974826d0e7e6c5b730c5a187d552a2c1420075f614bf0d37c295e1c113dcd63", + "derivation_path": [ + "1478", + "23392", + "18636", + "23373", + "23790", + "18238", + "14671", + "13659", + "922", + "13761", + "462", + "16776", + "25529", + "7400", + "32135", + "10311", + "24614", + "15544" + ], + "assets": [], + "index": 7594 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "9c26781a7a3a211d6650070e606c2951731c6d040856ea221f5903c920775dcb", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "1f6e2f68ef7e406d61c1e82675286b0c0d6b58f757450e5183606b3a1e4c191b", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 142, + "unit": "lovelace" + }, + "address": "", + "id": "568a4c861cd37e1d5c3c6b342704615410720c5528376f647e4c2b5349507208", + "derivation_path": [ + "24351", + "466", + "4135", + "13846", + "16323" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 4244 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "644021541e5c2f6d48602410de7e677031e4270b4209698b675018643b506a2a", + "index": 1 + } + } + ], + "fee": { + "quantity": 100, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 243, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + } + ], + "script_validity": "valid", + "metadata": null, + "id": "046976501c7f207c5a36366c5a443c6a7162b7625b39066e736f38444f537b66", + "collateral": [] + }, + { + "withdrawals": [], + "inputs": [], + "fee": { + "quantity": 251, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 224, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 21, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 35, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 42, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 209, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26368" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 207, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 234, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26989", + "15060", + "29549", + "25756", + "21508", + "16419", + "2600", + "7457", + "14565", + "19254", + "7695", + "32387", + "19681", + "17798", + "19157", + "27586", + "12433", + "6558", + "20270", + "20679", + "31792", + "8661", + "5840", + "27769", + "25691", + "18024", + "20132", + "9079" + ], + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 23, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 193, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 44, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 48, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 53, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 45, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 78, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10833", + "4773", + "21749", + "23666", + "12186", + "12128", + "10591", + "17711", + "32305", + "457", + "10803", + "8880", + "30875", + "2019", + "14820", + "18875", + "22765", + "24284", + "24462", + "23012", + "14388" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 153, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "28576", + "20038", + "29909", + "23813", + "23552", + "28258", + "388", + "2440" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 62, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 113, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "12571", + "13036", + "30675", + "14887", + "13033", + "9723", + "14269", + "17075", + "19848", + "11739", + "5855", + "28382", + "24677", + "714", + "27499", + "26367", + "8662", + "13465", + "6324", + "16405", + "2538", + "2239" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 128, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 167, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 44, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "24748", + "19696", + "4536", + "24004", + "25219", + "29817", + "26436", + "31482", + "29775", + "17547", + "22486", + "9810", + "32215", + "14340", + "30031", + "1813", + "610", + "27344", + "16097", + "23397", + "25714", + "25429" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 240, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 37, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 57, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "27391", + "23892", + "26073", + "17860", + "16847", + "27109", + "22512", + "12539", + "28464", + "1210", + "20371", + "11042", + "23981", + "15427", + "2836", + "9229", + "3243", + "12250", + "8526", + "16592" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 247, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 224, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "408", + "7097", + "4214" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 115, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 234, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 247, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13868", + "16484", + "4996", + "7786", + "11408" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 200, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "30716", + "15473", + "23664", + "23555", + "13430", + "19230", + "24594", + "22695", + "29658", + "21900", + "2871", + "20122", + "1915", + "16316", + "28252", + "16789", + "22293", + "1023", + "17678", + "25980", + "15270", + "16579" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 3, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "amount_incoming": { + "quantity": 78, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "7033", + "18756", + "30786", + "6327", + "31850", + "21579", + "22075", + "28029", + "31760", + "19428", + "28296", + "19010", + "19548", + "18842", + "16613", + "12431", + "25215", + "21309", + "22363", + "28706", + "24438", + "16274", + "4012" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 199, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 111, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8338", + "19563", + "26591", + "1230", + "8304" + ], + "assets": [] + } + } + ], + "script_validity": "valid", + "metadata": null, + "id": "7673511aeb3b46506ae51a357623385e746162698df506132d3614f3c3027a2b", + "collateral": [ + { + "tag": "ExternalInput", + "contents": { + "id": "882d236f0e72084c3f614f37afc0276371217e552941277c357d5a6e0f6d5e98", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "50591f684c4122491afb6c2938a820762e7a642f2d6e38712237e72a78025a60", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 169, + "unit": "lovelace" + }, + "address": "", + "id": "460650cd7944c9980517db5527615430ff6049145d3e5d09ec4507a5377f411c", + "derivation_path": [ + "10838", + "988", + "29005", + "31292", + "32768", + "16373", + "22741", + "28590", + "26386", + "9178", + "17306", + "16383", + "27379", + "27640", + "2165", + "18538", + "29353", + "27227", + "10866", + "17395" + ], + "assets": [], + "index": 1949 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 11, + "unit": "lovelace" + }, + "address": "", + "id": "0735cd41085b28115973e45b6361570c3510304739297d3b6f612d3b3d140d5d", + "derivation_path": [ + "26222", + "14812" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 15974 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "address": "", + "id": "0b1e035d95c2f2152c791c2d9c7f340a696e132c237b6d181045643959145131", + "derivation_path": [ + "22734", + "4214", + "20977", + "15688", + "32561", + "27318", + "28810", + "6156", + "18300", + "6882", + "18752", + "13754", + "30944", + "6860", + "12362", + "26488", + "5800", + "13534", + "20419", + "25721", + "19461", + "5546", + "31887", + "22194", + "16001" + ], + "assets": [], + "index": 21767 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "3e0d014c277373af514e5f4127ba661832e47f6c613940623e05545c3c051cef", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "060b165d2f4dd62e77736043321630c11e144a6e7a28c6477c7c0a52705a44b4", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "address": "", + "id": "014b4070392b375e0d0fbc7f770fe4426a610f1115540d725c15112c231f7e45", + "derivation_path": [ + "21189", + "32004", + "30536", + "11347", + "16059" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 14291 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "50021f1a5769577c35102e9c6a813b29125f587e5b74220e1d390e3f06064469", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 18, + "unit": "lovelace" + }, + "address": "", + "id": "642b215a2d26f90c2146d6c17551466b0805c822491a1f2eb03107081d0a281d", + "derivation_path": [ + "24154", + "13092", + "10943", + "26143", + "29910", + "22961", + "17620", + "25733", + "19336", + "12218" + ], + "assets": [], + "index": 21108 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 41, + "unit": "lovelace" + }, + "address": "", + "id": "14fd6007043807077f246b6d467ab43c167709247d56704814711d050a261d52", + "derivation_path": [ + "14765", + "16844" + ], + "assets": [], + "index": 11127 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 231, + "unit": "lovelace" + }, + "address": "", + "id": "2fc00b4b02152f2be7e71c5142523c9c2f22553236e143162aa8191e4b73716a", + "derivation_path": [ + "22785", + "2669", + "9937", + "7407", + "8901", + "19254", + "27088", + "1147", + "16999", + "2765", + "9463" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 22322 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 255, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 156, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 66, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 195, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 149, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 143, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 212, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 61, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 92, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 61, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 193, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 101, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 28, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 76, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "ExternalInput", + "contents": { + "id": "7d2b4848314f0a6e3af34c40420106097b337422397b660543416f6b53625c32", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "9134584d221305432f589e40423310706a71706ac940207a4b50414c691f5404", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "28fd59217223556b03371a225e785658642fa21f161d40cd622e06c8495a4a17", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 18, + "unit": "lovelace" + }, + "address": "", + "id": "3e2572433817645d7306491042633903142d7c4f624b2ae42c20444a5c61011a", + "derivation_path": [ + "6773", + "12057", + "6838", + "15487", + "13530", + "266", + "9889", + "24293", + "24927", + "27785", + "23586", + "31273", + "4442" + ], + "assets": [], + "index": 14547 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "be7b406f527b303a367a65497479194b2fab53334c611c441b2dc76a10288b4b", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 200, + "unit": "lovelace" + }, + "address": "", + "id": "694129c5613e55357f4bf026743e79501b2673326a3e396f4b812e6ea62e9c10", + "derivation_path": [ + "20887", + "15281", + "15711", + "27690", + "29177", + "28559", + "28903", + "24253", + "16923" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 38, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 15802 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 161, + "unit": "lovelace" + }, + "address": "", + "id": "3c9d3d64414a17e81c17d2907755321a6ad9d17a4259f91a6c0adc7c30654100", + "derivation_path": [ + "22071", + "9669", + "17269", + "12077", + "27333", + "1856", + "10375", + "19170", + "22396", + "24093", + "13192", + "9269", + "24897", + "10570", + "4857", + "6215", + "8797", + "353", + "7835", + "25228", + "24353", + "12298", + "30821", + "32020" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 32062 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 133, + "unit": "lovelace" + }, + "address": "", + "id": "c274fd2355595e052f1c4d3a5d09263eca5b0c0a7139612e846f7f3d7732e632", + "derivation_path": [ + "6450", + "16932", + "22340", + "16267", + "32422", + "31928", + "18872", + "30042" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 11534 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 210, + "unit": "lovelace" + }, + "address": "", + "id": "dc09c56c1f5791f41e50039a32ca2d0400052f3eb0253f22477655d6201e6c31", + "derivation_path": [ + "2348", + "4058", + "28996", + "15924", + "9590", + "5303" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 5679 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "address": "", + "id": "ac7d1a31067f5ed155d37d555d3b442f147409701f41745277e17aed6e4b1b75", + "derivation_path": [ + "8794", + "20784", + "17003", + "25568", + "16495", + "9595", + "13521", + "5180", + "11167", + "17712", + "1846", + "26906", + "26514", + "12896", + "4081", + "3122", + "11416", + "29757", + "24054", + "20481", + "30607", + "26714", + "27260", + "31857", + "31854" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 18018 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 133, + "unit": "lovelace" + }, + "address": "", + "id": "24a7218156ea8d37571a144a7d81624b4d97520d6d584230209c5b68085c7b0b", + "derivation_path": [ + "14976", + "323" + ], + "assets": [], + "index": 112 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "213859094341704144190c106c352a8f084503f23262ee6b2df878557c015928", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "281bf15d19023616cbb4a71d260b70750b67d7005cfba664df7d2a6f3fca283d", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 144, + "unit": "lovelace" + }, + "address": "", + "id": "300e47119a7d6a4e9b1f4301535e6d555c116366555a8818435b7e08307a546a", + "derivation_path": [ + "21193", + "1252", + "17884", + "22202", + "30442", + "20985" + ], + "assets": [], + "index": 24116 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "17c6314f18733f0125192e67732b075d00464827845b3139e245677328231171", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "0b0e426f2e717415295d79562b2dcdca471e0d0a533263243f557efa130a56fc", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "address": "", + "id": "12c1007e2c190d697f7fed106012210f260e637f616b68456c68695124431c6e", + "derivation_path": [ + "377", + "4013", + "4875", + "30922", + "17513", + "2345", + "14057", + "19906", + "14067", + "20382", + "28953", + "22080", + "18175", + "8649", + "7561", + "12772", + "12386", + "17840", + "27027", + "6870", + "6179", + "14576", + "7020", + "10146", + "31509", + "5220", + "21987" + ], + "assets": [], + "index": 20889 + } + } + ], + "fee": { + "quantity": 150, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 147, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 29, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 42, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 2, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "25015", + "12762", + "23074", + "29325", + "19922", + "24511", + "7791", + "6099", + "20152", + "30006", + "5494", + "31915", + "14784", + "29371", + "28776", + "27744", + "29741", + "19412", + "11818", + "14865", + "24601", + "2136", + "10127", + "13165", + "25649", + "7051", + "21827", + "3178", + "9033", + "23701", + "14144" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 188, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 43, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 7, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 14, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "20428", + "11899", + "5432", + "24617" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 132, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 36, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 35, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + } + ], + "metadata": { + "3": { + "map": [ + { + "k": { + "string": "𧖰" + }, + "v": { + "map": [] + } + }, + { + "k": { + "string": "𪦂𗠘𬽭" + }, + "v": { + "list": [] + } + }, + { + "k": { + "string": "𫪿" + }, + "v": { + "list": [ + { + "list": [ + { + "string": "󾣡" + } + ] + } + ] + } + } + ] + } + }, + "id": "0308375e17b65e88d74a700c2e292d65184622787d7a5a2253162148162f1584", + "collateral": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 224, + "unit": "lovelace" + }, + "address": "", + "id": "196a703b1a1974ba202119610a54612330786f71f1401d305d657d7204761f4e", + "derivation_path": [ + "7176", + "1852", + "32385", + "25745", + "13637", + "21345", + "12071", + "28823", + "8308", + "30820", + "2590", + "12717", + "24974", + "4402", + "16309", + "20372" + ], + "assets": [], + "index": 29936 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "76105925461113504b1e0b0e67012b102c215d5854582df27b92485e623699a6", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "address": "", + "id": "32202f557e44517563a422e940013a613a2929206e281001020d3e87275b3f05", + "derivation_path": [ + "32216", + "1250", + "18456", + "3863", + "10114", + "27493", + "30473", + "31824", + "30595", + "8970", + "9986", + "923", + "123", + "3678", + "28535", + "32088" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 40, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 53, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 473 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "address": "", + "id": "697552754a48a92838700657c85f4f205bda727e429d6b0c6943476973420715", + "derivation_path": [ + "26048", + "5853", + "11333", + "9435", + "31289", + "1238", + "12709", + "24457", + "15822", + "11166", + "26050", + "21907", + "17813", + "11770", + "28269", + "7931", + "16138", + "8172" + ], + "assets": [], + "index": 2255 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 15, + "unit": "lovelace" + }, + "address": "", + "id": "0e01083f4adf3e4f051b39186912895a640e022c30587455c91700274c621f60", + "derivation_path": [ + "3832", + "23151", + "28830", + "26581", + "6664", + "12762" + ], + "assets": [], + "index": 24895 + } + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 141, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 248, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 31, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 161, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 93, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 198, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 165, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 100, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 134, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 224, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 53, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 103, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 56, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 90, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 233, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 85, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 112, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 167, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 173, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 196, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 69, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 156, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 123, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 67, + "unit": "lovelace" + }, + "address": "", + "id": "3e12031361782255014f26c1136c585c0d39521d84d8117d0f632eb27a27574f", + "derivation_path": [ + "24128", + "32462", + "17184", + "5236", + "20886", + "2533", + "2750", + "14535", + "14998", + "24703", + "17477", + "13792", + "31845", + "8841", + "11975", + "7588", + "30940" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 22751 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "address": "", + "id": "3864310935417f6c37336f04092c0200687458306d567e682d017a443f4e5e65", + "derivation_path": [ + "24446", + "18903", + "4824", + "31986", + "31064", + "27352", + "15370", + "27299", + "31088", + "4047", + "23788", + "25854", + "8701", + "25704", + "11668", + "27003", + "18793", + "10334", + "22789", + "273", + "19275", + "8708", + "31549", + "32109", + "25828" + ], + "assets": [], + "index": 4317 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "2b49195a212e062d39250e78691217fc195b6f1b7b514e3c1c213a812c003d5c", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "5776207900687e2e181e6e6a294e3e0232214a4d1432891b306b1a373722d9aa", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "1c712a372911063137e82e1c4420667ca122a940a01659d421277fbf1b034122", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "002dd65877184c5c577d174d2f387547b644223551723c2fd94d48405c2e210f", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 35, + "unit": "lovelace" + }, + "address": "", + "id": "66783d55646528a4fa21622f1c634e043c1d06150c6b604e477da226474d212b", + "derivation_path": [ + "3334", + "25265", + "24915", + "1724", + "9264", + "12486", + "22725", + "30722", + "8484" + ], + "assets": [], + "index": 19237 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "68385c7065556c3834426f66042a05602064d04e2605122b1d492e90147fb054", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "52137c146e3019503f7e431e074ee87c5f0855466467de14672d4512572f2984", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 134, + "unit": "lovelace" + }, + "address": "", + "id": "e518712a7b651b385b1079fb3b44623bb8fd0c6069259f6f5e7c4c23083a7b41", + "derivation_path": [ + "6345", + "21339", + "19492", + "19318", + "12549", + "12307", + "26450", + "9081", + "17563", + "4072", + "25470", + "28995", + "19908", + "5146", + "2957", + "23627", + "1165", + "27250", + "32689", + "14157", + "8728", + "30076", + "4285", + "10062", + "20172", + "32576", + "11557", + "12454" + ], + "assets": [], + "index": 22148 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6e2d296deb096e40aa5c78592f7d3f4163e53f8e61210f4012d96b5b66166bdd", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "507b03231c6c8527d17d01104e0d231a940b780e4f4317462f7a378b6d078a71", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "2e6a14531b365a65676a7ed1a54e21025d324e636648726b4d02045c623f461c", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "7b7147443b68182d026adf7436d47e19d4430d80074a0270303a067b6979631f", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "da7f13672c41171f2375e75d15021a471e0447746a08760a792b5c20c6386d18", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 53, + "unit": "lovelace" + }, + "address": "", + "id": "4d2540043267195f0054d8160d544a6c566a2548c57f7a241e5c01f935d6087c", + "derivation_path": [ + "287", + "13667", + "28729", + "17076", + "25862", + "32397", + "9708", + "20795", + "26759", + "16129", + "29374", + "22475", + "15518", + "10277", + "24479", + "19859", + "10543", + "25693", + "28685", + "22245", + "22681", + "16138", + "12242" + ], + "assets": [], + "index": 9926 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "163b5334547501e5312d6c796227503282226a3e0425a4545971505172052b21", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "4acc744b5a4467060f3a312176b618085a5d3b692b2e1845305e414e15755325", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "127359ff2096175c79525b11152e10150549090023390c3d19284c232f0e7049", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 45, + "unit": "lovelace" + }, + "address": "", + "id": "433f0955391365520061697814303969d3142b0838315ce1a12b4517161c4568", + "derivation_path": [ + "12486", + "21700", + "6102", + "15184", + "12623", + "18095", + "5743", + "31525", + "6231", + "12413" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 28896 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 189, + "unit": "lovelace" + }, + "address": "", + "id": "7051a11d80317779283b0cca5771a366876a6e3261610d22671f7b420c1a4b08", + "derivation_path": [ + "23499", + "9797", + "28749", + "19588", + "15176", + "13959", + "32629", + "25462", + "15515", + "22934", + "4345", + "17515", + "16932", + "11600", + "3872", + "14424" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 31953 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "address": "", + "id": "d077210f7fb070762a6308e1385c11216a7d1223ef25eb4c2efe564bae7f314f", + "derivation_path": [ + "17185" + ], + "assets": [], + "index": 28713 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 196, + "unit": "lovelace" + }, + "address": "", + "id": "4b0c3475da643c5add165b589e477434190e085c423d6cd24d7f36376b97425a", + "derivation_path": [ + "7763", + "19995", + "28056", + "9586", + "20930", + "18626" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 24501 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 222, + "unit": "lovelace" + }, + "address": "", + "id": "8036746fe2590c75770300536f4b0e3b855e033e05110062245578461b655001", + "derivation_path": [ + "29253", + "16260", + "7881", + "3839", + "25242", + "16972", + "5415", + "2718", + "30712", + "26090", + "7994", + "30807", + "13136" + ], + "assets": [], + "index": 32706 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "596b57730b58e9a3fd1823c82d2d0312536b3b017b09194d7a32470f38603f12", + "index": 0 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 140, + "unit": "lovelace" + }, + "address": "", + "id": "213e6a0570e134faaa63547676053b2f0853a3335a0a235825480f201f355237", + "derivation_path": [ + "1751", + "30720", + "26731" + ], + "assets": [], + "index": 16801 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "966e6d63333d7a11466f1e4e96174a46761715a1dc675d18ca3212b9bd301f0e", + "index": 1 + } + } + ], + "fee": { + "quantity": 37, + "unit": "lovelace" + }, + "outputs": [ + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 240, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 33, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 35, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 173, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13590", + "26033", + "29120", + "19126", + "16020", + "17309", + "16749", + "10176", + "4653", + "26562", + "5240", + "28613", + "2264", + "16518", + "29729", + "22793", + "6221", + "26704", + "32171", + "11450", + "30993", + "2471", + "3468", + "21736", + "5118", + "3233", + "24624", + "8522", + "30076", + "17852" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 44, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 39, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 203, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "14223", + "4370", + "28591", + "18340", + "13612", + "31615", + "4133", + "1649", + "20956", + "25947", + "2974", + "19557", + "14929", + "16568", + "4733", + "24519", + "20929", + "9424", + "20576", + "677" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 56, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 128, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 190, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "32730", + "499", + "27185", + "27111", + "25067", + "20392", + "6479", + "11444", + "7070", + "12782", + "23544", + "1399", + "15038", + "2370", + "31354", + "13794", + "12188", + "23839", + "30181", + "9261", + "31451", + "2741", + "6331", + "13833", + "18181", + "16173", + "1117" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 76, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 209, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "12695", + "26930", + "5709", + "21709", + "20049", + "17592", + "16437", + "27340", + "27913", + "28744", + "7833", + "8313", + "6435", + "8095", + "16969", + "16415", + "24103", + "1899", + "19926", + "29044", + "7272", + "14985", + "26653", + "30935" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 127, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 152, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "14470", + "11060", + "24911", + "21713", + "25652", + "28209", + "3654", + "9767", + "1699", + "23048", + "9687", + "8685", + "3082" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 100, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 12, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 126, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10547", + "9871", + "26502", + "3611", + "8345", + "15803", + "21662", + "4271", + "26125", + "20126", + "23711" + ], + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 157, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 138, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 241, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13173", + "15826", + "31688", + "24517", + "6935", + "23605", + "27376", + "3734", + "21258", + "9702", + "5365", + "8759", + "30805", + "471", + "15473", + "23737", + "14211", + "15158", + "9394" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 33, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 40, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 105, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 47, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 225, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 253, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "25587" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 50, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 38, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + } + ], + "script_validity": "valid", + "metadata": { + "27": { + "list": [ + { + "map": [] + } + ] + } + }, + "id": "6e2157083b2b47116843424913f412266473722d3b2359073b156c1d04710574", + "collateral": [ + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 223, + "unit": "lovelace" + }, + "address": "", + "id": "7958677c6718f54b5c1249064a0f0e99640575480810552a4d34360bd0651842", + "derivation_path": [ + "18183", + "28618", + "19165", + "20672", + "11766", + "31699", + "10597", + "7777", + "32273", + "19370", + "3491", + "2655", + "12107", + "1801", + "31777", + "32162", + "7793", + "30120", + "18976", + "23607", + "32258", + "662", + "26851", + "5819", + "860", + "25411", + "10086", + "31962", + "10714", + "29559", + "10057" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 3750 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 130, + "unit": "lovelace" + }, + "address": "", + "id": "426e064d22c37e462a7a7c6276262d40105e48bcf22a3119331f250174701926", + "derivation_path": [ + "2209", + "8344", + "13420", + "16782", + "12546", + "20196", + "631", + "26299", + "15105", + "644", + "28379", + "28789", + "2779", + "28576", + "14078", + "6566", + "11641", + "27218", + "22861", + "9393", + "16740", + "21892", + "26589", + "23891", + "28328", + "12612" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 22352 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "address": "", + "id": "7d64315c1342cd38b65560ab8def527643371369138e395b0a5616c55e936533", + "derivation_path": [ + "18126", + "5389", + "12915" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 29768 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "467b53774716524019be6d30dfa1634e2b7f2c4616bf9d763d54566c260aecfa", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 241, + "unit": "lovelace" + }, + "address": "", + "id": "1462681c1dc6012541bc030a4c1f51201d021416241f357f519b11c8e573f96d", + "derivation_path": [ + "9204", + "13282", + "11662", + "583", + "27904", + "26204" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 24718 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "5422984d621e49205d5d6b170b4d0aee7461700464780e460c717c093454767d", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "445d2c6407260524e909014d5c6633050eb931681f67515e45334bba7eec3338", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "746c584b313820382d651d537000376c807f1a40717566349ceb451414646442", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 230, + "unit": "lovelace" + }, + "address": "", + "id": "dc72a47f0e109bf267487f486d34583516632774763b71625f037e40180eba73", + "derivation_path": [ + "19797", + "1571", + "2824", + "20044", + "20544", + "27543", + "16692", + "13891", + "4034", + "10355", + "15301", + "10254", + "18482" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 31, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 33, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 23164 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 2, + "unit": "lovelace" + }, + "address": "", + "id": "367f7b7d1023ca770838153932144264665a74dfba0a562a2829695541143129", + "derivation_path": [ + "17144", + "14485", + "32523", + "2397", + "201", + "27936", + "627", + "16649", + "17012", + "16276", + "10569", + "7012", + "27600", + "23786", + "28898", + "15791", + "4333", + "15564", + "25191" + ], + "assets": [], + "index": 10363 + } + } + ] + } + ] +} \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json new file mode 100644 index 00000000000..e5bac392d0f --- /dev/null +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json @@ -0,0 +1,184 @@ +{ + "seed": -3538263822790919600, + "samples": [ + { + "tag": "ExternalInput", + "contents": { + "id": "3b44de6c187516c3730d6c1d32273b697b791c0e3f1f6b3f69504d3d4e7b1c1c", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "282332550dba69624d3f271e484bcea756415c334b649e5a8b12237c7174783e", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "415352693979352560fe0b45053bbee367081b72447e720b1b442744583daf68", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 218, + "unit": "lovelace" + }, + "address": "", + "id": "01140d24f6101c0eed5a1970536900717e28721861ce9531875b4424cb537022", + "derivation_path": [ + "3555", + "31670", + "1237", + "2115", + "21959", + "13744", + "24936", + "15255", + "2551", + "25741", + "31586", + "10692", + "855", + "22732", + "8755", + "24833", + "10976", + "8135", + "24119", + "16140", + "25631", + "30664", + "898", + "31153", + "25813", + "27617", + "4794", + "20789", + "11313", + "25637" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 30146 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6f40656b6a7b010ff561093185275f60edb33c5c7e69ea861c5b0ad595286a70", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "2a0b53754b7cb7523d79496145de64a3100e151d4b33556d1baa80ea1b315e10", + "index": 0 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "2b3b5a7c1a78444b2f1e3963167e23602544611b125bd94261418a48c633232d", + "index": 1 + } + }, + { + "tag": "WalletInput", + "contents": { + "amount": { + "quantity": 241, + "unit": "lovelace" + }, + "address": "", + "id": "1b1028150b2f610e6b194b2638614ca2743c2c401a00517c4c7d5c3b62552223", + "derivation_path": [ + "25585", + "957", + "14853", + "20940", + "11587", + "28057", + "27414", + "2235", + "12404", + "27558", + "7787", + "30436" + ], + "assets": [], + "index": 25533 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "6b170d497f17ea271e39d33918783e4533590edf150284162f0d6a873f007f2e", + "index": 1 + } + }, + { + "tag": "ExternalInput", + "contents": { + "id": "280b013a0fa06359053354088d37235b10163a2114503f07015b03170b3f6b18", + "index": 0 + } + } + ] +} \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json new file mode 100644 index 00000000000..ad1d0a68ef1 --- /dev/null +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json @@ -0,0 +1,441 @@ +{ + "seed": -1105418187405523049, + "samples": [ + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 217, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10179", + "23924", + "32537", + "21825", + "15837", + "14069", + "22619", + "8685", + "31828", + "24043", + "16362", + "2455", + "21602", + "19793", + "19143", + "26457", + "1899", + "11583", + "22686", + "1103", + "9581", + "16435", + "12084", + "6918", + "1589", + "8682", + "487", + "12111" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 228, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 172, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26802", + "28728", + "30122", + "17718", + "18817", + "715", + "32241", + "17980", + "1574", + "9941", + "16872", + "4836", + "20844", + "665", + "3926", + "4398", + "13837", + "31333", + "23791", + "26142", + "25411", + "410", + "31695", + "21191", + "30716", + "20760", + "3697", + "30283", + "30098", + "20116", + "14010" + ], + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 143, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 231, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "15015", + "2111", + "19000", + "2213", + "27791", + "19240", + "24759", + "12839", + "14663", + "14998", + "25077", + "31253", + "8516", + "11204", + "30543" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 117, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 127, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 120, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "5545", + "17216", + "3037", + "4308", + "19639", + "29627", + "12198", + "470", + "14467", + "15336", + "20344", + "2811", + "17655" + ], + "assets": [] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 172, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 31, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "14315", + "1914", + "31247", + "17886", + "28578", + "16021", + "31249", + "27836", + "20727", + "19101", + "9385" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 43, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 32, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "tag": "ExternalOutput", + "contents": { + "amount": { + "quantity": 67, + "unit": "lovelace" + }, + "address": "", + "assets": [] + } + }, + { + "tag": "WalletOutput", + "contents": { + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 166, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "30581", + "14648", + "18714", + "21042", + "6278", + "9384", + "9249", + "13746", + "18786", + "15398" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json new file mode 100644 index 00000000000..96120f6eb0e --- /dev/null +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json @@ -0,0 +1,80 @@ +{ + "seed": 3841088476435920616, + "samples": [ + { + "amount": { + "quantity": 167, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 186, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 17, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 49, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 130, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 69, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 119, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 138, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ] +} \ No newline at end of file diff --git a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs index 58733c3361d..2c0bba3a75f 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs @@ -62,6 +62,7 @@ import Cardano.Wallet.Api.Types , ApiPostRandomAddressData , ApiPutAddressesData , ApiSelectCoinsData + , ApiSerialisedTransaction , ApiSharedWalletPatchData , ApiSharedWalletPostData , ApiSignTransactionPostData @@ -1276,6 +1277,36 @@ instance Malformed (BodyParam ApiSignTransactionPostData) where ) ] +instance Malformed (BodyParam ApiSerialisedTransaction) where + malformed = jsonValid ++ jsonInvalid + where + jsonInvalid = first BodyParam <$> + [ ("1020344", "Error in $: parsing Cardano.Wallet.Api.Types.ApiSerialisedTransaction(ApiSerialisedTransaction) failed, expected Object, but encountered Number") + , ("\"hello\"", "Error in $: parsing Cardano.Wallet.Api.Types.ApiSerialisedTransaction(ApiSerialisedTransaction) failed, expected Object, but encountered String") + , ("{\"transaction\": \"\", \"random\"}", msgJsonInvalid) + , ("{\"transaction\": 1020344}", "Error in $.transaction: parsing 'Base64 ByteString failed, expected String, but encountered Number") + , ("{\"transaction\": { \"body\": 1020344 }}", "Error in $.transaction: parsing 'Base64 ByteString failed, expected String, but encountered Object") + ] + jsonValid = first (BodyParam . Aeson.encode) <$> + [ -- passphrase + ( [aesonQQ| + { "transaction": "!!!" + }|] + , "Error in $.transaction: Parse error. Expecting Base64-encoded format." + ) + , ( [aesonQQ| + { "transaction": "cafecafe" + }|] + , "Error in $.transaction: Deserialisation failure while decoding Shelley Tx. CBOR failed with error: DeserialiseFailure 0 'expected list len or indef'" + ) + , ( [aesonQQ| + { "transaction": #{validSealedTxBase64}, + "extra": "hello" + }|] + , "Error in $: parsing Cardano.Wallet.Api.Types.ApiSerialisedTransaction(ApiSerialisedTransaction) failed, unknown fields: ['extra']" + ) + ] + instance Malformed (BodyParam (PostTransactionOldData ('Testnet pm))) where malformed = jsonValid ++ jsonInvalid where diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 9d4cf9ae7eb..9fb73b4d3fd 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -83,6 +83,7 @@ import Cardano.Wallet.Api.Types , ApiConstructTransaction (..) , ApiConstructTransactionData (..) , ApiCredential (..) + , ApiDecodedTransaction (..) , ApiDelegationAction (..) , ApiEpochInfo (..) , ApiEra (..) @@ -137,7 +138,9 @@ import Cardano.Wallet.Api.Types , ApiTxCollateral (..) , ApiTxId (..) , ApiTxInput (..) + , ApiTxInputGeneral (..) , ApiTxMetadata (..) + , ApiTxOutputGeneral (..) , ApiUtxoStatistics (..) , ApiVerificationKeyShared (..) , ApiVerificationKeyShelley (..) @@ -148,16 +151,19 @@ import Cardano.Wallet.Api.Types , ApiWalletDelegationNext (..) , ApiWalletDelegationStatus (..) , ApiWalletDiscovery (..) + , ApiWalletInput (..) , ApiWalletMigrationBalance (..) , ApiWalletMigrationPlan (..) , ApiWalletMigrationPlanPostData (..) , ApiWalletMigrationPostData (..) + , ApiWalletOutput (..) , ApiWalletPassphrase (..) , ApiWalletPassphraseInfo (..) , ApiWalletSignData (..) , ApiWalletUtxoSnapshot (..) , ApiWalletUtxoSnapshotEntry (..) , ApiWithdrawal (..) + , ApiWithdrawalGeneral (..) , ApiWithdrawalPostData (..) , Base (Base16, Base64) , ByronWalletFromXPrvPostData (..) @@ -174,6 +180,7 @@ import Cardano.Wallet.Api.Types , PostMintBurnAssetData (..) , PostTransactionFeeOldData (..) , PostTransactionOldData (..) + , ResourceContext (..) , SettingsPutData (..) , SomeByronWalletPostData (..) , VerificationKeyHashing (..) @@ -544,6 +551,10 @@ spec = parallel $ do jsonRoundtripAndGolden $ Proxy @(ApiT StakePoolMetadata) jsonRoundtripAndGolden $ Proxy @ApiPostRandomAddressData jsonRoundtripAndGolden $ Proxy @ApiTxMetadata + jsonRoundtripAndGolden $ Proxy @(ApiDecodedTransaction ('Testnet 0)) + jsonRoundtripAndGolden $ Proxy @(ApiTxInputGeneral ('Testnet 0)) + jsonRoundtripAndGolden $ Proxy @(ApiTxOutputGeneral ('Testnet 0)) + jsonRoundtripAndGolden $ Proxy @(ApiWithdrawalGeneral ('Testnet 0)) jsonRoundtripAndGolden $ Proxy @ApiMaintenanceAction jsonRoundtripAndGolden $ Proxy @ApiMaintenanceActionPostData @@ -1157,6 +1168,20 @@ spec = parallel $ do } in x' === x .&&. show x' === show x + it "ApiDecodedTransaction" $ property $ \x -> + let + x' = ApiDecodedTransaction + { id = id (x :: ApiDecodedTransaction ('Testnet 0)) + , fee = fee (x :: ApiDecodedTransaction ('Testnet 0)) + , inputs = inputs (x :: ApiDecodedTransaction ('Testnet 0)) + , outputs = outputs (x :: ApiDecodedTransaction ('Testnet 0)) + , collateral = collateral (x :: ApiDecodedTransaction ('Testnet 0)) + , withdrawals = withdrawals (x :: ApiDecodedTransaction ('Testnet 0)) + , metadata = metadata (x :: ApiDecodedTransaction ('Testnet 0)) + , scriptValidity = scriptValidity (x :: ApiDecodedTransaction ('Testnet 0)) + } + in + x' === x .&&. show x' === show x it "ApiPutAddressesData" $ property $ \x -> let x' = ApiPutAddressesData @@ -2091,6 +2116,53 @@ instance Arbitrary (ApiRedeemer n) where , ApiRedeemerRewarding <$> arbitrary <*> arbitrary ] +instance Arbitrary (ApiTxInputGeneral n) where + arbitrary = oneof + [ ExternalInput <$> arbitrary + , WalletInput <$> arbitrary + ] + +instance Arbitrary (ApiWithdrawalGeneral (t :: NetworkDiscriminant)) where + arbitrary = ApiWithdrawalGeneral + <$> fmap (, Proxy @t) arbitrary + <*> arbitrary + <*> oneof [pure External, pure Our] + +instance Arbitrary (ApiWalletInput n) where + arbitrary = ApiWalletInput + <$> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + +instance Arbitrary (ApiWalletOutput n) where + arbitrary = ApiWalletOutput + <$> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + +instance Arbitrary (ApiTxOutputGeneral n) where + arbitrary = oneof + [ ExternalOutput <$> arbitrary + , WalletOutput <$> arbitrary + ] + +instance Arbitrary (ApiDecodedTransaction n) where + arbitrary = ApiDecodedTransaction + <$> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + <*> arbitrary + instance Arbitrary StakeAddress where arbitrary = do header <- elements [ BS.singleton 241, BS.singleton 224 ] @@ -2826,6 +2898,11 @@ instance Typeable n => ToSchema (ApiConstructTransaction n) where instance ToSchema ApiMultiDelegationAction where declareNamedSchema _ = declareSchemaForDefinition "ApiMultiDelegationAction" +instance Typeable n => ToSchema (ApiDecodedTransaction n) where + declareNamedSchema _ = do + addDefinition =<< declareSchemaForDefinition "TransactionMetadataValue" + declareSchemaForDefinition "ApiDecodedTransaction" + -- | Utility function to provide an ad-hoc 'ToSchema' instance for a definition: -- we simply look it up within the Swagger specification. declareSchemaForDefinition :: Text -> Declare (Definitions Schema) NamedSchema From 5aa90dd3e0a8447b3840de3d164a270716d0a982 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Wed, 27 Oct 2021 21:31:29 +0200 Subject: [PATCH 27/31] fixing schema/json things --- lib/core/src/Cardano/Wallet/Api/Types.hs | 30 +- .../Api/ApiDecodedTransactionTestnet0.json | 25966 ++++++++-------- .../Wallet/Api/ApiExternalInputTestnet0.json | 265 +- .../Wallet/Api/ApiTxInputGeneralTestnet0.json | 364 +- .../Api/ApiTxOutputGeneralTestnet0.json | 847 +- ...walGeneralNetworkDiscriminantTestnet0.json | 28 +- .../test/unit/Cardano/Wallet/Api/Malformed.hs | 8 +- .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 15 + specifications/api/swagger.yaml | 151 +- 9 files changed, 14250 insertions(+), 13424 deletions(-) diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index c4ca9d587ce..e9b3f6d4e29 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -3031,26 +3031,48 @@ instance , DecodeStakeAddress n ) => FromJSON (ApiTxOutputGeneral n) where - parseJSON = genericParseJSON defaultRecordTypeOptions + parseJSON obj = do + derPathM <- + (withObject "ApiTxOutputGeneral" $ + \o -> o .:? "derivation_path" :: Aeson.Parser (Maybe (NonEmpty (ApiT DerivationIndex)))) obj + case derPathM of + Nothing -> do + xs <- parseJSON obj :: Aeson.Parser (AddressAmount (ApiT Address, Proxy n)) + pure $ ExternalOutput xs + Just _ -> do + xs <- parseJSON obj :: Aeson.Parser (ApiWalletOutput n) + pure $ WalletOutput xs instance ( EncodeAddress n , EncodeStakeAddress n ) => ToJSON (ApiTxOutputGeneral n) where - toJSON = genericToJSON defaultRecordTypeOptions + toJSON (ExternalOutput content) = toJSON content + toJSON (WalletOutput content) = toJSON content instance ( DecodeAddress n , DecodeStakeAddress n ) => FromJSON (ApiTxInputGeneral n) where - parseJSON = genericParseJSON defaultRecordTypeOptions + parseJSON obj = do + derPathM <- + (withObject "ApiTxInputGeneral" $ + \o -> o .:? "derivation_path" :: Aeson.Parser (Maybe (NonEmpty (ApiT DerivationIndex)))) obj + case derPathM of + Nothing -> do + xs <- parseJSON obj :: Aeson.Parser (ApiT TxIn) + pure $ ExternalInput xs + Just _ -> do + xs <- parseJSON obj :: Aeson.Parser (ApiWalletInput n) + pure $ WalletInput xs instance ( EncodeAddress n , EncodeStakeAddress n ) => ToJSON (ApiTxInputGeneral n) where - toJSON = genericToJSON defaultRecordTypeOptions + toJSON (ExternalInput content) = toJSON content + toJSON (WalletInput content) = toJSON content instance FromJSON (ApiT TxMetadata) where parseJSON = fmap ApiT diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json index 2baedf566f7..491ef320749 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json @@ -1,11 +1,32 @@ { - "seed": -7841128278199154625, + "seed": 5340834975597410932, "samples": [ { "withdrawals": [ { "amount": { - "quantity": 99, + "quantity": 229, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 171, "unit": "lovelace" }, "context": "ours", @@ -13,21 +34,22 @@ }, { "amount": { - "quantity": 202, + "quantity": 11, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 214, + "quantity": 109, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 166, + "quantity": 215, "unit": "lovelace" }, "stake_address": "" @@ -35,798 +57,501 @@ ], "inputs": [ { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 68, - "unit": "lovelace" - }, - "address": "", - "id": "542c2960605a42274c496d021f4e190121a24d277b491f332e1c08755e333e61", - "derivation_path": [ - "30", - "7018", - "19750", - "445" - ], - "assets": [], - "index": 25239 - } + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "address": "", + "id": "6eda57461f5964f1f3397504115071286c4e594436bfa50659750c4a7c4a46db", + "derivation_path": [ + "27360", + "19597", + "10935", + "24392" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 20494 + }, + { + "id": "5f48121a71453d1b451e3a1d2852001f629f72570a497d17586328a96c302e33", + "index": 1 } ], "fee": { - "quantity": 67, + "quantity": 254, "unit": "lovelace" }, "outputs": [ { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 189, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 202, - "unit": "lovelace" + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 81, - "unit": "lovelace" + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 133, - "unit": "lovelace" + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 32, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 33, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 66, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "7445", - "26523", - "15523", - "7809", - "10262" - ], - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 65, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 140, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 49, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "13869", - "21188", - "30363", - "3302", - "19203" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 40, - "unit": "lovelace" + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 21, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "16276", + "28533", + "20433", + "29336", + "14838", + "23525", + "11794", + "30988", + "153", + "28471", + "1482", + "24008", + "7416", + "13566", + "29381", + "16872", + "3072" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 114, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "11605", - "3318", - "24550", - "32754", - "28651", - "17789", - "29809", - "31103", - "22146", - "28188", - "10330", - "16049", - "791" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 226, - "unit": "lovelace" + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 37, - "unit": "lovelace" + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 57, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "11802", - "14672", - "11811", - "18508", - "13263", - "25697", - "29057", - "21710", - "24129", - "4530", - "2925", - "10212", - "20282", - "27447", - "27256", - "12579", - "11156", - "15033", - "11705", - "29917", - "18370", - "24899", - "23628", - "6210", - "3417" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 50, - "unit": "lovelace" + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 110, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "26469", - "16363", - "12400", - "12997", - "9661", - "10135" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 43, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 149, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 52, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 32, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 75, - "unit": "lovelace" + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 184, - "unit": "lovelace" + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 2, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "13369", - "24117", - "15455", - "29468", - "2174", - "11432", - "7827", - "17054", - "21020", - "22995", - "24240", - "3119", - "28468", - "2384", - "26563", - "2431", - "28882", - "20775", - "32278", - "8374", - "29171", - "26208", - "21943", - "17584" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 94, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 99, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "12742", + "17073", + "24321", + "1882", + "8161", + "22217", + "6215", + "24270", + "30627", + "26449", + "9324", + "18105", + "30278", + "18113", + "28142", + "23463", + "27483", + "2112", + "12643", + "4754", + "4852", + "29861", + "3994", + "27963", + "20020", + "13387", + "1304", + "16250", + "9119", + "25897", + "9004" + ], + "assets": [] + }, + { + "amount": { + "quantity": 2, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 93, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18036", + "8875" + ], + "assets": [] } ], - "script_validity": "invalid", - "metadata": null, - "id": "1c4b6312620378785f24651d5f5e2672587e4e57743c59501c261a47481c61ca", - "collateral": [ - { - "tag": "ExternalInput", - "contents": { - "id": "40411b1f4559955e24585e2236840de5607a90375f0e0621a871581635840e32", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 221, - "unit": "lovelace" - }, - "address": "", - "id": "0835224dab5c17185902561f54cc044a4c016d543b2703301a4e246e3200a13d", - "derivation_path": [ - "23874", - "12616", - "4408", - "22213", - "15067", - "16296", - "12188", - "8487", - "23640", - "15150", - "17692", - "26968", - "4517", - "25739", - "31023", - "31070", - "18666", - "2668", - "13056" - ], - "assets": [], - "index": 20415 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 163, - "unit": "lovelace" - }, - "address": "", - "id": "3034446862471f6278cb3340686bb8342b446b18444b192fb8af6b123d544d5c", - "derivation_path": [ - "22814", - "30839", - "22594", - "9201", - "25442", - "18273", - "8320", - "7151", - "28685", - "6010" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 37, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 48, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "metadata": { + "14": { + "map": [ + { + "k": { + "string": "𘜄" }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "v": { + "string": "𩒢㦟ꛇ" } - ], - "index": 31122 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "3e6b461b355d020c1ab41531155e6140809e18300ee88a063e98152772764069", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 117, - "unit": "lovelace" - }, - "address": "", - "id": "fb794a14e84977a679570e5b3c49380e0d6089465b734032357d45933e273a30", - "derivation_path": [ - "32603", - "1201", - "32284", - "2109", - "24397", - "6338", - "27609", - "21228", - "17330", - "22773", - "14174", - "26673", - "30636", - "10933", - "1468" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "k": { + "string": "𬲺􄘈𪊵" + }, + "v": { + "bytes": "440fe7490d2dbf469d73a27ad241405c516413da7227d8387ef07a" } - ], - "index": 29532 - } + } + ] + } + }, + "id": "3d11780492a136022d63486576147a6aae4a153611397d297e047030152d5230", + "collateral": [ + { + "id": "524a5a795f4f2b77e7e20a593a3e44456f6afc4b644939372dd10b0420690268", + "index": 1 + }, + { + "id": "153c00110c5973145c6747213f005f62f8332f54437022180b4878170a65506e", + "index": 0 + }, + { + "amount": { + "quantity": 183, + "unit": "lovelace" + }, + "address": "", + "id": "5f1f1f2d527c051a005d189d63375f44142d26ec196616957d3678350769025f", + "derivation_path": [ + "18813", + "12885", + "31858", + "8498", + "21330", + "32246", + "12534", + "20366", + "23659", + "843" + ], + "assets": [], + "index": 17650 + }, + { + "id": "332670563270606b013af17b041d2df0366e6d4948553e021424047106094f3c", + "index": 1 + }, + { + "amount": { + "quantity": 122, + "unit": "lovelace" + }, + "address": "", + "id": "607306502b6f7d47c0107c770d2f782f732d063547392b0e0f0027054e7a4521", + "derivation_path": [ + "23385", + "712", + "31493", + "15739", + "8938", + "19282", + "18271", + "12659", + "19569", + "23975", + "28139", + "13778", + "28364", + "14927", + "6852", + "8674", + "15384", + "27498", + "6375", + "16868", + "25874", + "15529", + "16217", + "21485", + "27405", + "6825", + "26764", + "6346" + ], + "assets": [], + "index": 30989 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 19, - "unit": "lovelace" - }, - "address": "", - "id": "4a3a771a01366b2201000b4e523523577c077402b3c77353767d5f64dc42923a", - "derivation_path": [ - "13040", - "19058", - "22621", - "17732", - "31070", - "7498", - "13361", - "9276" - ], - "assets": [], - "index": 8879 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "596c233c73766e02553b4b4c252a3a42381d464d4e935258723f7c2f632aac36", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "address": "", - "id": "0c24848037792c502f1b4b4b46092daf311d106f374e222d1267105033735057", - "derivation_path": [ - "20735", - "9865", - "5551", - "8678", - "7535", - "20101", - "9970", - "26799", - "19026", - "5674", - "7885", - "25686", - "20228", - "924", - "16412", - "12644", - "22764", - "31125", - "16528", - "6982", - "20062" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 8346 - } + "amount": { + "quantity": 105, + "unit": "lovelace" + }, + "address": "", + "id": "282c2032251801392362214225f6532c4715e94620247240715240c425567a3c", + "derivation_path": [ + "14922" + ], + "assets": [], + "index": 18060 + }, + { + "amount": { + "quantity": 107, + "unit": "lovelace" + }, + "address": "", + "id": "1f440952181f05301fbd6feb7c4626244e3d4b3e71503829406c6a7877240d3e", + "derivation_path": [ + "16149", + "1374", + "3399", + "18248", + "15867" + ], + "assets": [], + "index": 11337 + }, + { + "id": "2c5d9e1e4c287f21761513db323f625c466041255b483e79441c184960537517", + "index": 1 + }, + { + "amount": { + "quantity": 78, + "unit": "lovelace" + }, + "address": "", + "id": "595c383d447163333d63376c3f776f77674d014a6c5c0e0d08fd56420d70013c", + "derivation_path": [ + "6812", + "24346", + "7050", + "6223", + "9583", + "18464", + "3758", + "3676", + "29436", + "28872", + "8749", + "25495", + "16664", + "15368", + "5995", + "28716", + "10607", + "25305", + "11465", + "27068", + "4985", + "10050", + "20062", + "17581", + "8983", + "27575", + "26094", + "5607", + "27644", + "7057", + "27493" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 9854 }, { - "tag": "ExternalInput", - "contents": { - "id": "04ed07176d5143641c27071647ac7295566a5baa6e6c69310338215c7218193c", - "index": 0 - } + "amount": { + "quantity": 96, + "unit": "lovelace" + }, + "address": "", + "id": "0fb9d965a64e5843592fea1b435207039238021261134a4f373544539446381f", + "derivation_path": [ + "32093", + "376", + "11181", + "46", + "27312", + "14498", + "10560", + "20119", + "12871", + "31965", + "11896", + "9671", + "18996", + "32147", + "10569", + "24528", + "8307", + "17717", + "12383", + "27519" + ], + "assets": [], + "index": 6514 + }, + { + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "address": "", + "id": "7f6a67075a18e23d0a427619c7684335492f4e0f133e707c7615281c102d08b8", + "derivation_path": [ + "23619", + "21208", + "25108", + "20667", + "13658", + "14718", + "28973", + "28982", + "11281", + "3890", + "26081", + "16641", + "1854", + "10973", + "3509", + "10264", + "9671", + "11490", + "18966", + "2121", + "26362", + "8247", + "13081", + "13671", + "6682", + "22303" + ], + "assets": [], + "index": 2177 + }, + { + "amount": { + "quantity": 169, + "unit": "lovelace" + }, + "address": "", + "id": "0a103c051e78639a045f0c5935207a3a51473f3f230f425a5a5e263f51317c6c", + "derivation_path": [ + "18658", + "5691", + "17828", + "4834", + "17154", + "28486", + "12434" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 25411 } ] }, @@ -834,36 +559,29 @@ "withdrawals": [ { "amount": { - "quantity": 84, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 1, + "quantity": 21, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 4, + "quantity": 234, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 96, + "quantity": 196, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 214, + "quantity": 59, "unit": "lovelace" }, "context": "ours", @@ -871,7 +589,7 @@ }, { "amount": { - "quantity": 246, + "quantity": 199, "unit": "lovelace" }, "context": "ours", @@ -879,7 +597,7 @@ }, { "amount": { - "quantity": 46, + "quantity": 112, "unit": "lovelace" }, "context": "ours", @@ -887,21 +605,22 @@ }, { "amount": { - "quantity": 73, + "quantity": 111, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 0, + "quantity": 41, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 24, + "quantity": 113, "unit": "lovelace" }, "context": "ours", @@ -909,4058 +628,1674 @@ }, { "amount": { - "quantity": 135, + "quantity": 159, "unit": "lovelace" }, + "context": "ours", "stake_address": "" } ], "inputs": [ { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 94, - "unit": "lovelace" - }, - "address": "", - "id": "ba694c90791966223712bd16c76b7f3ffb5a3bcf7731054c06456022056a4141", - "derivation_path": [ - "12012", - "13401", - "243", - "13105", - "5253", - "21486", - "11236", - "6396", - "31572", - "20105", - "9924", - "32623", - "2516", - "24736", - "23672", - "30889", - "10718", - "9757", - "28669", - "25182" - ], - "assets": [], - "index": 16312 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "10180350878948324d0123186303655264935f385c08f438a172604f2a6f2e31", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 3, - "unit": "lovelace" - }, - "address": "", - "id": "950f2c254717bb791d7365633e6d79529d1b551d601677242a49502a294f3d45", - "derivation_path": [ - "5120", - "5007", - "23286", - "16908", - "5443", - "11881", - "7347", - "9724", - "19013", - "6681", - "32561", - "4967", - "1450", - "23435" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 26885 - } + "id": "6fb01351de74d238784f7aa17f3c5e6366560b75405f643b17031c66732a7a78", + "index": 0 }, { - "tag": "ExternalInput", - "contents": { - "id": "7b6c67190d623f6948c00d560229576102751f32495323271e0e5b28795b4462", - "index": 1 - } + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "address": "", + "id": "0c4409a47320133871004f09307d913679696968d16270749b0f4300471f7b31", + "derivation_path": [ + "19612" + ], + "assets": [], + "index": 1279 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 58, - "unit": "lovelace" - }, - "address": "", - "id": "49056a4345b37750041c66606b3a1e377ae12d0c0b5d086249150f4361134535", - "derivation_path": [ - "2921", - "11010", - "3114", - "17949", - "31872", - "7819", - "30856", - "10690", - "858" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 22232 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "32033067bbd303642c6806921d6d7c05f99e464d2b1020e525c62d7ee7605b5f", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 83, - "unit": "lovelace" - }, - "address": "", - "id": "501d1a77bb0a5c4465144d4462227c2b175d6e017919076a46063f0975e8556a", - "derivation_path": [ - "26621" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 12532 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "412075451c55b5a670dc2e1f3628361a657f2c15026b587d50794b40227a3f2e", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 177, - "unit": "lovelace" - }, - "address": "", - "id": "b7c6eb109c2e725e45ec1f7056237bef5d28e77f534250e778b3561b2d16f942", - "derivation_path": [ - "32154", - "26896", - "81", - "25738", - "13487", - "31537", - "4004" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 31864 - } + "amount": { + "quantity": 134, + "unit": "lovelace" + }, + "address": "", + "id": "106d7a361d5c51e5587750d5643d664d5734b29dec07e628494f2a49050a9273", + "derivation_path": [ + "25118", + "21307", + "30286", + "10258", + "26240", + "13761", + "28306", + "32080", + "17171", + "31370", + "1873", + "5534", + "11154", + "10282", + "14754", + "31565", + "10238", + "32677", + "10003", + "7045", + "3542" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 10477 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 72, - "unit": "lovelace" - }, - "address": "", - "id": "320e4377257144173f4de63a5f37492a7d4d754a55520a0563343e5654622e7b", - "derivation_path": [ - "31512", - "16808", - "25457", - "27723", - "26331", - "1812", - "6952", - "24153", - "27489", - "10617", - "24303", - "16500" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 68, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 58, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 28392 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "address": "", - "id": "38037f18591ded301e63267048161865696f47330d35dbf131cd005a50600230", - "derivation_path": [ - "16963", - "13649", - "19341", - "11718", - "11330", - "21266", - "26498", - "31567", - "28803", - "26190", - "28424", - "28847", - "27674", - "13106", - "5458", - "4993", - "32151", - "12865", - "25853", - "31631", - "11656", - "25835", - "32001", - "27229", - "9760", - "12463", - "16486", - "1566", - "28737", - "30592" - ], - "assets": [], - "index": 24318 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "address": "", - "id": "15ac0e966dca0f080c084a26543a183a12332648192c38260a4422781f101c27", - "derivation_path": [ - "15751", - "18849", - "31362", - "11587" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 41, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 17873 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "4faf3348081478591b71ab46625fb87601726859524e5b450c4d37136539b757", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "f681666214b84665592848423c3d72162886497901494358bf402e7a58523d38", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 201, - "unit": "lovelace" - }, - "address": "", - "id": "5c1950fee422082a0c0b64183eef302e383dc86559eaa2273056011f7ba5115d", - "derivation_path": [ - "390", - "29417", - "16262", - "10483", - "13301", - "27645", - "26925", - "32007", - "20959", - "1441", - "12463", - "1400", - "8114", - "5932", - "8152", - "28541", - "25018", - "27011", - "5158", - "21865", - "5798" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 596 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 73, - "unit": "lovelace" - }, - "address": "", - "id": "33755829636b720c5c014012706a7a1e251d2b430140265d461659013f39007b", - "derivation_path": [ - "22827", - "21193", - "1990", - "5646", - "9723", - "11841", - "18032", - "27700", - "1475", - "10003", - "14944", - "11297", - "28670", - "7445", - "8964", - "13439", - "32035", - "31558", - "3983", - "28089", - "11767", - "14627" - ], - "assets": [], - "index": 30189 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "0e515b24693e628a4415f321fc733c444c4b5d2b2e3573d9431f0a67122e0c99", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 181, - "unit": "lovelace" - }, - "address": "", - "id": "7d317e240f4bbf48465c30340021764392e028f12415733357401c544b1dbc15", - "derivation_path": [ - "17975", - "17232", - "7018", - "18116", - "13349", - "14942", - "30311", - "1426", - "24081", - "5377", - "18340", - "25611", - "25871", - "15204", - "29402", - "3423", - "5599", - "15956", - "14350", - "893" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 10882 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 202, - "unit": "lovelace" - }, - "address": "", - "id": "5c15c392173075495768055e4758611d3c607a4969766c0621bd6b5844633a4b", - "derivation_path": [ - "19292", - "21958", - "26310", - "4213", - "8261", - "26256", - "1863", - "13832", - "345", - "2720", - "28701", - "23067", - "5539", - "23097" - ], - "assets": [], - "index": 27903 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 178, - "unit": "lovelace" - }, - "address": "", - "id": "2e176c483901159bc315197bda455da5296c3d9265ed1c5a2c3d5e291703ef1b", - "derivation_path": [ - "16967", - "23272", - "20089", - "15052", - "4230", - "19342", - "16719", - "12817", - "9530", - "11315", - "27844", - "9157", - "19363", - "26542", - "5778", - "13206", - "2607" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 52, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 19701 - } - } - ], - "fee": { - "quantity": 65, - "unit": "lovelace" - }, - "outputs": [ - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 224, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 45, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "7965", - "6193", - "3063" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "id": "2e5d3400380b64265b22f54a3c558158c24d296a721515c2c5735d36fd704e1c", + "index": 0 }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 88, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 56, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 26, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "16858", - "27561", - "22337", - "8416", - "7106", - "30335", - "4740", - "17124", - "28261" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 217, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 45, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "22665", - "28473", - "16061", - "32216", - "31705", - "3361", - "16349", - "17547", - "32657", - "11796", - "5681", - "18141", - "4981", - "15224" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 48, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 44, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 38, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - } - ], - "metadata": { - "25": { - "int": 0 - } - }, - "id": "1d335531697f0a530428174a107c79635d6c1b5f5345397962091c4e574873ed", - "collateral": [ - { - "tag": "ExternalInput", - "contents": { - "id": "2b2d014502791006113c2e22433b20477a0313396965246e0533571a73a41a22", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 242, - "unit": "lovelace" - }, - "address": "", - "id": "173e686b4f7b0bbbc82425b0401d77226a2f325942394e61c43f8a192d4d1553", - "derivation_path": [ - "10137", - "2124", - "26467", - "904", - "16039", - "27240", - "20754", - "22998", - "27831", - "31764", - "25863", - "24068", - "6457", - "32134", - "25724", - "5196" - ], - "assets": [], - "index": 28865 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 53, - "unit": "lovelace" - }, - "address": "", - "id": "7a4e772c574979266d6c1e4f693a2e1319093be7936d6e2e271a1527135f1a53", - "derivation_path": [ - "5785", - "17235", - "12", - "23323" - ], - "assets": [], - "index": 16666 - } - } - ] - }, - { - "withdrawals": [ { "amount": { - "quantity": 95, + "quantity": 151, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "bb2a519b55173d726222396e837172473a4f6630761112213839773c68eb5312", + "derivation_path": [ + "27722", + "13326", + "26878", + "18019", + "25999", + "31150", + "4013" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 6451 }, { - "amount": { - "quantity": 20, - "unit": "lovelace" - }, - "stake_address": "" + "id": "725ec24d564d315b20056041827c3f7c3ba57d5ccb4d307d6f3d7a4c1f642772", + "index": 1 }, { "amount": { - "quantity": 13, + "quantity": 140, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "796633281c2c52485b272e66f323513ba62077cd3107680849095825182ed161", + "derivation_path": [ + "12750", + "9113", + "28880", + "17558", + "12732", + "10696", + "10466", + "7674", + "31034", + "26083", + "32700", + "8652" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 30028 }, { "amount": { - "quantity": 116, + "quantity": 230, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "7f41711e210720a82b75703a342cf9374f0a73ff7b3f78443e426d535a1e0405", + "derivation_path": [ + "4012", + "2785", + "24407", + "28840", + "25012", + "24172", + "11214", + "22971", + "8727", + "22612", + "25087", + "2422", + "17647", + "17794", + "7913", + "15056", + "8496", + "6144", + "5075" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 38, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 26558 + }, + { + "id": "05e24a3f4154705a7729773126a97a3b303849479775164d6ddb426f69f94e5e", + "index": 1 + }, + { + "id": "2e442d0e74547579942a2e5c092a42735c16fc2572aa49ca46f812437549036c", + "index": 0 + }, + { + "id": "731c506f305849ed5f1b74226c134e7b737609786f6e23777e6f1ed66c21000e", + "index": 0 + }, + { + "amount": { + "quantity": 177, + "unit": "lovelace" + }, + "address": "", + "id": "69140c4d3aef4423415a15b84b520af8253d3b3139b3253d00273d6e3d68559a", + "derivation_path": [ + "19491", + "21078", + "22746", + "11079", + "12062", + "14788", + "21568", + "21871", + "28701", + "29658", + "4878", + "4161", + "8143", + "25122", + "21895", + "15402", + "21984", + "21318", + "6690", + "7913", + "19436", + "10788", + "21373", + "31817" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 19511 }, { - "amount": { - "quantity": 130, - "unit": "lovelace" - }, - "stake_address": "" + "id": "303d2ab5333a4126565436a90a2579517f83565a75527b676db4324e6b544743", + "index": 0 }, { "amount": { - "quantity": 28, + "quantity": 182, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "002a8b22577147dd6a1c183d03bd77566164c36e3b48bb6c3018506e128aef39", + "derivation_path": [ + "29218", + "4138", + "25356", + "1410", + "19676", + "10691", + "29197", + "4749", + "30048", + "2730", + "7870", + "8735" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 1162 }, { - "amount": { - "quantity": 138, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "20735b2b2832ef5e3e3a68114f5a253cfd6e2b3e0e7d160c2f3e060426660d13", + "index": 1 }, { "amount": { - "quantity": 77, + "quantity": 200, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "c8054b2172d87f067a002c328a49340c0b61ac7d0124546a09fc250dfa617ddf", + "derivation_path": [ + "23039", + "24409", + "7085", + "31277", + "27605", + "13773", + "29535", + "26743", + "5605", + "19256", + "26801", + "26630", + "11976" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 48, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 12821 + }, + { + "id": "6e245611ba3c022a0d460e43c15f237d0f54463d6d177e107f46681862425af0", + "index": 0 + }, + { + "amount": { + "quantity": 238, + "unit": "lovelace" + }, + "address": "", + "id": "0e5a52730983090465692d06506c12371e6030457f082f388b23223826d92e35", + "derivation_path": [ + "5056", + "1235", + "31080", + "12867", + "1050", + "8090", + "20749", + "26830", + "14885", + "31828", + "32291", + "17672", + "20938", + "639", + "18591", + "28324", + "25173", + "718", + "12496", + "18615", + "22171", + "14173", + "3823", + "305", + "13628", + "8781", + "8758", + "22605" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 44, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 33, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 8021 }, { - "amount": { - "quantity": 144, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "5c3e696076703c029593516b4868e9708f71275d08310053271f6a34f53b1752", + "index": 0 }, { "amount": { - "quantity": 250, + "quantity": 166, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" - }, + "address": "", + "id": "fd5a2720723a29e82ec3276bb6222a5a570a7f6179f373356d44381436643a4b", + "derivation_path": [ + "11081", + "4833", + "31004", + "32126", + "13338", + "8962", + "7537", + "14840" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 12761 + } + ], + "fee": { + "quantity": 70, + "unit": "lovelace" + }, + "outputs": [ { "amount": { - "quantity": 46, + "quantity": 143, "unit": "lovelace" }, - "stake_address": "" - }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 31, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 96, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "29600", + "6047", + "29138", + "31530", + "11034", + "28959", + "15763", + "4181", + "15106", + "31067", + "15645", + "21603", + "30867", + "4776" + ], + "assets": [] + }, { "amount": { - "quantity": 10, + "quantity": 90, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 121, + "quantity": 160, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 50, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 46, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 161, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26213", + "10138", + "10161", + "10051", + "5401", + "10898", + "21904", + "31511", + "23268", + "3038", + "3292", + "13681", + "6314", + "9283", + "26238", + "20407", + "20775", + "21168", + "25534", + "28332", + "109", + "22883", + "23487", + "11252", + "390", + "26935", + "25853" + ], + "assets": [] + }, + { + "amount": { + "quantity": 118, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "amount": { - "quantity": 219, + "quantity": 198, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "amount": { - "quantity": 113, + "quantity": 154, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [], + "amount_incoming": { + "quantity": 47, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "22767", + "28506", + "3736", + "653", + "1094", + "15995", + "22770", + "24725", + "31878", + "18945", + "17653", + "8017", + "5054", + "57", + "2441", + "8878" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 132, + "quantity": 86, "unit": "lovelace" }, - "stake_address": "" - } - ], - "inputs": [ + "assets_incoming": [], + "amount_incoming": { + "quantity": 219, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8266", + "2843", + "11489", + "21176", + "20237", + "317", + "12203", + "16824", + "13829", + "29047", + "5412", + "8893", + "30945", + "20404", + "30406" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 50, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 49, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, { - "tag": "ExternalInput", - "contents": { - "id": "3573487ef93611526f223609f5557638fe210c790815367ff16d196709362a79", - "index": 0 - } + "amount": { + "quantity": 136, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 58, - "unit": "lovelace" - }, - "address": "", - "id": "ed66e6522d6100348fb74b2b5972bf553e8c24367c1f363f7829556c1b3e6226", - "derivation_path": [ - "7439", - "5409", - "3995", - "962", - "18975", - "9152", - "18321", - "31778", - "30511", - "22725", - "26569", - "17703", - "23441", - "25432", - "29461", - "21301", - "31746", - "5423", - "10822", - "19992", - "8327", - "25003", - "31951", - "5459", - "16831", - "19410" - ], - "assets": [], - "index": 8665 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "a6427073365525195f34f43b7d310bac3c2f69054c7e1d0108bf9a28775a123b", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 235, - "unit": "lovelace" - }, - "address": "", - "id": "a64423071f62b70188307f3fdd527e017f5a7a131930260b356108030e212a76", - "derivation_path": [ - "9824", - "9834", - "26868", - "18641", - "17658", - "28964", - "7360", - "31742", - "10576", - "28438", - "16314", - "17655", - "26955", - "20018", - "13775", - "7600", - "30306", - "987", - "22732", - "8381", - "25245", - "14269", - "24716", - "2311", - "8234", - "31985", - "13932", - "31572", - "28971", - "8845", - "18434" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 18321 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "36380c40648fb2765e9f4df71c6734255915c4515507462d727d2d1f016b3255", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 73, - "unit": "lovelace" - }, - "address": "", - "id": "643348a11572e1e4020231317d34106911b7951a282374010b2530306c0f3065", - "derivation_path": [ - "29696", - "25102", - "27782", - "8291", - "2140", - "13286", - "13609", - "31948", - "29487", - "25568", - "14686", - "9636", - "17518", - "2339", - "10527", - "5370", - "4877", - "22854", - "9932", - "31580", - "6328", - "29389" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 3132 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "191d3177185f264813227b7f495168095306660f546db8105f64367e6d06ee61", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "75574e0c40a4628cac29777ef9a46476510c8b77484e2144227bd01bf62a482c", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 136, - "unit": "lovelace" - }, - "address": "", - "id": "0a76bc4b5d537155646a6a79705bed4dd25d2d58791b2a52f412352e23746cde", - "derivation_path": [ - "17484", - "5388", - "679", - "16953", - "27673", - "16133", - "7773", - "1573", - "4367", - "14624", - "21375", - "4076", - "20425", - "23479" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 24828 - } + "amount": { + "quantity": 135, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 46, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 49, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 60, - "unit": "lovelace" - }, - "address": "", - "id": "b7006f2cd92f7b0b7678e22df54d301e422f7d625d32723655a017311f262e5d", - "derivation_path": [ - "28166", - "31692", - "29497", - "16555", - "4114", - "8692", - "4330", - "21821", - "20124", - "20732", - "30705", - "25618", - "29784", - "12311", - "26034", - "29438", - "133", - "27910" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 32, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 2581 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 129, - "unit": "lovelace" - }, - "address": "", - "id": "3da555200c5a0212465b4a24362b124b05246004720b5a2945a77ab00b758b6a", - "derivation_path": [ - "4471", - "6428" - ], - "assets": [], - "index": 4839 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 110, - "unit": "lovelace" - }, - "address": "", - "id": "502e484b2f96622a1a592f271d30662b622c7c38625f86f5745733475f7d391f", - "derivation_path": [ - "7723", - "24530", - "26317", - "2724", - "30621", - "22057", - "27476", - "28955", - "14513", - "16758", - "20474", - "31777", - "14157" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 6615 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 180, - "unit": "lovelace" - }, - "address": "", - "id": "523a541ff14531062659327c6c6511033b0f06aac11974312a49643212406435", - "derivation_path": [ - "2201", - "5586", - "18695", - "523", - "21684", - "3200", - "7216", - "20868", - "15256" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 443 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 239, - "unit": "lovelace" - }, - "address": "", - "id": "f261612e357a43207e4b222e25f302cd67670c0b0b6e520d0139511843203d43", - "derivation_path": [ - "11996", - "20393" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 47, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 11016 - } + "amount": { + "quantity": 45, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "ExternalInput", - "contents": { - "id": "14e200db7c2215203a7f3b6f726c442a056a2e698169a26e2f3b9b41c5582372", - "index": 0 - } + "amount": { + "quantity": 70, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 125, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "2265", + "19788", + "12755", + "29389" + ], + "assets": [] }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 44, - "unit": "lovelace" - }, - "address": "", - "id": "0b55194a736e2148653114651d1a28688429651536dd796ea557684f63672d3c", - "derivation_path": [ - "8365", - "17363", - "26389", - "30577", - "23927", - "8747", - "17366", - "29946", - "24273", - "29530", - "11708", - "24967", - "866", - "9463", - "31548", - "29340", - "26969", - "5795", - "1406", - "7089", - "14480", - "28348", - "15020", - "5336", - "25335", - "24721", - "2083", - "16829", - "16111", - "26842" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 35, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 45, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 31817 - } + "amount": { + "quantity": 26, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 57, - "unit": "lovelace" - }, - "address": "", - "id": "7d4e2004255b2c4930222a16843160201bdc58380f781a5b03667a3766553825", - "derivation_path": [ - "7576", - "10789", - "2110", - "14117", - "15772", - "32255", - "13069", - "17713", - "32673", - "27885", - "16830", - "9861", - "12139", - "23962", - "14961", - "5948", - "15850", - "6940", - "10737", - "2028", - "26452", - "26337", - "11430", - "25482", - "15551", - "14082", - "27055", - "10681", - "3048", - "8817", - "32360" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 42, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 53, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 9299 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "address": "", - "id": "4b12754162982187694bc04f7b300539c446197eb2a011251e3f3e18651131fc", - "derivation_path": [ - "31819", - "4582", - "7746", - "3459", - "1101", - "24065", - "15910", - "31352", - "8802", - "6422", - "22322", - "10520", - "21453", - "23052" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 8976 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "74720bda9c172868025859243475346f067cd5b9336a7d0f1f0a55247edc67a7", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 247, - "unit": "lovelace" - }, - "address": "", - "id": "5f46c242503c63470a0634237a6a24ab33416cf72457423ffd0c6b4356793f7b", - "derivation_path": [ - "17858", - "9748", - "22469", - "22262", - "21180", - "5603", - "1014", - "32257", - "12598", - "25225", - "17202", - "10619", - "1682", - "28957", - "14179", - "28334", - "16317", - "32242", - "3467" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 54, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 2297 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "52be3366245c46fd1e0e35243d84646e09201ab5c4234d507a72184a093d6870", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { + "amount": { + "quantity": 180, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", "quantity": 30, - "unit": "lovelace" - }, - "address": "", - "id": "1f38400d73286c4d67680f4ba07a6e592e641856787d506161863f60417c5848", - "derivation_path": [ - "5336", - "1244", - "12765", - "24900", - "17359", - "4278", - "18067", - "27611", - "30333", - "31619", - "21073", - "17933", - "20397", - "25089", - "18475" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 45, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 23099 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 250, - "unit": "lovelace" - }, - "address": "", - "id": "253c5f2b691369252869287cb9504a480d6f053e413f207e77646a7848ec6456", - "derivation_path": [ - "12157", - "1759", - "24826", - "16492", - "26531", - "2972", - "6580", - "23321", - "21200", - "19442", - "30119", - "17026", - "8933", - "30166", - "6055", - "8686", - "21330" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 9185 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "721c32203310e03d1d364a224f24dd7905af57682d5756fa746a785e0c5d842d", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "3f61e57e361f54393e0e08463329624dd66a7c3d0b1aac3ef9d32d566531186d", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "093a80541d30761262184079102b05b0f7916a73184d7b3a7950776a09046675", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "0e476b0a5f0aaa780851a0521c2f762d36587d3652d6a14ae726147921733c2f", - "index": 0 - } - } - ], - "fee": { - "quantity": 67, - "unit": "lovelace" - }, - "outputs": [], - "metadata": null, - "id": "1034080ada087b4f24000e4f76395508474bd6586d13d6040ecf8c5e12892d3f", - "collateral": [ - { - "tag": "ExternalInput", - "contents": { - "id": "4664141960a83040c831434534765474691f1c6006631b78d52b190126693505", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "03530c441050d148254e4e3a65642b2b002413706b1f20020d1f6b023ce42514", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 214, - "unit": "lovelace" - }, - "address": "", - "id": "432c4b066923ac6a68dc9142464bd76c534705184ff55b542247551e483d3e33", - "derivation_path": [ - "31562", - "14397", - "18042", - "26265", - "11099", - "25534", - "27220", - "31892", - "10919" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 5625 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "324e3117aad0792751024cfd087d190b46953e2dc9a2280d152655325c1de8d8", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "565363281c0e047258043348976cf32837726d4f6622447dc3360c1d57087794", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "5465041a6d6bee9f01445e53704ad251726b6e0d1c7c6723333e7c4b3329281e", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "89bb604f286e096e7c5d4d34526d656f183e7e24233c1a310d96071c6b5b303e", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "19401a1752576e3da51918b35548b3446966f2b7687559402622153c040607e9", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "5d353e3c1ddf040460ee2a59252a420bf6ee500f4e7e1d655c73ab677f761973", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "address": "", - "id": "75172d762e2f5f7d2827f9937d625ad231821d510565187948d71475712b0504", - "derivation_path": [ - "21102", - "130", - "20022", - "259", - "24750", - "10660", - "15850", - "15662", - "29116", - "31683", - "12301", - "10440", - "16587", - "16626", - "4546", - "21246", - "28367", - "6213", - "30896", - "18329", - "27675", - "30981", - "19584", - "11930", - "32390", - "8174", - "19800", - "30706", - "12536", - "32602", - "22554" - ], - "assets": [], - "index": 28881 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 61, - "unit": "lovelace" - }, - "address": "", - "id": "586c596b78484f5bb82743996a3f446b2b625b3c7f671f3d002826b81300493a", - "derivation_path": [ - "15827", - "700", - "14073", - "28630" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 21908 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 160, - "unit": "lovelace" - }, - "address": "", - "id": "38d50d5042de3d3b3491406b53ec877c0e2b3045595c62164d043b69462a2b6b", - "derivation_path": [ - "12573", - "15123", - "8286", - "31749", - "20849" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 29289 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", "quantity": 1, - "unit": "lovelace" - }, - "address": "", - "id": "1852cd7b2a087b14559e7af0277d099406593652134a794c363e2a2a10662d6d", - "derivation_path": [ - "5012", - "15235", - "22451", - "6766", - "29700", - "4409", - "11309", - "11906", - "4410", - "22106", - "6410", - "25045", - "15059", - "6817", - "23329", - "8036", - "8330", - "18423", - "13588", - "23387", - "11987", - "28002" - ], - "assets": [], - "index": 11133 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "442f6cbc2117727232364bdf50533f064876e0795c52de6a7a5448526396753e", - "index": 0 - } - } - ] - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 239, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 178, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "derivation_path": [ + "16973", + "1816" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 16, + "quantity": 38, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 235, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 149, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "derivation_path": [ + "23952", + "29853", + "13492", + "8480", + "28314", + "3210", + "23473", + "29232", + "9241", + "15560", + "11337" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 106, + "quantity": 25, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 33, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 33, + "quantity": 229, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 175, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "1368", + "20169", + "24509", + "19344", + "26678", + "22240", + "665", + "964", + "14099", + "23214", + "9672", + "22711", + "31774", + "30480", + "12638", + "32687", + "30933" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 58, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 142, + "quantity": 213, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + ], + "script_validity": "valid", + "metadata": { + "8": { + "list": [ + { + "string": "󶧴󲏼" + }, + { + "list": [ + { + "string": "𢰾鉕" + }, + { + "int": 1 + } + ] + }, + { + "list": [ + { + "map": [] + }, + { + "map": [ + { + "k": { + "string": "蠊凩" + }, + "v": { + "string": "􍣴" + } + } + ] + } + ] + } + ] + } + }, + "id": "116c732b031a55762a1d3e1a6d5e6c14574b2417a216147e05399bfe7d48f20d", + "collateral": [ + { + "id": "51fad75e423f79144b6d0538551c02266b2277586d965b1d02224f3c5b144b61", + "index": 1 }, { "amount": { - "quantity": 83, + "quantity": 251, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "0682504c63126df3611b65f20b070e12682865105d02ec26fc55992f4897e118", + "derivation_path": [ + "22055", + "7236", + "30009", + "29622", + "23207", + "4169", + "20958", + "29961", + "2594", + "22797" + ], + "assets": [], + "index": 25579 + }, + { + "id": "69371f72313c07745c640c327b1025491d8c252a35d89b64674d79285605b80e", + "index": 1 + }, + { + "id": "03432d7e4a3f59383a8f771705436dc341024d102e205c1a5f0b4115190c1936", + "index": 0 }, { "amount": { - "quantity": 233, + "quantity": 164, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "c6ec3e1a48435035cfed071c3afe33624b3f030f134a1994123c6002e05c2036", + "derivation_path": [ + "28288", + "7783", + "7450", + "31382", + "26748", + "11741", + "16362", + "7466", + "8083", + "13112" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 20625 + }, + { + "id": "d31923647e27fd5c0873105a7c417f1a5cba4248027d190a70634a223a2b392f", + "index": 0 + }, + { + "id": "71312279025f4741153362700e54493b000e7840593624164a6429081334266a", + "index": 1 + }, + { + "id": "7129553c1e122b00406b04604c280e3400415d658d746f72de073455c53c0e0b", + "index": 1 + }, + { + "amount": { + "quantity": 109, + "unit": "lovelace" + }, + "address": "", + "id": "3a2c787441f2435b0164416801ba5c28ce68551a573562643371292a021c742f", + "derivation_path": [ + "4148", + "21944", + "1235", + "6410", + "13219", + "19579", + "13174", + "6170", + "7154", + "4881", + "24118", + "533", + "30690", + "4946", + "28214", + "32426", + "15408", + "18647", + "28535", + "19506", + "17293", + "17342", + "3914", + "7716", + "12012", + "21165", + "26043", + "21760" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 45, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 46, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 46, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 23865 }, { "amount": { - "quantity": 115, + "quantity": 141, "unit": "lovelace" }, - "stake_address": "" - } - ], - "inputs": [ - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 217, - "unit": "lovelace" - }, - "address": "", - "id": "3611a5782017746791ab234b2b03556600200a4e7c491d12672d14c444047a04", - "derivation_path": [ - "10944", - "7530", - "20776", - "30108", - "29833", - "310", - "24514", - "8839", - "16672", - "6965" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 31, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 42, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 15985 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "5266050251470e2ce6a60122bd1966852c13182409641f4627407c8f6e6e210c", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "447a116d2f0f4e4f5e261e602024784a1052fa357e406a74414b192a24411b71", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "53353a772d96496c9b6a26ca0c0e364c425b3abd6b7a4e060977347956252909", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 155, - "unit": "lovelace" - }, - "address": "", - "id": "86ca57136ec6794f540256c245595349f846303f0f116a0d61745a7c5f647f23", - "derivation_path": [ - "18769", - "12049", - "18011", - "12392", - "27346", - "12810", - "13721", - "6165", - "31299", - "3141", - "3193", - "10706", - "188" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 9693 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 18, - "unit": "lovelace" - }, - "address": "", - "id": "4c64221d204746124f7d4f7228043e537dbc0929475b6941f9077f88fd61694d", - "derivation_path": [ - "28971", - "141", - "26534", - "14879", - "20173", - "6108", - "17237", - "10221", - "29009", - "32358", - "19894", - "12427", - "28802", - "11809", - "15910", - "24085", - "8993", - "11352", - "12705", - "28654", - "21281", - "4606", - "31109", - "10175", - "10495", - "20005", - "32635", - "25367", - "16907", - "17491" - ], - "assets": [], - "index": 5239 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "6558a75924bb197e1052f766b58826296532c2a8d068ff241eb033740d58114d", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 202, - "unit": "lovelace" - }, - "address": "", - "id": "546c0d0b3c1a782ab219494b617d076d149b0f6f3280154102414631106902ba", - "derivation_path": [ - "26793", - "24155", - "24029", - "25092", - "372", - "10982", - "21657", - "12032", - "32693", - "6748", - "6892", - "27118" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 19209 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "47579150aa6620902039e9547b0317892c7e43001c370c566d6d75823d173d09", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 231, - "unit": "lovelace" - }, - "address": "", - "id": "250b21220caa4a6fad7ee77e732fd67c237e236904b46e460d61f54e46593f61", - "derivation_path": [ - "9974", - "13042", - "7029", - "31007", - "28829", - "1810", - "2780" - ], - "assets": [], - "index": 11206 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 81, - "unit": "lovelace" - }, - "address": "", - "id": "183764272d566464461d605d535f4f635421230d4af6776740314456755d2d3c", - "derivation_path": [ - "20241", - "26412", - "13523", - "16331" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 12998 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 129, - "unit": "lovelace" - }, - "address": "", - "id": "345e11d4c7491b33277817601e610d6f47267c273e68725e4f4a9016476b7679", - "derivation_path": [ - "12954", - "18538", - "7038", - "13305", - "3171", - "8461", - "29040", - "3569", - "22858", - "23668", - "29499", - "10906", - "8978", - "15399", - "18377", - "7221", - "8130", - "27759", - "927", - "29048", - "5015", - "11531", - "6112", - "2836", - "24424", - "24111", - "11044" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 31, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 42, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 28231 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "ea1c3424726060160e48370a6a661ccac018256c68d5760f967564fd171e1d10", - "index": 1 - } - } - ], - "fee": { - "quantity": 101, - "unit": "lovelace" - }, - "outputs": [ - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 180, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 53, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 69, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 40, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 8, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "8122", - "20991" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 40, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 173, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "8730", - "32380", - "29199", - "16996", - "22455", - "17499", - "21602", - "27873" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 249, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "amount_incoming": { - "quantity": 38, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "28241", - "438", - "28507", - "10265", - "27841", - "730", - "4906", - "30396", - "3992", - "3280", - "11538", - "4542", - "20409", - "26990", - "8201", - "19395", - "6999", - "17861", - "1963", - "19653" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 116, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 189, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "19478", - "18144", - "4935", - "30255", - "6937", - "23983", - "8642", - "32197", - "26961", - "4044", - "20143", - "30371", - "8639", - "5311", - "23387", - "32224" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 31, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 36, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 209, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 40, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 41, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 39, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 54, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 163, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 0, - "unit": "lovelace" + "address": "", + "id": "272f5c23066e16ec1164075a05178b31723743301d4c1d967a250a3966543863", + "derivation_path": [ + "3947", + "26495", + "13065", + "13936", + "14541", + "2886", + "14890", + "18372", + "19049", + "31784", + "7912", + "9054", + "13211", + "22448", + "24969", + "5179", + "28678", + "15524", + "23396", + "13073", + "18339", + "1900", + "9446", + "4168", + "10232" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 15771 + }, + { + "amount": { + "quantity": 192, + "unit": "lovelace" + }, + "address": "", + "id": "e422354b75395d4d3237682264036808265c5de68758597a2666195352562935", + "derivation_path": [ + "8085", + "12492", + "24998", + "26514", + "9942", + "10497", + "11891", + "32585", + "20955", + "14641", + "23265", + "15419", + "31638", + "10639", + "29030", + "21255", + "27062", + "23617", + "30782", + "19187", + "11602", + "16676", + "21894", + "32044", + "8453", + "8503", + "27002" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 24910 + }, + { + "amount": { + "quantity": 152, + "unit": "lovelace" + }, + "address": "", + "id": "30a80421381e274603712f11d80330744d1aa4fcaa3a4a163a7d22046a5c4472", + "derivation_path": [ + "951", + "9022", + "17529", + "21600", + "17765", + "16095", + "918", + "13652", + "27336", + "14763", + "17357", + "17511" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 160, - "unit": "lovelace" + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 66, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 236, - "unit": "lovelace" + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 40, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 93, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 98, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "22027", - "7045", - "11003", - "14201", - "27117", - "20786", - "31689", - "23995", - "25626", - "22298", - "9179", - "7842", - "17834", - "24167", - "28202", - "22095", - "23441", - "25420", - "31965", - "30893", - "1513", - "27847", - "22839" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 69, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 133, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "30129", - "2440", - "18183", - "6952", - "11666", - "17003", - "8843" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 43, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 83, - "unit": "lovelace" + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "amount_incoming": { - "quantity": 12, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "22770", - "24113", - "25327", - "5723", - "24550", - "8833", - "16426", - "31644", - "8111", - "14525", - "7448", - "28814", - "19804", - "6609", - "25176", - "4659", - "258", - "9466", - "5764" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 216, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 209, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "13584", - "3554", - "32698", - "32762", - "25133", - "15417", - "23663", - "22746", - "32439", - "32365", - "6264", - "19144", - "19676", - "8966", - "25778", - "26115", - "21347", - "6978", - "20672", - "2729", - "31288", - "14943", - "6275", - "10699", - "11290", - "14203", - "21403", - "7988", - "18156", - "14829" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 208, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 204, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "21204", - "27375", - "29962", - "27021", - "28989", - "4344", - "6526", - "23828", - "13075", - "23657", - "730", - "3003", - "17519", - "27405", - "27072", - "29054" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 44, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 73, - "unit": "lovelace" + { + "asset_name": "546f6b656e45", + "quantity": 56, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 10, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 241, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 34, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 41, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 118, - "unit": "lovelace" + { + "asset_name": "546f6b656e42", + "quantity": 32, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 214, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "19331", - "8794" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 33, - "unit": "lovelace" + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 175, - "unit": "lovelace" + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 32, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 237, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "18902", - "14893", - "4584", - "29664", - "14330", - "8437", - "20100", - "885", - "6965", - "2380", - "3379" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 29, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 109, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "21346", - "22090", - "27301", - "14459", - "27627", - "8277", - "32299", - "29671", - "18679", - "4549", - "29395", - "5128", - "4315", - "32066", - "4655", - "13494", - "27074", - "21838", - "17673", - "9897", - "293", - "29260", - "20006", - "5584", - "18356", - "16267", - "7970" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 49, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 197, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 53, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 16, - "unit": "lovelace" + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "address": "", - "assets": [] - } + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 24520 }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 247, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - } - ], - "metadata": { - "20": { - "list": [ + "amount": { + "quantity": 12, + "unit": "lovelace" + }, + "address": "", + "id": "615b04ba706e4751647a5e76322010591b056d6b29630d707f187a3f61a6522c", + "derivation_path": [ + "8243" + ], + "assets": [ { - "bytes": "5725b564ca06297078a06b051079a2377557f82012301a5b1d451e7e7a24056a11444e197f2154568b233e1f530f3e4707314d1dcbdc" + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } - ] - } - }, - "id": "3465256926234e5d4f5a28eb1e041d054618294a120b23e2214d272621694424", - "collateral": [ - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 200, - "unit": "lovelace" - }, - "address": "", - "id": "57177041a6180e291c3d6426561a7b2a4734ba3a6004644c532076332f8e154f", - "derivation_path": [ - "17135", - "17567", - "4287", - "28772", - "19838", - "16268", - "11463", - "6268", - "17122", - "29059", - "29052", - "16049", - "16852", - "2689", - "21278", - "11913", - "1740", - "19126", - "3776", - "10877", - "5037", - "12720", - "10782", - "26227", - "21428", - "31959", - "27868" - ], - "assets": [], - "index": 25588 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "8a09423eb060235f6079251f9d52544c510d197366736a2f173a7ed30773d474", - "index": 0 - } + ], + "index": 20786 } ] }, @@ -4968,7 +2303,7 @@ "withdrawals": [ { "amount": { - "quantity": 193, + "quantity": 71, "unit": "lovelace" }, "context": "ours", @@ -4976,21 +2311,22 @@ }, { "amount": { - "quantity": 51, + "quantity": 249, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 117, + "quantity": 134, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 1, + "quantity": 156, "unit": "lovelace" }, "context": "ours", @@ -4998,7 +2334,7 @@ }, { "amount": { - "quantity": 114, + "quantity": 248, "unit": "lovelace" }, "context": "ours", @@ -5006,1150 +2342,56 @@ }, { "amount": { - "quantity": 64, + "quantity": 121, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 230, + "quantity": 192, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 138, + "quantity": 63, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 196, + "quantity": 154, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 65, + "quantity": 46, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 140, + "quantity": 132, "unit": "lovelace" }, "stake_address": "" - } - ], - "inputs": [ - { - "tag": "ExternalInput", - "contents": { - "id": "4074603b5f71521b3a69556a12492a1d273a5f3c47ce567d0a2265db272f751a", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 71, - "unit": "lovelace" - }, - "address": "", - "id": "375815fb67b63d0c58ab481cfe67fa571e626160782c0b85204307720ee1466a", - "derivation_path": [ - "15700", - "6721", - "20670", - "7314", - "5549", - "3351", - "8286", - "1600", - "11811", - "8950", - "730", - "27932", - "17230", - "2069", - "29359", - "10997", - "1557", - "28652", - "31216", - "4804", - "2671" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 53, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 52, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 33, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 21132 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "3f48433a4965316521712568d40e29772ab32127715ef6585d7b61b84c754027", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "address": "", - "id": "7e6d09b60a74642553396fee120c147b1b1e3d321bec2e4c747d091c7719765d", - "derivation_path": [ - "32767", - "12675", - "30084", - "29603", - "744", - "29079" - ], - "assets": [], - "index": 10836 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "dcb810334158df09ad735b5d545fd4723b7b2f6528383f71705d1dee1d1c104b", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 87, - "unit": "lovelace" - }, - "address": "", - "id": "6c7f8afc8b3b77667b690a0e092c0e1c7772df1d56254fc489556d4e684a287c", - "derivation_path": [ - "25030", - "15577", - "29362", - "21684", - "26790", - "8307", - "28065", - "3935", - "18785", - "17498" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 14371 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "15136b3d3e6ed06f45103b336ed1004b1d624c4067646945c635745f67171f97", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 17, - "unit": "lovelace" - }, - "address": "", - "id": "5f0817495c0581393e151c4666cc206126297633081b2c2fb9323abd2a614424", - "derivation_path": [ - "15971", - "2134", - "26403", - "10473", - "21698", - "19493", - "210", - "2801", - "30114", - "12982", - "28000", - "2643", - "29120", - "7290", - "31851" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 8854 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 131, - "unit": "lovelace" - }, - "address": "", - "id": "8c75457224974845871cab0d36505144429f36344c383551010645556e427845", - "derivation_path": [ - "28736", - "3716", - "8385", - "22250", - "19450", - "9744", - "7917", - "10234", - "19192", - "31786", - "5128", - "9788" - ], - "assets": [], - "index": 11246 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 123, - "unit": "lovelace" - }, - "address": "", - "id": "7b6664557ffa21681b7a2f019ca645144a0b2637971f6f600e7e6c3c7836291f", - "derivation_path": [ - "24302", - "19370", - "20579", - "28095", - "4474", - "15748", - "24615", - "21929", - "15110", - "22956", - "27505", - "6714", - "27626", - "16517", - "19322", - "20886", - "17025", - "13088", - "20670", - "30114", - "32608", - "2616", - "29019", - "28404", - "8262", - "18259" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 31020 - } - } - ], - "fee": { - "quantity": 190, - "unit": "lovelace" - }, - "outputs": [ - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 59, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 36, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 234, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 94, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 217, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 237, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "26891", - "26506", - "12053", - "28292", - "23437", - "5652", - "1549", - "30071", - "29780", - "20750", - "14985", - "12056", - "21945", - "6846", - "25498", - "16959", - "29844", - "5342", - "3942", - "4981", - "8737", - "14925" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 179, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 59, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 127, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - } - ], - "metadata": { - "4": { - "string": "𥏼" - } - }, - "id": "4e0a27574d2d17240a5042382057eb253418777f7a11e4017207334d207f3aca", - "collateral": [ - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 255, - "unit": "lovelace" - }, - "address": "", - "id": "381a74277e5f257b0426e60321a033593206c54a6a2c2b727d0f5258a25014c7", - "derivation_path": [ - "10675" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 29022 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "171c64165bcf04d96d2a34153a0a31347f22304c755d4c52680067331d012110", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 163, - "unit": "lovelace" - }, - "address": "", - "id": "f81800335b77909b20578458491a7bf012357e0f4a433276256c456b78043770", - "derivation_path": [ - "12403", - "9684", - "9870", - "3826", - "28589", - "9062", - "20993", - "9687" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 18031 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "297c7a0178293c36c9cc2c42a811145a0358121308f91b31273b070278e51e22", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "541de1cc51301d27587241033bd87def02335c6f202f044107e55b32127d5476", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 232, - "unit": "lovelace" - }, - "address": "", - "id": "67320bb74c6407702c7c1b125a3f492950087acc082b3a5b6343294f5a77ab29", - "derivation_path": [ - "8647", - "10346", - "1073", - "3364", - "12797", - "15899", - "13196", - "22764" - ], - "assets": [], - "index": 9487 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "4c3b67383652e608d617752c677b1e9f1d67f44879405d8b3ea754754319790e", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 53, - "unit": "lovelace" - }, - "address": "", - "id": "1b3d350505533b0b0a4d574665334a403f166f2e45864431613dd337a8108502", - "derivation_path": [ - "11174", - "16802", - "10015" - ], - "assets": [], - "index": 14291 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 182, - "unit": "lovelace" - }, - "address": "", - "id": "483f6d7b355c616a76305e254f14983a7670a866fa6a0f3e4f69106c3a475e32", - "derivation_path": [ - "32602", - "27270", - "19723", - "28556", - "21342", - "25070", - "15404", - "6482", - "13271", - "20372", - "5335", - "14167", - "20483", - "23438", - "16505", - "15554", - "28934", - "9882", - "5306", - "8103", - "25906", - "14705", - "23313", - "18752" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 9050 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 118, - "unit": "lovelace" - }, - "address": "", - "id": "6d0c35667e471311ba90020e0b79c30d4b39e9ce461dea2f30110400281e692d", - "derivation_path": [ - "31215", - "31673", - "17618", - "9886", - "30313", - "10558", - "19238" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 8147 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 128, - "unit": "lovelace" - }, - "address": "", - "id": "14120e2898743dcdc20b224b3a433e4a554f54602d77251b0b424b7b7c767b1d", - "derivation_path": [ - "29662", - "11310", - "21763", - "2618", - "12069", - "18968", - "27973", - "15955", - "22055", - "11316" - ], - "assets": [], - "index": 4483 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "address": "", - "id": "711a7065cc42411640210942654dfb0c7b71c877764a3d995069351e3e5a1101", - "derivation_path": [ - "20517", - "2609", - "19195", - "30531", - "18792", - "16832", - "19510", - "6360", - "27533", - "9623", - "19734", - "1390", - "19295", - "1569", - "31072", - "31789", - "7455", - "4697", - "3318", - "1832", - "24174" - ], - "assets": [], - "index": 22654 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "100501e4360e474835fc793c4e557f6321a62cb1ca16e67b08097726f2490924", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "090803644935ad07f751b2630d94771624774f3e462b5872f019dd0f1345400e", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "543018165a113d5e5c5b4d4d278bbe7b7707044959a97e5021691c1d7b030340", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "1172647a069e070f33af06216b8c13cd542264c62c5102160549365b61624205", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 113, - "unit": "lovelace" - }, - "address": "", - "id": "37763b21486a9e4b4316045e592b354d07394b40d14356013c16da39895ec852", - "derivation_path": [ - "15401", - "3162", - "23941", - "8521", - "28108", - "9652", - "27774", - "9098" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 2672 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 130, - "unit": "lovelace" - }, - "address": "", - "id": "2a793d6c33173eba2c80397a4c8d703d655e6060222c7b087727590c44332118", - "derivation_path": [ - "19261", - "11211", - "24263", - "11221", - "21575", - "12465", - "31397", - "20388", - "24268", - "26231", - "25818", - "6810", - "23342", - "27647", - "28867", - "5736", - "27590", - "10539", - "4169", - "25812", - "16744", - "26780", - "32278", - "27659", - "5725", - "12833", - "2687" - ], - "assets": [], - "index": 27064 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 230, - "unit": "lovelace" - }, - "address": "", - "id": "38ea642778262f31662c3d7f082840067776350126ff292c005c3534175b7314", - "derivation_path": [ - "8529", - "1679", - "9700", - "14506", - "16163", - "15321", - "27198", - "11993", - "16331", - "564", - "27494", - "31675", - "12579", - "17856", - "10779", - "16031", - "25141", - "3221", - "12525", - "11483", - "19988" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 57, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 4733 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "0a3d4f65387a2c77682c133b1c445831436755779b4d0a65832a736425564814", - "index": 0 - } - } - ] - }, - { - "withdrawals": [ + }, { "amount": { - "quantity": 80, + "quantity": 7, "unit": "lovelace" }, "context": "ours", "stake_address": "" }, - { - "amount": { - "quantity": 89, - "unit": "lovelace" - }, - "stake_address": "" - }, { "amount": { "quantity": 195, @@ -6160,15 +2402,7 @@ }, { "amount": { - "quantity": 239, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 29, + "quantity": 197, "unit": "lovelace" }, "context": "ours", @@ -6176,7 +2410,7 @@ }, { "amount": { - "quantity": 158, + "quantity": 153, "unit": "lovelace" }, "context": "ours", @@ -6191,35 +2425,37 @@ }, { "amount": { - "quantity": 168, + "quantity": 207, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 151, + "quantity": 50, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 55, + "quantity": 147, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 1, + "quantity": 179, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 59, + "quantity": 130, "unit": "lovelace" }, "context": "ours", @@ -6228,4231 +2464,9519 @@ ], "inputs": [ { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 139, - "unit": "lovelace" - }, - "address": "", - "id": "4302fa5f8368599529f1592e647d4477545d3f24c249782b36285c4e4b42a806", - "derivation_path": [ - "19498", - "111", - "26486", - "25835", - "30327", - "27938", - "18695", - "28028", - "26749", - "7628", - "19493", - "9497", - "5975", - "1213", - "9743", - "7080", - "3420", - "10995", - "22814", - "11945", - "21330", - "19721", - "32410", - "24743", - "22434", - "1926", - "24418", - "4280", - "27539", - "17095" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 922 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "f34c532a221618cd6263470d274e647f0b315663e8b121632b0b512d50063072", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 208, - "unit": "lovelace" - }, - "address": "", - "id": "8b1d0c3c016015194f052f1031497c2b3d6f2a56e67cff2a4028581d1df11553", - "derivation_path": [ - "16650", - "7855", - "20539", - "29966", - "30726", - "19483", - "23969", - "8818", - "9353", - "3643", - "6959", - "29872", - "8293", - "9762", - "27830", - "11389", - "21000", - "31787" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 19350 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "239fc3445054126a2462113779c51c214bdc5c6544bfda158e63443732284d0b", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "287e2e67813e6242506b09df6321261e7f54196d3b0ff147152c1c456f4e753d", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 85, - "unit": "lovelace" - }, - "address": "", - "id": "245d603d510c388e6b2146355a0ff6720e086d4d4d4c5e46306f0444cf2d7537", - "derivation_path": [ - "2903", - "25049", - "17863", - "16078", - "7949", - "8022", - "12803", - "25875", - "3586", - "1433", - "13701" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 24585 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "1ac4053156797c034b6e6a7241322a0258167171655757311f24017c717f0442", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "4e3c3f08527d1b230a750035cf83905d137e6807168162755f2c75066b683a20", - "index": 1 - } + "id": "294a3cab3b5d747c003123ac280e490482ceb02f683a55207d8a8d6f4a284271", + "index": 0 }, { - "tag": "ExternalInput", - "contents": { - "id": "03421947017015576609304f17649b555a7fbf206b2e4746064642aa3b130278", - "index": 1 - } + "amount": { + "quantity": 64, + "unit": "lovelace" + }, + "address": "", + "id": "45653e1255487f71021e6b66125024c44000704b246ae167a7057b05566d7e5c", + "derivation_path": [ + "2021", + "15042", + "20124", + "25728", + "25463", + "9365", + "1849", + "11444", + "6633", + "29825", + "28933", + "14874", + "27515", + "17637" + ], + "assets": [], + "index": 30079 + }, + { + "id": "412071347e7e520406167962b21107355f2a23667eb54800d42438bf6e306617", + "index": 0 + }, + { + "amount": { + "quantity": 17, + "unit": "lovelace" + }, + "address": "", + "id": "2108570a03013ea24e434c527662d43d1760565d506f5645240b705074000c22", + "derivation_path": [ + "12465", + "2820", + "14628", + "21176", + "12721", + "18519", + "16059", + "23405", + "13725", + "24282", + "16973", + "18342", + "8992", + "28039", + "30162", + "1648", + "28201", + "31973", + "30643", + "31490", + "2337", + "917" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 26981 }, { - "tag": "ExternalInput", - "contents": { - "id": "4f5d04587708267b09446503722e05200e595ef311126c53350f3bbd796e4d75", - "index": 1 - } + "id": "07792d64495d101d264e3e041e640551666bda243a60567f657309046c4c6568", + "index": 0 }, { - "tag": "ExternalInput", - "contents": { - "id": "0d4a782b6c694f50604c254f255e291e7cfa3c11d2081de62dcd6b93983e676a", - "index": 1 - } + "id": "6e1c1f7c771d036206723c4803bf3a7e6d73205a543f4e09537020a518b345e8", + "index": 1 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 16, - "unit": "lovelace" - }, - "address": "", - "id": "110da3307a1c3707ca55886db21e0f3d357449105964b622654b73c40a31751c", - "derivation_path": [ - "29710", - "9580", - "20378", - "23392", - "13554", - "1667", - "9359" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 33, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 67, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 13764 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "8f605b37092e052031272e7e745216535e6382006a016863052c5a68714c5908", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "303a4167e90e07cf90147ad1510b7e72715ec371af59a2783f295e1b787b5848", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "5d1637666acb00b45851222c1b60325374a8567af032720d6b07067cf70d1940", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 97, - "unit": "lovelace" - }, - "address": "", - "id": "407946267d1514103923044f65403a29680c034254a292504f61554252426aab", - "derivation_path": [ - "31136", - "17174", - "16396", - "10145", - "14301", - "15656", - "3063", - "23325", - "2410", - "14189", - "27736", - "27716", - "31536", - "21619", - "7074", - "29895", - "32422", - "5662", - "7514", - "22774", - "22549", - "20739", - "28369", - "23124", - "15300" - ], - "assets": [], - "index": 23763 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "6e7a767c111b392ad37b39015ebc7f36435507cc580b4b60fa6c245f61562765", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "38fb785d7a52a94f62cb41306a7e1f1c2e4cfe232eda4e37505b294473102717", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "4e7650463ad55042e44c02211d164f78065b3632140b295b6d7d2175340ea00c", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "715a62594f4ae51a03383ffbc47a6d6a762734122c532a1026c83653dd1d4368", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 28, - "unit": "lovelace" - }, - "address": "", - "id": "08c02a4879610955103142993a5acf1c1225186a15e46215650c18308b0c3852", - "derivation_path": [ - "4680", - "10622", - "31850", - "30969", - "13332", - "13544", - "6414", - "19186", - "13241", - "10160", - "30629", - "6319", - "4400", - "22835", - "8582", - "28784", - "23216", - "21195", - "32679", - "22427", - "12490", - "1044", - "3476", - "6808" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 7288 - } + "amount": { + "quantity": 58, + "unit": "lovelace" + }, + "address": "", + "id": "11110478444dcd119a22241430677a4f3f835507007432d44e644d073f3d56a9", + "derivation_path": [ + "15233" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 2411 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 25, - "unit": "lovelace" - }, - "address": "", - "id": "305034f96e5c14591f7321772753a3c6057162733e4f0153141a0366134142c5", - "derivation_path": [ - "16612", - "11706", - "9412", - "32141", - "32567", - "26070", - "9985", - "17276", - "27325", - "25993", - "719", - "10478", - "25662", - "24693", - "27956", - "14022", - "29710", - "22222", - "27945", - "16075", - "9279", - "19846" - ], - "assets": [], - "index": 21386 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "08102d73714732f42f08044d23793d444d160d2700ca75104257a96e6f061809", - "index": 0 - } - } - ], - "fee": { - "quantity": 106, - "unit": "lovelace" - }, - "outputs": [ - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 228, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 192, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "3640", - "247", - "16813", - "5330", - "26644", - "16676", - "6313", - "8333", - "15030", - "1070", - "24234", - "29220", - "19634", - "15607", - "19644" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 198, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } + "id": "125974ccc1247f074535427407a2a64371cc61585ce64e33801f602ebb60090f", + "index": 1 }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 8, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 249, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "14385", - "31442", - "14820", - "27873", - "24613", - "21100", - "8439", - "23007", - "1629", - "935", - "26041", - "3486", - "12156", - "7002", - "6354", - "14194", - "13056", - "5401", - "8399", - "26640", - "14100", - "403", - "2334", - "2332", - "5884", - "27899" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 41, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 245, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 38, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 43, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 254, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 123, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 124, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "9718", - "12845", - "3768", - "207", - "18712", - "3836", - "14459", - "11932" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "id": "34fc1c5a192d66250406a2d5467b6b3de4181678374c15c975985c08034900c1", + "index": 0 }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 176, - "unit": "lovelace" + "amount": { + "quantity": 96, + "unit": "lovelace" + }, + "address": "", + "id": "7136151212013a5f1b426e543b1e9d151d337250c25ea0c4000a06a50a5b7916", + "derivation_path": [ + "21574", + "21718", + "22322", + "3488", + "29332", + "14441", + "12106", + "3908", + "19270", + "13830", + "7583", + "11523", + "2292", + "14429", + "12112", + "17116", + "19782", + "3240", + "10225", + "7583" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 51, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "23736", - "10445", - "26466", - "12539", - "13986", - "22620" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 187, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 87, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "11377", - "27880", - "18141", - "28514", - "6407", - "21166", - "7139", - "27260", - "20159", - "875", - "21569", - "15612", - "27463", - "11439", - "12209", - "6796", - "15156", - "9753", - "388", - "3946", - "11903", - "17050", - "14231" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 63, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 97, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "7473", - "29853", - "5659", - "11050", - "30269", - "15446", - "8857", - "729", - "26136", - "14177", - "20156", - "25064", - "5694", - "20953", - "15724", - "10038", - "10448", - "25600", - "4630", - "12507", - "1135", - "436", - "12032", - "29586", - "30143", - "19043", - "4774", - "26475", - "16461", - "29197" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 18498 }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 97, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 111, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "2349", - "11500", - "10766", - "1911", - "32147", - "10326", - "14073", - "720", - "15627", - "4626", - "24982", - "23360" - ], - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 89, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } + "id": "0406cfd9074c74dfbc4e5c971068637118727153562c0936214a2d573b0d4d1c", + "index": 1 }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 22, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "amount_incoming": { - "quantity": 62, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "17010", - "23859", - "5037", - "19060", - "28955", - "27480", - "2321", - "18935", - "11098", - "7881", - "27280", - "13293", - "12923", - "12149", - "2014", - "26817", - "2357", - "17045", - "8085", - "26359", - "13615", - "8626", - "9856", - "24393", - "29525", - "29743", - "25749", - "1177" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 181, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "id": "264d2196440f6f470153460d7b564b7f1c30f15a7761a76b5e050a7424352c4b", + "index": 0 }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 57, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } + "id": "0c787512453196505c0c56590472721b093c24504438e37c79718a655538522e", + "index": 1 }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 199, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } + "id": "441d560c38385154be24386c6f0d5577597256231dbb296e194d0433531b7546", + "index": 1 }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 28, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 240, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 215, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "18601", - "30477", - "8722", - "6433", - "17928" - ], - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 108, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } + "id": "41e94e196f4408686669523b3768157753795c7d02d754179f135f31d1875f15", + "index": 0 }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 235, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 52, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "69", - "12928", - "26687", - "15502", - "5719", - "32546", - "8716", - "30657" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 168, - "unit": "lovelace" + "amount": { + "quantity": 150, + "unit": "lovelace" + }, + "address": "", + "id": "360a9b5016640d6cd712456200013fa512435c7d0194514a1831506b72435677", + "derivation_path": [ + "1964", + "25512", + "32670", + "31369", + "15893", + "18218", + "17965", + "26256", + "11681", + "7195", + "19195", + "425", + "2608", + "10643", + "30647", + "785", + "29573", + "26349", + "9099", + "24236", + "24531", + "26723" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 38, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 159, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "3190", - "32196", - "26660", - "7171", - "7801", - "27669" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - } - ], - "script_validity": "valid", - "metadata": { - "10": { - "list": [ { - "list": [ - { - "bytes": "217e644f9a3c0531193d37b3c6ee5804582c3448766978" - }, - { - "string": "𭗓𰯵" - } - ] + "asset_name": "546f6b656e45", + "quantity": 32, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "list": [ - { - "list": [ - { - "bytes": "5651783281a53c64311c3a4f6e4333646b4d17df7a" - } - ] - } - ] + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "map": [ - { - "k": { - "string": "􇣡" - }, - "v": { - "bytes": "496a5c20103475797a751b0c50653b1e0d370eff5d2f4933055441112c684155df" - } - }, - { - "k": { - "string": "􏉫" - }, - "v": { - "string": "󻇷맠􌩺􍑞" - } - } - ] + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 32, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] - } - }, - "id": "4d49a9162203593d737f0b4c16a317471b5c843a677c4704515103dd694e1971", - "collateral": [ - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 28, - "unit": "lovelace" - }, - "address": "", - "id": "c13f374f05a8526b35e40b36703d1aba6e2f6d2a1c5f6a2c7d14311550125860", - "derivation_path": [ - "4847", - "21868", - "26361", - "21828", - "1609", - "1339", - "13897", - "15859", - "30378", - "17958", - "20274", - "12966", - "31357", - "15115", - "23072", - "792", - "21970", - "32755", - "3142", - "3255", - "27871", - "20145", - "17875", - "28130", - "20134", - "31728" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 32, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 25215 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 168, - "unit": "lovelace" - }, - "address": "", - "id": "6b13603c76315fac350367e5214ed54b326b4f66426f52750c1c576d1b0e6e74", - "derivation_path": [ - "24257", - "19342", - "2342", - "27027", - "6523", - "2625", - "21410", - "27343", - "29953", - "26602", - "23705", - "3435", - "17178", - "26711", - "28163", - "26117", - "1432" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 14023 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "1a1a7e1a346d553d13562c426e0b5c7a00dc28c0703c2c327d354c4316da0016", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 218, - "unit": "lovelace" - }, - "address": "", - "id": "38083d391283536535a8621b62d910b050cd482e354e39402f131b445e996905", - "derivation_path": [ - "24684", - "26712", - "27517", - "32654", - "16139", - "8186", - "10140", - "21863", - "12027", - "24988", - "4363", - "11513", - "16049", - "18245", - "13002", - "23781", - "15530", - "21701", - "19228", - "5826", - "12017", - "25965", - "17535", - "14812", - "30173", - "24334", - "17814", - "24170", - "2145" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 19811 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "2c5970132777f9005456100f4715567769c08c21874968972027203e4e5f744f", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 222, - "unit": "lovelace" - }, - "address": "", - "id": "7406737b47591b7a673b2048766b4d2e2a74582a4b21075e40fb63ab7a284134", - "derivation_path": [ - "11372", - "19137", - "17517", - "4954", - "6233" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 37, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 23498 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "4a2c8c740edce5c16d5e7f36b3db251e0576320a2145f17e2243d29c2c74355e", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "596d1c4b156b48084b554eb44657762a7d710e54771027ac713056232ca02e6a", - "index": 1 - } + ], + "index": 2647 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 55, - "unit": "lovelace" - }, - "address": "", - "id": "7a056b46482c40f5460846415d142a293662c743c942664a07a57c0405111451", - "derivation_path": [ - "14728", - "23", - "31771", - "22041", - "13607", - "6710", - "14854", - "22399", - "27156", - "5129" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 37, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 16995 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 201, - "unit": "lovelace" - }, - "address": "", - "id": "5441696505121b1855696c48ac01404177b918c6014b66b123db111e20515e49", - "derivation_path": [ - "6057", - "8808", - "18610", - "25995", - "24345", - "7914" - ], - "assets": [], - "index": 29013 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 23, - "unit": "lovelace" - }, - "address": "", - "id": "326a457928a441ec0270406a42737b3f1c005f7e00c42847a87e77eb467f511f", - "derivation_path": [ - "3076", - "7684", - "1451", - "3000", - "15270", - "20846", - "2295", - "18552", - "23472", - "2760", - "15024", - "24403", - "28951", - "16712", - "6395", - "6257", - "15901", - "14821", - "29082", - "1185", - "8147", - "7176", - "12240", - "1541", - "7025", - "6762", - "23823", - "17400", - "5311" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 43, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 5858 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "6d564b392d642f6c084c745c4b2eba2465ab3b3c2a1557616c594a0b82456881", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 71, - "unit": "lovelace" - }, - "address": "", - "id": "552f5c8d397c74273fb30e014a034c78136dbb54115d4d5362510c465004134e", - "derivation_path": [ - "8971", - "6615", - "32757", - "27876", - "20249", - "28227", - "31055", - "11079", - "4224", - "20362" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 9422 - } + "id": "1f0808212c167448237c34b9fd926d14067c2d67540d137b0f3c45160b0f5879", + "index": 1 }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 55, - "unit": "lovelace" - }, - "address": "", - "id": "191800764a157201657c7b740468301b1a2aa41133645f5d6d4390701e743e38", - "derivation_path": [ - "8305", - "1707", - "2683", - "23039", - "25744", - "21474", - "1149", - "25403", - "21081", - "18734", - "10083", - "365", - "31462", - "11839" - ], - "assets": [], - "index": 8819 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 14, - "unit": "lovelace" - }, - "address": "", - "id": "3c1f592b7c4867f5d61b2c5d1040402128242fb43c3c2a18fc75881c04754344", - "derivation_path": [ - "3934", - "8387", - "20094", - "2141", - "21429", - "8855", - "12305", - "18295", - "29965", - "4673", - "5473", - "3343", - "21234", - "11602" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 10287 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "073d53572d097d775c2740563c7fc90b6b40944d48002b60311d20613d5814ac", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 125, - "unit": "lovelace" - }, - "address": "", - "id": "fc4d6c18e55a6078491190454844714d0e71223e782f2b058585a06d665a171e", - "derivation_path": [ - "21713", - "21512", - "19159", - "15621", - "6418", - "9226", - "2321", - "28645", - "6151" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 39, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 17634 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "5d359b26472bbe286755202e1d191f57702c2e4e2e28004727364c46fc414125", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "724761360bc3142f7916441b487e1c2d552f3595c9071125b61a4e494c660e25", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "0822037c51247a205214471ca8761b0d139cf54a4528135d7c642a74757e5e86", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 179, - "unit": "lovelace" - }, - "address": "", - "id": "666f693300156400463f0f9a7201600a770c2943165b1a5750912c2776556834", - "derivation_path": [ - "21660", - "15132", - "26075", - "15525", - "28080", - "24101", - "10299", - "3811", - "8337", - "1431", - "32245", - "29033", - "19480", - "17011", - "25959", - "4463", - "19052", - "31579", - "7659", - "1494", - "10504", - "14550", - "4620" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 49, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 40, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 36, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 12207 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "6ed9452d8a11717c46322ff3467d4952176c7748521e4a5b7b5314a67c0e4c14", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "079b7853994a405d127a83766c76347f3137c1623c7873cf1e647f692928c15a", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 125, - "unit": "lovelace" - }, - "address": "", - "id": "5f624c27317a401d12410763d13a5e046f63583339883c0ce011088b69782973", - "derivation_path": [ - "25829", - "12348", - "27487", - "29407", - "13221", - "25918", - "28342", - "20465", - "20684", - "5930", - "11447", - "15870", - "17120", - "2425", - "29541", - "6110", - "27245", - "18350", - "31927", - "1168", - "23355", - "25872", - "30155", - "18788", - "955", - "2636", - "9413" - ], - "assets": [], - "index": 9926 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "73d42b51523a1a522d7d67524b1b66ae500e2b3a2d305b3f34643f2c6b3e5ba8", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "00a807ff0ed6135a395b4c502607094e570c420032ca2d74740904331b467472", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "7a15130b79630068200501081e7c1244345c5e2e22001d68683fa2d9222c019a", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 28, - "unit": "lovelace" - }, - "address": "", - "id": "8308793236083a2136510b3a7a5139111e1c45023f07492677121f6822010106", - "derivation_path": [ - "30617", - "11808", - "13312", - "19258", - "10909", - "254", - "6639" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 26160 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "2e54250c3254071c517e682558193d0e5e031f5e260c2c22a3636d6921262742", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 189, - "unit": "lovelace" - }, - "address": "", - "id": "3f3f0531242e16a41361a55fc4365501695e4d7565326e7713762a2f20e2183a", - "derivation_path": [ - "23587", - "26060", - "27205", - "15279", - "25577", - "2120", - "6898", - "31488", - "28493", - "12186", - "9282", - "1655", - "32306", - "20197", - "11514", - "22933", - "20221", - "16358", - "31495", - "12625", - "8261", - "13531", - "31217", - "21798", - "13099", - "1200", - "3762" - ], - "assets": [], - "index": 32716 - } - } - ] - }, - { - "withdrawals": [ { "amount": { - "quantity": 162, + "quantity": 68, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "c807bc33f43328000a66703657492a7a33390c5545272e3a790b7861761f3b9e", + "derivation_path": [ + "1800", + "13066", + "6522", + "22235" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 37, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 2870 }, { - "amount": { - "quantity": 105, - "unit": "lovelace" - }, - "stake_address": "" + "id": "48c2057c713708474f6b0e18170644fc343fe61b109018e18d3d5317a2732c17", + "index": 1 }, { "amount": { - "quantity": 136, + "quantity": 164, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "3561161135746b2879715b47125a473e6317153472522a7b4ffd563a5c5b4212", + "derivation_path": [ + "13140", + "13150", + "22482", + "8420", + "12283", + "32172", + "28865", + "20557", + "1493", + "20708", + "17822", + "8497", + "6565", + "4573", + "9253" + ], + "assets": [], + "index": 6627 }, { - "amount": { - "quantity": 62, - "unit": "lovelace" - }, - "stake_address": "" + "id": "57156e6359691f3532c03f2e127453493246e9281c69370a17132347712e13c2", + "index": 1 }, { "amount": { - "quantity": 135, + "quantity": 174, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "2c9d5792647b763460797e434b7798af85671a453a1f7a6d975b77516d31521c", + "derivation_path": [ + "12046", + "8078" + ], + "assets": [], + "index": 18629 }, + { + "id": "2e017a5d5b7d61f31bdd4c781f24337e0b7c275a6a1a3a226c4e11191117270f", + "index": 1 + } + ], + "fee": { + "quantity": 113, + "unit": "lovelace" + }, + "outputs": [ { "amount": { - "quantity": 58, + "quantity": 107, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "amount": { - "quantity": 139, + "quantity": 114, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 71, + "quantity": 127, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 158, + "quantity": 231, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 240, + "quantity": 166, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 204, + "quantity": 46, "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 222, + "assets_incoming": [], + "amount_incoming": { + "quantity": 66, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "derivation_path": [ + "7307", + "51", + "27759", + "10841", + "4566", + "27987", + "27188", + "25138", + "29579", + "20861", + "12198", + "17411", + "3712", + "25872", + "7103", + "16402", + "16994", + "19923", + "18906", + "32287", + "16401", + "14935", + "24048", + "20108", + "26386", + "27394" + ], + "assets": [] }, { "amount": { - "quantity": 245, + "quantity": 92, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" - }, - { + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 55, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 52, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { "amount": { - "quantity": 231, + "quantity": 147, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 41, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 22, + "quantity": 213, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 53, + "quantity": 39, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 51, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 54, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 234, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "20650", + "2785", + "7131", + "19779", + "26539", + "12168", + "5741", + "17791", + "15364", + "4774", + "29189", + "5274", + "12982", + "13870", + "10650", + "12882", + "25698", + "19665", + "15032", + "19453", + "4591", + "12354", + "10548", + "32266", + "19874" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 162, + "quantity": 183, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 37, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 34, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "32344", + "28543", + "22081", + "4879", + "21997", + "13263", + "20046", + "24086", + "27117", + "1944", + "25652", + "9021", + "21444", + "18170", + "19791", + "22068", + "19879" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "amount": { - "quantity": 179, + "quantity": 175, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 33, + "quantity": 9, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 219, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "11851", + "29537", + "13108", + "25477", + "21005", + "31043", + "16218", + "17948", + "423", + "7987", + "23401", + "12411", + "23792", + "8888", + "3856", + "1212", + "13259", + "11429", + "1200", + "27509", + "10145", + "20881", + "9998", + "29562" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "amount": { - "quantity": 197, + "quantity": 62, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 45, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 64, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10751", + "5518", + "29818", + "26594", + "7838", + "6744", + "10417", + "18781", + "21192", + "32376", + "2185", + "23092", + "19573", + "2193", + "22441", + "28414", + "6139", + "27321", + "8648", + "975", + "3352", + "25015", + "10841", + "17691", + "27634", + "29109", + "19684", + "32493", + "30738" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 45, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 24, + "quantity": 106, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 67, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "1231", + "10757", + "6016", + "16635", + "5455", + "13438", + "25086" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 35, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 108, + "quantity": 79, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 228, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "9841", + "31933", + "19550", + "20246", + "30098", + "11883", + "2600", + "15659", + "18920", + "26286", + "19046", + "22021", + "2583", + "21709", + "11317", + "17067", + "4039", + "22153", + "2529", + "18480", + "25355", + "24734", + "10556", + "2023", + "32178", + "12328", + "22733", + "26730", + "6423", + "20170" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "amount": { - "quantity": 146, + "quantity": 20, "unit": "lovelace" }, - "stake_address": "" - } - ], - "inputs": [ + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, { - "tag": "ExternalInput", - "contents": { - "id": "1b47326c4373e8746d1c740b080b478047df693e067758722ad4d16841c40910", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "68274b62144916627d2008442e09b2681533839f7a5b6f2a5d880ac3336e645c", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "6324066c733a502114602a570f2640535013647b75b65efb6a5028599b073f36", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 182, - "unit": "lovelace" - }, - "address": "", - "id": "24700378582d271c0a4e78413d216b3826365922677e3615632a3337347c2876", - "derivation_path": [ - "30641", - "8142", - "25485", - "27333", - "24993", - "1710", - "11076", - "1048", - "21413", - "12634", - "23653", - "27208", - "1462", - "30313", - "18485", - "30515" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 42, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 1665 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "c4350b96b50e5b572355077073243332145f5b632a7815360b2b5122136a7e72", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 134, - "unit": "lovelace" - }, - "address": "", - "id": "662d21281c2d50a063101c43e2d0030c107a507633970a39370e2702356d0e19", - "derivation_path": [ - "4416", - "3539", - "11085", - "11817", - "26647", - "9436", - "12214", - "10241", - "21343", - "22704", - "28424", - "14096", - "32747", - "2421", - "461", - "20815" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 912 - } + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 25, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8780", + "24215", + "21550", + "22158", + "18175", + "4198", + "19401", + "2299", + "12057", + "19818", + "3881", + "32001", + "32491", + "315", + "9426", + "32461", + "1846", + "12258", + "4351", + "1068", + "719", + "11683" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { - "tag": "ExternalInput", - "contents": { - "id": "e3487915fb7d601ae26ea95001cd28179f2ca2340bde007c773ebf3c75d8432d", - "index": 0 - } + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 159, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10532", + "11939", + "25068", + "3739", + "24080", + "24668", + "6128", + "22448", + "16145", + "22297", + "18613", + "15682", + "17663" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "ExternalInput", - "contents": { - "id": "77649651130a4f4d557371445c0106214632684a62330c53146077092b42120d", - "index": 1 - } + "amount": { + "quantity": 92, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 39, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "22974", + "7690", + "10217", + "14693", + "9363", + "6954", + "25673", + "16604", + "6881", + "14813", + "29162", + "24768", + "10194", + "4273", + "31506", + "15434", + "28737", + "12956", + "15009", + "17193", + "22957", + "20051", + "29638", + "28828", + "15642", + "24800", + "32241" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + ], + "metadata": { + "8": { + "list": [ + { + "bytes": "4f751850443e6c2707" + }, + { + "int": 3 + }, + { + "map": [] + } + ] + } + }, + "id": "281c364a437334190c342a5a7c733c5adc513c50410859341925074f10303164", + "collateral": [ + { + "id": "e736ea402a58371534476b2a9547d51b453579232f1f450e0e66059f9d6e0f85", + "index": 0 }, { - "tag": "ExternalInput", - "contents": { - "id": "eb8b38333d122ba7475c413a493050172268564746204f062f7130113a6e59e8", - "index": 0 - } + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "address": "", + "id": "7c4230741f147c58166576104b244a080c4c6a1c33556d8c2e5c6b162343b628", + "derivation_path": [ + "32286", + "11383", + "11905", + "22509", + "15446", + "6940", + "27988", + "21643", + "25329", + "17999", + "7128", + "18333", + "21927", + "31412", + "3266" + ], + "assets": [], + "index": 9850 + }, + { + "id": "11712b43cd6500577a1a4103446913a768195422096f4b6baa7303745cca4554", + "index": 1 + }, + { + "amount": { + "quantity": 79, + "unit": "lovelace" + }, + "address": "", + "id": "0463476e931963381b192872556344147f2a0c5619300d64263eef33475d3075", + "derivation_path": [ + "21358", + "8051", + "30627", + "23732", + "30770", + "29386", + "8462", + "1427", + "10690", + "20979", + "15431", + "552", + "26445", + "30467", + "10130", + "19464", + "14183", + "24160", + "5817", + "6724", + "15767", + "3192", + "13475", + "6397", + "16168", + "26922", + "906", + "22864", + "17066" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 27425 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "address": "", - "id": "78551f12154f2b02715097714750d5754e013839ee053f0a1f5d361959763e4e", - "derivation_path": [ - "7138", - "16263", - "24314", - "29437", - "28556", - "19091", - "26672", - "23158", - "7031", - "12205", - "5662", - "21390", - "9079", - "32115", - "12322", - "24273", - "17886", - "23302", - "11774", - "12679", - "9507", - "29798", - "6404", - "6541", - "20272", - "30520" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 45, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 46, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 4155 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "2a584b27644600ab6161543ffd6e77771b45806a5f0e52055fb8ee4add5411e2", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 186, - "unit": "lovelace" - }, - "address": "", - "id": "62a56a550121397b143a6d94e46e7a3905190531556c1b4154091f14217d453c", - "derivation_path": [ - "2757", - "24157", - "11693", - "20268", - "31111", - "13775", - "19341", - "23089", - "25877", - "11364", - "9442", - "31410", - "8252", - "30240", - "26758" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 11465 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 211, - "unit": "lovelace" - }, - "address": "", - "id": "10251a1c0d444953020a19af6cf2066a124073332327622549219631667e7861", - "derivation_path": [ - "28778", - "21036", - "6160", - "9538", - "10254", - "11335", - "13684", - "20657", - "190", - "2785", - "28577", - "19453", - "23258" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 8093 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "6951395bfb35197237792b5d4f541b5711f2623266243f1701ed0b18260e0006", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "54571835683318824d2c24813d685b3b4f5a253d0d2abebc4224635e1a4c823f", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 230, - "unit": "lovelace" - }, - "address": "", - "id": "6bef28513f447ef27414971b0b682755321b8e553a91445f44002f1602454b68", - "derivation_path": [ - "6857", - "2159", - "9974", - "15812", - "11624", - "20072", - "85", - "19081", - "24370", - "20569", - "29496", - "19365", - "18779", - "18110", - "19997", - "14630", - "7632", - "13742", - "343", - "22078", - "27901", - "17574", - "11847", - "15070", - "24784", - "12597" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 33, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 13 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 253, - "unit": "lovelace" - }, - "address": "", - "id": "3974826d0e7e6c5b730c5a187d552a2c1420075f614bf0d37c295e1c113dcd63", - "derivation_path": [ - "1478", - "23392", - "18636", - "23373", - "23790", - "18238", - "14671", - "13659", - "922", - "13761", - "462", - "16776", - "25529", - "7400", - "32135", - "10311", - "24614", - "15544" - ], - "assets": [], - "index": 7594 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "9c26781a7a3a211d6650070e606c2951731c6d040856ea221f5903c920775dcb", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "1f6e2f68ef7e406d61c1e82675286b0c0d6b58f757450e5183606b3a1e4c191b", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 142, - "unit": "lovelace" - }, - "address": "", - "id": "568a4c861cd37e1d5c3c6b342704615410720c5528376f647e4c2b5349507208", - "derivation_path": [ - "24351", - "466", - "4135", - "13846", - "16323" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 4244 - } + "amount": { + "quantity": 51, + "unit": "lovelace" + }, + "address": "", + "id": "611a6e6f720f07627e1f6d06165d43260272776513083079342a417155b45a38", + "derivation_path": [ + "15072", + "270", + "2476", + "29493", + "20845", + "25312", + "30374", + "9398", + "28755", + "29346", + "3724", + "22896", + "6265", + "30680", + "12627", + "29678", + "13484", + "25282", + "14650", + "1863" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 26947 }, { - "tag": "ExternalInput", - "contents": { - "id": "644021541e5c2f6d48602410de7e677031e4270b4209698b675018643b506a2a", - "index": 1 - } - } - ], - "fee": { - "quantity": 100, - "unit": "lovelace" - }, - "outputs": [ + "amount": { + "quantity": 151, + "unit": "lovelace" + }, + "address": "", + "id": "45127874376d25136f517b205675114e2c2265427241ea0f5a155751104b3e41", + "derivation_path": [ + "13836", + "11300", + "6808", + "24766", + "2902", + "20392", + "3683", + "11922", + "21450", + "11049", + "8593", + "1319" + ], + "assets": [], + "index": 5076 + }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 243, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } + "id": "4a17633b166f2975531b347d1f5e208e267a6b431de7434050e239151d6a4a43", + "index": 1 + }, + { + "amount": { + "quantity": 241, + "unit": "lovelace" + }, + "address": "", + "id": "e44827370480707af1031c1ffe334856485e4bf0177abd5a69781c7921e00ec6", + "derivation_path": [ + "23589", + "5148", + "24178", + "27740", + "29082", + "11369", + "27857", + "26338", + "1456", + "1521", + "4746", + "5083", + "7511", + "9539", + "25845", + "7783", + "19323", + "26558", + "32344", + "2346", + "2892", + "10421", + "25433", + "28298", + "4335", + "29553", + "10278", + "17549", + "5464", + "5194", + "27940" + ], + "assets": [], + "index": 1482 + }, + { + "id": "11514d71717bfb1917625fec7b85197c4f3b532c3f206abc5f5d272258797535", + "index": 0 + }, + { + "id": "1b44634e775f77660a1b694042222a5ad5721933603d5b3782444e057b026959", + "index": 0 + }, + { + "id": "76321503211e312c2b736d033e36625f49311e74454b481b09553a572a4f4c5c", + "index": 0 + }, + { + "id": "02687c5b424e1a07621e2a0f36706a0239807a1c39357671564f5fd428bd2e26", + "index": 1 + }, + { + "id": "38763556577cdbed44631957288a252c77357df8434134605e8e1b436e1d601f", + "index": 1 + }, + { + "id": "28417c6e124d072ef2710c46366609429fe53152724134c82976408b5e75226e", + "index": 0 + }, + { + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "address": "", + "id": "5043b9662701d04a03cc43077bf044062321776c63677b726a5738071d353580", + "derivation_path": [ + "6529", + "12571", + "10067", + "21700", + "25478", + "13018", + "18327", + "21385", + "22395", + "27448", + "12873", + "30400", + "7334", + "30137", + "13902", + "7832", + "32342", + "1541" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 16043 + }, + { + "id": "317d4f875b22056d4cab7e71272b35144d0007161e121ac42948b7665d024508", + "index": 0 } - ], - "script_validity": "valid", - "metadata": null, - "id": "046976501c7f207c5a36366c5a443c6a7162b7625b39066e736f38444f537b66", - "collateral": [] + ] }, { - "withdrawals": [], - "inputs": [], - "fee": { - "quantity": 251, - "unit": "lovelace" - }, - "outputs": [ + "withdrawals": [ { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 201, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 224, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "amount": { + "quantity": 96, + "unit": "lovelace" + }, + "stake_address": "" }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 21, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 35, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 179, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 42, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 139, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 209, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "26368" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 137, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 207, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 234, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "26989", - "15060", - "29549", - "25756", - "21508", - "16419", - "2600", - "7457", - "14565", - "19254", - "7695", - "32387", - "19681", - "17798", - "19157", - "27586", - "12433", - "6558", - "20270", - "20679", - "31792", - "8661", - "5840", - "27769", - "25691", - "18024", - "20132", - "9079" - ], - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 191, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } + "amount": { + "quantity": 32, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 23, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 193, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 44, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "amount": { + "quantity": 25, + "unit": "lovelace" + }, + "stake_address": "" }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 48, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 53, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 45, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 78, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "10833", - "4773", - "21749", - "23666", - "12186", - "12128", - "10591", - "17711", - "32305", - "457", - "10803", - "8880", - "30875", - "2019", - "14820", - "18875", - "22765", - "24284", - "24462", - "23012", - "14388" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 75, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 214, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 153, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "28576", - "20038", - "29909", - "23813", - "23552", - "28258", - "388", - "2440" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } + "amount": { + "quantity": 45, + "unit": "lovelace" + }, + "stake_address": "" }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 62, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 113, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "12571", - "13036", - "30675", - "14887", - "13033", - "9723", - "14269", - "17075", - "19848", - "11739", - "5855", - "28382", - "24677", - "714", - "27499", - "26367", - "8662", - "13465", - "6324", - "16405", - "2538", - "2239" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 128, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } + "amount": { + "quantity": 44, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 167, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 44, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "24748", - "19696", - "4536", - "24004", - "25219", - "29817", - "26436", - "31482", - "29775", - "17547", - "22486", - "9810", - "32215", - "14340", - "30031", - "1813", - "610", - "27344", - "16097", - "23397", - "25714", - "25429" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } + "amount": { + "quantity": 118, + "unit": "lovelace" + }, + "stake_address": "" }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 240, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 37, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 141, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 0, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 47, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 51, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 67, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 244, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 128, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "amount": { + "quantity": 206, + "unit": "lovelace" + }, + "address": "", + "id": "556c3d5722a5350144a72a764960a921710516391b20626b1583756d269b2a2f", + "derivation_path": [ + "3071", + "2262", + "149", + "17832", + "22142", + "25633", + "11142", + "14350", + "23595", + "21719", + "2549", + "21922", + "23", + "3518", + "14289", + "12558", + "10274", + "12086", + "11808" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 23879 + }, + { + "id": "0c3f606220380e7d1010cf565d54781420655182122fcc471a2a329f661d05e4", + "index": 1 + }, + { + "amount": { + "quantity": 131, + "unit": "lovelace" + }, + "address": "", + "id": "7b8f4603642a74380d7c3503351f6f691e7e4d3271ba697b0f70711b3a5f000a", + "derivation_path": [ + "3531", + "31954", + "29342", + "5840", + "5823", + "8571", + "25191", + "9951", + "18268", + "22930", + "496" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 12332 + }, + { + "amount": { + "quantity": 251, + "unit": "lovelace" + }, + "address": "", + "id": "1a86093a79900a4f58d378790876740ee75275494431072c676a4b6461869240", + "derivation_path": [ + "31235", + "11289", + "3251", + "31387", + "16425", + "21327", + "24525", + "29678", + "7343", + "15125", + "26448", + "15814", + "19264", + "2578", + "19998", + "8229", + "30477", + "28470", + "6510", + "21990", + "5444", + "23241", + "9981", + "19664" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 12464 + }, + { + "amount": { + "quantity": 57, + "unit": "lovelace" + }, + "address": "", + "id": "4c231a6b7f346220802611322d0465445c2b102a3a50253d1b7e282732204166", + "derivation_path": [ + "27897", + "17466", + "6428", + "18891", + "26614", + "4048", + "17746", + "26962", + "12052", + "7499", + "28805", + "23211", + "140", + "31708", + "3161", + "5641", + "12907", + "31259", + "10294", + "23426", + "31671", + "26170", + "1405", + "15333", + "15670", + "14950" + ], + "assets": [], + "index": 26601 + }, + { + "amount": { + "quantity": 227, + "unit": "lovelace" + }, + "address": "", + "id": "0e704e7c2358f42293629a2f4b2b003617980b371411c44fd5f7224636472272", + "derivation_path": [ + "13554", + "16660", + "12688", + "17507", + "11688", + "22827", + "21543" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 5743 + }, + { + "amount": { + "quantity": 25, + "unit": "lovelace" + }, + "address": "", + "id": "442f3691c1174f6b593838b0b93e4d77570a596ec5dde108774129776a561572", + "derivation_path": [ + "21792", + "267", + "11038", + "27581", + "9438", + "23162", + "10944", + "1881", + "7018", + "30953", + "15623", + "3255", + "17180", + "12723", + "13228", + "4207", + "20934", + "3055", + "7993", + "20497", + "4753", + "258", + "5504" + ], + "assets": [], + "index": 18607 + }, + { + "id": "f6334e4c3a1640593d224204a678694b3e314f5fa1974a8b5d347b376c266919", + "index": 0 + }, + { + "id": "112542578710c41fa74768056e6d1e5b49203546c70142100431202d3d6a484f", + "index": 1 + } + ], + "fee": { + "quantity": 116, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 32, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 52, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "11599", + "10803", + "28952", + "30779", + "25319", + "9935", + "10535", + "3962", + "7164", + "24732", + "32384", + "16342", + "4002", + "24714", + "6660", + "14430", + "10985", + "8095", + "30500", + "24689", + "11714", + "13721", + "15159", + "274", + "2213" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 203, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 89, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "28799", + "2616", + "30615", + "26607", + "18332", + "3620", + "13773", + "3851", + "5298", + "12242", + "8083", + "12885", + "19020" + ], + "assets": [] + }, + { + "amount": { + "quantity": 228, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 122, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "15557", + "20269", + "23099", + "6227", + "9662", + "4517", + "19615", + "6493", + "98", + "31633", + "24208", + "24515", + "21026", + "12059", + "5439", + "2754", + "11511", + "11575", + "32458", + "18704", + "21690", + "22855", + "17467", + "15081", + "2809", + "21369", + "15197", + "20555", + "12505", + "4477" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 216, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 208, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "32280", + "21267", + "13946", + "30723", + "25685", + "22388", + "16872", + "10535", + "15194", + "25610", + "24717", + "30695", + "4571", + "23837", + "26461", + "15709", + "9201", + "1732", + "1732", + "30232", + "8483" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 198, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 79, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26655", + "15814", + "24791" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", "quantity": 57, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "27391", - "23892", - "26073", - "17860", - "16847", - "27109", - "22512", - "12539", - "28464", - "1210", - "20371", - "11042", - "23981", - "15427", - "2836", - "9229", - "3243", - "12250", - "8526", - "16592" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 247, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 224, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "408", - "7097", - "4214" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 115, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 234, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 247, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "13868", - "16484", - "4996", - "7786", - "11408" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 205, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 200, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "30716", - "15473", - "23664", - "23555", - "13430", - "19230", - "24594", - "22695", - "29658", - "21900", - "2871", - "20122", - "1915", - "16316", - "28252", - "16789", - "22293", - "1023", - "17678", - "25980", - "15270", - "16579" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 170, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 90, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "16316", + "325", + "22548", + "11978", + "18344", + "1795", + "231", + "14703", + "24995", + "24545", + "30764", + "21083", + "7713", + "17243", + "14283", + "8379", + "25430", + "30477", + "6763", + "26643", + "31374" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 98, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 75, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "27563", + "19656", + "31250", + "22494", + "624", + "21042", + "28876", + "21153", + "12763", + "31757" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 147, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 118, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 103, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 134, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "2982", + "13025", + "21203", + "28551", + "16899", + "3816", + "5262", + "18168", + "27178", + "24702", + "8822", + "28611", + "22404", + "28011", + "24794", + "2273", + "24560", + "12177", + "7870", + "31012", + "5576", + "6991", + "14292", + "29092", + "30167", + "22992", + "27477", + "6709", + "22284", + "7917" + ], + "assets": [] + }, + { + "amount": { + "quantity": 246, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 152, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 93, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 122, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 71, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 43, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 246, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "27633", + "8076", + "22577", + "11282", + "28286", + "26609", + "6194", + "18233", + "31553", + "28305", + "30299", + "29140", + "2599", + "5483", + "29434", + "2607", + "28538", + "8652", + "30327", + "15550", + "346", + "14321", + "2304", + "18457", + "18216", + "7262", + "4921", + "19180" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 174, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 109, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 160, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "12683", + "29394", + "28853", + "2410", + "11937", + "26058", + "11439", + "5298", + "6066", + "779" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 32, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 135, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 159, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 28, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "15365", + "13906", + "30487", + "11983", + "17424", + "18922", + "26172", + "25870", + "12068", + "15392", + "29096", + "29202", + "17741", + "12995", + "3490", + "4526", + "16242", + "23733", + "21916" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 225, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 152, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "5942", + "3886", + "9939", + "27415", + "32391", + "20073", + "29686", + "24981", + "11081", + "18366", + "8837", + "32678", + "24891", + "14857", + "11937", + "16812", + "19181" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 161, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 46, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 16, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "21256", + "19697", + "5643", + "14671", + "23341", + "24797", + "8145", + "19226", + "1355", + "29007", + "17292", + "31948", + "27940" + ], + "assets": [] + }, + { + "amount": { + "quantity": 120, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + ], + "script_validity": "valid", + "metadata": { + "1": { + "map": [ + { + "k": { + "string": "􆶥𒉅" + }, + "v": { + "list": [ + { + "int": 1 + }, + { + "list": [] + } + ] + } + }, + { + "k": { + "string": "􌩙" + }, + "v": { + "int": 1 + } + } + ] + } + }, + "id": "2e056ee6065a3c4fa072430e372e44245c17720e763c915c177827366863014a", + "collateral": [ + { + "id": "9bd8010a15241a073611157f146e7c26ca4b3b0512367a1255e65e0d4317b86c", + "index": 1 + }, + { + "amount": { + "quantity": 83, + "unit": "lovelace" + }, + "address": "", + "id": "a564b458211c6452527911191db8a36b29108940f4f60e2040276b1c31da1d46", + "derivation_path": [ + "11220", + "20165", + "21529", + "21674", + "8347", + "18815", + "9986", + "15793", + "7767", + "2104", + "32582", + "26942", + "5161", + "4242", + "4252", + "4703", + "3274", + "7676", + "22826", + "23463", + "11689", + "19446", + "12842", + "5200" + ], + "assets": [], + "index": 31139 + }, + { + "id": "5226069909221578630c1b6421e3156a340fb776d18a3a6f0465235757580d1a", + "index": 0 + }, + { + "amount": { + "quantity": 48, + "unit": "lovelace" + }, + "address": "", + "id": "2d7b29195d0e5a02501705f84662f25d7f7cb721683c315291650d0536410a4c", + "derivation_path": [ + "7863", + "18816", + "24866", + "6594", + "18326", + "1051", + "13200", + "10551", + "14489", + "7750", + "2046", + "17136" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 23921 + }, + { + "id": "18734138c22b09ac390429127c1f6548d9587902417612b76a57ab142d0e0b91", + "index": 1 + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 62, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 226, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 82, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 90, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 24, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 94, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 167, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "amount": { + "quantity": 47, + "unit": "lovelace" + }, + "address": "", + "id": "0dbc16736908695b5d2a05773e48000b491d2601a018082c18511a4136de2f1a", + "derivation_path": [ + "3339", + "24580", + "25911", + "3688", + "21518", + "24009", + "20045", + "2560", + "27959", + "23960", + "12236", + "20243", + "23687", + "31111", + "16391", + "2675", + "15716" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 23104 + }, + { + "id": "70217d21eb51cb46011a469b32429db1670734673f3300042a1b0a750d34b436", + "index": 0 + }, + { + "amount": { + "quantity": 41, + "unit": "lovelace" + }, + "address": "", + "id": "bc32202111f3427c283bf4057e270a545300167708109cf84e599259161e458e", + "derivation_path": [ + "27193", + "28726", + "25974", + "15108", + "25694", + "19971", + "14662", + "25263", + "30939", + "510", + "183", + "20051", + "3159", + "20937", + "2900", + "1951", + "2815", + "12978", + "4962", + "13323", + "21748", + "23640", + "16244", + "32310", + "24904", + "27171", + "1195", + "21522", + "24360", + "5451" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 25918 + }, + { + "amount": { + "quantity": 55, + "unit": "lovelace" + }, + "address": "", + "id": "26f759f64c4f627850085d5e724e031b3224c5266a2d68a92c01461f7530047b", + "derivation_path": [ + "10202", + "31013", + "28872" + ], + "assets": [], + "index": 19454 + }, + { + "id": "38296e3dd808fb5b10612e01626861436bf9722ac168280b1a00e68b3a629205", + "index": 1 + }, + { + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "address": "", + "id": "d73a0241a85932055a3374457f097251c52c1b4a1fc22563f75e176464bbe6b4", + "derivation_path": [ + "25984", + "10872", + "31604", + "23575", + "31583", + "7679", + "10400", + "12930", + "29729", + "19868", + "12386", + "13065", + "19240", + "12415", + "2023", + "25229", + "32541" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 46, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 2221 + }, + { + "id": "3b78476a64442816853e317373283357586f325d3e07324c28ce6006626d6c48", + "index": 1 + }, + { + "id": "8c5e0df6013d02234f6c6240553b6a5f9e107e0f0a74641b896d363bcd3f100b", + "index": 0 + }, + { + "amount": { + "quantity": 208, + "unit": "lovelace" + }, + "address": "", + "id": "5a8f4e580d7e6f561b5a6a360d2bd659464b4a3309697b1b9203777179036474", + "derivation_path": [ + "17377", + "24173", + "28968", + "28545", + "252", + "17836", + "6848", + "19056", + "14071", + "3369", + "3398", + "21076", + "19305", + "13371", + "439", + "18768", + "19665", + "29389", + "20799", + "31523", + "17155", + "30843", + "14203", + "31861", + "26425", + "11702", + "28493", + "13159", + "25302", + "2576", + "19291" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 27152 + }, + { + "id": "6fb5500554481846f95e276c06066f26e0574a5e7c0c0e0007506f655c414b5e", + "index": 1 + }, + { + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "address": "", + "id": "5dce1f448c3550b51577485746694265742fe9fc080e92130b16223d6bc09127", + "derivation_path": [ + "14274", + "702", + "10604", + "2277" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 11564 + }, + { + "id": "7a00210024277b425f6d013a0e4972192c8e4660451a1c4450a362315b0b0410", + "index": 0 + }, + { + "id": "144b15513c07625e0a2d155353130d305fba686b6350342c0131d0276f731c71", + "index": 0 + }, + { + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "address": "", + "id": "5cd35d496d0378449d42a9e5b80929e41d3f126d81405cf94d7e455b4103496d", + "derivation_path": [ + "29975", + "31166", + "11450", + "28143", + "27866", + "18992", + "25876", + "14137", + "11020", + "24390", + "28484", + "21504", + "28574", + "6720", + "13353" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 27731 + }, + { + "amount": { + "quantity": 105, + "unit": "lovelace" + }, + "address": "", + "id": "192b3a44676dfb6431340d9925623b6a019d4f8524620159a7720e3e5f527752", + "derivation_path": [ + "25482", + "10629", + "804", + "5325", + "18307", + "6286", + "27333", + "19701", + "11268", + "5491", + "2237", + "146", + "6995", + "10135", + "5201", + "31149" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 72, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 22293 + }, + { + "id": "4766e017787a3d6e5af01ad6312a28023b4a73065f7c56f06427270350456337", + "index": 1 + }, + { + "amount": { + "quantity": 230, + "unit": "lovelace" + }, + "address": "", + "id": "7d26784a0d0e79426921313b4a133c8e3c4f731914143092395e72564a791f5b", + "derivation_path": [ + "17352", + "7829", + "1938", + "18927", + "816", + "22459", + "11527", + "27979", + "12543", + "30973", + "16355", + "29461", + "18113", + "2484", + "30897", + "98", + "25051", + "10476" + ], + "assets": [], + "index": 31420 + }, + { + "id": "220848477a46464599f97705565f2d68e3572b755f2fa0106a051c246f71636e", + "index": 1 + }, + { + "amount": { + "quantity": 65, + "unit": "lovelace" + }, + "address": "", + "id": "8f136b195d62610a030c2ec8365b2603096083953fa81c150a4b063366492619", + "derivation_path": [ + "962", + "27328", + "2750", + "25078", + "4159", + "1681", + "16308", + "23755", + "411", + "25794", + "444", + "9365", + "26716", + "25448", + "3101", + "28959", + "10381", + "10958", + "10874", + "19288", + "26527", + "32463", + "13617", + "29770", + "4516", + "11318", + "5732", + "10849" + ], + "assets": [], + "index": 18014 + }, + { + "id": "4109582c2b59213d750f2e8a63760a78b6d9e93d07174b5bd5a32b430420392e", + "index": 1 + }, + { + "amount": { + "quantity": 245, + "unit": "lovelace" + }, + "address": "", + "id": "311803317fe4bd17205f40c86f177847510b6ba27e4337294838e01b433e637b", + "derivation_path": [ + "23909", + "6325", + "4703", + "22005", + "29852", + "10174", + "19689", + "3796", + "14090", + "19310", + "3010", + "24642", + "29357", + "30887", + "5295", + "21728", + "31596", + "19094", + "6857", + "4215", + "19985", + "7232", + "22659", + "15727" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 19385 + }, + { + "id": "510251344bad3b1a193858762a6e3c9461337a7068f5597c20702d212ac322e1", + "index": 1 + }, + { + "id": "dc2aaf0e0b7e6f33465b77693850480e9b4f4a2b5c6d7d7d5c6078480a6b7f13", + "index": 1 + } + ], + "fee": { + "quantity": 181, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 240, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 34, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 38, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 126, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 31, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 55, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "5664", + "2702", + "24017", + "25659", + "9863", + "7573", + "677", + "19813", + "10587", + "31888", + "32492", + "26720", + "2165", + "10493", + "24150", + "27834", + "23914", + "14129", + "6603", + "2355", + "12770", + "17949", + "6408", + "524", + "29849" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 7, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "4390", + "17224", + "17902", + "16263", + "30354", + "1019", + "633", + "14294", + "29386", + "10156", + "8232", + "29869", + "16659", + "27982", + "16084", + "12299", + "7410", + "26826", + "15198", + "8668", + "10635", + "32637", + "7733", + "21262", + "25563", + "501", + "8357", + "11161", + "7654" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 36, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 119, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 18, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 221, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "32149", + "15986", + "32166", + "7650" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 244, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 61, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "23731", + "23117", + "13847", + "15942", + "16171", + "4509", + "7394", + "15215", + "22761" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 41, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 130, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 37, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 138, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 44, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 165, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "31422", + "30235", + "6860", + "9928", + "27302", + "16006" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 103, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 234, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 169, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 236, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "1501", + "16006", + "315", + "1749", + "1943", + "806", + "26933", + "25472", + "23951", + "18628", + "23886", + "1968", + "25786", + "12644", + "5933", + "1804", + "20674", + "7406", + "26602", + "28529", + "17894", + "4236", + "25690", + "262" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 147, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 41, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 254, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18917", + "11682" + ], + "assets": [] + }, + { + "amount": { + "quantity": 234, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 4, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18946", + "8087", + "22202", + "28517", + "28026", + "10537", + "20313", + "27712", + "4568" + ], + "assets": [] + }, + { + "amount": { + "quantity": 192, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 46, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 103, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 47, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "29761", + "12701", + "20009", + "30945", + "16751", + "28427", + "588", + "11741", + "23109", + "17444", + "2204", + "13338", + "4560", + "1037", + "27930", + "2974", + "25695", + "22893", + "1799", + "24491", + "4413", + "15047", + "20966", + "790" + ], + "assets": [] + }, + { + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 64, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 252, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "2375", + "27973", + "24985", + "24023", + "19172", + "22958", + "22268", + "21824", + "17524", + "15837", + "11987", + "7061", + "28720", + "9562", + "16234", + "25307", + "1516", + "24709" + ], + "assets": [] + }, + { + "amount": { + "quantity": 141, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 116, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13288", + "31496", + "8993", + "7111", + "21618", + "28521", + "18848", + "27262", + "19144", + "18317" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 10, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 3, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 29, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "24708", + "28808", + "14945" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 54, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 86, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 57, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "31120", + "18478", + "25446", + "27511", + "13702", + "9575", + "17653", + "25130", + "20031", + "3884", + "3713", + "16501", + "9550", + "6983", + "21307", + "28519", + "14281" + ], + "assets": [] + }, + { + "amount": { + "quantity": 112, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 131, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "17844", + "12867", + "27353", + "10865", + "32541", + "15823", + "11670", + "19358", + "25912", + "6711", + "5314", + "10112", + "23029", + "2641", + "29558", + "20165" + ], + "assets": [] + }, + { + "amount": { + "quantity": 87, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "amount_incoming": { + "quantity": 84, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10024", + "863", + "7423", + "27538", + "15831", + "27890", + "3641", + "3867" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + ], + "script_validity": "valid", + "metadata": { + "5": { + "list": [ + { + "map": [ + { + "k": { + "string": "𰻾" + }, + "v": { + "string": "" + } + } + ] + } + ] + } + }, + "id": "4a312c0a27346066657511617b007464dd2034352e16de4f469f3c36112c5814", + "collateral": [ + { + "amount": { + "quantity": 13, + "unit": "lovelace" + }, + "address": "", + "id": "797545174e6e2133642a240e019e30147da097317946543058d54601f06e3de2", + "derivation_path": [ + "7204", + "28494", + "13024", + "10095", + "13048", + "486", + "775", + "31263", + "31554", + "25247", + "12816", + "11915", + "5782", + "18599", + "18160", + "15566", + "32663", + "13820" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 30513 + }, + { + "amount": { + "quantity": 189, + "unit": "lovelace" + }, + "address": "", + "id": "73a8847d1a1c0a1d1d8bb3073d21059c62221d78e3521c682d48422bd65e5c56", + "derivation_path": [ + "22320", + "3758", + "9189", + "20018", + "10838", + "8855", + "23058", + "28604", + "14454", + "7272", + "18218", + "18380", + "5864", + "13609", + "8505", + "26133", + "13885", + "8543", + "19881", + "8027", + "10208", + "30576", + "15488", + "7771" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 90 + }, + { + "amount": { + "quantity": 74, + "unit": "lovelace" + }, + "address": "", + "id": "723c0f04482726e9661b662b0014173bf0010e516944295b3a343b2b6e2fad0f", + "derivation_path": [ + "20381", + "31880", + "13995", + "10894", + "3016", + "32676", + "29426", + "1975", + "30831", + "26018", + "22936", + "14773", + "29475", + "23269" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 26035 + }, + { + "id": "78761b51121d1a427a44195b91857945515c664a5117488b343f515d40373387", + "index": 0 + }, + { + "amount": { + "quantity": 246, + "unit": "lovelace" + }, + "address": "", + "id": "175f136133057f6ecc766f1278cc921e9970c545ab55a73463645c48667cb415", + "derivation_path": [ + "31750", + "27454", + "14330", + "30873", + "9036" + ], + "assets": [], + "index": 30213 + }, + { + "id": "326bf501467bb7365a630c07125505460b5e4a787b4a30b41c47570e7f6a078a", + "index": 0 + }, + { + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "address": "", + "id": "eaba51701f0e2fbcd2163a191f09545c55592546162ecc5f4428633b06146335", + "derivation_path": [ + "22356", + "5901", + "11145", + "24223", + "11102" + ], + "assets": [], + "index": 20805 + }, + { + "id": "480612185978680e75015c3a7c500f6d482f19363944351b48540230181d3928", + "index": 0 + }, + { + "amount": { + "quantity": 29, + "unit": "lovelace" + }, + "address": "", + "id": "5fae68258888486824003003044b523a723e6a020766574731564f6e0930324c", + "derivation_path": [ + "30749", + "7310", + "23472", + "20456", + "18787", + "24274", + "19603", + "14241", + "9463", + "9041", + "4746", + "7974", + "25645", + "4279", + "24620", + "15159" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 30252 + }, + { + "amount": { + "quantity": 33, + "unit": "lovelace" + }, + "address": "", + "id": "7a95400c66183a1e17cf431256501a453ff46576332b66650e2c0a20595ec666", + "derivation_path": [ + "13581", + "1533", + "21405", + "22666", + "24956", + "28222", + "12825", + "16328", + "19484", + "25640", + "19627", + "23499", + "30380", + "25646", + "4736", + "12384", + "7398" + ], + "assets": [], + "index": 22945 + }, + { + "amount": { + "quantity": 191, + "unit": "lovelace" + }, + "address": "", + "id": "635019678e7020e07643074b2f702d317ec9d1746e0150230b2c681524876056", + "derivation_path": [ + "14163", + "17263", + "27850", + "10358", + "3332", + "11547", + "4970", + "24589", + "21949", + "10596", + "24228", + "6935", + "6890", + "15134", + "13037", + "21674", + "5556", + "4920", + "32055", + "5306", + "14545", + "15314", + "23636", + "15281", + "30150", + "1778", + "9876", + "27339", + "23629", + "14681" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 2179 + }, + { + "amount": { + "quantity": 122, + "unit": "lovelace" + }, + "address": "", + "id": "313b79f61b3c6b3875136499231756eb53164f6456bfda2743169e2f403f14f2", + "derivation_path": [ + "7812", + "5718", + "6862", + "16258", + "1870", + "23647", + "15942", + "13650", + "18438", + "7342", + "25036", + "22753", + "31131", + "27586", + "1195", + "9206", + "5196", + "24627", + "24824" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 41, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 6839 + }, + { + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "address": "", + "id": "4d273242760b6e40670b62de1e365c1f3622798c040613f0690f797631f6792a", + "derivation_path": [ + "6849", + "20886", + "3224", + "28913", + "30343", + "6462", + "31821", + "5214", + "5036", + "27438", + "18633", + "12752", + "30882", + "1497", + "31556", + "15309", + "1427", + "14010", + "25685", + "10634", + "15654", + "3512", + "30365", + "31920", + "209", + "2939", + "800", + "27313", + "11012" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 56, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 10158 + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 124, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 122, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 150, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 173, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 54, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 111, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 186, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 85, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 7, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 98, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 248, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 49, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 165, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 126, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 186, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 11, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 119, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 169, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 219, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 164, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 76, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 229, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 55, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 120, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "id": "49177d4827062b6e4f7d283e2f72708b1a4646072758544e7c6d145d0c077016", + "index": 0 + }, + { + "amount": { + "quantity": 240, + "unit": "lovelace" + }, + "address": "", + "id": "1ac7999e160a7d2c5e2d646e87090408106d82e56f23625e38cc0a5331041d0a", + "derivation_path": [ + "4043", + "24829", + "8724", + "27680", + "22038", + "28087", + "89", + "26022", + "19827", + "11673" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 22791 + }, + { + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "address": "", + "id": "59324b28f3672731740a7c3844177a012c2a5a49725774504da61b2e542e6e2e", + "derivation_path": [ + "25954", + "19637", + "21940", + "19250", + "2284", + "10061", + "5950", + "13551", + "11497", + "1872", + "12738", + "1935", + "7559", + "17498", + "27785", + "11894", + "30113", + "10548", + "5992", + "28021", + "30536", + "12226", + "1078" + ], + "assets": [], + "index": 15896 + }, + { + "id": "165de67e4556344845544434bd737f0615923d67a04f6145183d144cd1282975", + "index": 0 + }, + { + "id": "3741718330145e33255d182f7e1710684c4d224d825b373653734a0e03546e25", + "index": 0 + }, + { + "id": "3a58586b3e7354514e3e2c1ef64326d2dd6160c14f6f03194e19613f274ca56a", + "index": 0 + }, + { + "id": "6a824978294ed8197f5d595cda27086c320674160323712b1b39d74e55085c78", + "index": 0 + }, + { + "amount": { + "quantity": 124, + "unit": "lovelace" + }, + "address": "", + "id": "46511b5372644f5e22a32ae64a63717660354c5eb8461a61381f475dd4221b63", + "derivation_path": [ + "20180", + "2956", + "31410", + "4896", + "15419", + "14742", + "9263", + "32411", + "6475", + "24059", + "12670", + "16591" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 31550 + }, + { + "amount": { + "quantity": 233, + "unit": "lovelace" + }, + "address": "", + "id": "521652083f6c61377eef667e1d7e3d4e7e343cd0000e2685034c56504c103b15", + "derivation_path": [ + "19990", + "23409", + "10119", + "27598" + ], + "assets": [], + "index": 14122 + }, + { + "id": "5e4b7c306a380e444f0a6857ce6244560d93450263306c0121792d35c94b616d", + "index": 1 + }, + { + "amount": { + "quantity": 21, + "unit": "lovelace" + }, + "address": "", + "id": "51aa14251d07133d7b4cca62efc532330d12d4c85a42741434407e6c5c66513c", + "derivation_path": [ + "31373", + "8236", + "15068", + "30551", + "15774", + "1254", + "13149", + "20815" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 5541 + }, + { + "id": "0d5f31735004541b533e2ba07e654f34534e6120cf1a580a05386404296979d3", + "index": 1 + }, + { + "amount": { + "quantity": 46, + "unit": "lovelace" + }, + "address": "", + "id": "0b7e350700640f23506a4e427747745d337a5424fd4ec005ca446db80c121560", + "derivation_path": [ + "23752", + "785", + "14722", + "21785", + "3812", + "18717", + "6063", + "22554", + "26315", + "21966", + "23769", + "3176" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 4596 + }, + { + "amount": { + "quantity": 197, + "unit": "lovelace" + }, + "address": "", + "id": "4a60123d38255c3b027e392d490c43122d7b550d44033f0fbf274d2556062832", + "derivation_path": [ + "14672", + "14751", + "27668", + "20840", + "10159", + "19754", + "2032", + "12307", + "13882", + "13468", + "7470", + "32585", + "15709", + "4441", + "8719", + "12424", + "25717", + "2026", + "15018", + "3531", + "16409", + "10403", + "10345", + "20576", + "12486", + "30978", + "29182", + "20318", + "1565", + "25651" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 20208 + }, + { + "id": "54404609adb41c0fdc51230b286f67febe636b5a2b265a9f4c69275b620d383b", + "index": 0 + }, + { + "id": "27260fd72b25214e9a52094f070a59362f21747b004c5449171f637e4e0c0552", + "index": 0 + }, + { + "id": "7060575d5d9a0e5c543c22614146717e731c9544553b0f556e0e3b233a567766", + "index": 0 + }, + { + "amount": { + "quantity": 118, + "unit": "lovelace" + }, + "address": "", + "id": "6c3591759c6833ca1269cf30d25b263f14194b7d592b4e677f585f013c7b555f", + "derivation_path": [ + "17067", + "31373", + "28068", + "23187", + "14155", + "32240", + "23323", + "13470", + "27554", + "12583", + "3123", + "6917", + "23715", + "32305", + "6095", + "15020", + "7533", + "18074", + "5799", + "32245", + "14895", + "164", + "23939", + "25326", + "21354", + "26455", + "1423", + "8013" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 4978 + } + ], + "fee": { + "quantity": 244, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 147, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 47, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 42, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 145, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 39, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 74, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "3483", + "18382", + "22811", + "4321", + "24596", + "594", + "3671", + "3637", + "8102", + "18340", + "4362", + "29381", + "21404", + "10988", + "4000", + "18027", + "15650", + "18232", + "20550", + "2206", + "4751", + "26206", + "28755", + "849", + "23762", + "18198", + "24359", + "20769", + "31905", + "7393" + ], + "assets": [] + }, + { + "amount": { + "quantity": 2, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 31, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 174, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "14304", + "1111", + "17836", + "11802", + "7883" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 56, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 43, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 54, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 239, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "14131", + "6530", + "19375", + "23932", + "20427", + "11042", + "30685", + "25707", + "8653", + "10633", + "30225", + "12718", + "31492", + "12787" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 21, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 219, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 41, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 148, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 129, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "30836", + "25582", + "23552", + "1266", + "9412", + "1696", + "3866", + "10460", + "27297", + "482" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 164, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 171, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "7487", + "2937", + "13782", + "13398", + "28666", + "19065", + "9905", + "5955", + "11412", + "2018", + "2303", + "11997", + "11911", + "10687", + "5094", + "10765", + "21967", + "23007", + "21755", + "1419", + "15874", + "7185", + "23570", + "28260", + "16959", + "9861" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 46, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "3384", + "22222", + "17569", + "5595", + "7397", + "7898", + "3966", + "19886", + "2150", + "9897", + "10982", + "1220", + "5589", + "20982", + "13603", + "14219", + "14661", + "1383", + "6544", + "27350", + "22931", + "19767", + "28059", + "19199", + "21254", + "5019", + "19423" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 1, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "12001", + "1696", + "11151", + "8882", + "11503", + "2390", + "26853", + "25334", + "27305", + "2093", + "2853", + "7168", + "19877", + "25260", + "16320", + "22407", + "19764", + "27500", + "28198" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 39, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 33, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 45, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 177, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 34, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 167, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 7, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "23810", + "7446", + "93", + "24658", + "22891", + "16471", + "26760", + "9671", + "10519", + "32443", + "24348", + "11264", + "19664", + "14714", + "13965", + "9251", + "25795", + "31992", + "13410", + "5433", + "28044" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 248, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + } + ], + "script_validity": "invalid", + "metadata": { + "13": { + "map": [] + } + }, + "id": "53522908234a4a011f602a0451c011865b610a267a1f0510243f1d786f0f7dc9", + "collateral": [ + { + "amount": { + "quantity": 115, + "unit": "lovelace" + }, + "address": "", + "id": "43ff015b6a37037725670527185c41b36d465f5f9b6b273f927d407c23132e71", + "derivation_path": [ + "419", + "29424", + "19622", + "28601", + "13006", + "28693", + "10948", + "19645", + "25531", + "10712", + "19928", + "9571" + ], + "assets": [], + "index": 15592 + }, + { + "id": "6f37270f28cb415a325e538b7fd6393643003918643955f06f5c572e24dd1d24", + "index": 1 + }, + { + "id": "7c02a12b49664868506b893474353cb35a67082e4356e1600268fd76b97c4401", + "index": 0 + }, + { + "amount": { + "quantity": 175, + "unit": "lovelace" + }, + "address": "", + "id": "2e63166ec86a6d7f5e1c4f07467e685a697842315646b34e7a4f45611113183b", + "derivation_path": [ + "2899", + "29462" + ], + "assets": [], + "index": 15174 + }, + { + "id": "980677686ded4101195a221306371d73f413196613106669096d703baf51731d", + "index": 1 + }, + { + "id": "7d203dd5263b2d210d1c714a361c60637a435f3b1e42353734751a745c631708", + "index": 0 + }, + { + "amount": { + "quantity": 236, + "unit": "lovelace" + }, + "address": "", + "id": "2ad43b186d624635472d4f4d501a7f5337016e411075b3662f7b3c878562283b", + "derivation_path": [ + "13275", + "1254", + "8990", + "387", + "30753", + "12199", + "23526", + "31317", + "4200", + "505", + "23966", + "19889", + "14718", + "8591", + "26370", + "23647", + "17992", + "19930", + "6560", + "3108", + "19687", + "30376", + "29530", + "22018", + "8504", + "20688", + "6234", + "18562" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 50, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 38, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 23838 + }, + { + "amount": { + "quantity": 105, + "unit": "lovelace" + }, + "address": "", + "id": "3d5d022646009479101c4f4a615c077850050571202b1d5b452c3d510a4c5568", + "derivation_path": [ + "13989", + "8777", + "14406", + "5963", + "24794", + "7208", + "10214", + "24449", + "14428", + "13662", + "18066", + "12055", + "18240", + "8942", + "18819", + "12678", + "2430", + "19362", + "23914", + "19305" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 1099 + } + ] + }, + { + "withdrawals": [], + "inputs": [ + { + "amount": { + "quantity": 157, + "unit": "lovelace" + }, + "address": "", + "id": "44e84a181963013573762e470ea828fb50560e7f4b0382723155d9363e4128d5", + "derivation_path": [ + "30185", + "22681", + "29587", + "7418", + "17263" + ], + "assets": [], + "index": 20668 + }, + { + "amount": { + "quantity": 15, + "unit": "lovelace" + }, + "address": "", + "id": "270650755de3691d555113091352d90e8fee70f67563620261aa39482502f47f", + "derivation_path": [ + "2251", + "8018", + "21417", + "31380", + "2960", + "17717", + "30055" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 6691 + }, + { + "id": "6d3e627e227a17a62669685fee0f520f784b2f066055641365f16276022f66e7", + "index": 1 + }, + { + "amount": { + "quantity": 91, + "unit": "lovelace" + }, + "address": "", + "id": "f71e0d7173d86d2a745c7d103f17714302457e55271757357a5f6d613f353c42", + "derivation_path": [ + "21342" + ], + "assets": [], + "index": 29170 + }, + { + "id": "6b45782c77bf2e282b5cb72f475f3f0923624ced4a1a30263927792761084890", + "index": 1 + }, + { + "id": "0e1d2b167a045b2e71b12b00440bd636656e732933fb6b737720324f2dafd442", + "index": 0 + }, + { + "id": "1a036c14164b1f2419156b021047030b0c593bba44cd57062028611f215abb53", + "index": 0 + }, + { + "id": "074f68746a6c5d7476642d6772554123571b2239782e5d46575c524a47507764", + "index": 1 + }, + { + "amount": { + "quantity": 144, + "unit": "lovelace" + }, + "address": "", + "id": "25f77c760f2808513408072b544dd795090e5b3f8589431b520d0c4c19964f6d", + "derivation_path": [ + "29826", + "23056", + "6944", + "14305", + "24321", + "16042", + "8042", + "13832", + "7140", + "25020", + "5972", + "30506", + "13809", + "564", + "22991", + "17018", + "24244", + "11912", + "31698", + "21120", + "27062", + "7801", + "12504", + "13622", + "3931" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 39, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 42, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 28250 + }, + { + "amount": { + "quantity": 15, + "unit": "lovelace" + }, + "address": "", + "id": "034f661a3f182c1564052474310f100b2a764e313b2f5469e1e3630405394e16", + "derivation_path": [ + "20789", + "24721", + "15052", + "29807", + "20764", + "27121", + "13353", + "25453", + "29747", + "21582", + "29840", + "32257", + "28280", + "15998", + "31266", + "27310", + "14186", + "23357", + "23930", + "21806", + "18091", + "25984", + "10620" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 50, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 30880 + } + ], + "fee": { + "quantity": 73, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 38, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 43, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "26451", + "2732", + "19054", + "16136", + "114", + "26013", + "25928", + "2999", + "29218", + "7965", + "12115" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 158, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 145, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "21631", + "27212", + "32087", + "12782", + "15285", + "26300", + "15208", + "27761", + "11937", + "30579", + "4081" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 41, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 134, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 50, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 37, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 217, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "12264", + "14886", + "7259", + "16069", + "6011", + "31208", + "5220", + "8350", + "9840", + "29317", + "18520", + "23154" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 44, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 227, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "31327", + "15276", + "4116", + "8672", + "31275", + "12397", + "22551", + "12379", + "1502", + "14215", + "27449", + "22291", + "18624", + "15324", + "28141" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 41, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 154, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "5367", + "32204", + "17468", + "13082", + "6885", + "23419", + "2518", + "27010", + "28356", + "12203", + "4483", + "5237", + "12893", + "661", + "6310", + "11004", + "6841", + "29783", + "2017", + "20607", + "18241", + "4082", + "21494", + "18835", + "16395", + "31954", + "18195" + ], + "assets": [] + }, + { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 105, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 40, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 54, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 36, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "9094", + "891", + "23760", + "31459", + "4147", + "9814", + "12731", + "7567", + "12855", + "8042", + "16542", + "29559", + "24785", + "30938", + "16164", + "14494", + "12446", + "27927", + "29812", + "15202", + "2645", + "9980", + "30939", + "3181" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 104, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 113, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "28506", + "15988", + "28316", + "8620", + "15649", + "22410", + "11657", + "27552", + "32395", + "2890", + "28303", + "13488", + "18293", + "12428", + "17996", + "14622", + "14991", + "14331", + "18500", + "30005", + "8286", + "26001", + "2503", + "12304" + ], + "assets": [] + }, + { + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 233, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 69, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 11, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 118, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "7312", + "15304", + "30994", + "6969", + "7244", + "30303", + "22675", + "6762", + "14746", + "17274", + "4830", + "16389", + "19246", + "17690", + "32651", + "10196", + "8739", + "1327", + "26910", + "30503", + "9840" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 162, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 30, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "17242", + "2341", + "28668", + "6349", + "9625", + "124", + "29878", + "29041", + "11397", + "22640", + "3199", + "14469" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 175, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 103, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "29580", + "15594", + "14472", + "20866", + "14891", + "12244", + "3817", + "5023", + "14675", + "6195", + "20976", + "19244", + "2140", + "16115", + "14959", + "9988", + "19287", + "4754", + "4743", + "10901", + "5896", + "32324", + "26355" + ], + "assets": [] + }, + { + "amount": { + "quantity": 198, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 177, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 225, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 61, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + } + ], + "script_validity": "invalid", + "metadata": null, + "id": "340d2159040c0266fd095c26145a0f09043bf47b6a567b6e493a33253f00b4a8", + "collateral": [ + { + "id": "7f713153414c6f1d0a717f524a0d002d702d546e0f34766345170d623b580a0f", + "index": 0 + }, + { + "amount": { + "quantity": 91, + "unit": "lovelace" + }, + "address": "", + "id": "269d4d4c5d5269790c434429ac1c4a686e28331d00014602410064359d713c3a", + "derivation_path": [ + "2266", + "6079", + "29550", + "2679", + "32092", + "7302", + "28577", + "29024", + "19759", + "7402", + "8762", + "29888", + "15754", + "17102", + "22996", + "21233", + "24280", + "12957" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 36, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 26507 + }, + { + "amount": { + "quantity": 79, + "unit": "lovelace" + }, + "address": "", + "id": "1e72cf729879bb3b727f6ab7563e3646267c2a5155ce393b79eb4c7168676812", + "derivation_path": [ + "21667", + "27262", + "8370", + "24738", + "5360", + "3296", + "22162", + "4722", + "6994", + "25659", + "20366", + "6938", + "16332", + "26955", + "2825", + "12699", + "10225", + "14827", + "3525", + "26457", + "16518", + "3713", + "12829" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 5946 + }, + { + "id": "684c09667e40eca30f201e367e12a9651c6d716b462e0841757b08656d30307b", + "index": 0 + }, + { + "id": "0d6762da0d0d354e135e6b313e504e7f61636b4d351cd114161d2a481a745203", + "index": 1 + }, + { + "amount": { + "quantity": 91, + "unit": "lovelace" + }, + "address": "", + "id": "5f7b1d299134396a376ea344771140603e721e7349343227763278221b7a143c", + "derivation_path": [ + "11562", + "4285", + "21326", + "8734", + "21879", + "10346", + "25560", + "3598", + "6590", + "28574", + "7908", + "14893", + "5845", + "22541", + "3121", + "7349" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 2309 + }, + { + "amount": { + "quantity": 186, + "unit": "lovelace" + }, + "address": "", + "id": "0f701a2f162f6e236776ea16fbc30446473c0796120c596ba7ab2003e34f3b0e", + "derivation_path": [ + "4848" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 22130 + }, + { + "amount": { + "quantity": 95, + "unit": "lovelace" + }, + "address": "", + "id": "477d70d745076e4842203d7d546b69227f2b757c3420644161337c50167f6546", + "derivation_path": [ + "15165", + "7494", + "28162", + "30785", + "14101", + "29895", + "420", + "9202", + "30736", + "9539", + "12674", + "13761", + "13179", + "11110", + "15825", + "18235", + "11764", + "7463", + "5731", + "27156", + "810", + "1442", + "884", + "10792" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 19783 + }, + { + "amount": { + "quantity": 62, + "unit": "lovelace" + }, + "address": "", + "id": "4c6a3e217c2a222b503e52af774c696a05694b2e6151df5d2b1b007d4f352321", + "derivation_path": [ + "4417", + "13964", + "13954", + "21014", + "2540", + "20830", + "18017", + "2263", + "23994", + "1955", + "29977", + "6049", + "18785", + "12668", + "32", + "24057", + "32218", + "830", + "15960", + "19512", + "23141", + "24848", + "27630", + "5652" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 6051 + }, + { + "id": "18e7470e603679401903740d4e2c499302277cc508434d127347765501636561", + "index": 1 + }, + { + "amount": { + "quantity": 229, + "unit": "lovelace" + }, + "address": "", + "id": "205b3a2d0b273d00e16b0275175616d6286a3e396a507310747425204206ad44", + "derivation_path": [ + "24785", + "26618", + "11471", + "8227", + "32367", + "29848", + "2337", + "14037", + "29845", + "1066", + "26773", + "30789", + "14936", + "32580", + "30839", + "10790", + "2226" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 583 + }, + { + "id": "54021ddb4b673cdc1a57d1484b7243147c1c680a7c7338394b50000d6d463a38", + "index": 1 + }, + { + "id": "71a87dcc744d851d68444754211928223062167646926c5b2113917c91245306", + "index": 1 + }, + { + "amount": { + "quantity": 246, + "unit": "lovelace" + }, + "address": "", + "id": "70631166497e5625171e4b3f241028f720083d257d0d45901eb2620397c01550", + "derivation_path": [ + "17772", + "8220", + "13128", + "29950", + "7387", + "6070", + "31964", + "27622", + "28895", + "29078", + "17156", + "27650", + "10992", + "19635", + "6484", + "15786", + "21595", + "17730", + "23363", + "27903", + "32478", + "7580", + "8294", + "8875", + "7850", + "28995", + "32734", + "19818" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 25647 + }, + { + "amount": { + "quantity": 175, + "unit": "lovelace" + }, + "address": "", + "id": "9339033b223ae16f33663053d09c76751ed90036496558324133bc09136258ba", + "derivation_path": [ + "6059", + "31113", + "25048", + "15804", + "2747", + "9480", + "8432", + "8782", + "21706", + "18021", + "14381", + "12238", + "6369", + "5356", + "17166", + "20938", + "26269" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 38, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 24565 + }, + { + "id": "9c2e5c180e46e5d204087336302f06eba9064e786b311b51694c01244627045f", + "index": 1 + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 125, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 23, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 195, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 222, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 50, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 46, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 215, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 141, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 254, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 54, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 49, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 175, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 225, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 215, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 255, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 183, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 247, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "id": "f472425a45581d444052542c25dd3f7ddb4272044b4c74754e003d355c2e2719", + "index": 0 + }, + { + "id": "1d66366651b1352a4a7a022975335e410105093a7ddb015a466a7bd76a425050", + "index": 0 + }, + { + "id": "78376b129b1019524a7767095d054e0d7f66447c4e38403a0c3539147d1b5425", + "index": 0 + }, + { + "id": "2ff65b898a0d0e54631b34032d361a33571e0c1b12427272182e7f21e30e5e5b", + "index": 0 + }, + { + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "address": "", + "id": "73286acd00188c1c2215e50148685e176c8c0f4f2a323a3b331414671632b37a", + "derivation_path": [ + "29938", + "16267", + "31056", + "16291", + "23004", + "17905", + "6695", + "11400", + "23323", + "14241", + "13678", + "549", + "4733", + "14102", + "15188", + "26909", + "23534", + "29913", + "21796", + "28890", + "25350", + "4280", + "32093", + "374", + "1998", + "16965", + "27786", + "21728", + "26979" + ], + "assets": [], + "index": 17113 + }, + { + "amount": { + "quantity": 188, + "unit": "lovelace" + }, + "address": "", + "id": "ec164e6a1269f958053001ae27902b10e140db4d7c750935f50975719f3f0a1b", + "derivation_path": [ + "25557", + "32629", + "17338", + "26471", + "8976", + "26352", + "16210", + "17778", + "31093", + "16072", + "15448", + "21954", + "10376", + "9261" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 1953 + }, + { + "id": "5935207d462306226775087557709f513d0c3e29ad795a2c7a2c6501033752dc", + "index": 0 + }, + { + "id": "4c225142357c2b6d261a0a69956409337f5d570f055093631c072761056e4054", + "index": 0 + }, + { + "id": "2408052d745c145f0b5056d4115475595645251c266b0017367ad22b8624bee3", + "index": 1 + }, + { + "id": "394576c129107f0ae758813c59227115723a1850b37e517b7b7e026a77366d62", + "index": 1 + }, + { + "amount": { + "quantity": 126, + "unit": "lovelace" + }, + "address": "", + "id": "670322374b0c5e2d652c6c5a10375c2f4003814662390909006ec44761252b11", + "derivation_path": [ + "17592", + "27594", + "30168", + "10761", + "18159", + "8199", + "7180", + "5448", + "28420", + "4286", + "12583", + "9574", + "7721", + "18489", + "18154", + "24451", + "5201", + "32343", + "10010", + "15645", + "10906", + "4783", + "1622", + "22512", + "28825" + ], + "assets": [], + "index": 20307 + }, + { + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "address": "", + "id": "67090d7f6ed26330431ac4210b626e516fdc395c515646266b7c6c9c4b5a19de", + "derivation_path": [ + "19589", + "26073", + "23550", + "16943", + "20607", + "4647", + "18574", + "13443", + "15933", + "15405", + "2687", + "25907", + "22172", + "10015", + "237", + "29244", + "29703", + "2851", + "28764", + "31569", + "29002", + "16667", + "14116" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 965 + }, + { + "amount": { + "quantity": 181, + "unit": "lovelace" + }, + "address": "", + "id": "7a65412e2b147e744b7ba4655401361e3e58336f023c3c58447a364559135960", + "derivation_path": [ + "17176", + "25698", + "29459", + "22532", + "20608", + "11639", + "22906", + "8171", + "21862", + "366", + "25158", + "26780", + "22125", + "1191" + ], + "assets": [], + "index": 24459 + }, + { + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "address": "", + "id": "794d1c57fa5609301e7b74264a4a31092d503b0d022177a11e3e7b4d1a2a6917", + "derivation_path": [ + "16494", + "24217", + "19181", + "13449", + "19191", + "11646", + "31152", + "5162", + "29753", + "875", + "20098" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 41, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 42, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 42, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 17740 + }, + { + "id": "31c37918f32e7026321d217b61c845435cfc4e4435420b6f7a07696d451270e0", + "index": 1 + } + ], + "fee": { + "quantity": 236, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 24, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 51, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 195, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "21490", + "6372", + "8814", + "28906", + "1320", + "25626", + "12112", + "21792", + "29139", + "8118", + "6104", + "15032" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 115, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8672", + "12700", + "25457", + "16559", + "24965", + "18109", + "15673", + "10983", + "18080", + "15643", + "14669" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 48, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "amount_incoming": { + "quantity": 254, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "14316", + "21477", + "14684", + "17115" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 35, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 33, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 123, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 29, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "1099", + "29942", + "2003", + "26480", + "30863", + "29262", + "4703", + "7101", + "13798", + "14959", + "11706", + "30111", + "27867", + "23956", + "9784", + "31388", + "1212", + "17644", + "1408", + "4222", + "8057" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 140, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 193, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "31179", + "27779", + "31828", + "15878", + "8362", + "4559", + "10653", + "21457", + "1259", + "13738", + "4837", + "18498", + "27688", + "11906", + "15582", + "26379", + "15021", + "16448", + "16816", + "29177", + "21419", + "3631", + "9307", + "4581", + "4351", + "20451" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 33, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] + }, + { + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 167, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "1217", + "16984", + "28641", + "13720", + "7959", + "18042", + "12702", + "8435", + "29808", + "15466", + "30741", + "8009", + "20296", + "24021", + "9103", + "6877", + "29664", + "6534", + "6361", + "12172", + "13453", + "5316", + "19943", + "6695", + "2897", + "2991", + "22361", + "3529", + "11446", + "16563" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 31, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 48, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 47, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8067", + "1601", + "5781", + "20943", + "24014", + "11593", + "22175", + "21202", + "6784", + "8636", + "26640", + "17107", + "23781", + "13207", + "18013", + "25396", + "24530", + "8541", + "2306", + "26218", + "15808", + "19580", + "27398", + "21094", + "20366" + ], + "assets": [] + }, + { + "amount": { + "quantity": 122, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 221, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "373", + "10706", + "2169", + "403", + "27751", + "30280", + "3729", + "19257", + "10099", + "29974", + "12165", + "8924" + ], + "assets": [] + } + ], + "script_validity": "valid", + "metadata": { + "30": { + "list": [ + { + "map": [] + } + ] + } + }, + "id": "092b222c4a3c1cc53d114c8f6d4d6f7f6e78a13bd9057828a9717d7b24593670", + "collateral": [ + { + "amount": { + "quantity": 247, + "unit": "lovelace" + }, + "address": "", + "id": "5f559d4d3f4b1b21f83676584894095774c1707818ac2529255f4954e7777766", + "derivation_path": [ + "17821", + "2980", + "2479", + "1979", + "9664", + "10990", + "28893", + "28386", + "22247", + "14508" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 9843 + }, + { + "id": "6d18045351329fe2d427557302096f722410c73e565b2ac26160f80c5e1a04d8", + "index": 1 + }, + { + "id": "43b84a2035225cfb5b4d780327445c217e111c6e714b60377a01771951306113", + "index": 1 + }, + { + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "address": "", + "id": "07671a4e603c840d2d725e11656e130831702c055138104f6c255f51747cb724", + "derivation_path": [ + "3731", + "24909", + "22746", + "21133", + "32102", + "27711" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 18967 + }, + { + "id": "154ec27b23433ef80b576201237b5058036155496f73132822fe594e766e447c", + "index": 0 + }, + { + "id": "450bb057107b4b58030777762927671ede0e7a173f657b3966f8377cb93e3d1a", + "index": 1 + }, + { + "amount": { + "quantity": 106, + "unit": "lovelace" + }, + "address": "", + "id": "8321730f1da11c77805b35577644291b7e0a4549a133135a78715e5a232b1d41", + "derivation_path": [ + "23340", + "24892", + "954", + "3422", + "31439", + "1710", + "8736", + "164", + "27096", + "32177", + "1386", + "30647", + "13520", + "25239", + "19366", + "15555", + "17782", + "3566", + "13337", + "7518", + "29123", + "6948", + "20763", + "204", + "3341", + "18020", + "2913" + ], + "assets": [], + "index": 18298 + }, + { + "amount": { + "quantity": 164, + "unit": "lovelace" + }, + "address": "", + "id": "613d183849621df3f1297a1f167a7f7c1f7e572b35046e39fe081d023f3a5c6b", + "derivation_path": [ + "11474", + "15380", + "17139", + "5120", + "31678", + "3426", + "21902", + "14757", + "8411", + "11314", + "24533", + "10065", + "14676", + "14606", + "7405", + "13659", + "1944" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 40, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 31, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 2213 }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 3, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "amount_incoming": { - "quantity": 78, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "7033", - "18756", - "30786", - "6327", - "31850", - "21579", - "22075", - "28029", - "31760", - "19428", - "28296", - "19010", - "19548", - "18842", - "16613", - "12431", - "25215", - "21309", - "22363", - "28706", - "24438", - "16274", - "4012" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 199, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 111, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "8338", - "19563", - "26591", - "1230", - "8304" - ], - "assets": [] - } - } - ], - "script_validity": "valid", - "metadata": null, - "id": "7673511aeb3b46506ae51a357623385e746162698df506132d3614f3c3027a2b", - "collateral": [ + "id": "6d3969755e36654708a1178a82ea1177644f6042272028066716060e6019625a", + "index": 1 + }, { - "tag": "ExternalInput", - "contents": { - "id": "882d236f0e72084c3f614f37afc0276371217e552941277c357d5a6e0f6d5e98", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "50591f684c4122491afb6c2938a820762e7a642f2d6e38712237e72a78025a60", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 169, - "unit": "lovelace" - }, - "address": "", - "id": "460650cd7944c9980517db5527615430ff6049145d3e5d09ec4507a5377f411c", - "derivation_path": [ - "10838", - "988", - "29005", - "31292", - "32768", - "16373", - "22741", - "28590", - "26386", - "9178", - "17306", - "16383", - "27379", - "27640", - "2165", - "18538", - "29353", - "27227", - "10866", - "17395" - ], - "assets": [], - "index": 1949 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 11, - "unit": "lovelace" - }, - "address": "", - "id": "0735cd41085b28115973e45b6361570c3510304739297d3b6f612d3b3d140d5d", - "derivation_path": [ - "26222", - "14812" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 15974 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 137, - "unit": "lovelace" - }, - "address": "", - "id": "0b1e035d95c2f2152c791c2d9c7f340a696e132c237b6d181045643959145131", - "derivation_path": [ - "22734", - "4214", - "20977", - "15688", - "32561", - "27318", - "28810", - "6156", - "18300", - "6882", - "18752", - "13754", - "30944", - "6860", - "12362", - "26488", - "5800", - "13534", - "20419", - "25721", - "19461", - "5546", - "31887", - "22194", - "16001" - ], - "assets": [], - "index": 21767 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "3e0d014c277373af514e5f4127ba661832e47f6c613940623e05545c3c051cef", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "060b165d2f4dd62e77736043321630c11e144a6e7a28c6477c7c0a52705a44b4", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 121, - "unit": "lovelace" - }, - "address": "", - "id": "014b4070392b375e0d0fbc7f770fe4426a610f1115540d725c15112c231f7e45", - "derivation_path": [ - "21189", - "32004", - "30536", - "11347", - "16059" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 14291 - } + "id": "9c605b4412c72d6d400b37163c7c74fd2477150b03265a65ad3c055643777e3e", + "index": 0 + }, + { + "amount": { + "quantity": 44, + "unit": "lovelace" + }, + "address": "", + "id": "bc1760052a024d4d7576fe3868292cbb69796a5a45377500320d5c1a64c6693c", + "derivation_path": [ + "9927", + "13185", + "13455", + "6635", + "2004", + "24327", + "19969", + "16022", + "29519", + "893", + "32734", + "29538", + "387", + "8405", + "25021", + "2603", + "8869", + "7351" + ], + "assets": [], + "index": 21138 }, { - "tag": "ExternalInput", - "contents": { - "id": "50021f1a5769577c35102e9c6a813b29125f587e5b74220e1d390e3f06064469", - "index": 0 - } + "id": "18511c5c37ec4137518c6f62110d5276595c476ec71c2d68777929617603783b", + "index": 0 }, { - "tag": "WalletInput", - "contents": { - "amount": { + "amount": { + "quantity": 38, + "unit": "lovelace" + }, + "address": "", + "id": "73922612ff7701185c4749469b437f3e2454462e1b4d6e3946632ecb3ddd621f", + "derivation_path": [ + "16506", + "32317", + "4263", + "15891", + "19602", + "19098", + "9988", + "26149", + "4995", + "22089", + "11690" + ], + "assets": [ + { + "asset_name": "546f6b656e43", "quantity": 18, - "unit": "lovelace" - }, - "address": "", - "id": "642b215a2d26f90c2146d6c17551466b0805c822491a1f2eb03107081d0a281d", - "derivation_path": [ - "24154", - "13092", - "10943", - "26143", - "29910", - "22961", - "17620", - "25733", - "19336", - "12218" - ], - "assets": [], - "index": 21108 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 41, - "unit": "lovelace" - }, - "address": "", - "id": "14fd6007043807077f246b6d467ab43c167709247d56704814711d050a261d52", - "derivation_path": [ - "14765", - "16844" - ], - "assets": [], - "index": 11127 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 231, - "unit": "lovelace" - }, - "address": "", - "id": "2fc00b4b02152f2be7e71c5142523c9c2f22553236e143162aa8191e4b73716a", - "derivation_path": [ - "22785", - "2669", - "9937", - "7407", - "8901", - "19254", - "27088", - "1147", - "16999", - "2765", - "9463" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 22322 - } + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 15398 + }, + { + "id": "5b163b0d0b47074b027f166825a0027a75697f5e2979706a76337fb90a078021", + "index": 1 + }, + { + "id": "2b3e0f6f772c43232569381143076e3c3975ab03204c17797b0071365f9d6e01", + "index": 1 + }, + { + "id": "0811c85a5b5312936b1852562478e7a4757d4e0a474b1a7667111f4f922e4bc1", + "index": 1 + }, + { + "id": "2a28777f6a727f0d762b247edb46700f1b399e6d1e4747650a02063b1219421c", + "index": 1 + }, + { + "amount": { + "quantity": 96, + "unit": "lovelace" + }, + "address": "", + "id": "7a5e5e09206c3bb72a132f133d5e217b6ce756b6ce4710743cd7d82300524ac1", + "derivation_path": [ + "18750", + "25657", + "4795", + "16291", + "26119", + "31728", + "22516", + "6450", + "13099", + "26139", + "15595", + "30482", + "26695", + "31758", + "14589", + "8184", + "21689" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 16524 + }, + { + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "address": "", + "id": "3a43527e2476170b34f88bde47fbb5529a0f5f0f53e0631e7a472c9b22454b31", + "derivation_path": [ + "9819", + "3235", + "18970", + "19227", + "2692", + "24648", + "21661", + "19968", + "20019", + "9982", + "31990", + "16693", + "27403", + "16349", + "29799", + "3788", + "27494", + "12512", + "32009", + "715", + "19363", + "15528", + "32249" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 55, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 10023 + }, + { + "id": "699f19584f037236707b09a1254c6c5c292db736fa6b4c6a097c0d3b4e194446", + "index": 1 } ] }, @@ -10460,7 +11984,7 @@ "withdrawals": [ { "amount": { - "quantity": 255, + "quantity": 128, "unit": "lovelace" }, "context": "ours", @@ -10468,7 +11992,7 @@ }, { "amount": { - "quantity": 156, + "quantity": 9, "unit": "lovelace" }, "context": "ours", @@ -10476,1116 +12000,1386 @@ }, { "amount": { - "quantity": 66, + "quantity": 146, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 195, + "quantity": 57, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 8, + "quantity": 170, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 149, + "quantity": 91, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 40, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "amount": { + "quantity": 231, + "unit": "lovelace" + }, + "address": "", + "id": "3b51536d1f0e780a455d3141e54d09423953a0180a4e6252722452227f077dad", + "derivation_path": [ + "1488", + "31092", + "6102", + "24185", + "27879", + "3147", + "22814", + "17901", + "27856", + "18870", + "8224", + "32641" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 42, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 1334 + }, + { + "id": "e20a05643e43ce7314171f1c63193830c5062d202c250e41264c0f1935503539", + "index": 0 + }, + { + "amount": { + "quantity": 48, + "unit": "lovelace" + }, + "address": "", + "id": "544a731b4e7a402f6641396136ef0b36513c190073432843159a540167464957", + "derivation_path": [ + "28448", + "15181", + "29963", + "18882", + "23138", + "26718", + "30358", + "3238", + "7706", + "1431", + "533", + "24784" + ], + "assets": [], + "index": 27914 + }, + { + "amount": { + "quantity": 237, + "unit": "lovelace" + }, + "address": "", + "id": "1e4a233120432fb31f734b317a4d40281d700a57014c01a9e95ee24907e946eb", + "derivation_path": [ + "26440", + "10270", + "6506", + "24407", + "16289", + "9592", + "16834", + "20450", + "24390", + "6094", + "24569", + "23197", + "19519", + "8728", + "4241", + "22186", + "32276", + "26970", + "7524", + "4732" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 20161 + }, + { + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "address": "", + "id": "6d270d6b3104615b60796f24062f615376440026971270b9a14352772de52c19", + "derivation_path": [ + "11876", + "3466", + "6428", + "21454", + "19272", + "30130", + "5094", + "32214", + "6207", + "27491", + "17845", + "29773", + "11612", + "1271", + "13979", + "26129", + "8894", + "4377", + "28151", + "29477", + "17150", + "20922", + "26662", + "12671", + "15673", + "15258", + "7001" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 32120 + }, + { + "id": "61a92317d15d524a1f0c065f655e17534177127c120e2a9e42076b572515783b", + "index": 1 + }, + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "address": "", + "id": "024d141d74001b045825361553377a3a1136320e920e11661a1f4b6a382b3374", + "derivation_path": [ + "16196", + "11908", + "23603", + "29255", + "21898", + "8220", + "7133", + "29738", + "29146", + "20011", + "1672", + "3051" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 13813 + }, + { + "id": "544161ed4a73bb4d80137f167c61165c262078677a1836791162174d3c6a7f09", + "index": 1 + }, + { + "id": "2e19321d744a456f0c5c47167c6701015754779321e72a4f40297801670f3763", + "index": 0 + }, + { + "id": "3a7f576a0d806b6d37220a14de267f5923191096106c70506e70b9564c41442a", + "index": 1 + } + ], + "fee": { + "quantity": 77, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 163, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, + { + "amount": { + "quantity": 241, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 75, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "16891", + "26757", + "14379", + "29867", + "30525", + "23288", + "13505", + "8301", + "30955", + "24331", + "29367", + "9418", + "17445", + "19977", + "27953", + "6928", + "894", + "10334", + "26054", + "11261", + "5029", + "6308", + "5498", + "12696", + "14844", + "4785", + "30144", + "10327", + "32686" + ], + "assets": [] + }, + { + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 33, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 35, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 31, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 190, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "30374", + "16773", + "21099", + "30214", + "24739", + "4302", + "24138", + "20455", + "2110", + "21916", + "24649", + "20910", + "21885", + "15229", + "17609", + "20620", + "15969", + "23663", + "793", + "11840", + "9638", + "8840", + "20553", + "31314", + "16021", + "15991", + "6814", + "15900", + "30674", + "8732" + ], + "assets": [] + }, + { + "amount": { + "quantity": 249, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 42, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 242, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "amount_incoming": { + "quantity": 76, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "derivation_path": [ + "16283", + "15774", + "30595", + "8965", + "20599", + "25705", + "9720", + "14543", + "32086", + "20587", + "16335", + "10127", + "2232", + "19054", + "5644", + "23891", + "29959" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "amount": { - "quantity": 114, + "quantity": 121, "unit": "lovelace" }, - "stake_address": "" - }, - { - "amount": { - "quantity": 143, + "assets_incoming": [], + "amount_incoming": { + "quantity": 104, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "derivation_path": [ + "314", + "30039", + "18648", + "605" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "amount": { - "quantity": 212, + "quantity": 102, "unit": "lovelace" }, - "stake_address": "" - }, + "address": "", + "assets": [] + } + ], + "script_validity": "valid", + "metadata": { + "17": { + "int": 0 + } + }, + "id": "00787121725d180e3b493971104a149a14345012204d6b36f11b71572bbff1fa", + "collateral": [ { "amount": { - "quantity": 129, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "quantity": 217, + "unit": "lovelace" + }, + "address": "", + "id": "3127177adc1310c4245024012e796d251e39134b2c2c693d635908260b0036d6", + "derivation_path": [ + "7492", + "8722", + "5297", + "28011", + "3264", + "23608", + "30160", + "25739", + "31000", + "14096", + "11631", + "25698", + "898", + "23722", + "13330", + "18556", + "27466", + "29486", + "30417", + "19986", + "15707", + "5707", + "27684", + "12267", + "2563" + ], + "assets": [], + "index": 1790 + }, + { + "id": "0725fa119e1c09fc1ba909240adc3ac959016122760d1f74473044056e1d8d18", + "index": 1 }, { "amount": { - "quantity": 61, + "quantity": 146, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "0f67172d55095802342e565f6d6e3d770d51786b45125369c5726c710160656d", + "derivation_path": [ + "8807", + "2234", + "11257", + "18267", + "5663", + "31529", + "8682", + "21461", + "1993", + "14237", + "31910", + "10660", + "3692", + "27025", + "27612", + "14789", + "31961", + "17138", + "5018", + "12858", + "1625", + "12406", + "8786", + "25259", + "16787", + "31918", + "25175", + "1422" + ], + "assets": [], + "index": 25292 }, { "amount": { - "quantity": 4, + "quantity": 30, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "77af2a7f7c409b9d337312687a4316496c16fe757c380f556a4f18d4243d7d0f", + "derivation_path": [ + "25997", + "19419", + "30874", + "23117", + "29300", + "1015", + "31004", + "25791", + "3780", + "24143", + "26043", + "7976", + "28900", + "30631", + "12646", + "30661", + "17918", + "11438", + "30700", + "29378", + "3142" + ], + "assets": [], + "index": 20248 + }, + { + "id": "65621566716e2f633405314c39524a901eaa765ecdbfffca542320276f227866", + "index": 1 }, { "amount": { - "quantity": 92, + "quantity": 28, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "78851f696419024a1f5e4b003bb62678771d2f4e08724c320c0a983f393c4744", + "derivation_path": [ + "28239", + "29534", + "16082", + "7570", + "30987", + "28696", + "29178", + "15051", + "14564", + "765", + "13209", + "7058", + "23335", + "17946", + "26777", + "7505", + "25698", + "27237", + "7792", + "24504", + "19231", + "3308", + "29782" + ], + "assets": [], + "index": 24460 + }, + { + "amount": { + "quantity": 243, + "unit": "lovelace" + }, + "address": "", + "id": "4a3823174e19d223c6153d7959425c240ae297065c9c5940644a320a4696df29", + "derivation_path": [ + "8181", + "13390", + "25323", + "8218", + "30004", + "11926", + "4080", + "21598", + "9827", + "2515", + "897", + "7542", + "14743", + "30629", + "8881", + "3546", + "12315", + "13555", + "32676", + "6681", + "13327", + "9667", + "12627" + ], + "assets": [], + "index": 14045 }, { "amount": { - "quantity": 61, + "quantity": 163, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "070c5d4b704a3d42769640066d0a07dd2f74203309c64f276f6946644c36b86a", + "derivation_path": [ + "21656", + "29892", + "26365", + "2863", + "22255" + ], + "assets": [], + "index": 29859 + }, + { + "id": "7c182e3106697d4d630c4f1d36871471d74c05673537f8411f370db1555e0cb1", + "index": 1 + }, + { + "amount": { + "quantity": 213, + "unit": "lovelace" + }, + "address": "", + "id": "8c476d40285247563562ca2f4c3657653f7febb0a3220e225803232322ca7174", + "derivation_path": [ + "27359", + "30462", + "27470", + "17337", + "5007", + "7937", + "26975", + "20986", + "30929", + "19276", + "6773", + "29128", + "25258", + "8170", + "12201", + "28382", + "25067", + "26360", + "27174", + "19917", + "13991", + "18861", + "10897", + "3939", + "3297", + "32336", + "5726", + "22266", + "1317", + "2300", + "29606" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 8654 + }, + { + "amount": { + "quantity": 181, + "unit": "lovelace" + }, + "address": "", + "id": "69922e3a5d6c5c21384c2b6f1f4b2c295f632b23f57f91c27d62000c204033dc", + "derivation_path": [ + "10499", + "1361", + "29553", + "12276", + "5399", + "10721", + "8107", + "124", + "201", + "9361", + "19186", + "3317", + "6984", + "27523", + "29651", + "27053", + "14951", + "2253", + "32386", + "17177", + "17579", + "20759", + "25474", + "31209", + "5872" + ], + "assets": [], + "index": 5411 + }, + { + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "address": "", + "id": "0d2b8a2e3a113839085a087c372109784648c3726e481869753d1b6d100b567c", + "derivation_path": [ + "9887", + "29112", + "10856", + "1412", + "12343", + "27904", + "6827", + "8728", + "17218", + "28880", + "29654", + "16130" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 27484 }, { - "amount": { - "quantity": 201, - "unit": "lovelace" - }, - "stake_address": "" + "id": "042d5d5071ab04685c036ccfb71715e71d6a7b09370a3f115def03192327e84a", + "index": 0 }, { - "amount": { - "quantity": 193, - "unit": "lovelace" - }, - "stake_address": "" + "id": "0d33630e035c520706ca663ea468490d6162663c432bbc3439045510134600d2", + "index": 0 }, { "amount": { - "quantity": 101, + "quantity": 236, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "4cbc09241a3f0d67d0710f2a7a4d20bc01d82a5606296c01cc602850db387b03", + "derivation_path": [ + "328", + "715", + "24601", + "28229", + "26215", + "17481", + "3271", + "9503", + "4060", + "4420", + "2276", + "27380", + "17742", + "24561", + "7895", + "4927", + "19117" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 21132 }, { "amount": { - "quantity": 28, + "quantity": 190, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "77175e116d3f507c0e514a6b461370db1f3cfb6866485a41130b0a340f790f2c", + "derivation_path": [ + "17835", + "6784", + "23994", + "7200", + "20600", + "29002", + "7875", + "494", + "20784" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 39, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 47, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 16437 }, { - "amount": { - "quantity": 76, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - } - ], - "inputs": [ + "id": "5a5e006e3d6c178f121b64e42772976f7360440e556237123262a39ee848165f", + "index": 0 + }, { - "tag": "ExternalInput", - "contents": { - "id": "7d2b4848314f0a6e3af34c40420106097b337422397b660543416f6b53625c32", - "index": 1 - } + "id": "c1a3118d7a725a65154300ca08401e382b3d78633766745683ba7e1443d7db75", + "index": 1 }, { - "tag": "ExternalInput", - "contents": { - "id": "9134584d221305432f589e40423310706a71706ac940207a4b50414c691f5404", - "index": 1 - } + "id": "38506349bfa47d2e511a33335d037b36241b521d7b7676516a0e59357b103158", + "index": 1 }, { - "tag": "ExternalInput", - "contents": { - "id": "28fd59217223556b03371a225e785658642fa21f161d40cd622e06c8495a4a17", - "index": 0 - } + "id": "3b7e3b0217bf3c494a0e5e1fdd333d69517dd0a54b967b7f48080a78115c7817", + "index": 1 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 18, - "unit": "lovelace" - }, - "address": "", - "id": "3e2572433817645d7306491042633903142d7c4f624b2ae42c20444a5c61011a", - "derivation_path": [ - "6773", - "12057", - "6838", - "15487", - "13530", - "266", - "9889", - "24293", - "24927", - "27785", - "23586", - "31273", - "4442" - ], - "assets": [], - "index": 14547 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "be7b406f527b303a367a65497479194b2fab53334c611c441b2dc76a10288b4b", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 200, - "unit": "lovelace" - }, - "address": "", - "id": "694129c5613e55357f4bf026743e79501b2673326a3e396f4b812e6ea62e9c10", - "derivation_path": [ - "20887", - "15281", - "15711", - "27690", - "29177", - "28559", - "28903", - "24253", - "16923" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 38, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 15802 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 161, - "unit": "lovelace" - }, - "address": "", - "id": "3c9d3d64414a17e81c17d2907755321a6ad9d17a4259f91a6c0adc7c30654100", - "derivation_path": [ - "22071", - "9669", - "17269", - "12077", - "27333", - "1856", - "10375", - "19170", - "22396", - "24093", - "13192", - "9269", - "24897", - "10570", - "4857", - "6215", - "8797", - "353", - "7835", - "25228", - "24353", - "12298", - "30821", - "32020" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 32062 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 133, - "unit": "lovelace" - }, - "address": "", - "id": "c274fd2355595e052f1c4d3a5d09263eca5b0c0a7139612e846f7f3d7732e632", - "derivation_path": [ - "6450", - "16932", - "22340", - "16267", - "32422", - "31928", - "18872", - "30042" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 11534 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 210, - "unit": "lovelace" - }, - "address": "", - "id": "dc09c56c1f5791f41e50039a32ca2d0400052f3eb0253f22477655d6201e6c31", - "derivation_path": [ - "2348", - "4058", - "28996", - "15924", - "9590", - "5303" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 5679 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 80, - "unit": "lovelace" - }, - "address": "", - "id": "ac7d1a31067f5ed155d37d555d3b442f147409701f41745277e17aed6e4b1b75", - "derivation_path": [ - "8794", - "20784", - "17003", - "25568", - "16495", - "9595", - "13521", - "5180", - "11167", - "17712", - "1846", - "26906", - "26514", - "12896", - "4081", - "3122", - "11416", - "29757", - "24054", - "20481", - "30607", - "26714", - "27260", - "31857", - "31854" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 18018 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 133, - "unit": "lovelace" - }, - "address": "", - "id": "24a7218156ea8d37571a144a7d81624b4d97520d6d584230209c5b68085c7b0b", - "derivation_path": [ - "14976", - "323" - ], - "assets": [], - "index": 112 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "213859094341704144190c106c352a8f084503f23262ee6b2df878557c015928", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "281bf15d19023616cbb4a71d260b70750b67d7005cfba664df7d2a6f3fca283d", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 144, - "unit": "lovelace" - }, - "address": "", - "id": "300e47119a7d6a4e9b1f4301535e6d555c116366555a8818435b7e08307a546a", - "derivation_path": [ - "21193", - "1252", - "17884", - "22202", - "30442", - "20985" - ], - "assets": [], - "index": 24116 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "17c6314f18733f0125192e67732b075d00464827845b3139e245677328231171", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "0b0e426f2e717415295d79562b2dcdca471e0d0a533263243f557efa130a56fc", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { + "amount": { + "quantity": 48, + "unit": "lovelace" + }, + "address": "", + "id": "0a213249310d00332d4a3ead00406a79466cfe067f111f204c3b192d113e5429", + "derivation_path": [ + "23853", + "5992", + "30278", + "14999", + "4419", + "11316" + ], + "assets": [ + { + "asset_name": "546f6b656e41", "quantity": 5, - "unit": "lovelace" - }, - "address": "", - "id": "12c1007e2c190d697f7fed106012210f260e637f616b68456c68695124431c6e", - "derivation_path": [ - "377", - "4013", - "4875", - "30922", - "17513", - "2345", - "14057", - "19906", - "14067", - "20382", - "28953", - "22080", - "18175", - "8649", - "7561", - "12772", - "12386", - "17840", - "27027", - "6870", - "6179", - "14576", - "7020", - "10146", - "31509", - "5220", - "21987" - ], - "assets": [], - "index": 20889 - } - } - ], - "fee": { - "quantity": 150, - "unit": "lovelace" - }, - "outputs": [ - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 147, - "unit": "lovelace" + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 29, - "unit": "lovelace" + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 42, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 2, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "25015", - "12762", - "23074", - "29325", - "19922", - "24511", - "7791", - "6099", - "20152", - "30006", - "5494", - "31915", - "14784", - "29371", - "28776", - "27744", - "29741", - "19412", - "11818", - "14865", - "24601", - "2136", - "10127", - "13165", - "25649", - "7051", - "21827", - "3178", - "9033", - "23701", - "14144" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 188, - "unit": "lovelace" + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 146, - "unit": "lovelace" + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 43, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 7, - "unit": "lovelace" + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 14, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "20428", - "11899", - "5432", - "24617" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 52, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 132, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 36, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 35, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - } - ], - "metadata": { - "3": { - "map": [ { - "k": { - "string": "𧖰" - }, - "v": { - "map": [] - } + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "k": { - "string": "𪦂𗠘𬽭" - }, - "v": { - "list": [] - } + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "k": { - "string": "𫪿" - }, - "v": { - "list": [ - { - "list": [ - { - "string": "󾣡" - } - ] - } - ] - } + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] - } - }, - "id": "0308375e17b65e88d74a700c2e292d65184622787d7a5a2253162148162f1584", - "collateral": [ - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 224, - "unit": "lovelace" - }, - "address": "", - "id": "196a703b1a1974ba202119610a54612330786f71f1401d305d657d7204761f4e", - "derivation_path": [ - "7176", - "1852", - "32385", - "25745", - "13637", - "21345", - "12071", - "28823", - "8308", - "30820", - "2590", - "12717", - "24974", - "4402", - "16309", - "20372" - ], - "assets": [], - "index": 29936 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "76105925461113504b1e0b0e67012b102c215d5854582df27b92485e623699a6", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 160, - "unit": "lovelace" - }, - "address": "", - "id": "32202f557e44517563a422e940013a613a2929206e281001020d3e87275b3f05", - "derivation_path": [ - "32216", - "1250", - "18456", - "3863", - "10114", - "27493", - "30473", - "31824", - "30595", - "8970", - "9986", - "923", - "123", - "3678", - "28535", - "32088" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 40, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 53, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 473 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 155, - "unit": "lovelace" - }, - "address": "", - "id": "697552754a48a92838700657c85f4f205bda727e429d6b0c6943476973420715", - "derivation_path": [ - "26048", - "5853", - "11333", - "9435", - "31289", - "1238", - "12709", - "24457", - "15822", - "11166", - "26050", - "21907", - "17813", - "11770", - "28269", - "7931", - "16138", - "8172" - ], - "assets": [], - "index": 2255 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 15, - "unit": "lovelace" - }, - "address": "", - "id": "0e01083f4adf3e4f051b39186912895a640e022c30587455c91700274c621f60", - "derivation_path": [ - "3832", - "23151", - "28830", - "26581", - "6664", - "12762" - ], - "assets": [], - "index": 24895 - } - } - ] - }, - { - "withdrawals": [ + ], + "index": 21343 + }, { "amount": { - "quantity": 141, + "quantity": 87, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "5201421b060c172d552d41d7c9543c49c1a1758327153174b413a4472e223636", + "derivation_path": [ + "6890", + "23294" + ], + "assets": [], + "index": 20426 }, { "amount": { - "quantity": 248, + "quantity": 150, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "5128c31856541b3f087b2c765a1e78022e680c064b62056127c15b1a4927085e", + "derivation_path": [ + "6787", + "22577", + "204" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 28787 }, { "amount": { - "quantity": 31, + "quantity": 195, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "6e77404e046ceae63c0e351d1b48eedc22443414fb4e65c61d773a626c464644", + "derivation_path": [ + "5803", + "32477", + "10269", + "30965" + ], + "assets": [], + "index": 12306 + }, + { + "id": "8c661d520a782226785d4b6249670a4a1f1c0c550b485140065b580506bf2c10", + "index": 1 }, { "amount": { - "quantity": 161, + "quantity": 142, "unit": "lovelace" }, - "stake_address": "" - }, + "address": "", + "id": "6d4e2813617a7f7667406a1f4af97bd3212b746b393d06243c617d4612587c82", + "derivation_path": [ + "18246", + "30403", + "23735", + "13320", + "18145", + "31033", + "29715", + "30911", + "8052", + "10363", + "17859", + "24898", + "13185", + "21495", + "27871", + "25691", + "14562", + "29431", + "23340", + "17801" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 30494 + }, + { + "amount": { + "quantity": 60, + "unit": "lovelace" + }, + "address": "", + "id": "69097051013cea21342f2e5c87a760bf18235dd96b466564366f4c046f1953cc", + "derivation_path": [ + "13775", + "5282", + "6734", + "18944", + "31755", + "25270", + "1751", + "7007", + "27963", + "17152", + "27844", + "7411", + "12537", + "9887" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 5268 + }, + { + "amount": { + "quantity": 220, + "unit": "lovelace" + }, + "address": "", + "id": "77c207dc1e260b5f1a4c6f6f1b171f906e53544d5a42125065065c5a39792435", + "derivation_path": [ + "7699", + "15380", + "22121", + "9601", + "14361", + "11929", + "30200", + "29565", + "25720", + "14205", + "21639", + "30239", + "17738", + "22220", + "16588", + "11029", + "19734", + "29862", + "30328", + "13910", + "2060", + "24303", + "4874", + "25713", + "428", + "24242", + "16237", + "3062", + "11450" + ], + "assets": [], + "index": 12462 + } + ] + }, + { + "withdrawals": [ { "amount": { - "quantity": 93, + "quantity": 233, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 198, + "quantity": 245, "unit": "lovelace" }, "context": "ours", @@ -11593,14 +13387,14 @@ }, { "amount": { - "quantity": 179, + "quantity": 52, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 22, + "quantity": 149, "unit": "lovelace" }, "context": "ours", @@ -11608,15 +13402,14 @@ }, { "amount": { - "quantity": 163, + "quantity": 231, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 165, + "quantity": 35, "unit": "lovelace" }, "context": "ours", @@ -11624,14 +13417,14 @@ }, { "amount": { - "quantity": 100, + "quantity": 200, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 134, + "quantity": 91, "unit": "lovelace" }, "context": "ours", @@ -11639,1875 +13432,768 @@ }, { "amount": { - "quantity": 224, + "quantity": 193, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 53, + "quantity": 2, "unit": "lovelace" }, - "context": "ours", "stake_address": "" - }, + } + ], + "inputs": [], + "fee": { + "quantity": 249, + "unit": "lovelace" + }, + "outputs": [ { "amount": { - "quantity": 103, + "quantity": 229, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 56, + "quantity": 137, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 90, + "quantity": 222, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 202, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "25595", + "6284", + "20996", + "29613", + "29763", + "6187", + "29615", + "3437", + "22875", + "31165", + "8877", + "4090" + ], + "assets": [] + }, + { + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 17, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "23268", + "29161", + "202", + "29490", + "7489", + "22385", + "29055", + "30749", + "27604", + "9331", + "8571", + "27437", + "31841", + "1592", + "1386", + "30875", + "26669", + "10420" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 233, + "quantity": 143, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "assets_incoming": [], + "amount_incoming": { + "quantity": 28, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "9432", + "15833", + "25725", + "28451", + "5229", + "28484", + "10884", + "25903", + "10787", + "30338", + "656", + "16402", + "26380", + "31878", + "3475", + "24368" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 42, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 36, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 4, + "quantity": 105, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [], + "amount_incoming": { + "quantity": 60, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "29008", + "8951", + "5174", + "29975", + "9879", + "22189", + "27040", + "364", + "19099", + "18831", + "18716", + "3890", + "32098", + "29324", + "6620" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "amount": { - "quantity": 85, + "quantity": 68, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "amount_incoming": { + "quantity": 135, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "3388", + "24764", + "20827", + "27931", + "19113", + "25682", + "6945", + "6855", + "15388", + "16100", + "9334", + "27376", + "15499", + "23795", + "20960", + "21656", + "366", + "2902", + "24540", + "13024", + "19813", + "2934", + "11434", + "29538", + "18364", + "4327", + "27431" + ], + "assets": [] }, { "amount": { - "quantity": 112, + "quantity": 179, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 2, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 60, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 201, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "1678", + "26529", + "26323", + "16894", + "8580", + "17249", + "25306", + "17688", + "27397", + "2155", + "26361", + "17396", + "11420", + "7433", + "21321", + "18458", + "26827", + "22859", + "20014", + "29858", + "13967", + "31144", + "18082", + "24904", + "4336", + "25781", + "13171", + "238", + "24708", + "28666", + "12562" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 182, + "quantity": 252, "unit": "lovelace" }, - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "amount_incoming": { + "quantity": 248, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "31438", + "27090", + "22473", + "25375", + "22026", + "7873", + "28963" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 167, + "quantity": 228, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 37, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 21, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "11651", + "24810", + "30612", + "4857", + "30583", + "16253", + "22243", + "26542", + "10634", + "2594", + "6852", + "7154", + "11729", + "8081", + "19190", + "30256", + "19999", + "25138" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "amount": { - "quantity": 173, + "quantity": 248, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "amount": { - "quantity": 196, + "quantity": 103, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 69, + "quantity": 240, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 156, + "quantity": 4, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 123, + "quantity": 109, "unit": "lovelace" }, - "stake_address": "" - } - ], - "inputs": [ - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 67, - "unit": "lovelace" - }, - "address": "", - "id": "3e12031361782255014f26c1136c585c0d39521d84d8117d0f632eb27a27574f", - "derivation_path": [ - "24128", - "32462", - "17184", - "5236", - "20886", - "2533", - "2750", - "14535", - "14998", - "24703", - "17477", - "13792", - "31845", - "8841", - "11975", - "7588", - "30940" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 22751 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 239, - "unit": "lovelace" - }, - "address": "", - "id": "3864310935417f6c37336f04092c0200687458306d567e682d017a443f4e5e65", - "derivation_path": [ - "24446", - "18903", - "4824", - "31986", - "31064", - "27352", - "15370", - "27299", - "31088", - "4047", - "23788", - "25854", - "8701", - "25704", - "11668", - "27003", - "18793", - "10334", - "22789", - "273", - "19275", - "8708", - "31549", - "32109", - "25828" - ], - "assets": [], - "index": 4317 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "2b49195a212e062d39250e78691217fc195b6f1b7b514e3c1c213a812c003d5c", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "5776207900687e2e181e6e6a294e3e0232214a4d1432891b306b1a373722d9aa", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "1c712a372911063137e82e1c4420667ca122a940a01659d421277fbf1b034122", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "002dd65877184c5c577d174d2f387547b644223551723c2fd94d48405c2e210f", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 35, - "unit": "lovelace" - }, - "address": "", - "id": "66783d55646528a4fa21622f1c634e043c1d06150c6b604e477da226474d212b", - "derivation_path": [ - "3334", - "25265", - "24915", - "1724", - "9264", - "12486", - "22725", - "30722", - "8484" - ], - "assets": [], - "index": 19237 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "68385c7065556c3834426f66042a05602064d04e2605122b1d492e90147fb054", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "52137c146e3019503f7e431e074ee87c5f0855466467de14672d4512572f2984", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 134, - "unit": "lovelace" - }, - "address": "", - "id": "e518712a7b651b385b1079fb3b44623bb8fd0c6069259f6f5e7c4c23083a7b41", - "derivation_path": [ - "6345", - "21339", - "19492", - "19318", - "12549", - "12307", - "26450", - "9081", - "17563", - "4072", - "25470", - "28995", - "19908", - "5146", - "2957", - "23627", - "1165", - "27250", - "32689", - "14157", - "8728", - "30076", - "4285", - "10062", - "20172", - "32576", - "11557", - "12454" - ], - "assets": [], - "index": 22148 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "6e2d296deb096e40aa5c78592f7d3f4163e53f8e61210f4012d96b5b66166bdd", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "507b03231c6c8527d17d01104e0d231a940b780e4f4317462f7a378b6d078a71", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "2e6a14531b365a65676a7ed1a54e21025d324e636648726b4d02045c623f461c", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "7b7147443b68182d026adf7436d47e19d4430d80074a0270303a067b6979631f", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "da7f13672c41171f2375e75d15021a471e0447746a08760a792b5c20c6386d18", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 53, - "unit": "lovelace" - }, - "address": "", - "id": "4d2540043267195f0054d8160d544a6c566a2548c57f7a241e5c01f935d6087c", - "derivation_path": [ - "287", - "13667", - "28729", - "17076", - "25862", - "32397", - "9708", - "20795", - "26759", - "16129", - "29374", - "22475", - "15518", - "10277", - "24479", - "19859", - "10543", - "25693", - "28685", - "22245", - "22681", - "16138", - "12242" - ], - "assets": [], - "index": 9926 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "163b5334547501e5312d6c796227503282226a3e0425a4545971505172052b21", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "4acc744b5a4467060f3a312176b618085a5d3b692b2e1845305e414e15755325", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "127359ff2096175c79525b11152e10150549090023390c3d19284c232f0e7049", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 45, - "unit": "lovelace" - }, - "address": "", - "id": "433f0955391365520061697814303969d3142b0838315ce1a12b4517161c4568", - "derivation_path": [ - "12486", - "21700", - "6102", - "15184", - "12623", - "18095", - "5743", - "31525", - "6231", - "12413" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 28896 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 189, - "unit": "lovelace" - }, - "address": "", - "id": "7051a11d80317779283b0cca5771a366876a6e3261610d22671f7b420c1a4b08", - "derivation_path": [ - "23499", - "9797", - "28749", - "19588", - "15176", - "13959", - "32629", - "25462", - "15515", - "22934", - "4345", - "17515", - "16932", - "11600", - "3872", - "14424" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 31953 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 75, - "unit": "lovelace" - }, - "address": "", - "id": "d077210f7fb070762a6308e1385c11216a7d1223ef25eb4c2efe564bae7f314f", - "derivation_path": [ - "17185" - ], - "assets": [], - "index": 28713 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 196, - "unit": "lovelace" - }, - "address": "", - "id": "4b0c3475da643c5add165b589e477434190e085c423d6cd24d7f36376b97425a", - "derivation_path": [ - "7763", - "19995", - "28056", - "9586", - "20930", - "18626" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 24501 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 222, - "unit": "lovelace" - }, - "address": "", - "id": "8036746fe2590c75770300536f4b0e3b855e033e05110062245578461b655001", - "derivation_path": [ - "29253", - "16260", - "7881", - "3839", - "25242", - "16972", - "5415", - "2718", - "30712", - "26090", - "7994", - "30807", - "13136" - ], - "assets": [], - "index": 32706 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "596b57730b58e9a3fd1823c82d2d0312536b3b017b09194d7a32470f38603f12", - "index": 0 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 140, - "unit": "lovelace" - }, - "address": "", - "id": "213e6a0570e134faaa63547676053b2f0853a3335a0a235825480f201f355237", - "derivation_path": [ - "1751", - "30720", - "26731" - ], - "assets": [], - "index": 16801 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "966e6d63333d7a11466f1e4e96174a46761715a1dc675d18ca3212b9bd301f0e", - "index": 1 - } - } - ], - "fee": { - "quantity": 37, - "unit": "lovelace" - }, - "outputs": [ - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 137, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 240, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 33, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 35, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 173, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "13590", - "26033", - "29120", - "19126", - "16020", - "17309", - "16749", - "10176", - "4653", - "26562", - "5240", - "28613", - "2264", - "16518", - "29729", - "22793", - "6221", - "26704", - "32171", - "11450", - "30993", - "2471", - "3468", - "21736", - "5118", - "3233", - "24624", - "8522", - "30076", - "17852" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 44, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 39, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 203, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "14223", - "4370", - "28591", - "18340", - "13612", - "31615", - "4133", - "1649", - "20956", - "25947", - "2974", - "19557", - "14929", - "16568", - "4733", - "24519", - "20929", - "9424", - "20576", - "677" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 201, - "unit": "lovelace" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 78, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - "address": "", - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 56, - "unit": "lovelace" + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 128, - "unit": "lovelace" + { + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 190, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "32730", - "499", - "27185", - "27111", - "25067", - "20392", - "6479", - "11444", - "7070", - "12782", - "23544", - "1399", - "15038", - "2370", - "31354", - "13794", - "12188", - "23839", - "30181", - "9261", - "31451", - "2741", - "6331", - "13833", - "18181", - "16173", - "1117" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 76, - "unit": "lovelace" + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 209, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "12695", - "26930", - "5709", - "21709", - "20049", - "17592", - "16437", - "27340", - "27913", - "28744", - "7833", - "8313", - "6435", - "8095", - "16969", - "16415", - "24103", - "1899", - "19926", - "29044", - "7272", - "14985", - "26653", - "30935" - ], - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 127, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 152, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "14470", - "11060", - "24911", - "21713", - "25652", - "28209", - "3654", - "9767", - "1699", - "23048", - "9687", - "8685", - "3082" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 100, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 12, - "unit": "lovelace" + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 126, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "10547", - "9871", - "26502", - "3611", - "8345", - "15803", - "21662", - "4271", - "26125", - "20126", - "23711" - ], - "assets": [] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 157, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 138, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 241, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "13173", - "15826", - "31688", - "24517", - "6935", - "23605", - "27376", - "3734", - "21258", - "9702", - "5365", - "8759", - "30805", - "471", - "15473", - "23737", - "14211", - "15158", - "9394" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 80, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 33, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 40, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 105, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 47, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } - }, - { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 225, - "unit": "lovelace" + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 253, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "25587" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 50, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 38, - "unit": "lovelace" + "amount": { + "quantity": 150, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - "address": "", - "assets": [] - } + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 237, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "13805", + "26280", + "23846", + "5682", + "12730", + "30380", + "10376", + "26259", + "12077", + "29554", + "14651", + "25807", + "18056", + "10383", + "22101", + "24809", + "13487", + "1209", + "13722", + "4144", + "10439", + "17491" + ], + "assets": [] } ], "script_validity": "valid", "metadata": { - "27": { - "list": [ - { - "map": [] - } - ] + "16": { + "list": [] } }, - "id": "6e2157083b2b47116843424913f412266473722d3b2359073b156c1d04710574", + "id": "6e4d53aa3ba85f2b3370383463200b0f7150633d110c7000454129372b477e6c", "collateral": [ { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 223, - "unit": "lovelace" - }, - "address": "", - "id": "7958677c6718f54b5c1249064a0f0e99640575480810552a4d34360bd0651842", - "derivation_path": [ - "18183", - "28618", - "19165", - "20672", - "11766", - "31699", - "10597", - "7777", - "32273", - "19370", - "3491", - "2655", - "12107", - "1801", - "31777", - "32162", - "7793", - "30120", - "18976", - "23607", - "32258", - "662", - "26851", - "5819", - "860", - "25411", - "10086", - "31962", - "10714", - "29559", - "10057" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 3750 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 130, - "unit": "lovelace" - }, - "address": "", - "id": "426e064d22c37e462a7a7c6276262d40105e48bcf22a3119331f250174701926", - "derivation_path": [ - "2209", - "8344", - "13420", - "16782", - "12546", - "20196", - "631", - "26299", - "15105", - "644", - "28379", - "28789", - "2779", - "28576", - "14078", - "6566", - "11641", - "27218", - "22861", - "9393", - "16740", - "21892", - "26589", - "23891", - "28328", - "12612" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 22352 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "address": "", - "id": "7d64315c1342cd38b65560ab8def527643371369138e395b0a5616c55e936533", - "derivation_path": [ - "18126", - "5389", - "12915" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 29768 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "467b53774716524019be6d30dfa1634e2b7f2c4616bf9d763d54566c260aecfa", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 241, - "unit": "lovelace" - }, - "address": "", - "id": "1462681c1dc6012541bc030a4c1f51201d021416241f357f519b11c8e573f96d", - "derivation_path": [ - "9204", - "13282", - "11662", - "583", - "27904", - "26204" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 24718 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "5422984d621e49205d5d6b170b4d0aee7461700464780e460c717c093454767d", - "index": 1 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "445d2c6407260524e909014d5c6633050eb931681f67515e45334bba7eec3338", - "index": 0 - } - }, - { - "tag": "ExternalInput", - "contents": { - "id": "746c584b313820382d651d537000376c807f1a40717566349ceb451414646442", - "index": 1 - } - }, - { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 230, - "unit": "lovelace" - }, - "address": "", - "id": "dc72a47f0e109bf267487f486d34583516632774763b71625f037e40180eba73", - "derivation_path": [ - "19797", - "1571", - "2824", - "20044", - "20544", - "27543", - "16692", - "13891", - "4034", - "10355", - "15301", - "10254", - "18482" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 31, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 33, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 23164 - } + "amount": { + "quantity": 18, + "unit": "lovelace" + }, + "address": "", + "id": "70ee593109440d1e3839650b37d2381d39157e0e1e6644031214755335737467", + "derivation_path": [ + "31855" + ], + "assets": [], + "index": 708 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "address": "", - "id": "367f7b7d1023ca770838153932144264665a74dfba0a562a2829695541143129", - "derivation_path": [ - "17144", - "14485", - "32523", - "2397", - "201", - "27936", - "627", - "16649", - "17012", - "16276", - "10569", - "7012", - "27600", - "23786", - "28898", - "15791", - "4333", - "15564", - "25191" - ], - "assets": [], - "index": 10363 - } + "id": "1be2a846294c7b4c2954643c0b26737f3c003b221f08071b0826493a173761fb", + "index": 0 } ] } diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiExternalInputTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiExternalInputTestnet0.json index 0a584fe0290..2a6e3f1d8ca 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiExternalInputTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiExternalInputTestnet0.json @@ -1,241 +1,270 @@ { - "seed": 2716995801063548171, + "seed": 8422840658998580064, "samples": [ { "amount": { - "quantity": 254, + "quantity": 176, "unit": "lovelace" }, "address": "", - "id": "3d0122631d565f336641015fa2341c594c02664d131963c521703483c5053e3e", + "id": "060c66010a340002f535cb35697342a23a3104e7696f4224095ac1322d217248", "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 40, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 3335 - }, - { - "amount": { - "quantity": 13, - "unit": "lovelace" - }, - "address": "", - "id": "4319d46a5b5118651a106080259f6359615a3e4e224e25367b469991191d09fc", - "assets": [], - "index": 6141 - }, - { - "amount": { - "quantity": 225, - "unit": "lovelace" - }, - "address": "", - "id": "5d346243624b49026f0e11617e1a1e55033e5f387f358c080f13c9420455747e", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, + "asset_name": "546f6b656e45", + "quantity": 58, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 16, + "asset_name": "546f6b656e44", + "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 32, + "quantity": 1, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 30, + "asset_name": "546f6b656e43", + "quantity": 1, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 6, + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 12831 + "index": 24043, + "datum": "cf1129445b24674c1d155e5f18901176ee4b62755d5e653fdd1259b1322d2c7c" }, { "amount": { - "quantity": 114, + "quantity": 2, "unit": "lovelace" }, "address": "", - "id": "2e77654128742a474f012f5c263010117b7a711f352c3d316e3c0356351d33ec", + "id": "d02481907e49204843a25b4621cb1cb955cf417760b7c55b62007e6f75104eb4", "assets": [], - "index": 24366 + "index": 29744 }, { "amount": { - "quantity": 254, + "quantity": 11, "unit": "lovelace" }, "address": "", - "id": "1b5955612409c2a63bfc6c2c5d291c2c1d2950b43c0613162a74221430717a6a", + "id": "47a8224966160f01cdda724e5a79a2336df81c4d4f22e34c062369902a4c0028", "assets": [], - "index": 21856 + "index": 1205, + "datum": "2a7d565c411d7e1e084e195d16d62a0c7a20707a107d7b57527b7ab526066a75" }, { "amount": { - "quantity": 127, + "quantity": 153, "unit": "lovelace" }, "address": "", - "id": "242f78572d5536218a3a07769078502b087de90d607d3a1a320850e25b614244", + "id": "3e1e727607705b441fc04f695903430d7e0d673af86e527b3e7e64044c0a4c73", "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 3899 + "index": 16971, + "datum": "19353c72460e7a0d599f2b59115d51fb1b343bde3d205747640c4794273a0691" }, { "amount": { - "quantity": 189, + "quantity": 167, "unit": "lovelace" }, "address": "", - "id": "529977637071b46c56123d5b091f3325657a40293c70553b3b38190e46067016", + "id": "30385a1018304f544d333c296e238e1d9a1bb52656726d627b7b190c47003e15", "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e44", - "quantity": 8, + "quantity": 30, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 25251, + "datum": "24306a2607bfec04852dd572fb506718d5d84f6657773a6c572d3461cd598c15" + }, + { + "amount": { + "quantity": 253, + "unit": "lovelace" + }, + "address": "", + "id": "1a6faa382a4b780d1572bb3045474a4c3a237f254a0f7a0b73741274091bf052", + "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 21, + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 24380 + "index": 28289, + "datum": "2b64336922169a2510005b3d4933904326a4472d29cd2b502d604015445972d5" }, { "amount": { - "quantity": 83, + "quantity": 151, "unit": "lovelace" }, "address": "", - "id": "7293597736457d2132117d53af4326097f265011526d455d67bcfe23aa216276", + "id": "2d4704726f6e4c6276e0627637671c5c3b3460376d3456376726674a39372090", "assets": [], - "index": 1204 + "index": 29384, + "datum": "1d2191f96d2415302b5d737173141d1c4d7c7a230a6c416d1906143d0320f311" }, { "amount": { - "quantity": 179, + "quantity": 159, "unit": "lovelace" }, "address": "", - "id": "59147f470d24430635522e5e01aa6571174e1611685832966bd52954661412b8", + "id": "2f04b9d3196d0b324c152a6066232e26320e0a44a0ac28660c572d633d284d13", "assets": [ { "asset_name": "546f6b656e43", - "quantity": 24, + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 27579 + "index": 24001, + "datum": "15187a5f1601214c143932f5983f9d6d163866292e33df131f0116327acc7444" }, { "amount": { - "quantity": 135, + "quantity": 150, "unit": "lovelace" }, "address": "", - "id": "e25b7f21276c2a24301d3a355332673d5c16d86e2d071d7a52386c620f725324", + "id": "681519ef5a6544792f05071d2f4c050b6a6b7f2968783d7fde6f0a92666d4729", "assets": [ { "asset_name": "546f6b656e41", "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 22631 + "index": 23951, + "datum": "3e03730afd1a39132e6a021c49396e03712e341c0a2d1a456b5ff75a725e0a5c" + }, + { + "amount": { + "quantity": 202, + "unit": "lovelace" + }, + "address": "", + "id": "6e53e96fea1d720b457b365a244ce8300ab702380eb829480f2b3d5c2a325106", + "assets": [], + "index": 27795, + "datum": "777e506a3f44427d2c146a4e379b1c5e5212305a39475c1a091d6576724b6c27" } ] } \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json index e5bac392d0f..68f927d3ee1 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiTxInputGeneralTestnet0.json @@ -1,184 +1,228 @@ { - "seed": -3538263822790919600, + "seed": -1708654607137581765, "samples": [ { - "tag": "ExternalInput", - "contents": { - "id": "3b44de6c187516c3730d6c1d32273b697b791c0e3f1f6b3f69504d3d4e7b1c1c", - "index": 0 - } + "id": "840b334b43335226181859097865cf736970247855393d4e3c6b6a3b2d1b7e45", + "index": 0 }, { - "tag": "ExternalInput", - "contents": { - "id": "282332550dba69624d3f271e484bcea756415c334b649e5a8b12237c7174783e", - "index": 0 - } + "amount": { + "quantity": 162, + "unit": "lovelace" + }, + "address": "", + "id": "4c1cba3e08a91e442b6c436b734d5e161c674a4545529d716b223a484f328b62", + "derivation_path": [ + "17125", + "18173", + "14014", + "7555", + "10855", + "14013", + "9946", + "31377", + "22343", + "9174", + "24703", + "7943", + "11738", + "15349", + "28338", + "20394", + "31190", + "6148" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 79, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 31396 }, { - "tag": "ExternalInput", - "contents": { - "id": "415352693979352560fe0b45053bbee367081b72447e720b1b442744583daf68", - "index": 1 - } + "id": "67e557032b43ff01c15346360f5b7ae3d0520226554619292f0d1b3d3b2f156e", + "index": 1 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 218, - "unit": "lovelace" - }, - "address": "", - "id": "01140d24f6101c0eed5a1970536900717e28721861ce9531875b4424cb537022", - "derivation_path": [ - "3555", - "31670", - "1237", - "2115", - "21959", - "13744", - "24936", - "15255", - "2551", - "25741", - "31586", - "10692", - "855", - "22732", - "8755", - "24833", - "10976", - "8135", - "24119", - "16140", - "25631", - "30664", - "898", - "31153", - "25813", - "27617", - "4794", - "20789", - "11313", - "25637" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 30146 - } + "id": "59ff310409270109781e1755374c5fa70c6c5c66192c52274f41706d001e5501", + "index": 1 }, { - "tag": "ExternalInput", - "contents": { - "id": "6f40656b6a7b010ff561093185275f60edb33c5c7e69ea861c5b0ad595286a70", - "index": 0 - } + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "address": "", + "id": "0f1a627352102c4d4d0ebb3ba01937175d59643d3c6a186e5e492b566b673d02", + "derivation_path": [ + "29124" + ], + "assets": [], + "index": 22717 }, { - "tag": "ExternalInput", - "contents": { - "id": "2a0b53754b7cb7523d79496145de64a3100e151d4b33556d1baa80ea1b315e10", - "index": 0 - } + "amount": { + "quantity": 230, + "unit": "lovelace" + }, + "address": "", + "id": "7d5f5e32683d79ca2068391336012e1e526922423f7527434416665b2071053c", + "derivation_path": [ + "23118", + "9814", + "17884", + "23471", + "2112", + "22357", + "18646", + "19199", + "21684", + "17176", + "23245", + "14429" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 22045 }, { - "tag": "ExternalInput", - "contents": { - "id": "2b3b5a7c1a78444b2f1e3963167e23602544611b125bd94261418a48c633232d", - "index": 1 - } + "id": "2b1ef1744b4921010458257f7c6bea045b28661cdd4b4455245403616d4118cf", + "index": 1 }, { - "tag": "WalletInput", - "contents": { - "amount": { - "quantity": 241, - "unit": "lovelace" - }, - "address": "", - "id": "1b1028150b2f610e6b194b2638614ca2743c2c401a00517c4c7d5c3b62552223", - "derivation_path": [ - "25585", - "957", - "14853", - "20940", - "11587", - "28057", - "27414", - "2235", - "12404", - "27558", - "7787", - "30436" - ], - "assets": [], - "index": 25533 - } + "id": "5149333ecb5c92366e6d135e3915740fcd140826571e5a756df21f5e79455641", + "index": 0 }, { - "tag": "ExternalInput", - "contents": { - "id": "6b170d497f17ea271e39d33918783e4533590edf150284162f0d6a873f007f2e", - "index": 1 - } + "id": "6244924533715121146e024f6323f116154d5cd90d0428423f0a6bfc5d2b4a73", + "index": 0 }, { - "tag": "ExternalInput", - "contents": { - "id": "280b013a0fa06359053354088d37235b10163a2114503f07015b03170b3f6b18", - "index": 0 - } + "amount": { + "quantity": 157, + "unit": "lovelace" + }, + "address": "", + "id": "46fc0e42041c8b2e3f32274d91168210112653405ef60e092c0301c2594f1551", + "derivation_path": [ + "214", + "18637" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 32, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 49, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 16395 } ] } \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json index ad1d0a68ef1..b162e4293f2 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json @@ -1,441 +1,454 @@ { - "seed": -1105418187405523049, + "seed": 739787873520361745, "samples": [ { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 217, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "10179", - "23924", - "32537", - "21825", - "15837", - "14069", - "22619", - "8685", - "31828", - "24043", - "16362", - "2455", - "21602", - "19793", - "19143", - "26457", - "1899", - "11583", - "22686", - "1103", - "9581", - "16435", - "12084", - "6918", - "1589", - "8682", - "487", - "12111" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "amount": { + "quantity": 81, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 174, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10379", + "30280", + "22629", + "29579", + "16777", + "24308", + "7207", + "27972", + "10448", + "9859", + "28991" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 228, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 172, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "26802", - "28728", - "30122", - "17718", - "18817", - "715", - "32241", - "17980", - "1574", - "9941", - "16872", - "4836", - "20844", - "665", - "3926", - "4398", - "13837", - "31333", - "23791", - "26142", - "25411", - "410", - "31695", - "21191", - "30716", - "20760", - "3697", - "30283", - "30098", - "20116", - "14010" - ], - "assets": [] - } + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 50, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18375", + "4599", + "15320", + "10126", + "31491", + "15848" + ], + "assets": [] }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 143, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 231, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "15015", - "2111", - "19000", - "2213", - "27791", - "19240", - "24759", - "12839", - "14663", - "14998", - "25077", - "31253", - "8516", - "11204", - "30543" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } + "amount": { + "quantity": 64, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 117, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "amount": { + "quantity": 210, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 42, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 84, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "24940", + "16608", + "26604", + "26661", + "379", + "28077", + "23255", + "12042", + "5963", + "21470", + "17872" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 127, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 120, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "5545", - "17216", - "3037", - "4308", - "19639", - "29627", - "12198", - "470", - "14467", - "15336", - "20344", - "2811", - "17655" - ], - "assets": [] - } + "amount": { + "quantity": 205, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 32, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 158, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "4882", + "19388", + "7792", + "25395", + "1365", + "10815", + "22722", + "25479", + "30690", + "20896", + "18941", + "16917", + "6982", + "18190", + "31348", + "6410" + ], + "assets": [] }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 201, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "assets_incoming": [ + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "amount_incoming": { + "quantity": 195, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18389", + "31949", + "3299", + "21016", + "15870", + "29542", + "2756", + "22818", + "28283", + "7572", + "11165", + "15276", + "12775", + "31802" + ], + "assets": [] }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 172, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 31, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "14315", - "1914", - "31247", - "17886", - "28578", - "16021", - "31249", - "27836", - "20727", - "19101", - "9385" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 43, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - } + "amount": { + "quantity": 115, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 52, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 53, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 32, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - } + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "assets_incoming": [], + "amount_incoming": { + "quantity": 64, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "31034", + "4659", + "21663", + "1031", + "6895", + "8494", + "21296", + "23101", + "6826", + "23568", + "1954", + "18686", + "16903", + "18636", + "25787", + "25994", + "32359", + "7728", + "20407", + "18374", + "32487", + "14114", + "1712", + "5404", + "11085", + "16728", + "29296", + "30188" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { - "tag": "ExternalOutput", - "contents": { - "amount": { - "quantity": 67, - "unit": "lovelace" - }, - "address": "", - "assets": [] - } + "amount": { + "quantity": 51, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "tag": "WalletOutput", - "contents": { - "amount": { - "quantity": 121, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 166, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "30581", - "14648", - "18714", - "21042", - "6278", - "9384", - "9249", - "13746", - "18786", - "15398" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - } + "amount": { + "quantity": 126, + "unit": "lovelace" + }, + "address": "", + "assets": [] } ] } \ No newline at end of file diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json index 96120f6eb0e..c41283ff7e5 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiWithdrawalGeneralNetworkDiscriminantTestnet0.json @@ -1,37 +1,39 @@ { - "seed": 3841088476435920616, + "seed": 6259355950075141976, "samples": [ { "amount": { - "quantity": 167, + "quantity": 201, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 186, + "quantity": 182, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 239, + "quantity": 8, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 17, + "quantity": 9, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 49, + "quantity": 187, "unit": "lovelace" }, "context": "ours", @@ -39,30 +41,29 @@ }, { "amount": { - "quantity": 130, + "quantity": 159, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 69, + "quantity": 24, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 119, + "quantity": 0, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 160, + "quantity": 131, "unit": "lovelace" }, "context": "ours", @@ -70,10 +71,9 @@ }, { "amount": { - "quantity": 138, + "quantity": 117, "unit": "lovelace" }, - "context": "ours", "stake_address": "" } ] diff --git a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs index 2c0bba3a75f..3c19454a806 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/Malformed.hs @@ -1288,7 +1288,7 @@ instance Malformed (BodyParam ApiSerialisedTransaction) where , ("{\"transaction\": { \"body\": 1020344 }}", "Error in $.transaction: parsing 'Base64 ByteString failed, expected String, but encountered Object") ] jsonValid = first (BodyParam . Aeson.encode) <$> - [ -- passphrase + [ ( [aesonQQ| { "transaction": "!!!" }|] @@ -1299,12 +1299,6 @@ instance Malformed (BodyParam ApiSerialisedTransaction) where }|] , "Error in $.transaction: Deserialisation failure while decoding Shelley Tx. CBOR failed with error: DeserialiseFailure 0 'expected list len or indef'" ) - , ( [aesonQQ| - { "transaction": #{validSealedTxBase64}, - "extra": "hello" - }|] - , "Error in $: parsing Cardano.Wallet.Api.Types.ApiSerialisedTransaction(ApiSerialisedTransaction) failed, unknown fields: ['extra']" - ) ] instance Malformed (BodyParam (PostTransactionOldData ('Testnet pm))) where diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 9fb73b4d3fd..d03853626b0 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -2898,6 +2898,21 @@ instance Typeable n => ToSchema (ApiConstructTransaction n) where instance ToSchema ApiMultiDelegationAction where declareNamedSchema _ = declareSchemaForDefinition "ApiMultiDelegationAction" +type ApiTxInputsGeneral (n :: NetworkDiscriminant) = [ApiTxInputGeneral n] + +type ApiTxOutputsGeneral (n :: NetworkDiscriminant) = [ApiTxOutputGeneral n] + +type ApiWithdrawalsGeneral (n :: NetworkDiscriminant) = [ApiWithdrawalGeneral n] + +instance Typeable n => ToSchema (ApiTxInputsGeneral n) where + declareNamedSchema _ = declareSchemaForDefinition "ApiInputsGeneral" + +instance Typeable n => ToSchema (ApiTxOutputsGeneral n) where + declareNamedSchema _ = declareSchemaForDefinition "ApiOutputsGeneral" + +instance Typeable n => ToSchema (ApiWithdrawalsGeneral n) where + declareNamedSchema _ = declareSchemaForDefinition "ApiWithdrawalsGeneral" + instance Typeable n => ToSchema (ApiDecodedTransaction n) where declareNamedSchema _ = do addDefinition =<< declareSchemaForDefinition "TransactionMetadataValue" diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 2aa8180c268..6cdc9cbe777 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1213,7 +1213,7 @@ x-transactionWithdrawals: &transactionWithdrawals x-ours: &ours type: string - enum: ["our"] + enum: ["ours"] description: | Used when withdrawal or output is ours. @@ -1334,77 +1334,85 @@ x-transactionResolvedInputs: &transactionResolvedInputs x-transactionInputsOutsideWallet: &transactionInputsOutsideWallet description: | - A list of transaction inputs not belonging to a given wallet. - type: array - minItems: 0 - items: - type: object - required: - - id - - index - properties: - id: *transactionId - index: - type: integer - minimum: 0 + A transaction input not belonging to a given wallet. + type: object + required: + - id + - index + properties: + id: *transactionId + index: + type: integer + minimum: 0 x-transactionInputsInsideWallet: &transactionInputsInsideWallet description: | - A list of transaction inputs belonging to a given wallet. + A transaction input belonging to a given wallet. + type: object + required: + - id + - index + - address + - amount + - derivation_path + properties: + address: *addressId + amount: *amount + assets: *walletAssets + id: *transactionId + derivation_path: *derivationPath + index: + type: integer + minimum: 0 + +x-transactionInputsGeneral: &transactionInputsGeneral type: array + minItems: 0 items: - type: object - required: - - id - - index - - address - - amount - - derivation_path - properties: - address: *addressId - amount: *amount - assets: *walletAssets - id: *transactionId - derivation_path: *derivationPath - index: - type: integer - minimum: 0 + oneOf: + - <<: *transactionInputsOutsideWallet + title: tx inputs without source not belonging to a given wallet + - <<: *transactionInputsInsideWallet + title: tx inputs belonging to a given wallet -x-transactionInputsGeneral: &transactionInputsGeneral - nullable: false - oneOf: - - <<: *transactionInputsOutsideWallet - title: tx inputs without source not belonging to a given wallet - - <<: *transactionInputsInsideWallet - title: tx inputs belonging to a given wallet +x-transactionOutputsOutsideWallet: &transactionOutputsOutsideWallet + description: | + A transaction output not belonging to the wallet + type: object + required: + - address + - amount + properties: + address: *addressId + amount: *amount + assets: *walletAssets x-transactionOutputsInsideWallet: &transactionOutputsInsideWallet description: | - A list of target outputs with amount specified belonging to wallet + A transaction output not belonging to the wallet + type: object + required: + - address + - amount_incoming + - amount + - derivation_path + properties: + address: *addressId + amount_incoming: *amount + assets_incoming: *walletAssets + amount: *amount + assets: *walletAssets + derivation_path: *derivationPath + +x-transactionOutputsGeneral: &transactionOutputsGeneral type: array minItems: 0 items: - type: object - required: - - address - - amount_incoming - - amount - - derivation_path - properties: - address: *addressId - amount_incoming: *amount - assets_incoming: *walletAssets - amount: *amount - assets: *walletAssets - derivation_path: *derivationPath - -x-transactionOutputsGeneral: &transactionOutputsGeneral - nullable: false - oneOf: - - <<: *transactionOutputs - title: tx outputs not belonging to a given wallet - - <<: *transactionOutputsInsideWallet - title: tx outputs belonging to a given wallet + oneOf: + - <<: *transactionOutputsOutsideWallet + title: tx outputs not belonging to a given wallet + - <<: *transactionOutputsInsideWallet + title: tx outputs belonging to a given wallet x-transactionResolvedCollateral: &transactionResolvedCollateral description: A list of transaction inputs used for collateral @@ -2353,6 +2361,21 @@ components: metadata: *transactionMetadata script_validity: *txScriptValidity + ApiInputsGeneral: &ApiInputsGeneral + <<: *transactionInputsGeneral + description: | + Inputs that could be external or belong to the wallet. + + ApiOutputsGeneral: &ApiOutputsGeneral + <<: *transactionOutputsGeneral + description: | + Outputs that could be external or belong to the wallet. + + ApiWithdrawalsGeneral: &ApiWithdrawalsGeneral + <<: *transactionWithdrawalsGeneral + description: | + Withdrawals that could be external or belong to the wallet. + ApiDecodedTransaction: &ApiDecodedTransaction type: object required: @@ -2364,10 +2387,10 @@ components: properties: id: *transactionId fee: *amount - inputs: *transactionInputsGeneral - outputs: *transactionOutputsGeneral - collateral: *transactionInputsGeneral - withdrawals: *transactionWithdrawalsGeneral + inputs: *ApiInputsGeneral + outputs: *ApiOutputsGeneral + collateral: *ApiInputsGeneral + withdrawals: *ApiWithdrawalsGeneral metadata: *transactionMetadata script_validity: *txScriptValidity From 1746cac9d65851b9a78b4fb48fb0a0559585e793 Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 28 Oct 2021 17:05:45 +0200 Subject: [PATCH 28/31] use normaliseDelegationAddress --- .../Scenario/API/Shelley/TransactionsNew.hs | 14 +++---- lib/core/src/Cardano/Wallet.hs | 41 ++++++++----------- lib/core/src/Cardano/Wallet/Api/Server.hs | 7 ++-- 3 files changed, 28 insertions(+), 34 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 e970dd626cc..78f76b19a32 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 @@ -345,7 +345,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let txCbor = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) let decodePayload = Json (toJSON $ ApiSerialisedTransaction txCbor) let withdrawalWith ownership wdrls = case wdrls of - wdrl:[] -> + [wdrl] -> wdrl ^. #amount == Quantity withdrawalAmt && wdrl ^. #context == ownership _ -> False @@ -480,7 +480,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let expectedTxOutTarget = WalletOutput $ ApiWalletOutput { address = addrDest , amount = Quantity 0 - , assets = ApiT $ TokenMap.empty + , assets = ApiT TokenMap.empty , derivationPath = NE.fromList [ ApiT (DerivationIndex 2147485500) , ApiT (DerivationIndex 2147485463) @@ -489,7 +489,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , ApiT (DerivationIndex $ fromIntegral addrIx) ] , amountIncoming = Quantity amt - , assetsIncoming = ApiT $ TokenMap.empty + , assetsIncoming = ApiT TokenMap.empty } let isOurTxOut :: ApiTxOutputGeneral n -> [ApiTxOutputGeneral n] -> Bool isOurTxOut expectedTxOut = (expectedTxOut `elem`) @@ -548,7 +548,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let expectedTxOutTarget' = WalletOutput $ ApiWalletOutput { address = addrDest , amount = Quantity amt -- now we have this - , assets = ApiT $ TokenMap.empty + , assets = ApiT TokenMap.empty , derivationPath = NE.fromList [ ApiT (DerivationIndex 2147485500) , ApiT (DerivationIndex 2147485463) @@ -557,7 +557,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , ApiT (DerivationIndex $ fromIntegral addrIx) ] , amountIncoming = Quantity amt - , assetsIncoming = ApiT $ TokenMap.empty + , assetsIncoming = ApiT TokenMap.empty } addrsSourceAll <- listAddresses @n ctx wa --we expect change address here with x=0 as this wallet does not participated in outcoming tx before this one @@ -574,10 +574,10 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let expectedTxOutSource = WalletOutput $ ApiWalletOutput { address = addrSrc , amount = Quantity $ initialAmt - (amt + fromIntegral expectedFee) - , assets = ApiT $ TokenMap.empty + , assets = ApiT TokenMap.empty , derivationPath = derPath , amountIncoming = Quantity $ initialAmt - (amt + fromIntegral expectedFee) - , assetsIncoming = ApiT $ TokenMap.empty + , assetsIncoming = ApiT TokenMap.empty } let txCbor' = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) let decodePayload' = Json (toJSON $ ApiSerialisedTransaction txCbor') diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index cb614cd6c54..833dff6729f 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -1179,25 +1179,27 @@ lookupTxIns ( HasDBLayer IO s k ctx , KnownAddresses s , IsOurs s Address - , WalletKey k , DelegationAddress n k + , s ~ SeqState n k ) => ctx -> WalletId -> [TxIn] - -> XPub -> ExceptT ErrDecodeTx IO [(TxIn, Maybe (TxOut, NonEmpty DerivationIndex))] -lookupTxIns ctx wid txins xpub = db & \DBLayer{..} -> do +lookupTxIns ctx wid txins = db & \DBLayer{..} -> do cp <- mapExceptT atomically $ withExceptT ErrDecodeTxNoSuchWallet $ withNoSuchWallet wid $ readCheckpoint wid - -- NOTE it is working properly for base address. + let st = getState cp + let extendAddr addr = case normalizeDelegationAddress @s @k @n st addr of + Just addr' -> addr' + Nothing -> error "knownAddresses should have valid fingerprints" let f (addr, addrState, ix) = - ( extAddr @k @n addr xpub + ( extendAddr addr , addrState , ix ) - let walletAddrs = map f $ knownAddresses (getState cp) + let walletAddrs = map f $ knownAddresses st pure $ map (tryGetTxOutPath cp walletAddrs) txins where db = ctx ^. dbLayer @IO @s @k @@ -1208,31 +1210,20 @@ lookupTxIns ctx wid txins xpub = db & \DBLayer{..} -> do let path = map (\(_, _,p) -> p) $ filter (\(addr', _,_) -> addr' == addr) walletAddrs in case path of - [] -> (txin, Nothing) -- will probably use error here + [] -> (txin, Nothing) path':_ -> (txin, Just (txout, path')) -extAddr - :: forall k (n :: NetworkDiscriminant). - ( WalletKey k - , DelegationAddress n k - ) - => Address - -> XPub - -> Address -extAddr addr xpub = - liftDelegationAddress @n @k ((\(Right finger) -> finger) $ - paymentKeyFingerprint @k addr) (liftRawKey @k xpub) - lookupTxOuts :: forall ctx s k (n :: NetworkDiscriminant). ( HasDBLayer IO s k ctx , KnownAddresses s , IsOurs s Address - , WalletKey k , DelegationAddress n k , GetPurpose k + , WalletKey k , GetAccount s k , SoftDerivation k + , s ~ SeqState n k ) => ctx -> WalletId @@ -1245,7 +1236,7 @@ lookupTxOuts ctx wid txouts xpub = db & \DBLayer{..} -> do $ withNoSuchWallet wid $ readCheckpoint wid let f (addr, addrState, ix) = - ( extAddr @k @n addr xpub + ( extendAddr cp addr , addrState , ix ) let walletAddrs = map f $ knownAddresses (getState cp) @@ -1261,15 +1252,17 @@ lookupTxOuts ctx wid txouts xpub = db & \DBLayer{..} -> do pure $ map (tryGetTxOutPath cp walletAddrs') txouts where db = ctx ^. dbLayer @IO @s @k + extendAddr cp addr = case normalizeDelegationAddress @s @k @n (getState cp) addr of + Just addr' -> addr' + Nothing -> error "knownAddresses should have valid fingerprints" tryGetTxOutPath cp walletAddrs txout@(TxOut addr _) = let allTxOuts = Map.elems $ unUTxO $ totalUTxO mempty cp in case map (\(_, _,p) -> p) (filter (\(addr', _,_) -> addr' == addr) walletAddrs) of [] -> (txout, Nothing) path:_ -> let bundles = - foldr (<>) TokenBundle.empty $ - map tokens $ - filter (\(TxOut addr' _) -> addr == extAddr @k @n addr' xpub) allTxOuts + foldr ((<>) . tokens) TokenBundle.empty + (filter (\(TxOut addr' _) -> addr == extendAddr cp addr') allTxOuts) in (txout, Just (TxOut addr bundles, path)) getChainType (_ :| [_,_,DerivationIndex i,_]) = i getChainType _ = error "expect 5 segment derivation path" diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index cc82797d098..db5d1af8d0c 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2266,6 +2266,7 @@ decodeTransaction , SoftDerivation k , GetAccount s k , GetPurpose k + , s ~ SeqState n k ) => ctx -> ApiT WalletId @@ -2276,13 +2277,13 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do (txinsOutsPaths, collsOutsPaths, outsPath, acct) <- withWorkerCtx ctx wid liftE liftE $ \wrk -> do (acct, xpub, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid - txinsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> inps) xpub - collsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> colls) xpub + txinsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> inps) + collsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> colls) outsPath <- liftHandler $ W.lookupTxOuts @_ @s @k @n wrk wid outs xpub pure (txinsOutsPaths, collsOutsPaths, outsPath, acct) pure $ ApiDecodedTransaction { id = ApiT txid - , fee = fromMaybe (Quantity 0) (Quantity . fromIntegral . unCoin <$> feeM) + , fee = maybe (Quantity 0) (Quantity . fromIntegral . unCoin) feeM , inputs = map toInp txinsOutsPaths , outputs = map toOut outsPath , collateral = map toInp collsOutsPaths From 124c0abab5dcb572f0d0d77aad4e2dddf343075b Mon Sep 17 00:00:00 2001 From: Johannes Lund Date: Fri, 29 Oct 2021 17:37:21 +0200 Subject: [PATCH 29/31] Simplify lookupTx{Ins,Outs} using isOurs This commit does sacrifice the distinction between amount and amount_incoming. The next commit addresses that. --- lib/core/src/Cardano/Wallet.hs | 106 ++++------------------ lib/core/src/Cardano/Wallet/Api/Server.hs | 41 ++++----- 2 files changed, 33 insertions(+), 114 deletions(-) diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index 833dff6729f..e561dd9cfbc 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -281,7 +281,6 @@ import Cardano.Wallet.Primitive.AddressDiscovery , IsOurs (..) , IsOwned (..) , KnownAddresses (..) - , coinTypeAda ) import Cardano.Wallet.Primitive.AddressDiscovery.Random ( ErrImportAddress (..), RndStateLike ) @@ -289,7 +288,6 @@ import Cardano.Wallet.Primitive.AddressDiscovery.Sequential ( ParentContext (..) , SeqState , defaultAddressPoolGap - , getAddressPoolGap , mkSeqStateFromRootXPrv , purposeBIP44 ) @@ -462,7 +460,7 @@ import Control.Monad.Trans.Except import Control.Monad.Trans.Maybe ( MaybeT (..), maybeToExceptT ) import Control.Monad.Trans.State - ( runState, state ) + ( evalState, runState, state ) import Control.Tracer ( Tracer, contramap, traceWith ) import Crypto.Hash @@ -560,7 +558,6 @@ import qualified Data.ByteString as BS import qualified Data.Foldable as F import qualified Data.List as L import qualified Data.List.NonEmpty as NE -import qualified Data.Map.Strict as Map import qualified Data.Set as Set import qualified Data.Text as T import qualified Data.Vector as V @@ -1175,12 +1172,9 @@ manageRewardBalance _ ctx wid = db & \DBLayer{..} -> do -------------------------------------------------------------------------------} lookupTxIns - :: forall ctx s k (n :: NetworkDiscriminant). + :: forall ctx s k . ( HasDBLayer IO s k ctx - , KnownAddresses s , IsOurs s Address - , DelegationAddress n k - , s ~ SeqState n k ) => ctx -> WalletId @@ -1191,103 +1185,37 @@ lookupTxIns ctx wid txins = db & \DBLayer{..} -> do $ withExceptT ErrDecodeTxNoSuchWallet $ withNoSuchWallet wid $ readCheckpoint wid - let st = getState cp - let extendAddr addr = case normalizeDelegationAddress @s @k @n st addr of - Just addr' -> addr' - Nothing -> error "knownAddresses should have valid fingerprints" - let f (addr, addrState, ix) = - ( extendAddr addr - , addrState - , ix ) - let walletAddrs = map f $ knownAddresses st - pure $ map (tryGetTxOutPath cp walletAddrs) txins + pure $ map (\i -> (i, lookupTxIn cp i)) txins where db = ctx ^. dbLayer @IO @s @k - tryGetTxOutPath cp walletAddrs txin = - case UTxO.lookup txin (totalUTxO mempty cp) of - Nothing -> (txin, Nothing) - Just (txout@(TxOut addr _)) -> - let path = map (\(_, _,p) -> p) $ - filter (\(addr', _,_) -> addr' == addr) walletAddrs - in case path of - [] -> (txin, Nothing) - path':_ -> (txin, Just (txout, path')) + lookupTxIn :: Wallet s -> TxIn -> Maybe (TxOut, NonEmpty DerivationIndex) + lookupTxIn cp txIn = do + out@(TxOut addr _) <- UTxO.lookup txIn (totalUTxO mempty cp) + path <- fst $ isOurs addr (getState cp) + return (out, path) lookupTxOuts - :: forall ctx s k (n :: NetworkDiscriminant). + :: forall ctx s k . ( HasDBLayer IO s k ctx - , KnownAddresses s , IsOurs s Address - , DelegationAddress n k - , GetPurpose k - , WalletKey k - , GetAccount s k - , SoftDerivation k - , s ~ SeqState n k ) => ctx -> WalletId -> [TxOut] - -> XPub - -> ExceptT ErrDecodeTx IO [(TxOut, Maybe (TxOut, NonEmpty DerivationIndex))] -lookupTxOuts ctx wid txouts xpub = db & \DBLayer{..} -> do + -> ExceptT ErrDecodeTx IO [(TxOut, Maybe (NonEmpty DerivationIndex))] +lookupTxOuts ctx wid txouts = db & \DBLayer{..} -> do cp <- mapExceptT atomically $ withExceptT ErrDecodeTxNoSuchWallet $ withNoSuchWallet wid $ readCheckpoint wid - let f (addr, addrState, ix) = - ( extendAddr cp addr - , addrState - , ix ) - let walletAddrs = map f $ knownAddresses (getState cp) - - --We are analyzing the next gapPool change addresses - let acctK = getAccount $ getState cp - let g = fromIntegral $ getAddressPoolGap defaultAddressPoolGap - let startIx = nextChangeIx walletAddrs - let changeAddrs = map (decoratechangeAddr acctK) [startIx .. startIx + g] - - let walletAddrs' = walletAddrs ++ changeAddrs - - pure $ map (tryGetTxOutPath cp walletAddrs') txouts + -- NOTE: We evolve the state (in practice an address pool) as we loop + -- through the outputs, but we don't consider pending transactions. + -- /Theoretically/ the outputs might only be discoverable after discovering + -- outputs other pending transactions. + pure $ flip evalState (getState cp) $ forM txouts $ \out@(TxOut addr _) -> do + (out,) <$> state (isOurs addr) where db = ctx ^. dbLayer @IO @s @k - extendAddr cp addr = case normalizeDelegationAddress @s @k @n (getState cp) addr of - Just addr' -> addr' - Nothing -> error "knownAddresses should have valid fingerprints" - tryGetTxOutPath cp walletAddrs txout@(TxOut addr _) = - let allTxOuts = Map.elems $ unUTxO $ totalUTxO mempty cp - in case map (\(_, _,p) -> p) (filter (\(addr', _,_) -> addr' == addr) walletAddrs) of - [] -> (txout, Nothing) - path:_ -> - let bundles = - foldr ((<>) . tokens) TokenBundle.empty - (filter (\(TxOut addr' _) -> addr == extendAddr cp addr') allTxOuts) - in (txout, Just (TxOut addr bundles, path)) - getChainType (_ :| [_,_,DerivationIndex i,_]) = i - getChainType _ = error "expect 5 segment derivation path" - changeIxs = - reverse . - L.sort . - map (\(_, _,path) -> getChainType path) . - filter (\(_, _,path) -> getChainType path == fromIntegral (fromEnum UtxoInternal)) - nextChangeIx walletAddrs = case changeIxs walletAddrs of - [] -> 0 - ix:_ -> ix + 1 - changeAddrK acctK = deriveAddressPublicKey acctK UtxoInternal - constructDelegationAddr pAddr = - delegationAddress @n pAddr (liftRawKey @k xpub) - decoratechangeAddr acctK ix = - ( constructDelegationAddr $ changeAddrK acctK $ Index ix - , Unused - , NE.fromList $ map DerivationIndex - [ getIndex (getPurpose @k) - , getIndex coinTypeAda - , 0 -- when multi-account support is introduce this could change - , fromIntegral (fromEnum UtxoInternal) - , ix - ] - ) -- | List all addresses of a wallet with their metadata. Addresses -- are ordered from the most-recently-discovered to the oldest known. diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index db5d1af8d0c..4a6000121e0 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2257,16 +2257,9 @@ balanceTransaction ctx genChange (ApiT wid) body = do decodeTransaction :: forall ctx s k n. ( ctx ~ ApiLayer s k - , KnownAddresses s , IsOurs s Address , Typeable s , Typeable n - , DelegationAddress n k - , WalletKey k - , SoftDerivation k - , GetAccount s k - , GetPurpose k - , s ~ SeqState n k ) => ctx -> ApiT WalletId @@ -2276,10 +2269,10 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do let (Tx txid feeM colls inps outs wdrlMap meta vldt, _toMint, _toBurn) = decodeTx tl sealed (txinsOutsPaths, collsOutsPaths, outsPath, acct) <- withWorkerCtx ctx wid liftE liftE $ \wrk -> do - (acct, xpub, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid - txinsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> inps) - collsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k @n wrk wid (fst <$> colls) - outsPath <- liftHandler $ W.lookupTxOuts @_ @s @k @n wrk wid outs xpub + (acct, _, _) <- liftHandler $ W.readRewardAccount @_ @s @k @n wrk wid + txinsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k wrk wid (fst <$> inps) + collsOutsPaths <- liftHandler $ W.lookupTxIns @_ @s @k wrk wid (fst <$> colls) + outsPath <- liftHandler $ W.lookupTxOuts @_ @s @k wrk wid outs pure (txinsOutsPaths, collsOutsPaths, outsPath, acct) pure $ ApiDecodedTransaction { id = ApiT txid @@ -2293,20 +2286,18 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do } where tl = ctx ^. W.transactionLayer @k - toOut (txoutIncoming, txoutPathM) = - case txoutPathM of - Nothing -> - ExternalOutput $ toAddressAmount @n txoutIncoming - Just (TxOut addr (TokenBundle (Coin c) tmap), path) -> - let (AddressAmount _ c' tmap') = toAddressAmount @n txoutIncoming - in WalletOutput $ ApiWalletOutput - { address = (ApiT addr, Proxy @n) - , amount = Quantity $ fromIntegral c - , assets = ApiT tmap - , derivationPath = NE.map ApiT path - , amountIncoming = c' - , assetsIncoming = tmap' - } + toOut (txoutIncoming, Nothing) = + ExternalOutput $ toAddressAmount @n txoutIncoming + toOut (out@(TxOut addr (TokenBundle (Coin c) tmap)), (Just path)) = + let (AddressAmount _ c' tmap') = toAddressAmount @n out + in WalletOutput $ ApiWalletOutput + { address = (ApiT addr, Proxy @n) + , amount = Quantity $ fromIntegral c + , assets = ApiT tmap + , derivationPath = NE.map ApiT path + , amountIncoming = c' + , assetsIncoming = tmap' + } toInp (txin@(TxIn txid ix), txoutPathM) = case txoutPathM of Nothing -> From 582fade96c619982a3949dabf7db838de07c1580 Mon Sep 17 00:00:00 2001 From: Johannes Lund Date: Mon, 1 Nov 2021 12:29:12 +0100 Subject: [PATCH 30/31] Remove distinction between amount and amount_incoming My reason being the combination of: 1. Unclear why we need it for this task / now. There might be interesting things to do here, but that we should be clear about what problem we're trying to solve, such that we can create a solution we're fully confident in. 2. Exposing balances of individual addresses feels at odds with the point of the wallet otherwise being maintaining a concept of balance for all addresses combined. 3. It seemed to make the implementation much more complicated --- .../Scenario/API/Shelley/TransactionsNew.hs | 10 +- lib/core/src/Cardano/Wallet/Api/Server.hs | 7 +- lib/core/src/Cardano/Wallet/Api/Types.hs | 2 - .../Api/ApiDecodedTransactionTestnet0.json | 19110 +++++++--------- .../Api/ApiTxOutputGeneralTestnet0.json | 438 +- .../test/unit/Cardano/Wallet/Api/TypesSpec.hs | 2 - specifications/api/swagger.yaml | 3 - 7 files changed, 8671 insertions(+), 10901 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 78f76b19a32..5988139cf3d 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 @@ -479,7 +479,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do let addrDest = (addrs !! addrIx) ^. #id let expectedTxOutTarget = WalletOutput $ ApiWalletOutput { address = addrDest - , amount = Quantity 0 + , amount = Quantity amt , assets = ApiT TokenMap.empty , derivationPath = NE.fromList [ ApiT (DerivationIndex 2147485500) @@ -488,8 +488,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , ApiT (DerivationIndex 0) , ApiT (DerivationIndex $ fromIntegral addrIx) ] - , amountIncoming = Quantity amt - , assetsIncoming = ApiT TokenMap.empty } let isOurTxOut :: ApiTxOutputGeneral n -> [ApiTxOutputGeneral n] -> Bool isOurTxOut expectedTxOut = (expectedTxOut `elem`) @@ -547,7 +545,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do -- accommodated in ledger output change in amount for target wallet let expectedTxOutTarget' = WalletOutput $ ApiWalletOutput { address = addrDest - , amount = Quantity amt -- now we have this + , amount = Quantity amt , assets = ApiT TokenMap.empty , derivationPath = NE.fromList [ ApiT (DerivationIndex 2147485500) @@ -556,8 +554,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , ApiT (DerivationIndex 0) , ApiT (DerivationIndex $ fromIntegral addrIx) ] - , amountIncoming = Quantity amt - , assetsIncoming = ApiT TokenMap.empty } addrsSourceAll <- listAddresses @n ctx wa --we expect change address here with x=0 as this wallet does not participated in outcoming tx before this one @@ -576,8 +572,6 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , amount = Quantity $ initialAmt - (amt + fromIntegral expectedFee) , assets = ApiT TokenMap.empty , derivationPath = derPath - , amountIncoming = Quantity $ initialAmt - (amt + fromIntegral expectedFee) - , assetsIncoming = ApiT TokenMap.empty } let txCbor' = getFromResponse #transaction (HTTP.status202, Right $ ApiSerialisedTransaction signedTx) let decodePayload' = Json (toJSON $ ApiSerialisedTransaction txCbor') diff --git a/lib/core/src/Cardano/Wallet/Api/Server.hs b/lib/core/src/Cardano/Wallet/Api/Server.hs index 4a6000121e0..888aa2d8064 100644 --- a/lib/core/src/Cardano/Wallet/Api/Server.hs +++ b/lib/core/src/Cardano/Wallet/Api/Server.hs @@ -2288,15 +2288,12 @@ decodeTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed)) = do tl = ctx ^. W.transactionLayer @k toOut (txoutIncoming, Nothing) = ExternalOutput $ toAddressAmount @n txoutIncoming - toOut (out@(TxOut addr (TokenBundle (Coin c) tmap)), (Just path)) = - let (AddressAmount _ c' tmap') = toAddressAmount @n out - in WalletOutput $ ApiWalletOutput + toOut ((TxOut addr (TokenBundle (Coin c) tmap)), (Just path)) = + WalletOutput $ ApiWalletOutput { address = (ApiT addr, Proxy @n) , amount = Quantity $ fromIntegral c , assets = ApiT tmap , derivationPath = NE.map ApiT path - , amountIncoming = c' - , assetsIncoming = tmap' } toInp (txin@(TxIn txid ix), txoutPathM) = case txoutPathM of diff --git a/lib/core/src/Cardano/Wallet/Api/Types.hs b/lib/core/src/Cardano/Wallet/Api/Types.hs index e9b3f6d4e29..f8ef6c74e54 100644 --- a/lib/core/src/Cardano/Wallet/Api/Types.hs +++ b/lib/core/src/Cardano/Wallet/Api/Types.hs @@ -1171,8 +1171,6 @@ data ApiWalletOutput (n :: NetworkDiscriminant) = ApiWalletOutput , amount :: !(Quantity "lovelace" Natural) , assets :: !(ApiT W.TokenMap) , derivationPath :: NonEmpty (ApiT DerivationIndex) - , amountIncoming :: !(Quantity "lovelace" Natural) - , assetsIncoming :: !(ApiT W.TokenMap) } deriving (Eq, Generic, Show, Typeable) deriving anyclass NFData diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json index 491ef320749..db322aa9ca3 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiDecodedTransactionTestnet0.json @@ -1,32 +1,61 @@ { - "seed": 5340834975597410932, + "seed": 7533866823232395760, "samples": [ { "withdrawals": [ { "amount": { - "quantity": 229, + "quantity": 201, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 121, + "quantity": 187, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 52, + "quantity": 225, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 203, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 37, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 90, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 126, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 171, + "quantity": 57, "unit": "lovelace" }, "context": "ours", @@ -34,7 +63,35 @@ }, { "amount": { - "quantity": 11, + "quantity": 254, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 88, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 45, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 243, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 157, "unit": "lovelace" }, "context": "ours", @@ -42,1227 +99,1454 @@ }, { "amount": { - "quantity": 109, + "quantity": 231, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 213, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 222, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 30, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 90, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 170, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 215, + "quantity": 217, "unit": "lovelace" }, + "context": "ours", "stake_address": "" } ], "inputs": [ { "amount": { - "quantity": 205, + "quantity": 166, "unit": "lovelace" }, "address": "", - "id": "6eda57461f5964f1f3397504115071286c4e594436bfa50659750c4a7c4a46db", + "id": "437d3f6d4b3365100a6a20890e0a061e0c29341f144d04364958943ae87c5a66", "derivation_path": [ - "27360", - "19597", - "10935", - "24392" + "17295", + "17724", + "9797", + "8856", + "20066", + "30467", + "31008", + "30899", + "20499", + "22850", + "32148", + "14660", + "21569", + "6265", + "20600", + "23539", + "21325", + "31801", + "1944", + "1050", + "10508", + "9771", + "7107", + "19333", + "14270", + "12545" ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 30, + "asset_name": "546f6b656e44", + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 20494 - }, - { - "id": "5f48121a71453d1b451e3a1d2852001f629f72570a497d17586328a96c302e33", - "index": 1 - } - ], - "fee": { - "quantity": 254, - "unit": "lovelace" - }, - "outputs": [ - { - "amount": { - "quantity": 37, - "unit": "lovelace" - }, - "address": "", - "assets": [ + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 9688 }, { "amount": { - "quantity": 139, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 21, + "quantity": 225, "unit": "lovelace" }, "address": "", + "id": "69215ad1783b1e687a21e502713569037b5c1a651f3034f93bce08544d0b236f", "derivation_path": [ - "16276", - "28533", - "20433", - "29336", - "14838", - "23525", - "11794", - "30988", - "153", - "28471", - "1482", - "24008", - "7416", - "13566", - "29381", - "16872", - "3072" + "22309", + "21731", + "20417", + "18952", + "28465", + "14795", + "12736", + "561", + "15144", + "26638", + "16348", + "19065", + "2471", + "1013", + "23763", + "31371", + "30130", + "25553", + "20484", + "4547", + "1179", + "1593", + "17602", + "1549", + "11585", + "4261" ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 20, + "quantity": 7, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 17, + "quantity": 48, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 17, + "asset_name": "546f6b656e44", + "quantity": 32, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 15, + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 21606 + }, + { + "id": "4a67136d06265239431f3b6cf90b6f0ef65b6e6c2643746102113b595f5d4f70", + "index": 1 }, + { + "id": "dd967a503d3a0717371b4324b82f58b24eb5511467b07d16db0f7c223f853e54", + "index": 0 + }, + { + "id": "7a714a521e5a4725d46333f50d3263ffc600584fcd7d43515b1c4918b21c0074", + "index": 1 + }, + { + "id": "5b695af977064723b41f266a8e7c66f378144f4a5b634b086a60ef6ffd177378", + "index": 1 + } + ], + "fee": { + "quantity": 224, + "unit": "lovelace" + }, + "outputs": [ { "amount": { - "quantity": 121, + "quantity": 191, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "derivation_path": [ + "16426", + "31156", + "8562", + "31419", + "29472", + "21397", + "22123", + "30707", + "5773", + "9585", + "30878", + "27250", + "13887", + "12814", + "16483", + "28033", + "29315", + "1725", + "12320", + "30381", + "8734", + "18869", + "10709", + "5947", + "31704" + ], + "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 30, + "asset_name": "546f6b656e45", + "quantity": 7, "policy_id": "00000000000000000000000000000000000000000000000000000000" } - ], - "amount_incoming": { - "quantity": 99, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "12742", - "17073", - "24321", - "1882", - "8161", - "22217", - "6215", - "24270", - "30627", - "26449", - "9324", - "18105", - "30278", - "18113", - "28142", - "23463", - "27483", - "2112", - "12643", - "4754", - "4852", - "29861", - "3994", - "27963", - "20020", - "13387", - "1304", - "16250", - "9119", - "25897", - "9004" - ], - "assets": [] + ] }, { "amount": { - "quantity": 2, + "quantity": 247, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "derivation_path": [ + "26801", + "16809", + "15230", + "30479", + "308", + "3687", + "17523", + "5304", + "30449", + "31699", + "13269", + "23758", + "29594", + "32266", + "31646", + "18318", + "21432", + "7224", + "12340", + "24233", + "11315", + "17706" + ], + "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 30, + "asset_name": "546f6b656e42", + "quantity": 13, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 49, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 93, + ] + }, + { + "amount": { + "quantity": 154, "unit": "lovelace" }, "address": "", "derivation_path": [ - "18036", - "8875" + "32063", + "12842", + "20688" ], "assets": [] - } - ], - "metadata": { - "14": { - "map": [ + }, + { + "amount": { + "quantity": 147, + "unit": "lovelace" + }, + "address": "", + "assets": [ { - "k": { - "string": "𘜄" - }, - "v": { - "string": "𩒢㦟ꛇ" - } + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "k": { - "string": "𬲺􄘈𪊵" - }, - "v": { - "bytes": "440fe7490d2dbf469d73a27ad241405c516413da7227d8387ef07a" - } + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] } + ], + "script_validity": "valid", + "metadata": { + "12": { + "list": [] + } }, - "id": "3d11780492a136022d63486576147a6aae4a153611397d297e047030152d5230", + "id": "56b6d4642d6b7a791d5de126396e864049004b31231176292c53d961dbff8076", "collateral": [ - { - "id": "524a5a795f4f2b77e7e20a593a3e44456f6afc4b644939372dd10b0420690268", - "index": 1 - }, - { - "id": "153c00110c5973145c6747213f005f62f8332f54437022180b4878170a65506e", - "index": 0 - }, { "amount": { - "quantity": 183, + "quantity": 124, "unit": "lovelace" }, "address": "", - "id": "5f1f1f2d527c051a005d189d63375f44142d26ec196616957d3678350769025f", + "id": "330cf16d43502031575d752d5e7403030fe2002f2626296daa027e43160f712c", "derivation_path": [ - "18813", - "12885", - "31858", - "8498", - "21330", - "32246", - "12534", - "20366", - "23659", - "843" + "24854", + "21020", + "781", + "20772", + "5693", + "4378", + "11287", + "521", + "22171", + "9378", + "1230", + "14936", + "6388", + "25059", + "7759", + "2409", + "865", + "16537", + "15677", + "6204", + "30335", + "28396", + "7184", + "30698" ], - "assets": [], - "index": 17650 + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 18468 }, { - "id": "332670563270606b013af17b041d2df0366e6d4948553e021424047106094f3c", - "index": 1 + "id": "4382e3992fa1146c445b696bca4c2e7368259419a0385e34e76c4d206a6c5533", + "index": 0 }, { "amount": { - "quantity": 122, + "quantity": 76, "unit": "lovelace" }, "address": "", - "id": "607306502b6f7d47c0107c770d2f782f732d063547392b0e0f0027054e7a4521", + "id": "33f85412470b1f396a61380240e653754e7d1d2b2f61996b44115f4e65cb6272", "derivation_path": [ - "23385", - "712", - "31493", - "15739", - "8938", - "19282", - "18271", - "12659", - "19569", - "23975", - "28139", - "13778", - "28364", - "14927", - "6852", - "8674", - "15384", - "27498", - "6375", - "16868", - "25874", - "15529", - "16217", - "21485", - "27405", - "6825", - "26764", - "6346" + "19347", + "2524", + "3425", + "22859", + "11244", + "23249", + "9581", + "23875", + "7758", + "5991", + "4928", + "10413", + "7053", + "6530", + "27722", + "19079", + "31064", + "19260", + "24899", + "6872", + "16966", + "17067" ], - "assets": [], - "index": 30989 + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 32, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 21739 }, { - "amount": { - "quantity": 105, - "unit": "lovelace" - }, - "address": "", - "id": "282c2032251801392362214225f6532c4715e94620247240715240c425567a3c", - "derivation_path": [ - "14922" - ], - "assets": [], - "index": 18060 + "id": "0c2348ad1e7fbe09707801cb4a63015c3f1d5733525e71137637184b0b497890", + "index": 0 }, { - "amount": { - "quantity": 107, - "unit": "lovelace" - }, - "address": "", - "id": "1f440952181f05301fbd6feb7c4626244e3d4b3e71503829406c6a7877240d3e", - "derivation_path": [ - "16149", - "1374", - "3399", - "18248", - "15867" - ], - "assets": [], - "index": 11337 + "id": "3a7eed451fb92b4f7173245b0d6d0d693412772908259c61136233203316646e", + "index": 0 }, { - "id": "2c5d9e1e4c287f21761513db323f625c466041255b483e79441c184960537517", + "id": "48c913ec755d6a6e0b3d0b7a746f479c24250061ce755e721c574b182f02f37c", "index": 1 }, { "amount": { - "quantity": 78, + "quantity": 236, "unit": "lovelace" }, "address": "", - "id": "595c383d447163333d63376c3f776f77674d014a6c5c0e0d08fd56420d70013c", + "id": "1c48ca3051634d49304d262e24543ac434183a1b0d182a565919233c254b6852", "derivation_path": [ - "6812", - "24346", - "7050", - "6223", - "9583", - "18464", - "3758", - "3676", - "29436", - "28872", - "8749", - "25495", - "16664", - "15368", - "5995", - "28716", - "10607", - "25305", - "11465", - "27068", - "4985", - "10050", - "20062", - "17581", - "8983", - "27575", - "26094", - "5607", - "27644", - "7057", - "27493" + "21254", + "9805", + "1774", + "13669" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ], - "index": 9854 + "index": 1124 }, { "amount": { - "quantity": 96, + "quantity": 254, "unit": "lovelace" }, "address": "", - "id": "0fb9d965a64e5843592fea1b435207039238021261134a4f373544539446381f", + "id": "41417c0842ed7a400f725a26277b38546e1d177c5c7d0a41d53c4707496a6d7d", "derivation_path": [ - "32093", - "376", - "11181", - "46", - "27312", - "14498", - "10560", - "20119", - "12871", - "31965", - "11896", - "9671", - "18996", - "32147", - "10569", - "24528", - "8307", - "17717", - "12383", - "27519" + "17457" ], - "assets": [], - "index": 6514 + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 21123 }, { - "amount": { - "quantity": 137, - "unit": "lovelace" - }, - "address": "", - "id": "7f6a67075a18e23d0a427619c7684335492f4e0f133e707c7615281c102d08b8", - "derivation_path": [ - "23619", - "21208", - "25108", - "20667", - "13658", - "14718", - "28973", - "28982", - "11281", - "3890", - "26081", - "16641", - "1854", - "10973", - "3509", - "10264", - "9671", - "11490", - "18966", - "2121", - "26362", - "8247", - "13081", - "13671", - "6682", - "22303" - ], - "assets": [], - "index": 2177 + "id": "032c2b3a762952b903762bb95bbb451ade1c066f2962ed3376552a3965406c11", + "index": 1 }, { "amount": { - "quantity": 169, + "quantity": 246, "unit": "lovelace" }, "address": "", - "id": "0a103c051e78639a045f0c5935207a3a51473f3f230f425a5a5e263f51317c6c", + "id": "d5505d0a3a17cc6e6972735f79696048122d771166a56b60f616544b5d1cc7cf", "derivation_path": [ - "18658", - "5691", - "17828", - "4834", - "17154", - "28486", - "12434" + "11782", + "14821", + "8733", + "31406", + "31257", + "21498", + "12582", + "5676", + "25517", + "29729", + "10072", + "23039", + "12496", + "8447", + "3620", + "9991" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 25411 - } - ] - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 21, - "unit": "lovelace" - }, - "stake_address": "" + "index": 24039 }, { - "amount": { - "quantity": 234, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "3d537b5fba3e06217b127ed949600f647533723b994104231e4e038b616e4ea6", + "index": 1 }, { - "amount": { - "quantity": 196, - "unit": "lovelace" - }, - "stake_address": "" + "id": "391362197f095b0c190fb30c500fe7f3a263325200651e080957b803432b6b0e", + "index": 0 }, { "amount": { - "quantity": 59, + "quantity": 67, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "1323683745191636425d043ff7bc792b7b3b941e121502393445571e0820013c", + "derivation_path": [ + "4967", + "21527", + "9633", + "4141", + "17422", + "6319", + "4897", + "21489", + "30661", + "14013", + "9836", + "24679", + "23435", + "12448", + "5089", + "30735", + "5612", + "11154", + "24603", + "19140", + "27534", + "3656" + ], + "assets": [], + "index": 1873 }, { - "amount": { - "quantity": 199, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "795c070f5e06a170227ca5442e2e0e5b0a7c0d5e75580c4425120bfb58090f5e", + "index": 1 }, { - "amount": { - "quantity": 112, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "2b0d204c7a2d431d3f62322f9b48107745743c7d777e210fb6e0543f4c0c2aea", + "index": 1 }, { - "amount": { - "quantity": 111, - "unit": "lovelace" - }, - "stake_address": "" + "id": "536b0e244ad6777a63792651601057e6675f12357a2e0a178f4d7a0c884c1935", + "index": 0 }, { "amount": { - "quantity": 41, + "quantity": 190, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "413f103e5f381a71377f3e053d7b2e42715f377a7e491c69775bcf711d7c0f2f", + "derivation_path": [ + "4493", + "29928", + "17963", + "11856", + "9247", + "24788", + "450", + "27943", + "30245", + "21647", + "27038", + "12153", + "9669", + "19904", + "8703", + "1042", + "4145", + "10776", + "17121", + "27301", + "9705", + "15254", + "1037", + "31428", + "21209", + "26509" + ], + "assets": [], + "index": 15993 }, { "amount": { - "quantity": 113, + "quantity": 127, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "0eb63915a11719736a032d06089ba050137e5d9a3f743331785d32493667683b", + "derivation_path": [ + "15416", + "18913", + "10891", + "7735", + "4068", + "29706", + "17961", + "12217", + "9249", + "27241", + "10220", + "10687", + "5720", + "19745", + "504", + "30657", + "18356", + "14993", + "30906", + "15427", + "18105", + "29318", + "5092" + ], + "assets": [], + "index": 31925 }, { "amount": { - "quantity": 159, + "quantity": 139, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" - } - ], - "inputs": [ - { - "id": "6fb01351de74d238784f7aa17f3c5e6366560b75405f643b17031c66732a7a78", - "index": 0 + "address": "", + "id": "1c3d482e263d5b1a7ca3747156371b6773e40517093d7d4edb176c0f235f214a", + "derivation_path": [ + "14354", + "3233", + "24564", + "11194", + "7431", + "20855", + "29892", + "6688", + "9262", + "8582", + "23985", + "2689", + "29565", + "4284", + "5924", + "6015", + "17256", + "20486", + "7447", + "6098", + "13176", + "32423", + "13384", + "18302", + "7451", + "26029", + "31307", + "7425" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 29649 }, { "amount": { - "quantity": 75, + "quantity": 231, "unit": "lovelace" }, "address": "", - "id": "0c4409a47320133871004f09307d913679696968d16270749b0f4300471f7b31", + "id": "27ec0a7e697b0e203400722a182b584207603f605158160d2f1a6fcd998a4db2", "derivation_path": [ - "19612" + "19214" ], "assets": [], - "index": 1279 + "index": 31534 + }, + { + "id": "2c4d284c3e7352635948254f2b051b677b696228040a366c03553119746b241e", + "index": 1 }, { "amount": { - "quantity": 134, + "quantity": 207, "unit": "lovelace" }, "address": "", - "id": "106d7a361d5c51e5587750d5643d664d5734b29dec07e628494f2a49050a9273", + "id": "218a0e25a3f2325e0afd2e0741672433d175305d7a0b1e4928593d6f682b1838", "derivation_path": [ - "25118", - "21307", - "30286", - "10258", - "26240", - "13761", - "28306", - "32080", - "17171", - "31370", - "1873", - "5534", - "11154", - "10282", - "14754", - "31565", - "10238", - "32677", - "10003", - "7045", - "3542" + "3057", + "19168", + "15745", + "10528", + "9950", + "19171", + "20708", + "31638", + "6421", + "11568", + "8630", + "18784", + "17608", + "26602", + "32062", + "5959" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 23, + "asset_name": "546f6b656e42", + "quantity": 29, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 10477 + "index": 2822 }, { - "id": "2e5d3400380b64265b22f54a3c558158c24d296a721515c2c5735d36fd704e1c", + "id": "26587851313a1a16077e55373c552d6f63a619303a357a634e175e0526676e0a", "index": 0 }, + { + "id": "3f256b48a57c4f72442b5e3a6c1d76226d033229365bd54b101365747f3ba6cb", + "index": 1 + }, { "amount": { - "quantity": 151, + "quantity": 251, "unit": "lovelace" }, "address": "", - "id": "bb2a519b55173d726222396e837172473a4f6630761112213839773c68eb5312", + "id": "6049788a58756c3100761b43035c185c437574433541791a020d06765f657bc6", "derivation_path": [ - "27722", - "13326", - "26878", - "18019", - "25999", - "31150", - "4013" + "2390", + "21797", + "31495", + "23480", + "12752", + "4896", + "23512", + "29536", + "27922", + "12994", + "26328", + "11222", + "30649", + "16654", + "27829", + "1987", + "22143", + "32409", + "2959", + "3043", + "22395", + "11037", + "3513", + "13317", + "20011", + "1263", + "13513", + "26910", + "17713", + "21607" ], "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ], - "index": 6451 - }, - { - "id": "725ec24d564d315b20056041827c3f7c3ba57d5ccb4d307d6f3d7a4c1f642772", - "index": 1 + "index": 7320 }, { "amount": { - "quantity": 140, + "quantity": 237, "unit": "lovelace" }, "address": "", - "id": "796633281c2c52485b272e66f323513ba62077cd3107680849095825182ed161", + "id": "1f7d1e0e6232c21b3336db5729fdc76d830a8511282c050d236a7a0e57041c6c", "derivation_path": [ - "12750", - "9113", - "28880", - "17558", - "12732", - "10696", - "10466", - "7674", - "31034", - "26083", - "32700", - "8652" + "26255", + "3181", + "13624", + "5597" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 12, + "asset_name": "546f6b656e45", + "quantity": 30, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 30028 + "index": 6238 }, { "amount": { - "quantity": 230, + "quantity": 150, "unit": "lovelace" }, "address": "", - "id": "7f41711e210720a82b75703a342cf9374f0a73ff7b3f78443e426d535a1e0405", + "id": "450c64700c272634c845472a4c1c5d803c624e3e23e8006139465b5c210b0368", "derivation_path": [ - "4012", - "2785", - "24407", - "28840", - "25012", - "24172", - "11214", - "22971", - "8727", - "22612", - "25087", - "2422", - "17647", - "17794", - "7913", - "15056", - "8496", - "6144", - "5075" + "6669", + "23766", + "24920", + "11255", + "14209", + "17712", + "10379", + "15388", + "17888" ], "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 38, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 16, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 27, + "quantity": 40, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 29, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 16465 + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 30, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 132, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 133, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 204, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 111, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 88, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 246, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 198, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [ + { + "amount": { + "quantity": 11, + "unit": "lovelace" + }, + "address": "", + "id": "166645422f5b6a9e3798007c2d3f0d3e0d0239b221455a3a1e6c685c3a5c5260", + "derivation_path": [ + "8117", + "22615", + "8108", + "9570", + "2209", + "17567", + "2639", + "12971", + "14232", + "11020", + "25096", + "1529", + "31351", + "4881", + "17389" + ], + "assets": [], + "index": 27996 + } + ], + "fee": { + "quantity": 1, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "address": "", + "assets": [ { "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } + ] + } + ], + "script_validity": "invalid", + "metadata": { + "28": { + "bytes": "" + } + }, + "id": "0a1170e6e56757a2664b681e3a5e3a834068716e253e0e692801de227f56680d", + "collateral": [ + { + "amount": { + "quantity": 231, + "unit": "lovelace" + }, + "address": "", + "id": "2e1c797f37716c185d121d3ed02247116d30c53671793b592b12343b4a02705e", + "derivation_path": [ + "23108", + "18977", + "19978", + "2753", + "2499", + "19964", + "63", + "2302", + "26882", + "5834", + "24229", + "22958", + "3451", + "3636", + "11695", + "26567", + "31332", + "22501", + "18930", + "26022", + "28271", + "32608", + "18574", + "29802" ], - "index": 26558 + "assets": [], + "index": 23834 + }, + { + "id": "bc2e7a46620604176e2d232f062d834d49683cef65615177150554000c25b153", + "index": 0 + }, + { + "id": "4a21361723541222503407a860cc1137595d139413188d571269b7109027511b", + "index": 0 }, { - "id": "05e24a3f4154705a7729773126a97a3b303849479775164d6ddb426f69f94e5e", + "id": "453a504e6956646b533be75263042b0d1375610f2706750a204f64550a17551b", "index": 1 }, { - "id": "2e442d0e74547579942a2e5c092a42735c16fc2572aa49ca46f812437549036c", + "id": "33336c57d94e6a64c4312b3a126825441f254f7b296a2d0e835e1270663a2f33", "index": 0 }, { - "id": "731c506f305849ed5f1b74226c134e7b737609786f6e23777e6f1ed66c21000e", + "id": "584e613a7d3d184c3b16242b2a3128672e24150a243c2ec718d5966b26a8654e", "index": 0 }, { "amount": { - "quantity": 177, + "quantity": 28, "unit": "lovelace" }, "address": "", - "id": "69140c4d3aef4423415a15b84b520af8253d3b3139b3253d00273d6e3d68559a", + "id": "35030ed71ae7402d644a3850151e7360934f08270439207f2049242c0d625220", "derivation_path": [ - "19491", - "21078", - "22746", - "11079", - "12062", - "14788", - "21568", - "21871", - "28701", - "29658", - "4878", - "4161", - "8143", - "25122", - "21895", - "15402", - "21984", - "21318", - "6690", - "7913", - "19436", - "10788", - "21373", - "31817" + "1007", + "6105" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", "quantity": 25, "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 19511 + "index": 32480 }, { - "id": "303d2ab5333a4126565436a90a2579517f83565a75527b676db4324e6b544743", - "index": 0 + "id": "737f3b344a739f664877ee1b3c15424e661845d8760b4765765bdc2b366346b8", + "index": 1 }, { "amount": { - "quantity": 182, + "quantity": 221, "unit": "lovelace" }, "address": "", - "id": "002a8b22577147dd6a1c183d03bd77566164c36e3b48bb6c3018506e128aef39", + "id": "16216073ed0a2776f2323c6778156075007554e87a223e647a025570573d3f49", "derivation_path": [ - "29218", - "4138", - "25356", - "1410", - "19676", - "10691", - "29197", - "4749", - "30048", - "2730", - "7870", - "8735" + "12149", + "16818", + "8841", + "2278", + "25808", + "28836", + "26334", + "8331", + "12483", + "4201", + "6915", + "8417", + "11437", + "18761", + "7828", + "12772" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 18, + "asset_name": "546f6b656e44", + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" } ], - "index": 1162 + "index": 11974 }, { - "id": "20735b2b2832ef5e3e3a68114f5a253cfd6e2b3e0e7d160c2f3e060426660d13", - "index": 1 + "id": "45cb3f3d43f826629d370ae512465c5e6fc5310846424e201d41605c50355260", + "index": 0 }, { "amount": { - "quantity": 200, + "quantity": 180, "unit": "lovelace" }, "address": "", - "id": "c8054b2172d87f067a002c328a49340c0b61ac7d0124546a09fc250dfa617ddf", + "id": "08117f2e213b7431166d106fa920dd3b074571435f0554db763a8d09737c662e", "derivation_path": [ - "23039", - "24409", - "7085", - "31277", - "27605", - "13773", - "29535", - "26743", - "5605", - "19256", - "26801", - "26630", - "11976" + "3663", + "21317", + "19035", + "17071" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 48, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, + "quantity": 15, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 12821 + "index": 832 }, { - "id": "6e245611ba3c022a0d460e43c15f237d0f54463d6d177e107f46681862425af0", - "index": 0 + "id": "5a3804142996695e190e1d5d7b7329ac4f631e98576b3b487f4fa1197a22af57", + "index": 1 }, { "amount": { - "quantity": 238, + "quantity": 223, "unit": "lovelace" }, "address": "", - "id": "0e5a52730983090465692d06506c12371e6030457f082f388b23223826d92e35", + "id": "33d8772e4c1e011b18fe38771d00c99b2b650472b8a25736077e3a380c2d308b", "derivation_path": [ - "5056", - "1235", - "31080", - "12867", - "1050", - "8090", - "20749", - "26830", - "14885", - "31828", - "32291", - "17672", - "20938", - "639", - "18591", - "28324", - "25173", - "718", - "12496", - "18615", - "22171", - "14173", - "3823", - "305", - "13628", - "8781", - "8758", - "22605" + "15944" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 44, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 33, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, { "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ], - "index": 8021 - }, - { - "id": "5c3e696076703c029593516b4868e9708f71275d08310053271f6a34f53b1752", - "index": 0 + "index": 19627 }, { "amount": { - "quantity": 166, + "quantity": 90, "unit": "lovelace" }, "address": "", - "id": "fd5a2720723a29e82ec3276bb6222a5a570a7f6179f373356d44381436643a4b", + "id": "333ce65d1589682324bd2758291d133b07e425456a1d291141165b1b6d4a1177", "derivation_path": [ - "11081", - "4833", - "31004", - "32126", - "13338", - "8962", - "7537", - "14840" + "12807", + "3804", + "31138", + "32045", + "4343", + "23238", + "6594", + "14560", + "4404", + "25805", + "6951", + "18110", + "8321", + "22008", + "5838", + "18872", + "21045", + "24956", + "7128", + "11226", + "30429", + "15462", + "25248", + "9207", + "22156", + "11444", + "24090", + "15511", + "12753", + "3827", + "12114" ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 12761 - } - ], - "fee": { - "quantity": 70, - "unit": "lovelace" - }, - "outputs": [ - { - "amount": { - "quantity": 143, - "unit": "lovelace" - }, - "assets_incoming": [ { "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 31, + "quantity": 9, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 96, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "29600", - "6047", - "29138", - "31530", - "11034", - "28959", - "15763", - "4181", - "15106", - "31067", - "15645", - "21603", - "30867", - "4776" - ], - "assets": [] + "index": 16328 }, { "amount": { - "quantity": 90, + "quantity": 120, "unit": "lovelace" }, "address": "", - "assets": [] - }, - { - "amount": { - "quantity": 160, - "unit": "lovelace" - }, - "assets_incoming": [ + "id": "71301a443c332811bbf544211003330b6d28434f1a04462f7d695d546e205891", + "derivation_path": [ + "815", + "13680", + "4835", + "18859", + "12645", + "3007", + "1478", + "13875", + "27658", + "7920", + "19871", + "29469", + "747", + "16957", + "3658", + "2560", + "19102", + "10871", + "21758", + "14818", + "25227", + "31800", + "18360", + "1178", + "6008", + "11018" + ], + "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 21, + "asset_name": "546f6b656e41", + "quantity": 38, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 27, + "asset_name": "546f6b656e42", + "quantity": 32, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 16, + "asset_name": "546f6b656e43", + "quantity": 13, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { @@ -1271,1122 +1555,1395 @@ "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 25, + "asset_name": "546f6b656e44", + "quantity": 11, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, + "asset_name": "546f6b656e41", + "quantity": 11, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 50, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 46, + "asset_name": "546f6b656e43", + "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 161, + "index": 5493 + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 194, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "26213", - "10138", - "10161", - "10051", - "5401", - "10898", - "21904", - "31511", - "23268", - "3038", - "3292", - "13681", - "6314", - "9283", - "26238", - "20407", - "20775", - "21168", - "25534", - "28332", - "109", - "22883", - "23487", - "11252", - "390", - "26935", - "25853" - ], - "assets": [] + "stake_address": "" }, { "amount": { - "quantity": 118, + "quantity": 20, "unit": "lovelace" }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 198, + "quantity": 225, "unit": "lovelace" }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "stake_address": "" }, { "amount": { - "quantity": 154, + "quantity": 77, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 47, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 40, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "22767", - "28506", - "3736", - "653", - "1094", - "15995", - "22770", - "24725", - "31878", - "18945", - "17653", - "8017", - "5054", - "57", - "2441", - "8878" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 86, + "quantity": 203, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 219, + "stake_address": "" + }, + { + "amount": { + "quantity": 24, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "8266", - "2843", - "11489", - "21176", - "20237", - "317", - "12203", - "16824", - "13829", - "29047", - "5412", - "8893", - "30945", - "20404", - "30406" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 180, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 21, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 218, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 246, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 249, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 135, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 204, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 80, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "id": "05112b40192c73692b0200580f30ee26225af71b4c645c285073274a220d3b51", + "index": 1 + }, + { + "amount": { + "quantity": 1, + "unit": "lovelace" + }, + "address": "", + "id": "127a58320062206be8222a62a1ef4b1c229b386521b46b7d2f63e10472b82dbb", + "derivation_path": [ + "15162", + "30104", + "3364", + "32747", + "10984", + "30723", + "2678", + "2466", + "8448", + "18214", + "7441", + "17583", + "27308", + "20086", + "23814", + "12353", + "23247", + "25163", + "22838", + "10793", + "4706", + "6408", + "15290", + "17389", + "12697" + ], + "assets": [ { "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 50, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 49, + "asset_name": "546f6b656e41", + "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 4, + "quantity": 9, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 38, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "quantity": 21, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 11, + "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 2883 }, { - "amount": { - "quantity": 136, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "id": "4af176222e5267ff0429062ec5297d030719ae1e3a361021ca6969350c94654d", + "index": 0 + }, + { + "id": "10116300a00e6f614e370f5f19723d391365a7022c7d46ef0efbfa1c177e0f66", + "index": 1 + }, + { + "id": "013d71192750151e43296b630f4549793e067445246b70164767ac69724cbf10", + "index": 0 }, { "amount": { - "quantity": 135, + "quantity": 155, "unit": "lovelace" }, "address": "", + "id": "58d6917d44c7a51b7e034052f1987f416d204f28122b091513de6d1f3f3e392e", + "derivation_path": [ + "27169", + "10971", + "4270", + "29108", + "30352", + "8931", + "8357", + "25815" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 20, + "asset_name": "546f6b656e41", + "quantity": 2, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 20, + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 30, + "asset_name": "546f6b656e42", + "quantity": 17, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 2, + "asset_name": "546f6b656e43", + "quantity": 13, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 26, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 5, + "asset_name": "546f6b656e42", + "quantity": 41, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 18, + "quantity": 3, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 12, + "asset_name": "546f6b656e43", + "quantity": 9, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 46, + "asset_name": "546f6b656e45", + "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 49, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 27, + "quantity": 8, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 1006 }, { "amount": { - "quantity": 45, + "quantity": 246, "unit": "lovelace" }, "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "id": "487dab0e39716f2c47626927c13a0837b960436f4955090a966034435d3b6a2b", + "derivation_path": [ + "28897", + "20237", + "28246", + "32110", + "8160", + "7518", + "28434", + "13630", + "21387", + "15902", + "114", + "26441", + "25244", + "12445", + "31861", + "21620", + "25488", + "7415", + "30254", + "627", + "20876", + "24457", + "31009", + "7184", + "27539", + "12914", + "20496", + "31330", + "3838", + "32143", + "19410" + ], + "assets": [], + "index": 31327 }, { "amount": { - "quantity": 70, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 125, + "quantity": 71, "unit": "lovelace" }, "address": "", + "id": "7d2966a359566f085001552df5250251143bed6e3fb7448636031d796f1f4617", "derivation_path": [ - "2265", - "19788", - "12755", - "29389" + "10029", + "15537", + "3573", + "25801", + "32507", + "14330", + "10169", + "6472", + "12608" ], - "assets": [] + "assets": [], + "index": 11550 + }, + { + "id": "1e7755413b896a5d500a0a484961384e2005450c79234c47371aa64a796e3060", + "index": 1 + }, + { + "id": "084457312328222d284c380e411227295542907635154d6da758241a69172930", + "index": 0 }, { "amount": { - "quantity": 26, + "quantity": 5, "unit": "lovelace" }, "address": "", + "id": "224a33140a5e2e07583c1f0f2d39210b7562003c743a7e0931687e2245261b70", + "derivation_path": [ + "1330", + "27397", + "22553", + "5230", + "4322", + "2189", + "420", + "30455", + "31059", + "19723", + "28494", + "27654", + "195", + "13599", + "20565", + "25150", + "9261", + "29052", + "20215", + "1605", + "9651", + "16697", + "22444", + "10691", + "6883", + "12950", + "13046", + "3136", + "6142", + "2869", + "23210" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e44", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } - ] + ], + "index": 18500 + } + ], + "fee": { + "quantity": 166, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 6, + "unit": "lovelace" + }, + "address": "", + "assets": [] }, { "amount": { - "quantity": 180, + "quantity": 85, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 37, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 16, + "asset_name": "546f6b656e43", + "quantity": 26, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "quantity": 19, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 1, + "asset_name": "546f6b656e45", + "quantity": 23, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, + "quantity": 2, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 178, + ] + }, + { + "amount": { + "quantity": 199, "unit": "lovelace" }, "address": "", "derivation_path": [ - "16973", - "1816" + "11991", + "3829", + "23822", + "10071", + "9488", + "16577", + "2977", + "24983", + "19716", + "32250", + "16300", + "19272", + "22138", + "27386", + "11593", + "9259", + "3992", + "9669", + "17639", + "18812" ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] }, { "amount": { - "quantity": 38, + "quantity": 132, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } + "address": "", + "derivation_path": [ + "15876", + "1854", + "13730", + "22793", + "32450", + "22932", + "16775", + "31316", + "22417" ], - "amount_incoming": { - "quantity": 149, + "assets": [] + }, + { + "amount": { + "quantity": 161, "unit": "lovelace" }, "address": "", "derivation_path": [ - "23952", - "29853", - "13492", - "8480", - "28314", - "3210", - "23473", - "29232", - "9241", - "15560", - "11337" + "6520", + "22913", + "29747", + "13109", + "27276", + "3244", + "24768", + "29733", + "12103", + "22824", + "14352", + "3890", + "25636", + "22281", + "2849", + "22416", + "24750", + "21127", + "29464" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] }, { "amount": { - "quantity": 25, + "quantity": 229, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 161, "unit": "lovelace" }, "address": "", "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 25, + "asset_name": "546f6b656e41", + "quantity": 24, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 2, + "asset_name": "546f6b656e43", + "quantity": 21, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 15, + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 33, + "quantity": 37, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 229, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 175, + "quantity": 103, "unit": "lovelace" }, "address": "", "derivation_path": [ - "1368", - "20169", - "24509", - "19344", - "26678", - "22240", - "665", - "964", - "14099", - "23214", - "9672", - "22711", - "31774", - "30480", - "12638", - "32687", - "30933" + "25254", + "60", + "28571", + "13626", + "2340", + "31800", + "24320", + "27043", + "19951", + "2111", + "3279", + "29845", + "8265", + "12144", + "13250", + "25505", + "21807", + "30624", + "6947", + "16098", + "2989", + "5218", + "20624", + "30888", + "28651", + "2376", + "18293", + "31833", + "17066" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e42", - "quantity": 58, + "quantity": 23, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 22, + "asset_name": "546f6b656e44", + "quantity": 21, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e41", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e43", - "quantity": 13, + "quantity": 19, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 13, + "asset_name": "546f6b656e45", + "quantity": 36, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 17, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 27, + "quantity": 67, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 46, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 213, + "quantity": 38, "unit": "lovelace" }, "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "script_validity": "valid", - "metadata": { - "8": { - "list": [ - { - "string": "󶧴󲏼" - }, - { - "list": [ - { - "string": "𢰾鉕" - }, - { - "int": 1 - } - ] - }, - { - "list": [ - { - "map": [] - }, - { - "map": [ - { - "k": { - "string": "蠊凩" - }, - "v": { - "string": "􍣴" - } - } - ] - } - ] - } - ] - } - }, - "id": "116c732b031a55762a1d3e1a6d5e6c14574b2417a216147e05399bfe7d48f20d", - "collateral": [ - { - "id": "51fad75e423f79144b6d0538551c02266b2277586d965b1d02224f3c5b144b61", - "index": 1 + "assets": [] }, { "amount": { - "quantity": 251, + "quantity": 41, "unit": "lovelace" }, "address": "", - "id": "0682504c63126df3611b65f20b070e12682865105d02ec26fc55992f4897e118", "derivation_path": [ - "22055", - "7236", - "30009", - "29622", - "23207", - "4169", - "20958", - "29961", - "2594", - "22797" + "14641", + "15185", + "23566", + "11434", + "10757", + "26180", + "24957", + "15614", + "17352", + "30570", + "31071" ], - "assets": [], - "index": 25579 + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { - "id": "69371f72313c07745c640c327b1025491d8c252a35d89b64674d79285605b80e", - "index": 1 + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "6832", + "26170", + "11455", + "19869", + "15673", + "31136", + "1907", + "16229", + "31086", + "10724" + ], + "assets": [] }, { - "id": "03432d7e4a3f59383a8f771705436dc341024d102e205c1a5f0b4115190c1936", - "index": 0 + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18383", + "21132", + "14300", + "543", + "28870", + "5222", + "28841", + "32725", + "28448", + "10765" + ], + "assets": [] }, { "amount": { - "quantity": 164, + "quantity": 226, "unit": "lovelace" }, "address": "", - "id": "c6ec3e1a48435035cfed071c3afe33624b3f030f134a1994123c6002e05c2036", "derivation_path": [ - "28288", - "7783", - "7450", - "31382", - "26748", - "11741", - "16362", - "7466", - "8083", - "13112" + "4812", + "30424", + "2163", + "16432", + "10625", + "8136", + "14931", + "8428", + "10573" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } - ], - "index": 20625 - }, - { - "id": "d31923647e27fd5c0873105a7c417f1a5cba4248027d190a70634a223a2b392f", - "index": 0 + ] }, { - "id": "71312279025f4741153362700e54493b000e7840593624164a6429081334266a", - "index": 1 + "amount": { + "quantity": 186, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "15599", + "15627", + "30807", + "21088", + "19959", + "10565", + "15152", + "5604", + "13301", + "5285", + "10759", + "19253", + "28333" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { - "id": "7129553c1e122b00406b04604c280e3400415d658d746f72de073455c53c0e0b", - "index": 1 + "amount": { + "quantity": 5, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "amount": { - "quantity": 109, + "quantity": 190, "unit": "lovelace" }, "address": "", - "id": "3a2c787441f2435b0164416801ba5c28ce68551a573562643371292a021c742f", - "derivation_path": [ - "4148", - "21944", - "1235", - "6410", - "13219", - "19579", - "13174", - "6170", - "7154", - "4881", - "24118", - "533", - "30690", - "4946", - "28214", - "32426", - "15408", - "18647", - "28535", - "19506", - "17293", - "17342", - "3914", - "7716", - "12012", - "21165", - "26043", - "21760" - ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 45, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e44", - "quantity": 22, + "quantity": 14, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 2, + "quantity": 49, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 46, + "asset_name": "546f6b656e41", + "quantity": 35, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 46, + "quantity": 8, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 23865 + ] }, { "amount": { - "quantity": 141, + "quantity": 62, "unit": "lovelace" }, "address": "", - "id": "272f5c23066e16ec1164075a05178b31723743301d4c1d967a250a3966543863", - "derivation_path": [ - "3947", - "26495", - "13065", - "13936", - "14541", - "2886", - "14890", - "18372", - "19049", - "31784", - "7912", - "9054", - "13211", - "22448", - "24969", - "5179", - "28678", - "15524", - "23396", - "13073", - "18339", - "1900", - "9446", - "4168", - "10232" - ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 15771 - }, - { - "amount": { - "quantity": 192, - "unit": "lovelace" - }, - "address": "", - "id": "e422354b75395d4d3237682264036808265c5de68758597a2666195352562935", - "derivation_path": [ - "8085", - "12492", - "24998", - "26514", - "9942", - "10497", - "11891", - "32585", - "20955", - "14641", - "23265", - "15419", - "31638", - "10639", - "29030", - "21255", - "27062", - "23617", - "30782", - "19187", - "11602", - "16676", - "21894", - "32044", - "8453", - "8503", - "27002" - ], - "assets": [ + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } - ], - "index": 24910 + ] }, { "amount": { - "quantity": 152, + "quantity": 33, "unit": "lovelace" }, "address": "", - "id": "30a80421381e274603712f11d80330744d1aa4fcaa3a4a163a7d22046a5c4472", "derivation_path": [ - "951", - "9022", - "17529", - "21600", - "17765", - "16095", - "918", - "13652", - "27336", - "14763", - "17357", - "17511" + "27196", + "28289", + "11698", + "7575", + "31348", + "18529", + "15823", + "10688", + "27125", + "133", + "13217", + "29213", + "17802", + "11530", + "2401", + "1797", + "31838", + "7829", + "32252", + "25789", + "11056", + "2662", + "6066", + "17452", + "30664", + "17141" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 1, + "asset_name": "546f6b656e41", + "quantity": 9, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 12, + "asset_name": "546f6b656e43", + "quantity": 34, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 54, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 69, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 56, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 32, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 77, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 51, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 25, + "asset_name": "546f6b656e41", + "quantity": 61, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, + { + "asset_name": "546f6b656e41", + "quantity": 35, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, { "asset_name": "546f6b656e43", "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 24520 + ] }, { "amount": { - "quantity": 12, + "quantity": 162, "unit": "lovelace" }, "address": "", - "id": "615b04ba706e4751647a5e76322010591b056d6b29630d707f187a3f61a6522c", - "derivation_path": [ - "8243" - ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 20786 - } - ] - }, - { - "withdrawals": [ + ] + }, { "amount": { - "quantity": 71, + "quantity": 184, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 12, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "amount": { - "quantity": 249, + "quantity": 22, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "derivation_path": [ + "26088", + "10372", + "735", + "10855", + "19855", + "9778", + "24491", + "5949", + "21073", + "6035", + "19416", + "9082", + "29405", + "24326", + "14453", + "9596", + "12324", + "27196", + "29753" + ], + "assets": [] }, { "amount": { - "quantity": 134, + "quantity": 247, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "derivation_path": [ + "16380", + "26192", + "19140", + "17193", + "11432", + "24424", + "1072", + "1577", + "32549", + "19329", + "10911", + "22849", + "3403", + "12422", + "6739", + "28969", + "16474", + "14633", + "1698", + "26126", + "31340", + "11749", + "9005", + "32027", + "29303", + "18986", + "20644", + "23185", + "27593" + ], + "assets": [] }, { "amount": { - "quantity": 156, + "quantity": 25, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 248, + "quantity": 61, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "amount": { - "quantity": 121, + "quantity": 54, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "amount": { - "quantity": 192, + "quantity": 84, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 63, + "quantity": 36, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "derivation_path": [ + "8871", + "31002", + "19040", + "10644", + "29260", + "26522", + "30476" + ], + "assets": [] }, { "amount": { - "quantity": 154, + "quantity": 170, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "derivation_path": [ + "3011", + "13302", + "7947", + "10881", + "19557", + "2681", + "24941", + "5841", + "22158", + "22330", + "18114", + "1498", + "11675" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "amount": { - "quantity": 46, + "quantity": 158, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "derivation_path": [ + "14210", + "3216", + "13745", + "1929", + "71", + "12939", + "27344", + "16614", + "23829", + "27333" + ], + "assets": [] + } + ], + "script_validity": "valid", + "metadata": null, + "id": "6f4b087469612700533dee1e5e5b12612d1fc121520aa9b7122c0f460658554c", + "collateral": [ + { + "id": "44e8354e273d443656d6d25b52793345272e685e150f56665f2e717e78671901", + "index": 1 }, { "amount": { - "quantity": 132, + "quantity": 74, "unit": "lovelace" }, - "stake_address": "" - }, + "address": "", + "id": "48ab4867552b2120b9606f2748730c41ad6f397b5eea5767110d12050e38331d", + "derivation_path": [ + "7769", + "24179", + "2008", + "31377", + "7098", + "3808", + "14608", + "22996", + "11048", + "124", + "15694", + "25844", + "23020", + "28171", + "13443", + "32123", + "8716", + "29835", + "3174", + "9958", + "15032" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 77, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 10493 + } + ] + }, + { + "withdrawals": [ { "amount": { - "quantity": 7, + "quantity": 206, "unit": "lovelace" }, "context": "ours", @@ -2394,7 +2951,7 @@ }, { "amount": { - "quantity": 195, + "quantity": 105, "unit": "lovelace" }, "context": "ours", @@ -2402,30 +2959,29 @@ }, { "amount": { - "quantity": 197, + "quantity": 131, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 153, + "quantity": 109, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 30, + "quantity": 151, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 207, + "quantity": 244, "unit": "lovelace" }, "context": "ours", @@ -2433,468 +2989,390 @@ }, { "amount": { - "quantity": 50, + "quantity": 77, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 147, + "quantity": 155, "unit": "lovelace" }, - "context": "ours", "stake_address": "" - }, + } + ], + "inputs": [ { "amount": { - "quantity": 179, + "quantity": 116, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "48252441c1341d0b732ee9a948026a2a112c7c6b26b6090303132150154207c3", + "derivation_path": [ + "10957", + "31624", + "14165", + "2932", + "15734", + "32240", + "25716", + "201" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 17603 }, { "amount": { - "quantity": 130, + "quantity": 187, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" - } - ], - "inputs": [ - { - "id": "294a3cab3b5d747c003123ac280e490482ceb02f683a55207d8a8d6f4a284271", - "index": 0 + "address": "", + "id": "0e6821796d4e5e66645787152b7662673a7e7d0bec352aac1e254a46c30c7f44", + "derivation_path": [ + "14495", + "30430" + ], + "assets": [], + "index": 11937 }, { "amount": { - "quantity": 64, + "quantity": 68, "unit": "lovelace" }, "address": "", - "id": "45653e1255487f71021e6b66125024c44000704b246ae167a7057b05566d7e5c", + "id": "266f07385768546b165b5e36c327744c51ff4b07c6b2457d622c1133672b7a5a", "derivation_path": [ - "2021", - "15042", - "20124", - "25728", - "25463", - "9365", - "1849", - "11444", - "6633", - "29825", - "28933", - "14874", - "27515", - "17637" + "31371", + "11212", + "13467", + "22723", + "1932", + "4714", + "4688", + "7381", + "24072", + "26547" ], "assets": [], - "index": 30079 - }, - { - "id": "412071347e7e520406167962b21107355f2a23667eb54800d42438bf6e306617", - "index": 0 + "index": 7633 }, { "amount": { - "quantity": 17, + "quantity": 162, "unit": "lovelace" }, "address": "", - "id": "2108570a03013ea24e434c527662d43d1760565d506f5645240b705074000c22", + "id": "614f61317e4c076c1a3b1474415735043a330a781476a6685f3f3d1e591bf62a", "derivation_path": [ - "12465", - "2820", - "14628", - "21176", - "12721", - "18519", - "16059", - "23405", - "13725", - "24282", - "16973", - "18342", - "8992", - "28039", - "30162", - "1648", - "28201", - "31973", - "30643", - "31490", - "2337", - "917" + "32093", + "24986", + "24323", + "6110" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 26981 + "index": 25946 }, { - "id": "07792d64495d101d264e3e041e640551666bda243a60567f657309046c4c6568", + "id": "615c92172e6757240d7a1e5bea16a139124b2923680e48bd2801512c00121f5f", "index": 0 }, { - "id": "6e1c1f7c771d036206723c4803bf3a7e6d73205a543f4e09537020a518b345e8", + "id": "7b15fb07102062282c4c0a2d784d393ded7e1b020ac11e163301a9487b2ea307", "index": 1 }, { "amount": { - "quantity": 58, + "quantity": 211, "unit": "lovelace" }, "address": "", - "id": "11110478444dcd119a22241430677a4f3f835507007432d44e644d073f3d56a9", + "id": "6307096d7a470e7757695b764c2c3621380c235d9c8020d5ff692254f6633a38", "derivation_path": [ - "15233" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } + "22196" ], - "index": 2411 - }, - { - "id": "125974ccc1247f074535427407a2a64371cc61585ce64e33801f602ebb60090f", - "index": 1 + "assets": [], + "index": 21078 }, { - "id": "34fc1c5a192d66250406a2d5467b6b3de4181678374c15c975985c08034900c1", + "id": "49a450052e5b785c8b11243c5fb712dc3670756d0039543d186e51265e6b5a4a", "index": 0 }, { "amount": { - "quantity": 96, + "quantity": 37, "unit": "lovelace" }, "address": "", - "id": "7136151212013a5f1b426e543b1e9d151d337250c25ea0c4000a06a50a5b7916", + "id": "7a5f6c7c7f9941f74a526b023f574f10483c79b128201f63186aff8704102a6b", "derivation_path": [ - "21574", - "21718", - "22322", - "3488", - "29332", - "14441", - "12106", - "3908", - "19270", - "13830", - "7583", - "11523", - "2292", - "14429", - "12112", - "17116", - "19782", - "3240", - "10225", - "7583" + "29342" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 18498 - }, - { - "id": "0406cfd9074c74dfbc4e5c971068637118727153562c0936214a2d573b0d4d1c", - "index": 1 - }, - { - "id": "264d2196440f6f470153460d7b564b7f1c30f15a7761a76b5e050a7424352c4b", - "index": 0 - }, - { - "id": "0c787512453196505c0c56590472721b093c24504438e37c79718a655538522e", - "index": 1 - }, - { - "id": "441d560c38385154be24386c6f0d5577597256231dbb296e194d0433531b7546", - "index": 1 - }, - { - "id": "41e94e196f4408686669523b3768157753795c7d02d754179f135f31d1875f15", - "index": 0 - }, - { - "amount": { - "quantity": 150, - "unit": "lovelace" - }, - "address": "", - "id": "360a9b5016640d6cd712456200013fa512435c7d0194514a1831506b72435677", - "derivation_path": [ - "1964", - "25512", - "32670", - "31369", - "15893", - "18218", - "17965", - "26256", - "11681", - "7195", - "19195", - "425", - "2608", - "10643", - "30647", - "785", - "29573", - "26349", - "9099", - "24236", - "24531", - "26723" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 3, + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 32, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e44", + "quantity": 26, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 20, + "asset_name": "546f6b656e45", + "quantity": 8, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e43", + "quantity": 11, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 32, + "quantity": 25, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 2647 - }, - { - "id": "1f0808212c167448237c34b9fd926d14067c2d67540d137b0f3c45160b0f5879", - "index": 1 + "index": 4801 }, { "amount": { - "quantity": 68, + "quantity": 109, "unit": "lovelace" }, "address": "", - "id": "c807bc33f43328000a66703657492a7a33390c5545272e3a790b7861761f3b9e", + "id": "211a765033144065da514b668ae50d0825541ac7504372063808d61377c0d021", "derivation_path": [ - "1800", - "13066", - "6522", - "22235" + "32103", + "17165", + "11303", + "6556", + "8688", + "5380", + "19342", + "2071", + "29812", + "867", + "30836" ], "assets": [ { "asset_name": "546f6b656e45", - "quantity": 13, + "quantity": 25, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 29, + "quantity": 26, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 21, + "quantity": 13, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 12, + "asset_name": "546f6b656e41", + "quantity": 9, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 27, + "asset_name": "546f6b656e42", + "quantity": 12, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 11, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 37, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 2, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 2870 - }, - { - "id": "48c2057c713708474f6b0e18170644fc343fe61b109018e18d3d5317a2732c17", - "index": 1 - }, + "index": 30309 + } + ], + "fee": { + "quantity": 164, + "unit": "lovelace" + }, + "outputs": [ { "amount": { - "quantity": 164, + "quantity": 180, "unit": "lovelace" }, "address": "", - "id": "3561161135746b2879715b47125a473e6317153472522a7b4ffd563a5c5b4212", "derivation_path": [ - "13140", - "13150", - "22482", - "8420", - "12283", - "32172", - "28865", - "20557", - "1493", - "20708", - "17822", - "8497", - "6565", - "4573", - "9253" + "5043", + "24772", + "18839", + "20313", + "10924", + "29940", + "32592", + "20732", + "3524", + "12361", + "27068", + "2777", + "29416", + "12168", + "19844", + "4271", + "5441", + "18793", + "14777", + "27216", + "19240", + "335", + "30664", + "13478", + "6582" ], - "assets": [], - "index": 6627 - }, - { - "id": "57156e6359691f3532c03f2e127453493246e9281c69370a17132347712e13c2", - "index": 1 + "assets": [] }, { "amount": { - "quantity": 174, + "quantity": 172, "unit": "lovelace" }, "address": "", - "id": "2c9d5792647b763460797e434b7798af85671a453a1f7a6d975b77516d31521c", - "derivation_path": [ - "12046", - "8078" - ], - "assets": [], - "index": 18629 + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, - { - "id": "2e017a5d5b7d61f31bdd4c781f24337e0b7c275a6a1a3a226c4e11191117270f", - "index": 1 - } - ], - "fee": { - "quantity": 113, - "unit": "lovelace" - }, - "outputs": [ { "amount": { - "quantity": 107, + "quantity": 147, "unit": "lovelace" }, "address": "", + "derivation_path": [ + "2900", + "6307", + "8933", + "7799", + "14695", + "22114", + "9742", + "31628", + "16164", + "16463", + "4504", + "11050", + "17315", + "1531", + "19510", + "18882", + "14417", + "4856", + "26956", + "15651", + "14754", + "24510", + "18291", + "8538" + ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "amount": { - "quantity": 114, + "quantity": 71, "unit": "lovelace" }, "address": "", - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 44, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 127, + "quantity": 27, "unit": "lovelace" }, "address": "", @@ -2902,204 +3380,438 @@ }, { "amount": { - "quantity": 231, + "quantity": 53, "unit": "lovelace" }, "address": "", - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] }, { "amount": { - "quantity": 166, + "quantity": 118, "unit": "lovelace" }, "address": "", - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "amount": { - "quantity": 46, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 66, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "7307", - "51", - "27759", - "10841", - "4566", - "27987", - "27188", - "25138", - "29579", - "20861", - "12198", - "17411", - "3712", - "25872", - "7103", - "16402", - "16994", - "19923", - "18906", - "32287", - "16401", - "14935", - "24048", - "20108", - "26386", - "27394" - ], - "assets": [] - }, - { - "amount": { - "quantity": 92, + "quantity": 230, "unit": "lovelace" }, "address": "", "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 55, + "asset_name": "546f6b656e42", + "quantity": 5, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 29, + "asset_name": "546f6b656e43", + "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 52, + "asset_name": "546f6b656e42", + "quantity": 16, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 18, + "quantity": 14, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, + { + "asset_name": "546f6b656e41", + "quantity": 31, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, { "asset_name": "546f6b656e44", - "quantity": 25, + "quantity": 15, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 7, + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] + } + ], + "script_validity": "valid", + "metadata": { + "17": { + "int": 0 + } + }, + "id": "821b5e940d5aca74541f2b04176b2f7e393205643dfd372362dc5c567656d80c", + "collateral": [ + { + "amount": { + "quantity": 142, + "unit": "lovelace" + }, + "address": "", + "id": "61455a44406b4fe50a1a691d1f24a853596b8d0a0f61154e4d15605676244876", + "derivation_path": [ + "28730", + "25427", + "32357", + "26257", + "2795", + "9276", + "31889", + "12847", + "15489", + "17902", + "7585", + "10904", + "23465", + "21457", + "19321", + "14937", + "1722", + "24464", + "32103", + "15467", + "28875", + "30877", + "13363" + ], + "assets": [], + "index": 2491 + }, + { + "id": "6b7a120425e94a632323151571643002101a72051904386b232605fe51434237", + "index": 0 + }, + { + "id": "433f715b2e28ea018513651d1d5f6c237307b722505dbc71247a3b7f30102d02", + "index": 1 }, { "amount": { - "quantity": 147, + "quantity": 196, "unit": "lovelace" }, "address": "", + "id": "04f0f84a53417201a52d324a1809394c7d435c76303a37662b7c1555057d163a", + "derivation_path": [ + "23737", + "18448", + "4167", + "8028", + "12461", + "17456", + "12184", + "12651", + "4564", + "5303", + "9689", + "17732", + "13685", + "1742", + "24581" + ], "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 572 + }, + { + "amount": { + "quantity": 136, + "unit": "lovelace" + }, + "address": "", + "id": "d32fb66b650c4d239a10152e0a3d2d330e313b48704a24c0139c352250437f64", + "derivation_path": [ + "27004", + "6817", + "5057", + "3242", + "26990", + "21078", + "29070", + "28455", + "30838", + "24003", + "19701", + "2473", + "23180", + "5416", + "30183", + "14010", + "26466", + "17620", + "8923", + "21461", + "24500", + "24856" + ], + "assets": [], + "index": 10744 + }, + { + "id": "4c684064a7f14d6e1c59cb1871030364f4ce222444025b1abc2e791b27307b07", + "index": 1 + }, + { + "amount": { + "quantity": 133, + "unit": "lovelace" + }, + "address": "", + "id": "63575465797566037743452f46331663434c357317b71747658f15ae7f78a178", + "derivation_path": [ + "14468", + "20927", + "12200", + "27379", + "6401", + "27841", + "28496", + "17248", + "6576", + "4779" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 31750 + }, + { + "id": "7b7b5a4e677356422a536b124b2a0e630243097a9e4d55bd2b413b53500aed26", + "index": 1 + }, + { + "id": "0b60209d0e7c435b07531b5d4c45504524670f326922f56f230b2ab1391f500b", + "index": 0 + }, + { + "id": "7e5d37245f06bf664752749d24284a3e6a477d37ef027c3f7c6b603827025c67", + "index": 0 + }, + { + "amount": { + "quantity": 103, + "unit": "lovelace" + }, + "address": "", + "id": "523b12572a3cb567c87334191a30410d104e1c5f0355ac404e486623676ff44b", + "derivation_path": [ + "3100", + "2636", + "4255", + "16129", + "28155", + "9071", + "24572", + "17161", + "24143", + "22321", + "24616", + "6167", + "46", + "9961", + "3313", + "15336", + "7912", + "26879", + "32508", + "21695", + "28018", + "22949", + "718", + "11138", + "31551", + "21908", + "8089" + ], + "assets": [], + "index": 16087 + }, + { + "amount": { + "quantity": 125, + "unit": "lovelace" + }, + "address": "", + "id": "5e061c62300c6c4f36486e1b3f7446774778692b2326703a305e23197d227224", + "derivation_path": [ + "12354", + "12976", + "6121", + "23566", + "14770", + "688", + "16981" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 68, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 47, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 41, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 4, + "asset_name": "546f6b656e42", + "quantity": 26, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e41", - "quantity": 21, + "quantity": 19, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 3, + "asset_name": "546f6b656e43", + "quantity": 22, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 29240 }, { "amount": { - "quantity": 213, + "quantity": 104, + "unit": "lovelace" + }, + "address": "", + "id": "75e249a7933419402f2b369d392531f37eba0cb838b00d1aaa117e69f34f313f", + "derivation_path": [ + "3812", + "30262", + "20875" + ], + "assets": [], + "index": 866 + }, + { + "id": "c23821015c697155370a543864707c255559446a4c1b6841597c7606117d713b", + "index": 0 + }, + { + "amount": { + "quantity": 95, "unit": "lovelace" }, "address": "", + "id": "44472427216e6e64370a1247757f6ecf236457384e453d250078147e1b39cb14", + "derivation_path": [ + "2682", + "13151", + "29047", + "24539", + "16127", + "14102", + "16112", + "25817", + "21132", + "21819", + "5410", + "9921", + "23008", + "17249", + "5636", + "31056", + "25590", + "26811" + ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 42, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 2, + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { @@ -3108,36 +3820,127 @@ "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 34, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 39, + "asset_name": "546f6b656e45", + "quantity": 14, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 1267 + }, + { + "id": "2a083578170da92e423f2d6f7a0a496b35731f2565510ff0000eda5f69015e6e", + "index": 0 + }, + { + "amount": { + "quantity": 12, + "unit": "lovelace" + }, + "address": "", + "id": "4a47195d104850917d656fd85f1a0e3b6e2b671dc811473f481a185125747044", + "derivation_path": [ + "25273", + "10829", + "412", + "28052", + "30377", + "4760", + "26793", + "30031", + "29585", + "3760", + "15918", + "6412", + "7025", + "26477", + "3477", + "14126", + "26990" + ], + "assets": [], + "index": 18739 + }, + { + "id": "91c110184b7a1a35f31f13a515259b6c22b96d320a1b312b5f6f4e36701bc268", + "index": 1 + }, + { + "id": "446c1264a9511b406c530f775e2712002238254949783a05495f45271a7e0222", + "index": 1 + }, + { + "id": "355d350b644f177de65b621a2a091f172a2229062712d94945ca59222f384f23", + "index": 1 + }, + { + "id": "5b5f7a0f05829e3744281ac13632d02349335a471ce133065b2c0239790a5d53", + "index": 0 + }, + { + "id": "d78859211b07ec6106497d7d636979f93767aa766be16e656c38037279456374", + "index": 0 + }, + { + "amount": { + "quantity": 28, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "id": "244d6a61587cbe492d7437fe3e400638350652af394f27755b1f517e36113166", + "derivation_path": [ + "8440", + "22022", + "19596", + "22719", + "19834", + "3751", + "11393", + "19780", + "25634", + "27657", + "32357", + "757", + "4955" + ], + "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 51, + "asset_name": "546f6b656e41", + "quantity": 13, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 56, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 14, + "quantity": 24, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { @@ -3145,4524 +3948,300 @@ "quantity": 8, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e44", - "quantity": 54, + "quantity": 21, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 21, + "quantity": 7, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 3, + "quantity": 1, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 19, + "quantity": 20, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 21, + "asset_name": "546f6b656e44", + "quantity": 9, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "amount_incoming": { - "quantity": 234, + "index": 19371 + }, + { + "id": "422f7d443253692d692ef07e590524287d37382418491c1c6043425950faee09", + "index": 1 + }, + { + "amount": { + "quantity": 53, "unit": "lovelace" }, "address": "", + "id": "83cc7a9c0d51686cde905f5f3cee284b33782f1b0a251a095f39770a052e637b", "derivation_path": [ - "20650", - "2785", - "7131", - "19779", - "26539", - "12168", - "5741", - "17791", - "15364", - "4774", - "29189", - "5274", - "12982", - "13870", - "10650", - "12882", - "25698", - "19665", - "15032", - "19453", - "4591", - "12354", - "10548", - "32266", - "19874" + "3767", + "4891", + "23702", + "27350", + "23223", + "14478", + "3545" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 183, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 37, + "asset_name": "546f6b656e41", + "quantity": 21, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 34, + "index": 11426 + }, + { + "amount": { + "quantity": 167, "unit": "lovelace" }, "address": "", + "id": "22497d1e339401d16d7c77285f40ae73aa154c194ccf356f23513e75cc2ce948", "derivation_path": [ - "32344", - "28543", - "22081", - "4879", - "21997", - "13263", - "20046", - "24086", - "27117", - "1944", - "25652", - "9021", - "21444", - "18170", - "19791", - "22068", - "19879" + "5909", + "17820", + "5482", + "20231" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } - ] + ], + "index": 1415 + }, + { + "id": "715c8b4a130d3d135a6cec06df38192203694f2d150d42083d1f694f33666851", + "index": 1 + }, + { + "id": "4bd97b274c6511307939343a194f763060581571a76f6a6a07c1115b186c9c6f", + "index": 0 + }, + { + "id": "3f1b2174cb37491455e4072f5b0c6e485d1f36031a8255785f31306e68803e23", + "index": 1 }, + { + "id": "0632341c525a43209a8b4a8314103aad749f5911281b2c7b6a7b1271797ba23b", + "index": 0 + } + ] + }, + { + "withdrawals": [ { "amount": { - "quantity": 175, + "quantity": 31, "unit": "lovelace" }, - "address": "", - "assets": [] + "stake_address": "" }, { "amount": { - "quantity": 9, + "quantity": 63, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 219, + "stake_address": "" + }, + { + "amount": { + "quantity": 163, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "11851", - "29537", - "13108", - "25477", - "21005", - "31043", - "16218", - "17948", - "423", - "7987", - "23401", - "12411", - "23792", - "8888", - "3856", - "1212", - "13259", - "11429", - "1200", - "27509", - "10145", - "20881", - "9998", - "29562" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 62, + "quantity": 89, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 45, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 64, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 73, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "10751", - "5518", - "29818", - "26594", - "7838", - "6744", - "10417", - "18781", - "21192", - "32376", - "2185", - "23092", - "19573", - "2193", - "22441", - "28414", - "6139", - "27321", - "8648", - "975", - "3352", - "25015", - "10841", - "17691", - "27634", - "29109", - "19684", - "32493", - "30738" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 45, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 106, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 67, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "1231", - "10757", - "6016", - "16635", - "5455", - "13438", - "25086" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 35, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 79, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 228, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "9841", - "31933", - "19550", - "20246", - "30098", - "11883", - "2600", - "15659", - "18920", - "26286", - "19046", - "22021", - "2583", - "21709", - "11317", - "17067", - "4039", - "22153", - "2529", - "18480", - "25355", - "24734", - "10556", - "2023", - "32178", - "12328", - "22733", - "26730", - "6423", - "20170" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "amount": { - "quantity": 20, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "amount": { - "quantity": 4, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 25, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "8780", - "24215", - "21550", - "22158", - "18175", - "4198", - "19401", - "2299", - "12057", - "19818", - "3881", - "32001", - "32491", - "315", - "9426", - "32461", - "1846", - "12258", - "4351", - "1068", - "719", - "11683" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 75, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 159, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "10532", - "11939", - "25068", - "3739", - "24080", - "24668", - "6128", - "22448", - "16145", - "22297", - "18613", - "15682", - "17663" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 92, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 39, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "22974", - "7690", - "10217", - "14693", - "9363", - "6954", - "25673", - "16604", - "6881", - "14813", - "29162", - "24768", - "10194", - "4273", - "31506", - "15434", - "28737", - "12956", - "15009", - "17193", - "22957", - "20051", - "29638", - "28828", - "15642", - "24800", - "32241" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "metadata": { - "8": { - "list": [ - { - "bytes": "4f751850443e6c2707" - }, - { - "int": 3 - }, - { - "map": [] - } - ] - } - }, - "id": "281c364a437334190c342a5a7c733c5adc513c50410859341925074f10303164", - "collateral": [ - { - "id": "e736ea402a58371534476b2a9547d51b453579232f1f450e0e66059f9d6e0f85", - "index": 0 - }, - { - "amount": { - "quantity": 89, - "unit": "lovelace" - }, - "address": "", - "id": "7c4230741f147c58166576104b244a080c4c6a1c33556d8c2e5c6b162343b628", - "derivation_path": [ - "32286", - "11383", - "11905", - "22509", - "15446", - "6940", - "27988", - "21643", - "25329", - "17999", - "7128", - "18333", - "21927", - "31412", - "3266" - ], - "assets": [], - "index": 9850 - }, - { - "id": "11712b43cd6500577a1a4103446913a768195422096f4b6baa7303745cca4554", - "index": 1 - }, - { - "amount": { - "quantity": 79, - "unit": "lovelace" - }, - "address": "", - "id": "0463476e931963381b192872556344147f2a0c5619300d64263eef33475d3075", - "derivation_path": [ - "21358", - "8051", - "30627", - "23732", - "30770", - "29386", - "8462", - "1427", - "10690", - "20979", - "15431", - "552", - "26445", - "30467", - "10130", - "19464", - "14183", - "24160", - "5817", - "6724", - "15767", - "3192", - "13475", - "6397", - "16168", - "26922", - "906", - "22864", - "17066" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 27425 - }, - { - "amount": { - "quantity": 51, - "unit": "lovelace" - }, - "address": "", - "id": "611a6e6f720f07627e1f6d06165d43260272776513083079342a417155b45a38", - "derivation_path": [ - "15072", - "270", - "2476", - "29493", - "20845", - "25312", - "30374", - "9398", - "28755", - "29346", - "3724", - "22896", - "6265", - "30680", - "12627", - "29678", - "13484", - "25282", - "14650", - "1863" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 26947 - }, - { - "amount": { - "quantity": 151, - "unit": "lovelace" - }, - "address": "", - "id": "45127874376d25136f517b205675114e2c2265427241ea0f5a155751104b3e41", - "derivation_path": [ - "13836", - "11300", - "6808", - "24766", - "2902", - "20392", - "3683", - "11922", - "21450", - "11049", - "8593", - "1319" - ], - "assets": [], - "index": 5076 - }, - { - "id": "4a17633b166f2975531b347d1f5e208e267a6b431de7434050e239151d6a4a43", - "index": 1 - }, - { - "amount": { - "quantity": 241, - "unit": "lovelace" - }, - "address": "", - "id": "e44827370480707af1031c1ffe334856485e4bf0177abd5a69781c7921e00ec6", - "derivation_path": [ - "23589", - "5148", - "24178", - "27740", - "29082", - "11369", - "27857", - "26338", - "1456", - "1521", - "4746", - "5083", - "7511", - "9539", - "25845", - "7783", - "19323", - "26558", - "32344", - "2346", - "2892", - "10421", - "25433", - "28298", - "4335", - "29553", - "10278", - "17549", - "5464", - "5194", - "27940" - ], - "assets": [], - "index": 1482 - }, - { - "id": "11514d71717bfb1917625fec7b85197c4f3b532c3f206abc5f5d272258797535", - "index": 0 - }, - { - "id": "1b44634e775f77660a1b694042222a5ad5721933603d5b3782444e057b026959", - "index": 0 - }, - { - "id": "76321503211e312c2b736d033e36625f49311e74454b481b09553a572a4f4c5c", - "index": 0 - }, - { - "id": "02687c5b424e1a07621e2a0f36706a0239807a1c39357671564f5fd428bd2e26", - "index": 1 - }, - { - "id": "38763556577cdbed44631957288a252c77357df8434134605e8e1b436e1d601f", - "index": 1 - }, - { - "id": "28417c6e124d072ef2710c46366609429fe53152724134c82976408b5e75226e", - "index": 0 - }, - { - "amount": { - "quantity": 146, - "unit": "lovelace" - }, - "address": "", - "id": "5043b9662701d04a03cc43077bf044062321776c63677b726a5738071d353580", - "derivation_path": [ - "6529", - "12571", - "10067", - "21700", - "25478", - "13018", - "18327", - "21385", - "22395", - "27448", - "12873", - "30400", - "7334", - "30137", - "13902", - "7832", - "32342", - "1541" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 16043 - }, - { - "id": "317d4f875b22056d4cab7e71272b35144d0007161e121ac42948b7665d024508", - "index": 0 - } - ] - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 96, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 32, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 25, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 45, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 44, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 118, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 129, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 141, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 0, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 47, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 51, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 67, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 244, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 128, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - } - ], - "inputs": [ - { - "amount": { - "quantity": 206, - "unit": "lovelace" - }, - "address": "", - "id": "556c3d5722a5350144a72a764960a921710516391b20626b1583756d269b2a2f", - "derivation_path": [ - "3071", - "2262", - "149", - "17832", - "22142", - "25633", - "11142", - "14350", - "23595", - "21719", - "2549", - "21922", - "23", - "3518", - "14289", - "12558", - "10274", - "12086", - "11808" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 23879 - }, - { - "id": "0c3f606220380e7d1010cf565d54781420655182122fcc471a2a329f661d05e4", - "index": 1 - }, - { - "amount": { - "quantity": 131, - "unit": "lovelace" - }, - "address": "", - "id": "7b8f4603642a74380d7c3503351f6f691e7e4d3271ba697b0f70711b3a5f000a", - "derivation_path": [ - "3531", - "31954", - "29342", - "5840", - "5823", - "8571", - "25191", - "9951", - "18268", - "22930", - "496" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 12332 - }, - { - "amount": { - "quantity": 251, - "unit": "lovelace" - }, - "address": "", - "id": "1a86093a79900a4f58d378790876740ee75275494431072c676a4b6461869240", - "derivation_path": [ - "31235", - "11289", - "3251", - "31387", - "16425", - "21327", - "24525", - "29678", - "7343", - "15125", - "26448", - "15814", - "19264", - "2578", - "19998", - "8229", - "30477", - "28470", - "6510", - "21990", - "5444", - "23241", - "9981", - "19664" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 12464 - }, - { - "amount": { - "quantity": 57, - "unit": "lovelace" - }, - "address": "", - "id": "4c231a6b7f346220802611322d0465445c2b102a3a50253d1b7e282732204166", - "derivation_path": [ - "27897", - "17466", - "6428", - "18891", - "26614", - "4048", - "17746", - "26962", - "12052", - "7499", - "28805", - "23211", - "140", - "31708", - "3161", - "5641", - "12907", - "31259", - "10294", - "23426", - "31671", - "26170", - "1405", - "15333", - "15670", - "14950" - ], - "assets": [], - "index": 26601 - }, - { - "amount": { - "quantity": 227, - "unit": "lovelace" - }, - "address": "", - "id": "0e704e7c2358f42293629a2f4b2b003617980b371411c44fd5f7224636472272", - "derivation_path": [ - "13554", - "16660", - "12688", - "17507", - "11688", - "22827", - "21543" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 5743 - }, - { - "amount": { - "quantity": 25, - "unit": "lovelace" - }, - "address": "", - "id": "442f3691c1174f6b593838b0b93e4d77570a596ec5dde108774129776a561572", - "derivation_path": [ - "21792", - "267", - "11038", - "27581", - "9438", - "23162", - "10944", - "1881", - "7018", - "30953", - "15623", - "3255", - "17180", - "12723", - "13228", - "4207", - "20934", - "3055", - "7993", - "20497", - "4753", - "258", - "5504" - ], - "assets": [], - "index": 18607 - }, - { - "id": "f6334e4c3a1640593d224204a678694b3e314f5fa1974a8b5d347b376c266919", - "index": 0 - }, - { - "id": "112542578710c41fa74768056e6d1e5b49203546c70142100431202d3d6a484f", - "index": 1 - } - ], - "fee": { - "quantity": 116, - "unit": "lovelace" - }, - "outputs": [ - { - "amount": { - "quantity": 32, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 52, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "11599", - "10803", - "28952", - "30779", - "25319", - "9935", - "10535", - "3962", - "7164", - "24732", - "32384", - "16342", - "4002", - "24714", - "6660", - "14430", - "10985", - "8095", - "30500", - "24689", - "11714", - "13721", - "15159", - "274", - "2213" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "amount": { - "quantity": 203, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 89, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "28799", - "2616", - "30615", - "26607", - "18332", - "3620", - "13773", - "3851", - "5298", - "12242", - "8083", - "12885", - "19020" - ], - "assets": [] - }, - { - "amount": { - "quantity": 228, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 122, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "15557", - "20269", - "23099", - "6227", - "9662", - "4517", - "19615", - "6493", - "98", - "31633", - "24208", - "24515", - "21026", - "12059", - "5439", - "2754", - "11511", - "11575", - "32458", - "18704", - "21690", - "22855", - "17467", - "15081", - "2809", - "21369", - "15197", - "20555", - "12505", - "4477" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "amount": { - "quantity": 129, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "amount": { - "quantity": 121, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "amount": { - "quantity": 216, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 208, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "32280", - "21267", - "13946", - "30723", - "25685", - "22388", - "16872", - "10535", - "15194", - "25610", - "24717", - "30695", - "4571", - "23837", - "26461", - "15709", - "9201", - "1732", - "1732", - "30232", - "8483" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 198, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "amount": { - "quantity": 19, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 79, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "26655", - "15814", - "24791" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 57, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 170, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 90, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "16316", - "325", - "22548", - "11978", - "18344", - "1795", - "231", - "14703", - "24995", - "24545", - "30764", - "21083", - "7713", - "17243", - "14283", - "8379", - "25430", - "30477", - "6763", - "26643", - "31374" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 98, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 75, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "27563", - "19656", - "31250", - "22494", - "624", - "21042", - "28876", - "21153", - "12763", - "31757" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "amount": { - "quantity": 147, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 118, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 103, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 134, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "2982", - "13025", - "21203", - "28551", - "16899", - "3816", - "5262", - "18168", - "27178", - "24702", - "8822", - "28611", - "22404", - "28011", - "24794", - "2273", - "24560", - "12177", - "7870", - "31012", - "5576", - "6991", - "14292", - "29092", - "30167", - "22992", - "27477", - "6709", - "22284", - "7917" - ], - "assets": [] - }, - { - "amount": { - "quantity": 246, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "amount": { - "quantity": 152, - "unit": "lovelace" - }, - "address": "", - "assets": [] - }, - { - "amount": { - "quantity": 93, - "unit": "lovelace" - }, - "address": "", - "assets": [] - }, - { - "amount": { - "quantity": 122, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 71, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 43, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 246, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "27633", - "8076", - "22577", - "11282", - "28286", - "26609", - "6194", - "18233", - "31553", - "28305", - "30299", - "29140", - "2599", - "5483", - "29434", - "2607", - "28538", - "8652", - "30327", - "15550", - "346", - "14321", - "2304", - "18457", - "18216", - "7262", - "4921", - "19180" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 174, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "amount": { - "quantity": 109, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 160, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "12683", - "29394", - "28853", - "2410", - "11937", - "26058", - "11439", - "5298", - "6066", - "779" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 32, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 135, - "unit": "lovelace" - }, - "address": "", - "assets": [] - }, - { - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 28, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "15365", - "13906", - "30487", - "11983", - "17424", - "18922", - "26172", - "25870", - "12068", - "15392", - "29096", - "29202", - "17741", - "12995", - "3490", - "4526", - "16242", - "23733", - "21916" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 225, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 152, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "5942", - "3886", - "9939", - "27415", - "32391", - "20073", - "29686", - "24981", - "11081", - "18366", - "8837", - "32678", - "24891", - "14857", - "11937", - "16812", - "19181" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "amount": { - "quantity": 161, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 46, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 16, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "21256", - "19697", - "5643", - "14671", - "23341", - "24797", - "8145", - "19226", - "1355", - "29007", - "17292", - "31948", - "27940" - ], - "assets": [] - }, - { - "amount": { - "quantity": 120, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "script_validity": "valid", - "metadata": { - "1": { - "map": [ - { - "k": { - "string": "􆶥𒉅" - }, - "v": { - "list": [ - { - "int": 1 - }, - { - "list": [] - } - ] - } - }, - { - "k": { - "string": "􌩙" - }, - "v": { - "int": 1 - } - } - ] - } - }, - "id": "2e056ee6065a3c4fa072430e372e44245c17720e763c915c177827366863014a", - "collateral": [ - { - "id": "9bd8010a15241a073611157f146e7c26ca4b3b0512367a1255e65e0d4317b86c", - "index": 1 - }, - { - "amount": { - "quantity": 83, - "unit": "lovelace" - }, - "address": "", - "id": "a564b458211c6452527911191db8a36b29108940f4f60e2040276b1c31da1d46", - "derivation_path": [ - "11220", - "20165", - "21529", - "21674", - "8347", - "18815", - "9986", - "15793", - "7767", - "2104", - "32582", - "26942", - "5161", - "4242", - "4252", - "4703", - "3274", - "7676", - "22826", - "23463", - "11689", - "19446", - "12842", - "5200" - ], - "assets": [], - "index": 31139 - }, - { - "id": "5226069909221578630c1b6421e3156a340fb776d18a3a6f0465235757580d1a", - "index": 0 - }, - { - "amount": { - "quantity": 48, - "unit": "lovelace" - }, - "address": "", - "id": "2d7b29195d0e5a02501705f84662f25d7f7cb721683c315291650d0536410a4c", - "derivation_path": [ - "7863", - "18816", - "24866", - "6594", - "18326", - "1051", - "13200", - "10551", - "14489", - "7750", - "2046", - "17136" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 23921 - }, - { - "id": "18734138c22b09ac390429127c1f6548d9587902417612b76a57ab142d0e0b91", - "index": 1 - } - ] - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 62, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 191, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 226, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 82, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 90, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 24, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 94, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 167, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - } - ], - "inputs": [ - { - "amount": { - "quantity": 47, - "unit": "lovelace" - }, - "address": "", - "id": "0dbc16736908695b5d2a05773e48000b491d2601a018082c18511a4136de2f1a", - "derivation_path": [ - "3339", - "24580", - "25911", - "3688", - "21518", - "24009", - "20045", - "2560", - "27959", - "23960", - "12236", - "20243", - "23687", - "31111", - "16391", - "2675", - "15716" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 23104 - }, - { - "id": "70217d21eb51cb46011a469b32429db1670734673f3300042a1b0a750d34b436", - "index": 0 - }, - { - "amount": { - "quantity": 41, - "unit": "lovelace" - }, - "address": "", - "id": "bc32202111f3427c283bf4057e270a545300167708109cf84e599259161e458e", - "derivation_path": [ - "27193", - "28726", - "25974", - "15108", - "25694", - "19971", - "14662", - "25263", - "30939", - "510", - "183", - "20051", - "3159", - "20937", - "2900", - "1951", - "2815", - "12978", - "4962", - "13323", - "21748", - "23640", - "16244", - "32310", - "24904", - "27171", - "1195", - "21522", - "24360", - "5451" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 25918 - }, - { - "amount": { - "quantity": 55, - "unit": "lovelace" - }, - "address": "", - "id": "26f759f64c4f627850085d5e724e031b3224c5266a2d68a92c01461f7530047b", - "derivation_path": [ - "10202", - "31013", - "28872" - ], - "assets": [], - "index": 19454 - }, - { - "id": "38296e3dd808fb5b10612e01626861436bf9722ac168280b1a00e68b3a629205", - "index": 1 - }, - { - "amount": { - "quantity": 5, - "unit": "lovelace" - }, - "address": "", - "id": "d73a0241a85932055a3374457f097251c52c1b4a1fc22563f75e176464bbe6b4", - "derivation_path": [ - "25984", - "10872", - "31604", - "23575", - "31583", - "7679", - "10400", - "12930", - "29729", - "19868", - "12386", - "13065", - "19240", - "12415", - "2023", - "25229", - "32541" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 46, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 2221 - }, - { - "id": "3b78476a64442816853e317373283357586f325d3e07324c28ce6006626d6c48", - "index": 1 - }, - { - "id": "8c5e0df6013d02234f6c6240553b6a5f9e107e0f0a74641b896d363bcd3f100b", - "index": 0 - }, - { - "amount": { - "quantity": 208, - "unit": "lovelace" - }, - "address": "", - "id": "5a8f4e580d7e6f561b5a6a360d2bd659464b4a3309697b1b9203777179036474", - "derivation_path": [ - "17377", - "24173", - "28968", - "28545", - "252", - "17836", - "6848", - "19056", - "14071", - "3369", - "3398", - "21076", - "19305", - "13371", - "439", - "18768", - "19665", - "29389", - "20799", - "31523", - "17155", - "30843", - "14203", - "31861", - "26425", - "11702", - "28493", - "13159", - "25302", - "2576", - "19291" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 27152 - }, - { - "id": "6fb5500554481846f95e276c06066f26e0574a5e7c0c0e0007506f655c414b5e", - "index": 1 - }, - { - "amount": { - "quantity": 37, - "unit": "lovelace" - }, - "address": "", - "id": "5dce1f448c3550b51577485746694265742fe9fc080e92130b16223d6bc09127", - "derivation_path": [ - "14274", - "702", - "10604", - "2277" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 11564 - }, - { - "id": "7a00210024277b425f6d013a0e4972192c8e4660451a1c4450a362315b0b0410", - "index": 0 - }, - { - "id": "144b15513c07625e0a2d155353130d305fba686b6350342c0131d0276f731c71", - "index": 0 - }, - { - "amount": { - "quantity": 205, - "unit": "lovelace" - }, - "address": "", - "id": "5cd35d496d0378449d42a9e5b80929e41d3f126d81405cf94d7e455b4103496d", - "derivation_path": [ - "29975", - "31166", - "11450", - "28143", - "27866", - "18992", - "25876", - "14137", - "11020", - "24390", - "28484", - "21504", - "28574", - "6720", - "13353" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 27731 - }, - { - "amount": { - "quantity": 105, - "unit": "lovelace" - }, - "address": "", - "id": "192b3a44676dfb6431340d9925623b6a019d4f8524620159a7720e3e5f527752", - "derivation_path": [ - "25482", - "10629", - "804", - "5325", - "18307", - "6286", - "27333", - "19701", - "11268", - "5491", - "2237", - "146", - "6995", - "10135", - "5201", - "31149" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 72, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 22293 - }, - { - "id": "4766e017787a3d6e5af01ad6312a28023b4a73065f7c56f06427270350456337", - "index": 1 - }, - { - "amount": { - "quantity": 230, - "unit": "lovelace" - }, - "address": "", - "id": "7d26784a0d0e79426921313b4a133c8e3c4f731914143092395e72564a791f5b", - "derivation_path": [ - "17352", - "7829", - "1938", - "18927", - "816", - "22459", - "11527", - "27979", - "12543", - "30973", - "16355", - "29461", - "18113", - "2484", - "30897", - "98", - "25051", - "10476" - ], - "assets": [], - "index": 31420 - }, - { - "id": "220848477a46464599f97705565f2d68e3572b755f2fa0106a051c246f71636e", - "index": 1 - }, - { - "amount": { - "quantity": 65, - "unit": "lovelace" - }, - "address": "", - "id": "8f136b195d62610a030c2ec8365b2603096083953fa81c150a4b063366492619", - "derivation_path": [ - "962", - "27328", - "2750", - "25078", - "4159", - "1681", - "16308", - "23755", - "411", - "25794", - "444", - "9365", - "26716", - "25448", - "3101", - "28959", - "10381", - "10958", - "10874", - "19288", - "26527", - "32463", - "13617", - "29770", - "4516", - "11318", - "5732", - "10849" - ], - "assets": [], - "index": 18014 - }, - { - "id": "4109582c2b59213d750f2e8a63760a78b6d9e93d07174b5bd5a32b430420392e", - "index": 1 - }, - { - "amount": { - "quantity": 245, - "unit": "lovelace" - }, - "address": "", - "id": "311803317fe4bd17205f40c86f177847510b6ba27e4337294838e01b433e637b", - "derivation_path": [ - "23909", - "6325", - "4703", - "22005", - "29852", - "10174", - "19689", - "3796", - "14090", - "19310", - "3010", - "24642", - "29357", - "30887", - "5295", - "21728", - "31596", - "19094", - "6857", - "4215", - "19985", - "7232", - "22659", - "15727" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 19385 - }, - { - "id": "510251344bad3b1a193858762a6e3c9461337a7068f5597c20702d212ac322e1", - "index": 1 - }, - { - "id": "dc2aaf0e0b7e6f33465b77693850480e9b4f4a2b5c6d7d7d5c6078480a6b7f13", - "index": 1 - } - ], - "fee": { - "quantity": 181, - "unit": "lovelace" - }, - "outputs": [ - { - "amount": { - "quantity": 114, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 240, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 34, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 38, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 126, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 31, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 55, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "5664", - "2702", - "24017", - "25659", - "9863", - "7573", - "677", - "19813", - "10587", - "31888", - "32492", - "26720", - "2165", - "10493", - "24150", - "27834", - "23914", - "14129", - "6603", - "2355", - "12770", - "17949", - "6408", - "524", - "29849" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 182, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 7, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "4390", - "17224", - "17902", - "16263", - "30354", - "1019", - "633", - "14294", - "29386", - "10156", - "8232", - "29869", - "16659", - "27982", - "16084", - "12299", - "7410", - "26826", - "15198", - "8668", - "10635", - "32637", - "7733", - "21262", - "25563", - "501", - "8357", - "11161", - "7654" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 36, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 119, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] - }, - { - "amount": { - "quantity": 114, - "unit": "lovelace" - }, - "address": "", - "assets": [] - }, - { - "amount": { - "quantity": 160, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 75, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "amount": { - "quantity": 18, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 221, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "32149", - "15986", - "32166", - "7650" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 244, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 61, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "23731", - "23117", - "13847", - "15942", - "16171", - "4509", - "7394", - "15215", - "22761" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 41, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 130, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 37, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 138, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 44, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 165, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "31422", - "30235", - "6860", - "9928", - "27302", - "16006" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 103, - "unit": "lovelace" - }, - "address": "", - "assets": [] - }, - { - "amount": { - "quantity": 234, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 169, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 236, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "1501", - "16006", - "315", - "1749", - "1943", - "806", - "26933", - "25472", - "23951", - "18628", - "23886", - "1968", - "25786", - "12644", - "5933", - "1804", - "20674", - "7406", - "26602", - "28529", - "17894", - "4236", - "25690", - "262" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "amount": { - "quantity": 147, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 41, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 254, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "18917", - "11682" - ], - "assets": [] - }, - { - "amount": { - "quantity": 234, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 4, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "18946", - "8087", - "22202", - "28517", - "28026", - "10537", - "20313", - "27712", - "4568" - ], - "assets": [] - }, - { - "amount": { - "quantity": 192, - "unit": "lovelace" - }, - "address": "", - "assets": [] - }, - { - "amount": { - "quantity": 46, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 21, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "amount": { - "quantity": 103, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 47, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "29761", - "12701", - "20009", - "30945", - "16751", - "28427", - "588", - "11741", - "23109", - "17444", - "2204", - "13338", - "4560", - "1037", - "27930", - "2974", - "25695", - "22893", - "1799", - "24491", - "4413", - "15047", - "20966", - "790" - ], - "assets": [] - }, - { - "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 64, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 252, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "2375", - "27973", - "24985", - "24023", - "19172", - "22958", - "22268", - "21824", - "17524", - "15837", - "11987", - "7061", - "28720", - "9562", - "16234", - "25307", - "1516", - "24709" - ], - "assets": [] + "stake_address": "" }, { "amount": { - "quantity": 141, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 116, + "quantity": 147, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "13288", - "31496", - "8993", - "7111", - "21618", - "28521", - "18848", - "27262", - "19144", - "18317" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 10, + "quantity": 188, "unit": "lovelace" }, - "address": "", - "assets": [] + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 3, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 29, + "quantity": 102, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "24708", - "28808", - "14945" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "stake_address": "" }, { "amount": { - "quantity": 54, + "quantity": 155, "unit": "lovelace" }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "stake_address": "" }, { "amount": { - "quantity": 86, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 57, + "quantity": 58, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "31120", - "18478", - "25446", - "27511", - "13702", - "9575", - "17653", - "25130", - "20031", - "3884", - "3713", - "16501", - "9550", - "6983", - "21307", - "28519", - "14281" - ], - "assets": [] + "stake_address": "" }, { "amount": { - "quantity": 112, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 131, + "quantity": 109, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "17844", - "12867", - "27353", - "10865", - "32541", - "15823", - "11670", - "19358", - "25912", - "6711", - "5314", - "10112", - "23029", - "2641", - "29558", - "20165" - ], - "assets": [] + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 87, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "amount_incoming": { - "quantity": 84, + "quantity": 241, "unit": "lovelace" }, - "address": "", - "derivation_path": [ - "10024", - "863", - "7423", - "27538", - "15831", - "27890", - "3641", - "3867" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "script_validity": "valid", - "metadata": { - "5": { - "list": [ - { - "map": [ - { - "k": { - "string": "𰻾" - }, - "v": { - "string": "" - } - } - ] - } - ] - } - }, - "id": "4a312c0a27346066657511617b007464dd2034352e16de4f469f3c36112c5814", - "collateral": [ + "context": "ours", + "stake_address": "" + }, { "amount": { - "quantity": 13, + "quantity": 47, "unit": "lovelace" }, - "address": "", - "id": "797545174e6e2133642a240e019e30147da097317946543058d54601f06e3de2", - "derivation_path": [ - "7204", - "28494", - "13024", - "10095", - "13048", - "486", - "775", - "31263", - "31554", - "25247", - "12816", - "11915", - "5782", - "18599", - "18160", - "15566", - "32663", - "13820" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 30513 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 189, + "quantity": 190, "unit": "lovelace" }, - "address": "", - "id": "73a8847d1a1c0a1d1d8bb3073d21059c62221d78e3521c682d48422bd65e5c56", - "derivation_path": [ - "22320", - "3758", - "9189", - "20018", - "10838", - "8855", - "23058", - "28604", - "14454", - "7272", - "18218", - "18380", - "5864", - "13609", - "8505", - "26133", - "13885", - "8543", - "19881", - "8027", - "10208", - "30576", - "15488", - "7771" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 90 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 74, + "quantity": 193, "unit": "lovelace" }, - "address": "", - "id": "723c0f04482726e9661b662b0014173bf0010e516944295b3a343b2b6e2fad0f", - "derivation_path": [ - "20381", - "31880", - "13995", - "10894", - "3016", - "32676", - "29426", - "1975", - "30831", - "26018", - "22936", - "14773", - "29475", - "23269" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 26035 - }, - { - "id": "78761b51121d1a427a44195b91857945515c664a5117488b343f515d40373387", - "index": 0 + "stake_address": "" }, { "amount": { - "quantity": 246, + "quantity": 93, "unit": "lovelace" }, - "address": "", - "id": "175f136133057f6ecc766f1278cc921e9970c545ab55a73463645c48667cb415", - "derivation_path": [ - "31750", - "27454", - "14330", - "30873", - "9036" - ], - "assets": [], - "index": 30213 - }, - { - "id": "326bf501467bb7365a630c07125505460b5e4a787b4a30b41c47570e7f6a078a", - "index": 0 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 137, + "quantity": 192, "unit": "lovelace" }, - "address": "", - "id": "eaba51701f0e2fbcd2163a191f09545c55592546162ecc5f4428633b06146335", - "derivation_path": [ - "22356", - "5901", - "11145", - "24223", - "11102" - ], - "assets": [], - "index": 20805 - }, - { - "id": "480612185978680e75015c3a7c500f6d482f19363944351b48540230181d3928", - "index": 0 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 29, + "quantity": 69, "unit": "lovelace" }, - "address": "", - "id": "5fae68258888486824003003044b523a723e6a020766574731564f6e0930324c", - "derivation_path": [ - "30749", - "7310", - "23472", - "20456", - "18787", - "24274", - "19603", - "14241", - "9463", - "9041", - "4746", - "7974", - "25645", - "4279", - "24620", - "15159" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "index": 30252 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 33, + "quantity": 51, "unit": "lovelace" }, - "address": "", - "id": "7a95400c66183a1e17cf431256501a453ff46576332b66650e2c0a20595ec666", - "derivation_path": [ - "13581", - "1533", - "21405", - "22666", - "24956", - "28222", - "12825", - "16328", - "19484", - "25640", - "19627", - "23499", - "30380", - "25646", - "4736", - "12384", - "7398" - ], - "assets": [], - "index": 22945 + "stake_address": "" }, { "amount": { - "quantity": 191, + "quantity": 221, "unit": "lovelace" }, - "address": "", - "id": "635019678e7020e07643074b2f702d317ec9d1746e0150230b2c681524876056", - "derivation_path": [ - "14163", - "17263", - "27850", - "10358", - "3332", - "11547", - "4970", - "24589", - "21949", - "10596", - "24228", - "6935", - "6890", - "15134", - "13037", - "21674", - "5556", - "4920", - "32055", - "5306", - "14545", - "15314", - "23636", - "15281", - "30150", - "1778", - "9876", - "27339", - "23629", - "14681" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "index": 2179 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 122, + "quantity": 240, "unit": "lovelace" }, - "address": "", - "id": "313b79f61b3c6b3875136499231756eb53164f6456bfda2743169e2f403f14f2", - "derivation_path": [ - "7812", - "5718", - "6862", - "16258", - "1870", - "23647", - "15942", - "13650", - "18438", - "7342", - "25036", - "22753", - "31131", - "27586", - "1195", - "9206", - "5196", - "24627", - "24824" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 41, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 6839 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 205, + "quantity": 142, "unit": "lovelace" }, - "address": "", - "id": "4d273242760b6e40670b62de1e365c1f3622798c040613f0690f797631f6792a", - "derivation_path": [ - "6849", - "20886", - "3224", - "28913", - "30343", - "6462", - "31821", - "5214", - "5036", - "27438", - "18633", - "12752", - "30882", - "1497", - "31556", - "15309", - "1427", - "14010", - "25685", - "10634", - "15654", - "3512", - "30365", - "31920", - "209", - "2939", - "800", - "27313", - "11012" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 56, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 10158 - } - ] - }, - { - "withdrawals": [ + "stake_address": "" + }, { "amount": { - "quantity": 124, + "quantity": 19, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 122, + "quantity": 166, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 150, + "quantity": 180, "unit": "lovelace" }, "context": "ours", @@ -7670,21 +4249,22 @@ }, { "amount": { - "quantity": 173, + "quantity": 214, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 54, + "quantity": 124, "unit": "lovelace" }, + "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 111, + "quantity": 129, "unit": "lovelace" }, "context": "ours", @@ -7692,2282 +4272,3123 @@ }, { "amount": { - "quantity": 186, + "quantity": 147, "unit": "lovelace" }, "context": "ours", "stake_address": "" + } + ], + "inputs": [ + { + "amount": { + "quantity": 7, + "unit": "lovelace" + }, + "address": "", + "id": "73ef021de431584f7117c66b42e0fa4c041714605a8c527d250c5c5900493af9", + "derivation_path": [ + "11121", + "26329", + "20224", + "22203", + "12018", + "11863", + "23042", + "12399", + "19800", + "29756", + "19320", + "30201", + "19845", + "8233", + "21491", + "17577" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 22, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 151 }, { "amount": { - "quantity": 121, + "quantity": 237, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "2847016427c0818d2f685a3e24100c5e0b0865321c0373ffc312441a57b77973", + "derivation_path": [ + "13012", + "4995", + "1326", + "497", + "29408", + "23630" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 26844 }, { "amount": { - "quantity": 85, + "quantity": 149, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "604f0e04416c3e7848706ae0472f0d716652711c7f10585a71341e447d5f763e", + "derivation_path": [ + "5563", + "346", + "1108", + "1595", + "8078", + "11947", + "12917" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 9069 }, { "amount": { - "quantity": 7, + "quantity": 78, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "76265c642529493c18fa3e44145438595e347e38462c120b080b7a53f5627e50", + "derivation_path": [ + "2675", + "1618", + "30277", + "23619", + "21891", + "31435", + "8575", + "8371", + "32684", + "28452", + "25995", + "2506", + "26291", + "8845", + "22070", + "23598", + "6911" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 5228 }, { "amount": { - "quantity": 98, + "quantity": 28, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "72cb456b0b5f636e215c0a6e6f9dfdb92c2b7fa40f34062e3a63245a78b06dd1", + "derivation_path": [ + "22401", + "22133", + "15344", + "20153", + "27494", + "3693", + "17831", + "24938", + "29182", + "31773", + "17535", + "17256", + "2407", + "20281", + "26740", + "24483", + "10424", + "4390", + "19631", + "23848", + "16052", + "9854" + ], + "assets": [], + "index": 31567 }, { "amount": { - "quantity": 114, + "quantity": 134, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "660b161a5f5c49223768d4336a48476d0a725d6c1235360d4b380da43549270d", + "derivation_path": [ + "9843", + "20899", + "14558", + "9701", + "5060", + "12589", + "27076", + "20764", + "4819", + "15534", + "3025", + "8137", + "3593", + "13000", + "19289", + "28028" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 24173 }, { "amount": { - "quantity": 248, + "quantity": 154, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "3eb65e3b2f151a4059601e134b3a3d4d380d1b411b74a59681455e573a15303f", + "derivation_path": [ + "25190", + "30080", + "23802", + "16338", + "20816", + "20078", + "15564", + "1275", + "497", + "17684", + "12906", + "19657", + "8165", + "21733", + "11720", + "22205", + "16512", + "28450", + "15289", + "6990", + "23829", + "9222", + "17225", + "13605", + "30006", + "29866", + "18477", + "15340" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 20390 + }, + { + "id": "74028419196559682808db786b075b790a3c762a436e143517176354526f7950", + "index": 0 }, { "amount": { - "quantity": 49, + "quantity": 254, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "5f4f604d037801222c3e411826663c4e670a0a5e431f8e280b211e6e5a25311a", + "derivation_path": [ + "18581", + "17606", + "25256", + "25884", + "12651", + "1354", + "25909", + "31420", + "3126", + "27945", + "19811" + ], + "assets": [], + "index": 1300 + }, + { + "id": "1a1f102c5b09322f713f630208120230265d49565f311a3d1a6d0a1f11757f29", + "index": 0 }, { "amount": { - "quantity": 165, + "quantity": 33, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "b86c6219215e026c142b2c2410fa5a2a015549b632464b23311bb4e12625ae3a", + "derivation_path": [ + "15477", + "23493", + "32229", + "27729", + "177", + "18046", + "8392", + "5421", + "9739", + "31007", + "589", + "25173", + "19017", + "18553", + "7208", + "9252", + "19137", + "9586", + "8988", + "5098", + "7466", + "12051", + "17073", + "26207" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 6573 }, { "amount": { - "quantity": 126, + "quantity": 195, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "01272e17450ea0a022113c4c0c084159f811512434ac647f459250761aef4baf", + "derivation_path": [ + "27017", + "9197", + "1497", + "22724", + "8415", + "16017", + "16857", + "25514", + "18897", + "22984", + "21895", + "21891", + "3759", + "23756", + "15524", + "20596", + "25595", + "4549", + "12907", + "12969", + "1468", + "31152", + "17534", + "18", + "28292", + "22724", + "16062", + "25864", + "10800", + "2129", + "7695" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 4251 }, { "amount": { - "quantity": 186, + "quantity": 143, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "552f742a0e4b46cb1c62c30262a61e1051124a3e247c5b1820313d137e675052", + "derivation_path": [ + "15435", + "24246", + "16364", + "28853", + "12887", + "16896", + "16082", + "2233", + "31139", + "4525", + "11063", + "19920", + "10429", + "30015" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ], + "index": 2757 }, { - "amount": { - "quantity": 11, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "aa855598147ebd5e526b6a334ada772d6064a3610c30785316ed2d3652535205", + "index": 1 }, { - "amount": { - "quantity": 119, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "290a21408d48791de8631e147b026668a02bc75459b839344834464e2b51450e", + "index": 0 }, { - "amount": { - "quantity": 169, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" + "id": "7438792d1910767602125b5c682b7d2c3b2726581f7038005407072c0b7aec7c", + "index": 0 }, { "amount": { - "quantity": 219, + "quantity": 174, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "2a4f08267bf24254609d364707523d60490b3a9d145d074e355d005c25790621", + "derivation_path": [ + "29135", + "17587", + "12845", + "13036", + "16598", + "14034", + "420", + "30296", + "25003", + "7978", + "22385", + "21524", + "11243", + "8793" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 39, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 57, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 6974 }, { "amount": { - "quantity": 164, + "quantity": 62, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "7b7110444bfdc2172b59491e334d4d40707a75780c656d20034d5e53795b2a0d", + "derivation_path": [ + "10623", + "13983", + "6788", + "17494", + "29357", + "16813", + "9188", + "22744", + "14328", + "28407", + "32625", + "20328", + "18583", + "23765" + ], + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 6457 }, { "amount": { - "quantity": 76, + "quantity": 156, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "f84c3b24393c2f3f3c700e647b7c7e6440771b3e7c93127c923836cf434b6349", + "derivation_path": [ + "13719", + "20534", + "27879", + "24239", + "24287", + "3720" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 40, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 15, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 37, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 21650 }, { "amount": { - "quantity": 229, + "quantity": 181, "unit": "lovelace" }, - "stake_address": "" + "address": "", + "id": "58555a2d6c0c1824723d04fd06024f60727884c72c5343246820fa2d20542fb2", + "derivation_path": [ + "22215", + "4236", + "16247", + "8032", + "15718", + "31618", + "7764", + "31650", + "4973", + "4199" + ], + "assets": [], + "index": 4780 + }, + { + "id": "b75c29422d851b0b7d4d237e8d6b59d8020d761469641bd249d3516817525648", + "index": 1 + }, + { + "id": "46337ee250fa092a75365310031b217f521b783351250562307e2b5a5a1c0d33", + "index": 1 }, { "amount": { - "quantity": 55, + "quantity": 36, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "id": "161f3a5fd6aa7d0e7e6ebe7c3677066013292e117824f58ebe6a266336315355", + "derivation_path": [ + "5415" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 11, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 16066 }, { "amount": { - "quantity": 120, + "quantity": 73, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" - } - ], - "inputs": [ - { - "id": "49177d4827062b6e4f7d283e2f72708b1a4646072758544e7c6d145d0c077016", - "index": 0 + "address": "", + "id": "5f33798b2a240a074f498b2b3721a561538c2ed051543d439435054f0b05bc79", + "derivation_path": [ + "2382", + "22441", + "27458", + "10895", + "26900", + "2012", + "3629", + "25857", + "16898", + "18537", + "17827", + "32540", + "1935", + "7148", + "9419", + "29005", + "20297", + "7098", + "4889", + "9350", + "24629", + "23468", + "27523", + "10186", + "16351", + "20331", + "938", + "4155" + ], + "assets": [], + "index": 10009 }, { "amount": { - "quantity": 240, + "quantity": 228, "unit": "lovelace" }, "address": "", - "id": "1ac7999e160a7d2c5e2d646e87090408106d82e56f23625e38cc0a5331041d0a", + "id": "766742237e131509323e153825637c7138543f4a2ed1447f324804580b707f4a", "derivation_path": [ - "4043", - "24829", - "8724", - "27680", - "22038", - "28087", - "89", - "26022", - "19827", - "11673" + "25289", + "14606", + "8096", + "19844", + "644", + "6841", + "10546", + "32516", + "31229", + "20675", + "29228", + "11795", + "14549", + "1670", + "11886", + "16478", + "3578", + "2513", + "29413", + "22831", + "12957", + "27557", + "9283", + "23228", + "3045", + "29053" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 22791 + "index": 27 }, { "amount": { - "quantity": 137, + "quantity": 217, "unit": "lovelace" }, "address": "", - "id": "59324b28f3672731740a7c3844177a012c2a5a49725774504da61b2e542e6e2e", + "id": "bf638a0f780fc7b6fc1115c9015a1e7a1b004f5ebf761b23225cdc1068796720", "derivation_path": [ - "25954", - "19637", - "21940", - "19250", - "2284", - "10061", - "5950", - "13551", - "11497", - "1872", - "12738", - "1935", - "7559", - "17498", - "27785", - "11894", - "30113", - "10548", - "5992", - "28021", - "30536", - "12226", - "1078" + "14199", + "27108", + "20703", + "2729", + "20535", + "15671", + "24161", + "564", + "25327", + "18667", + "7725", + "16033", + "5573", + "20690", + "28437", + "22363", + "8527", + "27196", + "23989", + "21970", + "32732", + "6099", + "13431", + "5154", + "14125", + "31856", + "15349", + "18992", + "22123" ], "assets": [], - "index": 15896 + "index": 15298 }, { - "id": "165de67e4556344845544434bd737f0615923d67a04f6145183d144cd1282975", - "index": 0 + "id": "3fea28591b03125b0961572d70680d863e5570247e6638e650d86b167d83376e", + "index": 1 }, { - "id": "3741718330145e33255d182f7e1710684c4d224d825b373653734a0e03546e25", - "index": 0 + "id": "a356dd5a745878427a08063c4f2a8245436f6c78755d3faf46110a3825be172b", + "index": 1 }, { - "id": "3a58586b3e7354514e3e2c1ef64326d2dd6160c14f6f03194e19613f274ca56a", - "index": 0 + "id": "2d6e423d000a6168a34d404e2d982819070d597c0c72213a0a723473212a72a6", + "index": 1 }, { - "id": "6a824978294ed8197f5d595cda27086c320674160323712b1b39d74e55085c78", + "id": "9ea0be03795669c60a697e74205c317a3206071414282d3429085d4361a46c10", "index": 0 - }, + } + ], + "fee": { + "quantity": 56, + "unit": "lovelace" + }, + "outputs": [ { "amount": { - "quantity": 124, + "quantity": 24, "unit": "lovelace" }, "address": "", - "id": "46511b5372644f5e22a32ae64a63717660354c5eb8461a61381f475dd4221b63", "derivation_path": [ - "20180", - "2956", - "31410", - "4896", - "15419", - "14742", - "9263", - "32411", - "6475", - "24059", - "12670", - "16591" + "26744", + "17757", + "8712", + "23490", + "18401", + "12610", + "24376", + "9708", + "31651", + "22279", + "24248", + "31391", + "7353", + "19257", + "26715", + "23171", + "31118", + "16292", + "4381", + "4512", + "30512", + "11756", + "22351", + "10828", + "27318", + "23410", + "19514", + "15942", + "5819", + "8584" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 1, + "asset_name": "546f6b656e45", + "quantity": 4, "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 31550 + ] }, { "amount": { - "quantity": 233, + "quantity": 24, "unit": "lovelace" }, "address": "", - "id": "521652083f6c61377eef667e1d7e3d4e7e343cd0000e2685034c56504c103b15", "derivation_path": [ - "19990", - "23409", - "10119", - "27598" + "17282", + "3362", + "15839", + "13331" ], - "assets": [], - "index": 14122 - }, - { - "id": "5e4b7c306a380e444f0a6857ce6244560d93450263306c0121792d35c94b616d", - "index": 1 + "assets": [] }, { "amount": { - "quantity": 21, + "quantity": 80, "unit": "lovelace" }, "address": "", - "id": "51aa14251d07133d7b4cca62efc532330d12d4c85a42741434407e6c5c66513c", "derivation_path": [ - "31373", - "8236", - "15068", - "30551", - "15774", - "1254", - "13149", - "20815" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } + "16307", + "30441", + "8480", + "7801", + "1559", + "23421", + "20718", + "14604", + "2968", + "11475", + "24325", + "16388", + "2765", + "17311", + "3764", + "14890", + "17808", + "3036" ], - "index": 5541 - }, - { - "id": "0d5f31735004541b533e2ba07e654f34534e6120cf1a580a05386404296979d3", - "index": 1 + "assets": [] }, { "amount": { - "quantity": 46, + "quantity": 231, "unit": "lovelace" }, "address": "", - "id": "0b7e350700640f23506a4e427747745d337a5424fd4ec005ca446db80c121560", - "derivation_path": [ - "23752", - "785", - "14722", - "21785", - "3812", - "18717", - "6063", - "22554", - "26315", - "21966", - "23769", - "3176" - ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 21, + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 8, + "quantity": 10, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 12, + "quantity": 9, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, + { + "asset_name": "546f6b656e41", + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 5, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 4, + "quantity": 21, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 13, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 3, + "asset_name": "546f6b656e44", + "quantity": 21, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 4596 + ] }, { "amount": { - "quantity": 197, + "quantity": 62, "unit": "lovelace" }, "address": "", - "id": "4a60123d38255c3b027e392d490c43122d7b550d44033f0fbf274d2556062832", "derivation_path": [ - "14672", - "14751", - "27668", - "20840", - "10159", - "19754", - "2032", - "12307", - "13882", - "13468", - "7470", - "32585", - "15709", - "4441", - "8719", - "12424", - "25717", - "2026", - "15018", - "3531", - "16409", - "10403", - "10345", - "20576", - "12486", - "30978", - "29182", - "20318", - "1565", - "25651" + "3481", + "10646", + "2185", + "7515", + "8309" ], "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e42", - "quantity": 5, + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 28, "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } - ], - "index": 20208 - }, - { - "id": "54404609adb41c0fdc51230b286f67febe636b5a2b265a9f4c69275b620d383b", - "index": 0 + ] }, { - "id": "27260fd72b25214e9a52094f070a59362f21747b004c5449171f637e4e0c0552", - "index": 0 + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "27531", + "22034", + "21578", + "5846", + "29696", + "16960", + "24850", + "26140", + "17477", + "1980" + ], + "assets": [] }, { - "id": "7060575d5d9a0e5c543c22614146717e731c9544553b0f556e0e3b233a567766", - "index": 0 + "amount": { + "quantity": 40, + "unit": "lovelace" + }, + "address": "", + "assets": [] }, { "amount": { - "quantity": 118, + "quantity": 245, "unit": "lovelace" }, "address": "", - "id": "6c3591759c6833ca1269cf30d25b263f14194b7d592b4e677f585f013c7b555f", "derivation_path": [ - "17067", - "31373", - "28068", - "23187", - "14155", - "32240", - "23323", - "13470", - "27554", - "12583", - "3123", - "6917", - "23715", - "32305", - "6095", - "15020", - "7533", - "18074", - "5799", - "32245", - "14895", - "164", - "23939", - "25326", - "21354", - "26455", - "1423", - "8013" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } + "22063", + "18234", + "11949", + "15194", + "14221", + "22150", + "12415", + "2468", + "27722", + "2572", + "5408", + "8377", + "27717", + "11375", + "8945", + "18436", + "11308", + "22866", + "2656", + "10973", + "19594", + "20019", + "31790", + "30212", + "28995", + "29453", + "8752", + "490", + "14303", + "26645" ], - "index": 4978 - } - ], - "fee": { - "quantity": 244, - "unit": "lovelace" - }, - "outputs": [ + "assets": [] + }, { "amount": { - "quantity": 147, + "quantity": 105, "unit": "lovelace" }, "address": "", "assets": [ { "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 47, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 6, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 27, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 42, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 145, + "quantity": 233, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 4, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 8, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 13, + "asset_name": "546f6b656e44", + "quantity": 9, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e45", + "quantity": 25, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 39, + "asset_name": "546f6b656e41", + "quantity": 4, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 16, + "asset_name": "546f6b656e41", + "quantity": 8, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 21, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 9, + "asset_name": "546f6b656e41", + "quantity": 3, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 74, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "3483", - "18382", - "22811", - "4321", - "24596", - "594", - "3671", - "3637", - "8102", - "18340", - "4362", - "29381", - "21404", - "10988", - "4000", - "18027", - "15650", - "18232", - "20550", - "2206", - "4751", - "26206", - "28755", - "849", - "23762", - "18198", - "24359", - "20769", - "31905", - "7393" - ], - "assets": [] + ] }, { "amount": { - "quantity": 2, + "quantity": 11, "unit": "lovelace" }, "address": "", + "derivation_path": [ + "17165", + "24225", + "15954", + "30420", + "15947", + "32005", + "5675", + "32490", + "16752", + "20330", + "27349", + "23093", + "32535", + "31980", + "21348", + "10902", + "7293", + "28016", + "14993" + ], "assets": [] }, { "amount": { - "quantity": 137, + "quantity": 133, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "derivation_path": [ + "19863", + "17453", + "1188", + "23925", + "21541", + "30465", + "6977", + "19805", + "16137", + "23101", + "4407", + "4792", + "4955", + "3067" + ], + "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 10, + "asset_name": "546f6b656e41", + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 31, - "policy_id": "33333333333333333333333333333333333333333333333333333333" } - ], - "amount_incoming": { - "quantity": 174, + ] + }, + { + "amount": { + "quantity": 78, "unit": "lovelace" }, "address": "", "derivation_path": [ - "14304", - "1111", - "17836", - "11802", - "7883" + "14892", + "25299", + "19521", + "23809", + "24098", + "26433" ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 22, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 56, + "asset_name": "546f6b656e44", + "quantity": 23, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 43, + "quantity": 228, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "address": "", + "derivation_path": [ + "3257", + "2614", + "25115", + "25778", + "3779", + "9787", + "21525", + "15314", + "19039", + "12306" + ], + "assets": [] + }, + { + "amount": { + "quantity": 20, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "8190", + "20915", + "22685", + "9609", + "3539", + "23777", + "5931", + "30457", + "5788", + "15105", + "5366", + "19503", + "10607", + "14386", + "10821", + "25144", + "19370", + "28172", + "31206", + "31367", + "950", + "30323", + "11196", + "20771", + "3164", + "10428", + "14804", + "23009", + "20171", + "2085", + "9049" + ], + "assets": [] + } + ], + "script_validity": "invalid", + "metadata": null, + "id": "5f244357356315932af1187a6a357404696501e0210a6c3b554e053b3a0d2832", + "collateral": [ + { + "amount": { + "quantity": 72, + "unit": "lovelace" + }, + "address": "", + "id": "2d1a70863532f6714475734b5aed500c1039d0486b412a892b494819635a0018", + "derivation_path": [ + "16229", + "1431", + "16266", + "14901", + "13828", + "10239", + "28634", + "10320", + "31815", + "19103", + "30770", + "24613" + ], + "assets": [], + "index": 2902 + }, + { + "id": "5839374b1b02796c0d4a7207563a1c4b6a63524b68670b58d531754b511740ae", + "index": 0 + }, + { + "amount": { + "quantity": 65, + "unit": "lovelace" + }, + "address": "", + "id": "39da5ed4146c086f7c2b7c2e670f36351e2e2e0e2af44205573c59364b6e2666", + "derivation_path": [ + "17630", + "29529" + ], + "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 20, + "asset_name": "546f6b656e42", + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 54, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 18, + "asset_name": "546f6b656e42", + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 239, + "index": 7815 + }, + { + "id": "df17695510185f4b333a383d3a461a373a7a8d7374040e138a58451c10275571", + "index": 0 + }, + { + "amount": { + "quantity": 80, "unit": "lovelace" }, "address": "", + "id": "fb423f1c0ffcce137b531d3751157b734cc1561f1924194e74004041754b020a", "derivation_path": [ - "14131", - "6530", - "19375", - "23932", - "20427", - "11042", - "30685", - "25707", - "8653", - "10633", - "30225", - "12718", - "31492", - "12787" + "11774", + "2720", + "8918", + "755", + "32387", + "941", + "31154", + "25990", + "30741", + "5295", + "20145", + "23952", + "23198", + "28550", + "7397", + "30104", + "16166", + "5065", + "10664", + "24281", + "18371" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] + "assets": [], + "index": 16620 }, { "amount": { - "quantity": 21, + "quantity": 135, "unit": "lovelace" }, "address": "", + "id": "50405d7b725253f34a0316416446e90f254a3706e4f4690958702102293b7aa6", + "derivation_path": [ + "27524", + "27058", + "28022", + "31146", + "7381", + "21880" + ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 12273 }, { "amount": { - "quantity": 219, + "quantity": 210, "unit": "lovelace" }, "address": "", + "id": "e6697dd85d48761e674f905f55003a67a6713c323a493524774b267a22393f3f", + "derivation_path": [ + "16781", + "6673", + "15482", + "22877", + "27379", + "31888", + "27046", + "9540", + "29656", + "28790", + "14695", + "16000", + "1246", + "3502", + "20175", + "6118", + "6568" + ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 41, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } - ] + ], + "index": 28254 }, { "amount": { - "quantity": 148, + "quantity": 161, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } + "address": "", + "id": "3255d2061668515c5c2e2c00b80be4408c081c9eb555575121184c461b1e9e27", + "derivation_path": [ + "28394", + "4128", + "29332", + "25860", + "12827", + "23115", + "4328" ], - "amount_incoming": { - "quantity": 129, + "assets": [], + "index": 5332 + }, + { + "id": "371d33252e8030697c070d050c040281065760a21f631a3a172946587f452125", + "index": 1 + }, + { + "amount": { + "quantity": 137, "unit": "lovelace" }, "address": "", + "id": "363d244bd7517e6518737b0f36376e4115ba054e2c6049976c4f755de5220356", "derivation_path": [ - "30836", - "25582", - "23552", + "1099", + "24620", + "23873", + "13919", + "30430", + "4092", + "29861", + "11516", + "22920", + "413", + "12729", + "24652", + "32080", + "18087", + "14639", + "10232", + "16943", + "18303", "1266", - "9412", - "1696", - "3866", - "10460", - "27297", - "482" + "32745", + "16448", + "3028" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } - ] + ], + "index": 9459 }, { "amount": { - "quantity": 164, + "quantity": 59, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "id": "7220de5449d1382056644d46757f12034d20722c2009e917f35a616c9e1e702a", + "derivation_path": [ + "12553", + "23717", + "20744", + "2604", + "29807", + "5323", + "21238", + "660", + "7659", + "32173", + "9089", + "26149", + "28589", + "28462", + "27434", + "10464", + "31352", + "17826", + "26925", + "27678", + "10417", + "8438", + "20603" + ], + "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ], - "amount_incoming": { - "quantity": 171, + "index": 30511 + }, + { + "amount": { + "quantity": 79, "unit": "lovelace" }, "address": "", + "id": "5c223d0d693903194c190691ae115c41198335cb566692294d6573422c724d0e", "derivation_path": [ - "7487", - "2937", - "13782", - "13398", - "28666", - "19065", - "9905", - "5955", - "11412", - "2018", - "2303", - "11997", - "11911", - "10687", - "5094", - "10765", - "21967", - "23007", - "21755", - "1419", - "15874", - "7185", - "23570", - "28260", - "16959", - "9861" + "10849", + "2677", + "24718", + "31002", + "7272", + "2069", + "22615", + "5581", + "12418", + "19368", + "24173", + "17274" ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } - ] + ], + "index": 17449 }, { "amount": { - "quantity": 155, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 46, + "quantity": 45, "unit": "lovelace" }, "address": "", + "id": "3b5d012a0879060bf68913597c294b25113c66440c1210ec1e7d3c656ef6743e", "derivation_path": [ - "3384", - "22222", - "17569", - "5595", - "7397", - "7898", - "3966", - "19886", - "2150", - "9897", - "10982", - "1220", - "5589", - "20982", - "13603", - "14219", - "14661", - "1383", - "6544", - "27350", - "22931", - "19767", - "28059", - "19199", - "21254", - "5019", - "19423" + "10390", + "8390", + "30055", + "31806", + "9480", + "16734", + "6593", + "23881", + "21784", + "3074", + "6788", + "1223", + "15884", + "9042", + "21038", + "17800", + "28101", + "3266", + "26853", + "16286", + "20735", + "29554" ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e43", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } - ] + ], + "index": 15945 }, { "amount": { - "quantity": 114, + "quantity": 58, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 1, + "address": "", + "id": "5333103d54260f3b363c4a5b050e620a131b26a31f725042461bc27974705939", + "derivation_path": [ + "29514", + "11542", + "12214", + "29265", + "1215", + "9693", + "13026", + "3676", + "555", + "4486", + "20596", + "6860" + ], + "assets": [], + "index": 17324 + }, + { + "id": "33257654c0222364066d72ab416939671b4b0a4b6bd844591f77054174360ba3", + "index": 0 + }, + { + "amount": { + "quantity": 55, "unit": "lovelace" }, "address": "", + "id": "230f024c00537b5569051672771e7d643e47555e353d6331543d6ff9273077ad", "derivation_path": [ - "12001", - "1696", - "11151", - "8882", - "11503", - "2390", - "26853", - "25334", - "27305", - "2093", - "2853", - "7168", - "19877", - "25260", - "16320", - "22407", - "19764", - "27500", - "28198" + "29772", + "12507", + "14683", + "22097", + "31211", + "21018", + "8501", + "8324", + "25007", + "13271", + "10697", + "16092", + "19196", + "2485", + "11404", + "1166", + "24514", + "1207", + "20344" ], "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 39, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e45", - "quantity": 1, + "quantity": 24, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e45", "quantity": 11, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 33, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 45, + "asset_name": "546f6b656e44", + "quantity": 10, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, + { + "asset_name": "546f6b656e42", + "quantity": 27, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e44", - "quantity": 12, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 46, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e41", - "quantity": 14, + "asset_name": "546f6b656e43", + "quantity": 30, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e45", - "quantity": 10, + "asset_name": "546f6b656e44", + "quantity": 47, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 30055 + }, + { + "id": "95725fb2567214bb092f05677e7c5e6d322ab67304586212d8102ed7167a4253", + "index": 1 + }, + { + "id": "0e5b290c42781d562b02426036251a7b4730f8c531675b374474317f202c3bab", + "index": 0 + }, + { + "id": "3b4577acba767e4418027934682e2a0d33280665aa0c1fec4c344b3807da7160", + "index": 0 }, { "amount": { - "quantity": 177, + "quantity": 24, "unit": "lovelace" }, "address": "", + "id": "6f6e1a3841157b496238235d3b2b062315051fd70a14e86c612f2647471c1364", + "derivation_path": [ + "17784", + "19748", + "24029", + "15168", + "20685", + "28860", + "22914", + "21178", + "30863", + "12079", + "12945", + "26909", + "32727", + "14320", + "23424", + "13928", + "29599", + "15478", + "9966", + "22452", + "8140", + "26654", + "25033", + "10255", + "19369", + "11194", + "27328" + ], "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } - ] + ], + "index": 12070 }, { "amount": { - "quantity": 34, + "quantity": 240, "unit": "lovelace" }, "address": "", - "assets": [] + "id": "766fa6385838233c7e836f5c53405e2247778e56a43d74706d63145057656344", + "derivation_path": [ + "8702" + ], + "assets": [], + "index": 13902 }, { "amount": { - "quantity": 167, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 7, + "quantity": 22, "unit": "lovelace" }, "address": "", + "id": "605e09680f2d30a5c2555604374a5730026b1c0c7b0658044a56e45014451f73", "derivation_path": [ - "23810", - "7446", - "93", - "24658", - "22891", - "16471", - "26760", - "9671", - "10519", - "32443", - "24348", - "11264", - "19664", - "14714", - "13965", - "9251", - "25795", - "31992", - "13410", - "5433", - "28044" + "13686", + "13405", + "9501", + "19843", + "26927", + "24359", + "11946", + "5600", + "32656", + "9716", + "9625", + "13842", + "11012", + "17461", + "9258", + "27419", + "22346", + "27672", + "14900", + "31720", + "20544", + "19572" ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 19, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 12, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] + "assets": [], + "index": 12270 }, { - "amount": { - "quantity": 248, - "unit": "lovelace" - }, - "address": "", - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - } - ], - "script_validity": "invalid", - "metadata": { - "13": { - "map": [] - } - }, - "id": "53522908234a4a011f602a0451c011865b610a267a1f0510243f1d786f0f7dc9", - "collateral": [ + "id": "bed30a6566bd893c56645970a759761f104a0443766301366f550f25505b8c12", + "index": 1 + }, + { + "id": "39161f3c4457532a49478c4f66493f27036639270f7c7671eb4c5e49031d640b", + "index": 0 + }, { "amount": { - "quantity": 115, + "quantity": 175, "unit": "lovelace" }, "address": "", - "id": "43ff015b6a37037725670527185c41b36d465f5f9b6b273f927d407c23132e71", + "id": "1a004e3960bb5a3921ca7ea8846d590f190b6a227c7f6a20d36e0d2f474c284e", "derivation_path": [ - "419", - "29424", - "19622", - "28601", - "13006", - "28693", - "10948", - "19645", - "25531", - "10712", - "19928", - "9571" + "30054", + "19206", + "5162", + "6966", + "14223", + "8520", + "28345", + "24357", + "21426", + "14951", + "26682", + "19971", + "10653", + "31552", + "2633", + "18053", + "18113", + "8433", + "13630", + "21176", + "5917", + "15135", + "10086", + "5459", + "2241", + "25382", + "13961", + "20804", + "2694", + "12130" ], "assets": [], - "index": 15592 - }, - { - "id": "6f37270f28cb415a325e538b7fd6393643003918643955f06f5c572e24dd1d24", - "index": 1 - }, - { - "id": "7c02a12b49664868506b893474353cb35a67082e4356e1600268fd76b97c4401", - "index": 0 + "index": 13374 }, { "amount": { - "quantity": 175, + "quantity": 253, "unit": "lovelace" }, "address": "", - "id": "2e63166ec86a6d7f5e1c4f07467e685a697842315646b34e7a4f45611113183b", + "id": "4471134d75700670415c614e461b393936246b2f44555d550e25284c34367347", "derivation_path": [ - "2899", - "29462" + "23491", + "21669", + "5241", + "16686", + "11594", + "847", + "9640", + "1686", + "11221", + "28443", + "18149", + "13241", + "30449", + "30264", + "21329", + "8920", + "21412", + "11449", + "32171", + "32153", + "21058" ], - "assets": [], - "index": 15174 + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ], + "index": 17025 }, { - "id": "980677686ded4101195a221306371d73f413196613106669096d703baf51731d", - "index": 1 + "id": "1164786a632a031f5a4a4465272b303ff903285d08c915617ec60f3c8fcb7934", + "index": 0 }, { - "id": "7d203dd5263b2d210d1c714a361c60637a435f3b1e42353734751a745c631708", - "index": 0 + "id": "3873202b246c0e4b5a1914d75a2b0238386dd3254a52754089412b4748042f6e", + "index": 1 }, { "amount": { - "quantity": 236, + "quantity": 117, "unit": "lovelace" }, "address": "", - "id": "2ad43b186d624635472d4f4d501a7f5337016e411075b3662f7b3c878562283b", + "id": "6a7708f09c111c3d6a0c734d3a19fbfd256377532b04e146be3d42341f187a6f", "derivation_path": [ - "13275", - "1254", - "8990", - "387", - "30753", - "12199", - "23526", - "31317", - "4200", - "505", - "23966", - "19889", - "14718", - "8591", - "26370", - "23647", - "17992", - "19930", - "6560", - "3108", - "19687", - "30376", - "29530", - "22018", - "8504", - "20688", - "6234", - "18562" + "4461", + "25108", + "1341", + "1671", + "15015", + "26750" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 14, + "asset_name": "546f6b656e45", + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 14, + "quantity": 1, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 13, + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 1, + "quantity": 10, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 50, + "asset_name": "546f6b656e43", + "quantity": 4, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 38, + "quantity": 12, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 12, + "quantity": 5, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, + "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 23838 + "index": 8733 }, { - "amount": { - "quantity": 105, - "unit": "lovelace" - }, - "address": "", - "id": "3d5d022646009479101c4f4a615c077850050571202b1d5b452c3d510a4c5568", - "derivation_path": [ - "13989", - "8777", - "14406", - "5963", - "24794", - "7208", - "10214", - "24449", - "14428", - "13662", - "18066", - "12055", - "18240", - "8942", - "18819", - "12678", - "2430", - "19362", - "23914", - "19305" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 1099 + "id": "2858324848fc3c65653f1e261a235e26004067312441047a742d67fb3e017b03", + "index": 1 } ] }, { - "withdrawals": [], - "inputs": [ + "withdrawals": [ { "amount": { - "quantity": 157, + "quantity": 163, "unit": "lovelace" }, - "address": "", - "id": "44e84a181963013573762e470ea828fb50560e7f4b0382723155d9363e4128d5", - "derivation_path": [ - "30185", - "22681", - "29587", - "7418", - "17263" - ], - "assets": [], - "index": 20668 + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 15, + "quantity": 77, "unit": "lovelace" }, - "address": "", - "id": "270650755de3691d555113091352d90e8fee70f67563620261aa39482502f47f", - "derivation_path": [ - "2251", - "8018", - "21417", - "31380", - "2960", - "17717", - "30055" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 6, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 6691 + "stake_address": "" }, { - "id": "6d3e627e227a17a62669685fee0f520f784b2f066055641365f16276022f66e7", - "index": 1 + "amount": { + "quantity": 90, + "unit": "lovelace" + }, + "stake_address": "" }, { "amount": { - "quantity": 91, + "quantity": 209, "unit": "lovelace" }, - "address": "", - "id": "f71e0d7173d86d2a745c7d103f17714302457e55271757357a5f6d613f353c42", - "derivation_path": [ - "21342" - ], - "assets": [], - "index": 29170 + "stake_address": "" }, { - "id": "6b45782c77bf2e282b5cb72f475f3f0923624ced4a1a30263927792761084890", - "index": 1 + "amount": { + "quantity": 137, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 187, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 36, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 129, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 227, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "0e1d2b167a045b2e71b12b00440bd636656e732933fb6b737720324f2dafd442", + "amount": { + "quantity": 233, + "unit": "lovelace" + }, + "stake_address": "" + } + ], + "inputs": [ + { + "id": "c819141259447c431863836b13d1706f49e7bf0831a5606265c27a51637c1b40", "index": 0 }, { - "id": "1a036c14164b1f2419156b021047030b0c593bba44cd57062028611f215abb53", + "id": "741c78a93f7307052e65686c1a6904b8170645bf63205c5a493f46ec00398a78", + "index": 1 + }, + { + "id": "3d171132f560700b033a4112171425dd47165ae3094c611f570f240555743034", + "index": 1 + }, + { + "id": "59437c2fae39550f38021956794e0e612b556f352018377f2f19630c560d135e", + "index": 1 + }, + { + "id": "924ad86f0a4a46772c1c42674b8e67a44e3ccb0129645d436b28270316667af1", "index": 0 }, { - "id": "074f68746a6c5d7476642d6772554123571b2239782e5d46575c524a47507764", + "id": "51353c3e5b05ce217f49382349762f0d56afd31e3e787c2879536c552b964170", "index": 1 }, { "amount": { - "quantity": 144, + "quantity": 43, "unit": "lovelace" }, "address": "", - "id": "25f77c760f2808513408072b544dd795090e5b3f8589431b520d0c4c19964f6d", + "id": "0c483e3257715a71a4706b4321701e21647563606c3f03000b096b36c5566226", "derivation_path": [ - "29826", - "23056", - "6944", - "14305", - "24321", - "16042", - "8042", - "13832", - "7140", - "25020", - "5972", - "30506", - "13809", - "564", - "22991", - "17018", - "24244", - "11912", - "31698", - "21120", - "27062", - "7801", - "12504", - "13622", - "3931" + "25236", + "23086", + "14651", + "19720", + "17867", + "18956", + "32595", + "30707", + "23028", + "22165", + "17874", + "29334", + "25169", + "32291", + "25525", + "1632", + "25122", + "14979", + "18153", + "11702" + ], + "assets": [], + "index": 14069 + }, + { + "amount": { + "quantity": 212, + "unit": "lovelace" + }, + "address": "", + "id": "0a54182d2c944f55cc31741f3c3c2e7c5e73786f4c66577b3c69286673483c7b", + "derivation_path": [ + "25035", + "3848", + "31532", + "31108", + "21429" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 39, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e43", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "quantity": 4, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 18434 + }, + { + "id": "3a40110d652f7d51643d512e442d936986470e16fe227ba1187b9b4804995e47", + "index": 1 + }, + { + "id": "4166210139667a402851523479170bb34843683e29511652501a16713e411b6b", + "index": 0 + }, + { + "amount": { + "quantity": 225, + "unit": "lovelace" + }, + "address": "", + "id": "3727122962734a7d6e0e68075f4e2f53326d24664ad376f33b7c2a3894714a28", + "derivation_path": [ + "14083", + "9654", + "13231", + "31934", + "14098", + "1636", + "348", + "14296", + "28277", + "24424", + "16600", + "26043", + "4754", + "5628", + "28350", + "8009", + "23698", + "19587", + "12102", + "1246", + "18999", + "17085", + "16621", + "14489", + "15698", + "25907", + "5031", + "23847", + "28" + ], + "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 42, + "asset_name": "546f6b656e42", + "quantity": 4, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, + } + ], + "index": 9488 + }, + { + "amount": { + "quantity": 91, + "unit": "lovelace" + }, + "address": "", + "id": "53699f0a45785c5b7c585f62122a586e3f22301b4b2d9e7270f6442aa5461081", + "derivation_path": [ + "14745", + "6166", + "1504", + "11158", + "18173", + "13460", + "32658", + "7838", + "27431", + "11877", + "25903", + "24212", + "19276", + "28362", + "9688", + "22061", + "8423", + "16073", + "10448", + "10017", + "19793", + "12746", + "4630", + "26103", + "16751", + "8602", + "24434" + ], + "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e43", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 28250 + "index": 1894 + }, + { + "id": "e1640e81776e2161325225433af327f53e52694e6b196f5e2f4131746b40784c", + "index": 0 + }, + { + "id": "68f53375066347195c63047e7f34b9a057947d081267493510203e813a4c7345", + "index": 1 + }, + { + "id": "046262772e1c0b52527200e439466f061963fb5b3e7d087f6e283d307d394f58", + "index": 1 + }, + { + "id": "7d655f4201297d693d1a715b6010396463d2642ecd002e210a87e67b41035229", + "index": 1 }, { "amount": { - "quantity": 15, + "quantity": 16, "unit": "lovelace" }, "address": "", - "id": "034f661a3f182c1564052474310f100b2a764e313b2f5469e1e3630405394e16", + "id": "72bb482a124f8e0c111f032732706086d6060a0ba37d21215f087a4f3d603932", "derivation_path": [ - "20789", - "24721", - "15052", - "29807", - "20764", - "27121", - "13353", - "25453", - "29747", - "21582", - "29840", - "32257", - "28280", - "15998", - "31266", - "27310", - "14186", - "23357", - "23930", - "21806", - "18091", - "25984", - "10620" + "2243", + "30641", + "7545", + "30850", + "9836", + "16369", + "32003" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 11, + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 29, + "asset_name": "546f6b656e43", + "quantity": 6, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 50, + "quantity": 54, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 41, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 15, + "quantity": 34, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e41", - "quantity": 11, + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 30880 + "index": 12449 + }, + { + "id": "58143aff546d797b775f74495f78ce16135fb27874551f686164539b49063a75", + "index": 0 + }, + { + "id": "5e73385a45335b7f0be93c534993523f661c7a771a47575f732e5f346675320f", + "index": 1 + }, + { + "id": "955a41152d5d4b01646f6f7a991631567be49d059f60470831c51334267a32e2", + "index": 1 } ], "fee": { - "quantity": 73, + "quantity": 153, "unit": "lovelace" }, "outputs": [ { "amount": { - "quantity": 38, + "quantity": 243, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 43, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 179, "unit": "lovelace" }, "address": "", "derivation_path": [ - "26451", - "2732", - "19054", - "16136", - "114", - "26013", - "25928", - "2999", - "29218", - "7965", - "12115" + "2462", + "2273", + "30413", + "7567", + "5754", + "32749", + "14656", + "15808", + "17019", + "10404", + "15245", + "22524", + "26396", + "14305", + "28963", + "2680", + "27236", + "24632", + "24590", + "22620", + "14264", + "30662", + "11313", + "2822", + "18699", + "4056", + "23823", + "26457", + "21467", + "13875", + "8240" ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 29, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] }, { "amount": { - "quantity": 158, + "quantity": 214, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 145, + "address": "", + "derivation_path": [ + "13248", + "13768", + "18629", + "30295", + "25293", + "15461", + "26064", + "28770", + "2723", + "29094", + "32101", + "11293", + "23197", + "15256", + "11148", + "6724", + "28070", + "8487", + "6352", + "7298", + "10485", + "25792", + "6748", + "12844", + "19348", + "3872", + "27903", + "2194", + "13571", + "1866" + ], + "assets": [] + }, + { + "amount": { + "quantity": 75, "unit": "lovelace" }, "address": "", "derivation_path": [ - "21631", - "27212", - "32087", - "12782", - "15285", - "26300", - "15208", - "27761", - "11937", - "30579", - "4081" + "691", + "1166", + "5035", + "15714", + "11730", + "21839", + "29401", + "9137", + "18905", + "8489", + "667", + "31836", + "21517", + "31795", + "8945", + "1894", + "30518", + "10462", + "9138", + "4818", + "5281", + "21032", + "7219" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 41, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] - }, + } + ], + "script_validity": "invalid", + "metadata": null, + "id": "7d58076b2a124121ce232836023964737f6e345d41614064590c63b8013c5d4f", + "collateral": [ { "amount": { - "quantity": 134, + "quantity": 181, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 50, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "address": "", + "id": "2e548e287b735dac5341033d416a71363c2273787e1e6d4e62710e1305200e64", + "derivation_path": [ + "32660", + "12695", + "7612", + "32730", + "11661", + "10343", + "11700", + "12551" + ], + "assets": [ { "asset_name": "546f6b656e44", - "quantity": 4, + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 13, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 4, + "asset_name": "546f6b656e43", + "quantity": 24, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - { - "asset_name": "546f6b656e45", - "quantity": 37, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 217, + "index": 21145 + }, + { + "amount": { + "quantity": 235, "unit": "lovelace" }, "address": "", + "id": "365d57682723ac15340b59444d521e75786c105d14715561146ded124c744a12", "derivation_path": [ - "12264", - "14886", - "7259", - "16069", - "6011", - "31208", - "5220", - "8350", - "9840", - "29317", - "18520", - "23154" + "23142", + "2029", + "2860", + "24129", + "7722", + "7792", + "1731", + "6389", + "1967", + "5481", + "145", + "1013", + "8367", + "22054", + "6488", + "14680", + "28731", + "27715", + "22558", + "3807", + "7287", + "20927", + "21117", + "23447" + ], + "assets": [], + "index": 26820 + }, + { + "amount": { + "quantity": 12, + "unit": "lovelace" + }, + "address": "", + "id": "20c44061d13eab75796fc7a478164a4f6a79544936f42a7a5414602e72667f56", + "derivation_path": [ + "7456", + "11654", + "14016", + "8678", + "17257", + "6929", + "30403", + "1852", + "479", + "26472", + "28521", + "15434", + "2348", + "31759", + "27178", + "8320", + "32251", + "11206", + "22656", + "9660", + "14083", + "18734", + "21913", + "3115", + "12274", + "31991", + "20001", + "16205", + "27125" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 44, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } - ] + ], + "index": 23272 }, { "amount": { - "quantity": 99, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 227, + "quantity": 185, "unit": "lovelace" }, "address": "", + "id": "4d7d5d0e7f3954b2051230054eb72c897a01de0d09420ef16349122211496512", "derivation_path": [ - "31327", - "15276", - "4116", - "8672", - "31275", - "12397", - "22551", - "12379", - "1502", - "14215", - "27449", - "22291", - "18624", - "15324", - "28141" + "10286", + "31394", + "13575", + "27559", + "24", + "1896", + "11146", + "26342", + "19504", + "3097", + "31044", + "21228", + "21586", + "10409", + "3115", + "27084", + "30280", + "18200", + "19128", + "26516", + "27558", + "5991", + "22549", + "11208", + "30475" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 21, + "asset_name": "546f6b656e45", + "quantity": 27, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 40, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 41, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 18, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 15, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e41", - "quantity": 12, + "asset_name": "546f6b656e45", + "quantity": 28, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 7316 + }, + { + "id": "6c7e7b714d61388b27327d02585f5317442d5d3a1f6e6a133a326c36741a7412", + "index": 1 }, { "amount": { - "quantity": 146, + "quantity": 112, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 154, + "address": "", + "id": "664a132e42015f5c337603312718375e5816a85ac4680d5d0f7e1d3300392347", + "derivation_path": [ + "21403", + "29330", + "6030", + "29588", + "17551", + "28890", + "28560", + "10856", + "28956", + "10252", + "14906", + "19100", + "22027", + "8815", + "14360", + "7059", + "20912" + ], + "assets": [], + "index": 14931 + }, + { + "id": "a144577437ed932f3668cf7b1632465d635500792101561e2572447c6339876b", + "index": 0 + }, + { + "amount": { + "quantity": 11, "unit": "lovelace" }, "address": "", + "id": "4028521e35531b4c5e3e11872a222f040f683003644f3e4842e847baee26733d", "derivation_path": [ - "5367", - "32204", - "17468", - "13082", - "6885", - "23419", - "2518", - "27010", - "28356", - "12203", - "4483", - "5237", - "12893", - "661", - "6310", - "11004", - "6841", - "29783", - "2017", - "20607", - "18241", - "4082", - "21494", - "18835", - "16395", - "31954", - "18195" + "26036", + "8770", + "11302", + "9784", + "22558", + "25921", + "4049", + "16088", + "31169", + "2493", + "2324", + "25621", + "13336", + "30105", + "23645", + "12543", + "9611", + "16401", + "14629", + "11881", + "7828", + "23850", + "27002", + "9577", + "28678", + "29333", + "1512", + "9560", + "21935", + "21698", + "155" ], - "assets": [] + "assets": [], + "index": 25201 + }, + { + "id": "61495c74b3225e186c1e23ff76f60c2628300f20f272667914282d3557425c7b", + "index": 1 }, { "amount": { - "quantity": 179, + "quantity": 147, "unit": "lovelace" }, "address": "", + "id": "107a3410046d6e035c102ca21f226a74207334797f9e59161c5a3c5f3d9a6e1e", + "derivation_path": [ + "13253", + "18820", + "6478", + "28101", + "6923", + "13370", + "17215", + "13265", + "18037", + "22190", + "13445", + "10746", + "12437", + "18065", + "18740", + "18236", + "12487", + "10284" + ], "assets": [ { "asset_name": "546f6b656e45", - "quantity": 12, + "quantity": 7, "policy_id": "33333333333333333333333333333333333333333333333333333333" } - ] + ], + "index": 28987 }, { "amount": { - "quantity": 105, + "quantity": 227, "unit": "lovelace" }, "address": "", + "id": "af5091146d16475e4b0359692b123959034c3f3926253ad535674f505d582502", + "derivation_path": [ + "29485", + "2440", + "1583", + "22526", + "30869", + "11174", + "27240", + "8720", + "21786", + "14901", + "23700", + "23398" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 17, + "asset_name": "546f6b656e41", + "quantity": 4, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 26, + "quantity": 3, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 25, + "asset_name": "546f6b656e42", + "quantity": 15, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 29, + "quantity": 35, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 7, + "quantity": 39, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 40, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 12, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 24, + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 4, + "asset_name": "546f6b656e43", + "quantity": 22, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 26, + "asset_name": "546f6b656e41", + "quantity": 30, "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 54, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e45", - "quantity": 18, - "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 4, + "quantity": 12, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 36, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "9094", - "891", - "23760", - "31459", - "4147", - "9814", - "12731", - "7567", - "12855", - "8042", - "16542", - "29559", - "24785", - "30938", - "16164", - "14494", - "12446", - "27927", - "29812", - "15202", - "2645", - "9980", - "30939", - "3181" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "index": 4315 }, { - "amount": { - "quantity": 104, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "amount_incoming": { - "quantity": 113, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "28506", - "15988", - "28316", - "8620", - "15649", - "22410", - "11657", - "27552", - "32395", - "2890", - "28303", - "13488", - "18293", - "12428", - "17996", - "14622", - "14991", - "14331", - "18500", - "30005", - "8286", - "26001", - "2503", - "12304" - ], - "assets": [] + "id": "735a2569230327324d5dc227c53900fb036b2430ac55607e1c220744694e75c7", + "index": 0 }, { - "amount": { - "quantity": 52, - "unit": "lovelace" - }, - "address": "", - "assets": [] + "id": "13774d3523686566697f113e2141293c755d78c83149142c120d618c70651f72", + "index": 1 + }, + { + "id": "6e6e427313297761563816109f2a34517a391fe973ff64527378435c570f4101", + "index": 0 + }, + { + "id": "2437332a477f5a4d7831133bd34572107a164509133b5713580c163f76106153", + "index": 1 }, { "amount": { - "quantity": 233, + "quantity": 57, "unit": "lovelace" }, "address": "", + "id": "502d52fc6c0e6d9e28285d0138634c7947265b740a72df0743594c581a70015e", + "derivation_path": [ + "3884", + "10811", + "18232", + "8973", + "28968", + "9786", + "13213", + "9273", + "6477", + "21850", + "14295", + "32757", + "24625", + "2086", + "4123", + "24493", + "17869", + "29645", + "32465", + "23379", + "27089", + "29376", + "264", + "4003", + "14436", + "17004", + "20404", + "21788" + ], "assets": [ { "asset_name": "546f6b656e45", - "quantity": 28, + "quantity": 4, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 19104 + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 242, + "unit": "lovelace" + }, + "stake_address": "" }, { "amount": { - "quantity": 69, + "quantity": 208, "unit": "lovelace" }, - "address": "", - "assets": [] + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 11, + "quantity": 255, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 118, + "stake_address": "" + } + ], + "inputs": [ + { + "amount": { + "quantity": 53, "unit": "lovelace" }, "address": "", + "id": "350f5f391f1a1deb3f574119657c136f235a1b056e49322618378e0c5b41415f", "derivation_path": [ - "7312", - "15304", - "30994", - "6969", - "7244", - "30303", - "22675", - "6762", - "14746", - "17274", - "4830", - "16389", - "19246", - "17690", - "32651", - "10196", - "8739", - "1327", - "26910", - "30503", - "9840" + "1734", + "14240", + "5901", + "23717", + "22290", + "8724", + "5866", + "14776", + "5239", + "19508", + "27178", + "24002", + "2275", + "29457", + "14908", + "2022", + "26125" ], "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ] - }, - { - "amount": { - "quantity": 162, - "unit": "lovelace" - }, - "assets_incoming": [ { "asset_name": "546f6b656e42", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 5, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 30, + "index": 15810 + } + ], + "fee": { + "quantity": 132, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 60, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "17242", - "2341", - "28668", - "6349", - "9625", - "124", - "29878", - "29041", - "11397", - "22640", - "3199", - "14469" - ], "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e45", - "quantity": 8, + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 37, "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 175, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 103, + "quantity": 200, "unit": "lovelace" }, "address": "", "derivation_path": [ - "29580", - "15594", - "14472", - "20866", - "14891", - "12244", - "3817", - "5023", - "14675", - "6195", - "20976", - "19244", - "2140", - "16115", - "14959", - "9988", - "19287", - "4754", - "4743", - "10901", - "5896", - "32324", - "26355" + "27504", + "32511", + "13565", + "31921", + "21374", + "351", + "10216", + "24505", + "29010", + "10163", + "9488", + "828" ], - "assets": [] - }, - { - "amount": { - "quantity": 198, - "unit": "lovelace" - }, - "address": "", "assets": [ { "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 3, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } ] }, { "amount": { - "quantity": 177, + "quantity": 62, "unit": "lovelace" }, "address": "", @@ -9975,580 +7396,857 @@ }, { "amount": { - "quantity": 225, + "quantity": 94, "unit": "lovelace" }, "address": "", "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 30, + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 18, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 8, + "quantity": 17, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 20, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 21, + "quantity": 19, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 61, + "asset_name": "546f6b656e43", + "quantity": 15, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 11, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 1, + "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 30, + "asset_name": "546f6b656e44", + "quantity": 11, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 13, + "asset_name": "546f6b656e45", + "quantity": 7, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 36, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 208, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e45", "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 8, + "asset_name": "546f6b656e43", + "quantity": 18, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 1, + "asset_name": "546f6b656e45", + "quantity": 9, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - } - ], - "script_validity": "invalid", - "metadata": null, - "id": "340d2159040c0266fd095c26145a0f09043bf47b6a567b6e493a33253f00b4a8", - "collateral": [ + }, { - "id": "7f713153414c6f1d0a717f524a0d002d702d546e0f34766345170d623b580a0f", - "index": 0 + "amount": { + "quantity": 186, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] }, { "amount": { - "quantity": 91, + "quantity": 196, "unit": "lovelace" }, "address": "", - "id": "269d4d4c5d5269790c434429ac1c4a686e28331d00014602410064359d713c3a", "derivation_path": [ - "2266", - "6079", - "29550", - "2679", - "32092", - "7302", - "28577", - "29024", - "19759", - "7402", - "8762", - "29888", - "15754", - "17102", - "22996", - "21233", - "24280", - "12957" + "31886", + "27634", + "28349", + "30993", + "9351", + "28646", + "11695", + "2219", + "21803", + "340", + "5846", + "6866", + "17301", + "31055", + "22853", + "5638", + "17841", + "9644", + "20753", + "5383", + "16737", + "9196", + "6392", + "20965", + "11230" + ], + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 19, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ] + }, + { + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 206, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "16420", + "28160", + "7410" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 190, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "7047", + "27536", + "20956", + "23315", + "32286", + "9480", + "4504", + "27001", + "3048", + "16202", + "26946", + "19496", + "15554", + "18997", + "17784", + "17438", + "7655", + "9735", + "5022", + "9512", + "750", + "11722", + "14557" ], "assets": [ { "asset_name": "546f6b656e42", - "quantity": 15, + "quantity": 4, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 17, + "quantity": 23, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 23, + "asset_name": "546f6b656e42", + "quantity": 16, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, { "asset_name": "546f6b656e45", - "quantity": 20, + "quantity": 28, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 36, + "quantity": 7, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 11, + "quantity": 27, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 18, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 9, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } - ], - "index": 26507 + ] }, { "amount": { - "quantity": 79, + "quantity": 40, "unit": "lovelace" }, "address": "", - "id": "1e72cf729879bb3b727f6ab7563e3646267c2a5155ce393b79eb4c7168676812", - "derivation_path": [ - "21667", - "27262", - "8370", - "24738", - "5360", - "3296", - "22162", - "4722", - "6994", - "25659", - "20366", - "6938", - "16332", - "26955", - "2825", - "12699", - "10225", - "14827", - "3525", - "26457", - "16518", - "3713", - "12829" - ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 5946 + ] }, { - "id": "684c09667e40eca30f201e367e12a9651c6d716b462e0841757b08656d30307b", - "index": 0 + "amount": { + "quantity": 42, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "32210", + "3456", + "10007", + "24825", + "2776", + "25812", + "24383", + "10023", + "16037", + "30440", + "17819", + "18125", + "27044", + "17682", + "7424", + "11046", + "27209", + "23800", + "29841", + "5183", + "28002", + "5457", + "28999", + "18860", + "13065", + "4937", + "4626", + "6247", + "24945", + "20630" + ], + "assets": [] }, { - "id": "0d6762da0d0d354e135e6b313e504e7f61636b4d351cd114161d2a481a745203", - "index": 1 - }, + "amount": { + "quantity": 45, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "20289", + "2814", + "28756", + "526", + "6149", + "3695", + "476", + "6629", + "18870", + "31118", + "17130", + "7901", + "19790", + "18684", + "10812", + "3223", + "31089", + "21565", + "27434" + ], + "assets": [] + } + ], + "script_validity": "invalid", + "metadata": { + "1": { + "string": "∰" + } + }, + "id": "4c43e2986d471b57470778783e441dd7750b24c33d50730928369a0727c62827", + "collateral": [ { "amount": { - "quantity": 91, + "quantity": 54, "unit": "lovelace" }, "address": "", - "id": "5f7b1d299134396a376ea344771140603e721e7349343227763278221b7a143c", + "id": "6ebb740375246e4253ff5202df12436f481dd834322006489a32051133786a5e", "derivation_path": [ - "11562", - "4285", - "21326", - "8734", - "21879", - "10346", - "25560", - "3598", - "6590", - "28574", - "7908", - "14893", - "5845", - "22541", - "3121", - "7349" + "2131", + "21217", + "10703", + "7692", + "14499", + "8194", + "28965", + "827", + "634", + "32233", + "29535", + "8667", + "21132", + "16968", + "26706", + "19152", + "6321", + "21638", + "3447", + "32235", + "14239", + "26760", + "28585", + "14061", + "5552", + "28454", + "22468" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 17, + "quantity": 11, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 21, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e45", - "quantity": 22, + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 11, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "quantity": 15, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 24, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 22, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 20, + "quantity": 27, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 19, + "asset_name": "546f6b656e44", + "quantity": 54, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 16, + "asset_name": "546f6b656e42", + "quantity": 13, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 17, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 8, + "asset_name": "546f6b656e44", + "quantity": 2, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 2309 + "index": 27353 }, { "amount": { - "quantity": 186, + "quantity": 160, "unit": "lovelace" }, "address": "", - "id": "0f701a2f162f6e236776ea16fbc30446473c0796120c596ba7ab2003e34f3b0e", + "id": "6526976f48a147064e7aeb56783d2e2e24c099db3e0741247b4a0f0a2c15e22b", "derivation_path": [ - "4848" - ], - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 9, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } + "13518", + "22989", + "19472", + "32073", + "5453", + "17232", + "26278", + "13032", + "540", + "9100", + "21786", + "30897", + "10353", + "23816", + "9307", + "6742" ], - "index": 22130 + "assets": [], + "index": 4167 }, { "amount": { - "quantity": 95, + "quantity": 7, "unit": "lovelace" }, "address": "", - "id": "477d70d745076e4842203d7d546b69227f2b757c3420644161337c50167f6546", + "id": "70335fac085f02083759134f36428ed13e7e262d0e4d215f709f150148ee0726", "derivation_path": [ - "15165", - "7494", - "28162", - "30785", - "14101", - "29895", - "420", - "9202", - "30736", - "9539", - "12674", - "13761", - "13179", - "11110", - "15825", - "18235", - "11764", - "7463", - "5731", - "27156", - "810", - "1442", - "884", - "10792" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } + "19321", + "5516", + "7985", + "21614", + "29463", + "17494", + "19033", + "10188", + "8936", + "2678", + "691", + "9301", + "24897", + "26904", + "26370", + "32069", + "18597", + "23344", + "30873", + "20693", + "4375", + "17798" ], - "index": 19783 + "assets": [], + "index": 21873 + }, + { + "id": "695871b20d011b4721710d5b3ed03941205b4e1406393f281c2f647a483b7014", + "index": 0 + }, + { + "id": "ff5e272a31d1206d1d3ac0713b330af669d0796b19d5285f12732a9d5b7128e6", + "index": 1 }, { "amount": { - "quantity": 62, + "quantity": 93, "unit": "lovelace" }, "address": "", - "id": "4c6a3e217c2a222b503e52af774c696a05694b2e6151df5d2b1b007d4f352321", + "id": "6c06071e49914264144a276d0e416e49a80a2177633e7945215844486429af67", "derivation_path": [ - "4417", - "13964", - "13954", - "21014", - "2540", - "20830", - "18017", - "2263", - "23994", - "1955", - "29977", - "6049", - "18785", - "12668", - "32", - "24057", - "32218", - "830", - "15960", - "19512", - "23141", - "24848", - "27630", - "5652" + "22210", + "27778", + "28231" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 3, + "asset_name": "546f6b656e41", + "quantity": 19, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 22, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 17, + "quantity": 29, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e44", - "quantity": 10, + "quantity": 29, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 11, + "asset_name": "546f6b656e44", + "quantity": 6, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 17161 + }, + { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "address": "", + "id": "3001762a634002311c65659a18316faf7a08b9cc102323803400214c35e6e20e", + "derivation_path": [ + "8978", + "13012", + "23404", + "22631", + "3569", + "15416", + "547", + "10892", + "10919", + "32348", + "29278" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e42", "quantity": 6, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 11, + "asset_name": "546f6b656e41", + "quantity": 20, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 15, + "asset_name": "546f6b656e43", + "quantity": 4, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 12, + "asset_name": "546f6b656e43", + "quantity": 28, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 6051 + "index": 10665 + }, + { + "id": "2f6e22343f69440ba2585aab9b526e627506095a11064405303c5b0808093a39", + "index": 1 + }, + { + "id": "34137b6ef45353467a06645054a0c92521fc3546035efe3e823a3dcd74553eb6", + "index": 1 }, { - "id": "18e7470e603679401903740d4e2c499302277cc508434d127347765501636561", + "id": "5940c03f38094ceb1f2f780c097248047f3e1f4d4a670431d27e5913074d685b", "index": 1 }, + { + "id": "03f5477d312270217c1b5f7c6d527ff288614e42f67f4e1f0f92415144fd5d28", + "index": 0 + }, { "amount": { - "quantity": 229, + "quantity": 175, + "unit": "lovelace" + }, + "address": "", + "id": "1e18477e0274772c403120252e7a231b742109293b043a657f51565dee327c64", + "derivation_path": [ + "7240", + "22703", + "18981", + "16650", + "11618", + "32030", + "25401", + "17081", + "21280", + "5065", + "14433", + "12801", + "32115", + "6076", + "27975", + "3670", + "4039", + "14199", + "17999", + "28494" + ], + "assets": [], + "index": 22239 + }, + { + "amount": { + "quantity": 124, "unit": "lovelace" }, "address": "", - "id": "205b3a2d0b273d00e16b0275175616d6286a3e396a507310747425204206ad44", + "id": "30be3b301b771051453f4f58f45b402e7f000e71204019786330e71c08f57f18", "derivation_path": [ - "24785", - "26618", - "11471", - "8227", - "32367", - "29848", - "2337", - "14037", - "29845", - "1066", - "26773", - "30789", - "14936", - "32580", - "30839", - "10790", - "2226" + "27298", + "30004", + "10577", + "23091", + "9146", + "16565", + "28264", + "19739", + "26584", + "11935" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e45", + "quantity": 13, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 583 - }, - { - "id": "54021ddb4b673cdc1a57d1484b7243147c1c680a7c7338394b50000d6d463a38", - "index": 1 + "index": 245 }, { - "id": "71a87dcc744d851d68444754211928223062167646926c5b2113917c91245306", - "index": 1 + "amount": { + "quantity": 97, + "unit": "lovelace" + }, + "address": "", + "id": "723b772642ef6e32044967614c4b1e7125421055524307ef02592d5e7e556190", + "derivation_path": [ + "7547", + "24748", + "30372", + "15168", + "27587", + "19282", + "15573", + "8356", + "29675", + "12173", + "31826", + "20514", + "31471", + "18930", + "26975" + ], + "assets": [], + "index": 3691 }, { "amount": { - "quantity": 246, + "quantity": 203, "unit": "lovelace" }, "address": "", - "id": "70631166497e5625171e4b3f241028f720083d257d0d45901eb2620397c01550", - "derivation_path": [ - "17772", - "8220", - "13128", - "29950", - "7387", - "6070", - "31964", - "27622", - "28895", - "29078", - "17156", - "27650", - "10992", - "19635", - "6484", - "15786", - "21595", - "17730", - "23363", - "27903", - "32478", - "7580", - "8294", - "8875", - "7850", - "28995", - "32734", - "19818" + "id": "79406e7543247d4c4c530803695d28291f63506d750b1a2b3d2370593928164a", + "derivation_path": [ + "26711", + "24695", + "260", + "17923", + "32574", + "23810", + "31082", + "24490", + "8626", + "3131", + "22982", + "9489", + "379", + "3698", + "15311", + "1065", + "29702", + "31443", + "26907" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 20, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 25647 + "index": 3920 }, { "amount": { - "quantity": 175, + "quantity": 154, "unit": "lovelace" }, "address": "", - "id": "9339033b223ae16f33663053d09c76751ed90036496558324133bc09136258ba", + "id": "064d04215182581c3c1f2917c15a1167284f77846e7e024c1d634c6e04307744", "derivation_path": [ - "6059", - "31113", - "25048", - "15804", - "2747", - "9480", - "8432", - "8782", - "21706", - "18021", - "14381", - "12238", - "6369", - "5356", - "17166", - "20938", - "26269" + "26116", + "13534", + "20098", + "28658", + "14606", + "30285", + "17058", + "12154", + "9609", + "10341", + "23880", + "15684", + "25728", + "31567" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 38, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 30, + "asset_name": "546f6b656e42", + "quantity": 29, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 24, + "asset_name": "546f6b656e42", + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 24565 - }, - { - "id": "9c2e5c180e46e5d204087336302f06eba9064e786b311b51694c01244627045f", - "index": 1 + "index": 15161 } ] }, @@ -10556,7 +8254,7 @@ "withdrawals": [ { "amount": { - "quantity": 125, + "quantity": 66, "unit": "lovelace" }, "context": "ours", @@ -10564,28 +8262,28 @@ }, { "amount": { - "quantity": 23, + "quantity": 17, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 195, + "quantity": 162, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 222, + "quantity": 137, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 50, + "quantity": 64, "unit": "lovelace" }, "context": "ours", @@ -10593,7 +8291,21 @@ }, { "amount": { - "quantity": 46, + "quantity": 39, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 98, "unit": "lovelace" }, "context": "ours", @@ -10601,7 +8313,14 @@ }, { "amount": { - "quantity": 215, + "quantity": 250, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 217, "unit": "lovelace" }, "context": "ours", @@ -10609,21 +8328,21 @@ }, { "amount": { - "quantity": 141, + "quantity": 190, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 254, + "quantity": 200, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 54, + "quantity": 188, "unit": "lovelace" }, "context": "ours", @@ -10631,21 +8350,21 @@ }, { "amount": { - "quantity": 49, + "quantity": 51, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 175, + "quantity": 116, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 225, + "quantity": 46, "unit": "lovelace" }, "context": "ours", @@ -10653,14 +8372,21 @@ }, { "amount": { - "quantity": 215, + "quantity": 254, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 255, + "quantity": 66, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 194, "unit": "lovelace" }, "context": "ours", @@ -10668,7 +8394,7 @@ }, { "amount": { - "quantity": 183, + "quantity": 119, "unit": "lovelace" }, "context": "ours", @@ -10676,7 +8402,7 @@ }, { "amount": { - "quantity": 247, + "quantity": 71, "unit": "lovelace" }, "context": "ours", @@ -10685,336 +8411,531 @@ ], "inputs": [ { - "id": "f472425a45581d444052542c25dd3f7ddb4272044b4c74754e003d355c2e2719", - "index": 0 + "amount": { + "quantity": 64, + "unit": "lovelace" + }, + "address": "", + "id": "2b0db55865ec4abd42514a152d14105dde7d37580959e72a220245177a4b5f62", + "derivation_path": [ + "23253" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 19601 + }, + { + "amount": { + "quantity": 217, + "unit": "lovelace" + }, + "address": "", + "id": "395e225bdc7aced240484b699603061c4110784266324ea638784d35436d116a", + "derivation_path": [ + "17810", + "4582", + "643", + "27945", + "20062", + "8711", + "14378", + "670", + "11721", + "1844", + "9729", + "16845", + "20681", + "28696", + "29990", + "1673", + "7392", + "21747", + "30765", + "13243", + "17956", + "4245", + "16131", + "4346", + "11595", + "30624", + "30740", + "19485", + "1399", + "26288", + "29189" + ], + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 1, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 15, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 8, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 1263 + }, + { + "id": "49dab34278243a4d4746724203292a8d69841132684a476d7a6a440146447b07", + "index": 1 + }, + { + "amount": { + "quantity": 234, + "unit": "lovelace" + }, + "address": "", + "id": "9c9e3a2d7ea1fb39060428153d78393f44706a750b2f2202250686e4374d4000", + "derivation_path": [ + "7703", + "32500", + "5207", + "6839", + "15969", + "2100", + "1761", + "2864", + "26682", + "24280", + "17082", + "31516", + "27944", + "29791" + ], + "assets": [], + "index": 20611 + }, + { + "id": "7d151e79346927197564363c085b3b9e484078340b041f665f9a1c315d06e061", + "index": 1 }, { - "id": "1d66366651b1352a4a7a022975335e410105093a7ddb015a466a7bd76a425050", + "id": "193b0b4d053e3c7c396a0446260f5728267e4f5073e805173719927fee4733e6", "index": 0 }, { - "id": "78376b129b1019524a7767095d054e0d7f66447c4e38403a0c3539147d1b5425", + "id": "373c50660055dc371a217b09122b630c773a45794e7b4067ef1677186422497f", "index": 0 }, { - "id": "2ff65b898a0d0e54631b34032d361a33571e0c1b12427272182e7f21e30e5e5b", + "id": "37365f245ba5662e1e4f063861741d357521235e5e00350b34ebd84b431c4345", "index": 0 }, + { + "id": "77eb6e34674e12403fd0294f27157e36594d475b15465fd2675e22117b69e809", + "index": 1 + }, + { + "id": "675916416a4956059db61a1f5f0f3cb40a76095b7bdd4f4b49123d38404f5242", + "index": 1 + }, { "amount": { - "quantity": 139, + "quantity": 210, "unit": "lovelace" }, "address": "", - "id": "73286acd00188c1c2215e50148685e176c8c0f4f2a323a3b331414671632b37a", + "id": "034d2e5a5a51002b6a40157331014448582a48475b167141252803122a7458d2", "derivation_path": [ - "29938", - "16267", - "31056", - "16291", - "23004", - "17905", - "6695", - "11400", - "23323", - "14241", - "13678", - "549", - "4733", - "14102", - "15188", - "26909", - "23534", - "29913", - "21796", - "28890", - "25350", - "4280", - "32093", - "374", - "1998", - "16965", - "27786", - "21728", - "26979" + "26071", + "21100", + "23094", + "18451", + "10475", + "8327", + "6043", + "22972", + "7335", + "3147", + "22329", + "15778", + "2431", + "11430", + "18045", + "23102", + "8556", + "26578", + "31067", + "23318", + "17149", + "27539", + "10114", + "16229", + "27322", + "28607" ], - "assets": [], - "index": 17113 + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + } + ], + "index": 16419 }, { "amount": { - "quantity": 188, + "quantity": 250, "unit": "lovelace" }, "address": "", - "id": "ec164e6a1269f958053001ae27902b10e140db4d7c750935f50975719f3f0a1b", + "id": "39e4075e09577d1d161358103f7db23b3a267845433a62787578c32e5b9b4e23", "derivation_path": [ - "25557", - "32629", - "17338", - "26471", - "8976", - "26352", - "16210", - "17778", - "31093", - "16072", - "15448", - "21954", - "10376", - "9261" + "19054", + "25881", + "31900", + "31320", + "4172", + "12343", + "14059", + "10481", + "21533", + "19596", + "32731", + "16900", + "10199", + "13993", + "18136", + "19908", + "17297", + "22111" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 11, + "asset_name": "546f6b656e44", + "quantity": 15, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, + } + ], + "index": 4904 + }, + { + "amount": { + "quantity": 212, + "unit": "lovelace" + }, + "address": "", + "id": "7a91076eaa7658232e8ea62614262d12277b0c3f46ea6c68456a76be21134c02", + "derivation_path": [ + "30102", + "10116", + "2953", + "21609", + "8755", + "11986", + "21135", + "5716", + "603", + "9318", + "23710", + "21391", + "29075", + "19324", + "1743", + "6352", + "22194" + ], + "assets": [], + "index": 28360 + }, + { + "amount": { + "quantity": 67, + "unit": "lovelace" + }, + "address": "", + "id": "5628246a6e64656c260d34414c650e2428783f7c59248157484c560d5c26376b", + "derivation_path": [ + "10637", + "28456", + "30025", + "24108", + "17442", + "26892", + "11262", + "23647", + "7397", + "24864", + "18303", + "4437", + "8968", + "12620", + "24009", + "9366", + "14075", + "22006", + "23210", + "3529", + "24456", + "28476", + "28628", + "6674", + "5913", + "21037", + "7296", + "3384", + "6511", + "11977", + "7976" + ], + "assets": [], + "index": 19592 + } + ], + "fee": { + "quantity": 229, + "unit": "lovelace" + }, + "outputs": [ + { + "amount": { + "quantity": 127, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "21080", + "25698", + "28004", + "10142", + "24409", + "4027" + ], + "assets": [] + }, + { + "amount": { + "quantity": 185, + "unit": "lovelace" + }, + "address": "", + "assets": [ { "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, + "quantity": 25, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 1953 + ] }, { - "id": "5935207d462306226775087557709f513d0c3e29ad795a2c7a2c6501033752dc", - "index": 0 + "amount": { + "quantity": 201, + "unit": "lovelace" + }, + "address": "", + "assets": [] }, { - "id": "4c225142357c2b6d261a0a69956409337f5d570f055093631c072761056e4054", - "index": 0 + "amount": { + "quantity": 138, + "unit": "lovelace" + }, + "address": "", + "assets": [] }, { - "id": "2408052d745c145f0b5056d4115475595645251c266b0017367ad22b8624bee3", - "index": 1 + "amount": { + "quantity": 91, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "10697", + "17717", + "22366", + "24511", + "31467", + "29608", + "11826", + "12570", + "5774", + "23911", + "31636", + "18080", + "21858", + "14476", + "30753", + "15496", + "29682", + "3816", + "7518", + "14170", + "30348", + "29114", + "10741" + ], + "assets": [] }, { - "id": "394576c129107f0ae758813c59227115723a1850b37e517b7b7e026a77366d62", - "index": 1 + "amount": { + "quantity": 196, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "amount": { - "quantity": 126, + "quantity": 6, "unit": "lovelace" }, "address": "", - "id": "670322374b0c5e2d652c6c5a10375c2f4003814662390909006ec44761252b11", - "derivation_path": [ - "17592", - "27594", - "30168", - "10761", - "18159", - "8199", - "7180", - "5448", - "28420", - "4286", - "12583", - "9574", - "7721", - "18489", - "18154", - "24451", - "5201", - "32343", - "10010", - "15645", - "10906", - "4783", - "1622", - "22512", - "28825" - ], - "assets": [], - "index": 20307 + "assets": [] }, { "amount": { - "quantity": 205, + "quantity": 208, "unit": "lovelace" }, "address": "", - "id": "67090d7f6ed26330431ac4210b626e516fdc395c515646266b7c6c9c4b5a19de", - "derivation_path": [ - "19589", - "26073", - "23550", - "16943", - "20607", - "4647", - "18574", - "13443", - "15933", - "15405", - "2687", - "25907", - "22172", - "10015", - "237", - "29244", - "29703", - "2851", - "28764", - "31569", - "29002", - "16667", - "14116" - ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" } - ], - "index": 965 + ] }, { "amount": { - "quantity": 181, + "quantity": 13, "unit": "lovelace" }, "address": "", - "id": "7a65412e2b147e744b7ba4655401361e3e58336f023c3c58447a364559135960", "derivation_path": [ - "17176", - "25698", - "29459", - "22532", - "20608", - "11639", - "22906", - "8171", - "21862", - "366", - "25158", - "26780", - "22125", - "1191" + "11285", + "21311", + "22324", + "15359", + "21027", + "15108", + "28408", + "30650", + "29750", + "27138", + "23567", + "17256", + "7634", + "8413", + "22962", + "11189", + "9673", + "18817" ], - "assets": [], - "index": 24459 + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 19, + "quantity": 90, "unit": "lovelace" }, "address": "", - "id": "794d1c57fa5609301e7b74264a4a31092d503b0d022177a11e3e7b4d1a2a6917", - "derivation_path": [ - "16494", - "24217", - "19181", - "13449", - "19191", - "11646", - "31152", - "5162", - "29753", - "875", - "20098" - ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 26, + "asset_name": "546f6b656e45", + "quantity": 29, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 26, + "asset_name": "546f6b656e42", + "quantity": 14, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 41, + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 15, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 42, + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e43", - "quantity": 42, + "asset_name": "546f6b656e45", + "quantity": 16, "policy_id": "44444444444444444444444444444444444444444444444444444444" } + ] + }, + { + "amount": { + "quantity": 56, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "15162", + "28944", + "6227", + "8346", + "7698", + "2708", + "30469", + "29476", + "12603", + "29625", + "9142", + "6481", + "5292", + "16271", + "18444", + "32561", + "19269", + "19857", + "25764", + "17567", + "1477" ], - "index": 17740 + "assets": [] }, { - "id": "31c37918f32e7026321d217b61c845435cfc4e4435420b6f7a07696d451270e0", - "index": 1 - } - ], - "fee": { - "quantity": 236, - "unit": "lovelace" - }, - "outputs": [ + "amount": { + "quantity": 252, + "unit": "lovelace" + }, + "address": "", + "assets": [ + { + "asset_name": "546f6b656e41", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] + }, { "amount": { - "quantity": 146, + "quantity": 0, "unit": "lovelace" }, "address": "", @@ -11022,969 +8943,865 @@ }, { "amount": { - "quantity": 24, + "quantity": 246, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "derivation_path": [ + "27138" + ], + "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 10, + "asset_name": "546f6b656e42", + "quantity": 16, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 10, + "asset_name": "546f6b656e43", + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 29, + "quantity": 7, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 31, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, { "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 51, + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 14, + "asset_name": "546f6b656e43", + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 12, + "asset_name": "546f6b656e45", + "quantity": 19, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 195, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "21490", - "6372", - "8814", - "28906", - "1320", - "25626", - "12112", - "21792", - "29139", - "8118", - "6104", - "15032" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 14, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } ] }, { "amount": { - "quantity": 68, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 115, + "quantity": 123, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "8672", - "12700", - "25457", - "16559", - "24965", - "18109", - "15673", - "10983", - "18080", - "15643", - "14669" - ], "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 7, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 48, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ] }, { "amount": { - "quantity": 129, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ], - "amount_incoming": { - "quantity": 254, + "quantity": 93, "unit": "lovelace" }, "address": "", "derivation_path": [ - "14316", - "21477", - "14684", - "17115" + "22481", + "6607", + "31115", + "4972", + "28550", + "30503", + "14576", + "27716", + "12501", + "25770", + "1778", + "1340", + "27372", + "16155", + "27506", + "29271", + "10101", + "4296", + "25344", + "12635", + "31578", + "28807", + "6447", + "27586", + "13883", + "9041", + "20614", + "11769", + "17368", + "11728" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 5, + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 12, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, + { + "asset_name": "546f6b656e41", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e42", - "quantity": 35, + "quantity": 10, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 10, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 25, + "quantity": 21, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 33, + "asset_name": "546f6b656e44", + "quantity": 23, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] + } + ], + "script_validity": "valid", + "metadata": null, + "id": "de6650d5770b0ef97c3c126f3471435e69cb168c48234a724e063e639e0d7a72", + "collateral": [ + { + "id": "0fb7094f51417a635d6a0ffaee542f7a25d2370aad191257d34c4d7b45445861", + "index": 0 }, { "amount": { - "quantity": 123, + "quantity": 14, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "id": "df2e504f78b85f1068234a02e34370474d75430e0d7a5434725a5b0178cc43e4", + "derivation_path": [ + "12997", + "18994", + "25999", + "2718", + "27139", + "19732", + "26164", + "28486", + "26878", + "13040", + "16978", + "19902", + "11684", + "10325", + "517", + "22133" + ], + "assets": [ { "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "quantity": 24, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, + } + ], + "index": 28721 + }, + { + "amount": { + "quantity": 114, + "unit": "lovelace" + }, + "address": "", + "id": "43fc61db3a67336c636926372e47761b6e4b46644f2e3a0d3d5a7f56214a2545", + "derivation_path": [ + "8308", + "18906", + "25475", + "26980", + "31726", + "19932", + "9326", + "30982", + "28132", + "16918", + "32082", + "8813", + "2712", + "9910", + "6238", + "3082", + "12518", + "19855", + "31546", + "29410", + "8494", + "4777", + "7097", + "7666", + "23108", + "25826", + "10933", + "15840", + "31331" + ], + "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 22, + "asset_name": "546f6b656e45", + "quantity": 21, "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 5962 + }, + { + "id": "7c54101a2d2e5b341c3742516024e07de3195f5a5973b52b75b04e710c5b1db0", + "index": 0 + }, + { + "amount": { + "quantity": 253, + "unit": "lovelace" + }, + "address": "", + "id": "64434d522b4917c53e34425d5d153e616a29341b0a1f770d360d3851f271df27", + "derivation_path": [ + "16939", + "7277", + "22872" + ], + "assets": [], + "index": 25807 + }, + { + "amount": { + "quantity": 108, + "unit": "lovelace" + }, + "address": "", + "id": "5222683e2e75b66f6f1ba93d7826034c41ea4f795d681906766a29040d7f3389", + "derivation_path": [ + "8815", + "13895", + "8517", + "1869", + "19226", + "22717", + "31791", + "27245", + "14927", + "30839", + "10121", + "8058", + "7491", + "3235", + "6500", + "27402", + "402", + "6545", + "844" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 25, + "asset_name": "546f6b656e43", + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 29, + "index": 12451 + }, + { + "id": "7576642d354c7c3756854067093a4b5d494b5f5849795b2b292e41442d1c401c", + "index": 0 + }, + { + "amount": { + "quantity": 135, "unit": "lovelace" }, "address": "", + "id": "d34f182b677a7c4c4d3f02093873697824201b666f0c0d55672f5f355e4ba5d6", "derivation_path": [ - "1099", - "29942", - "2003", - "26480", - "30863", - "29262", - "4703", - "7101", - "13798", - "14959", - "11706", - "30111", - "27867", - "23956", - "9784", - "31388", - "1212", - "17644", - "1408", - "4222", - "8057" + "21770" ], "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 20, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e44", + "quantity": 29, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "quantity": 4, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 19, + "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 10, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } - ] + ], + "index": 27156 }, { "amount": { - "quantity": 140, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 193, + "quantity": 230, "unit": "lovelace" }, "address": "", + "id": "5f2f7c46114a012b3a130f5476207854281f327b57651f4b00e26e4d243e5502", "derivation_path": [ - "31179", - "27779", - "31828", - "15878", - "8362", - "4559", - "10653", - "21457", - "1259", - "13738", - "4837", - "18498", - "27688", - "11906", - "15582", - "26379", - "15021", - "16448", - "16816", - "29177", - "21419", - "3631", - "9307", - "4581", - "4351", - "20451" + "11716", + "31223", + "29551", + "3973", + "7627", + "15389", + "2865", + "10568", + "11623", + "14087", + "27777", + "27800", + "9725", + "14519", + "18923", + "16910", + "4054", + "5129", + "4034" ], "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "quantity": 26, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 19, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 32121 + }, + { + "id": "16175106331d481f795f6f68057bcdaf48ad105992466692b898377d6838585c", + "index": 1 + }, + { + "id": "79604d7730413f2446c3765a732060400822167b4a1136091d311255383a7e4a", + "index": 0 }, { "amount": { - "quantity": 33, + "quantity": 235, "unit": "lovelace" }, "address": "", + "id": "147d66cc321f285364121b121d23cf545e536c30540a2a843735637f4850c847", + "derivation_path": [ + "4364", + "26307", + "15193", + "10296", + "21190", + "8825", + "22217", + "4408" + ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } - ] + ], + "index": 242 }, { "amount": { - "quantity": 239, + "quantity": 240, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 19, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, + "address": "", + "id": "6a19323cdfb7516d1c0e397df61b4d1c06122d3d487b273a0a6911090c1d4331", + "derivation_path": [ + "30131", + "9705", + "32270", + "28108", + "664", + "2223", + "17600", + "5029", + "2476", + "843", + "27369", + "24429", + "30099", + "18377", + "28618", + "32139", + "6155", + "12036", + "23832", + "11009", + "16988", + "30257", + "28541", + "24046", + "26699", + "19723", + "3830" + ], + "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 26, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e45", + "quantity": 27, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 2, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 14, + "asset_name": "546f6b656e43", + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 167, + "index": 27563 + }, + { + "amount": { + "quantity": 100, "unit": "lovelace" }, "address": "", + "id": "1a63cb69090f4145b432580039333f3b2c3320444a723a0c42750d0e5724255c", "derivation_path": [ - "1217", - "16984", - "28641", - "13720", - "7959", - "18042", - "12702", - "8435", - "29808", - "15466", - "30741", - "8009", - "20296", - "24021", - "9103", - "6877", - "29664", - "6534", - "6361", - "12172", - "13453", - "5316", - "19943", - "6695", - "2897", - "2991", - "22361", - "3529", - "11446", - "16563" + "20267", + "5422", + "10961", + "1466", + "3016", + "28784" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 26, + "asset_name": "546f6b656e41", + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e42", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e43", - "quantity": 15, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 31, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 1, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 24, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 27, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e43", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 48, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 22, + "asset_name": "546f6b656e45", + "quantity": 4, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 47, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "8067", - "1601", - "5781", - "20943", - "24014", - "11593", - "22175", - "21202", - "6784", - "8636", - "26640", - "17107", - "23781", - "13207", - "18013", - "25396", - "24530", - "8541", - "2306", - "26218", - "15808", - "19580", - "27398", - "21094", - "20366" - ], - "assets": [] + "index": 22439 }, { "amount": { - "quantity": 122, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 221, + "quantity": 252, "unit": "lovelace" }, "address": "", + "id": "785477023c3e861f2ce920af5a3d0c8d38626e6b373c1d6ade2103082c72d26f", "derivation_path": [ - "373", - "10706", - "2169", - "403", - "27751", - "30280", - "3729", - "19257", - "10099", - "29974", - "12165", - "8924" + "15762", + "32307", + "15093", + "18139", + "26919" ], - "assets": [] - } - ], - "script_validity": "valid", - "metadata": { - "30": { - "list": [ - { - "map": [] - } - ] - } - }, - "id": "092b222c4a3c1cc53d114c8f6d4d6f7f6e78a13bd9057828a9717d7b24593670", - "collateral": [ + "assets": [], + "index": 9075 + }, { "amount": { - "quantity": 247, + "quantity": 205, "unit": "lovelace" }, "address": "", - "id": "5f559d4d3f4b1b21f83676584894095774c1707818ac2529255f4954e7777766", + "id": "1b2c0e61106e4e56eb6729313e6d67699b7d76e3f471d41d686a6a2a4c40535d", "derivation_path": [ - "17821", - "2980", - "2479", - "1979", - "9664", - "10990", - "28893", - "28386", - "22247", - "14508" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } + "29025", + "28073", + "26892", + "24088", + "30510", + "17087", + "12630", + "20006", + "10431", + "696", + "16881", + "26944", + "28831", + "4790" ], - "index": 9843 - }, - { - "id": "6d18045351329fe2d427557302096f722410c73e565b2ac26160f80c5e1a04d8", - "index": 1 - }, - { - "id": "43b84a2035225cfb5b4d780327445c217e111c6e714b60377a01771951306113", - "index": 1 + "assets": [], + "index": 293 }, { "amount": { - "quantity": 37, + "quantity": 143, "unit": "lovelace" }, "address": "", - "id": "07671a4e603c840d2d725e11656e130831702c055138104f6c255f51747cb724", + "id": "6696ba7a676b701e46fe774d21684557b6ab7b56872f448bd052627127523965", "derivation_path": [ - "3731", - "24909", - "22746", - "21133", - "32102", - "27711" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 9, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } + "12651", + "19452", + "24593", + "21833" ], - "index": 18967 - }, - { - "id": "154ec27b23433ef80b576201237b5058036155496f73132822fe594e766e447c", - "index": 0 - }, - { - "id": "450bb057107b4b58030777762927671ede0e7a173f657b3966f8377cb93e3d1a", - "index": 1 + "assets": [], + "index": 10242 }, { "amount": { - "quantity": 106, + "quantity": 105, "unit": "lovelace" }, "address": "", - "id": "8321730f1da11c77805b35577644291b7e0a4549a133135a78715e5a232b1d41", + "id": "19567c8e0e7e561c603ce3402204286115db1e541b4d064a2f5c4a3dce54212d", "derivation_path": [ - "23340", - "24892", - "954", - "3422", - "31439", - "1710", - "8736", - "164", - "27096", - "32177", - "1386", - "30647", - "13520", - "25239", - "19366", - "15555", - "17782", - "3566", - "13337", - "7518", - "29123", - "6948", - "20763", - "204", - "3341", - "18020", - "2913" + "3546", + "24855", + "31889", + "32031", + "15995", + "10132", + "26336", + "7470", + "26558", + "3494", + "17318", + "10934", + "25964", + "24354", + "17894", + "12745", + "20579" ], "assets": [], - "index": 18298 + "index": 31410 }, { "amount": { - "quantity": 164, + "quantity": 229, "unit": "lovelace" }, "address": "", - "id": "613d183849621df3f1297a1f167a7f7c1f7e572b35046e39fe081d023f3a5c6b", + "id": "5f526d49026a23330a4d63c74f1c61210d964228000b64354c3256175561033a", "derivation_path": [ - "11474", - "15380", - "17139", - "5120", - "31678", - "3426", - "21902", - "14757", - "8411", - "11314", - "24533", - "10065", - "14676", - "14606", - "7405", - "13659", - "1944" + "29926", + "17851", + "6940", + "19374", + "30979", + "11097", + "16085", + "13774", + "14523", + "15279", + "19416", + "4917", + "25170", + "5177", + "28896", + "8655", + "22419", + "29325", + "32079", + "16003", + "29422", + "29162" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 22, + "asset_name": "546f6b656e44", + "quantity": 15, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 11, + "asset_name": "546f6b656e45", + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 23, + "quantity": 22, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 14, + "asset_name": "546f6b656e44", + "quantity": 46, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 18, + "asset_name": "546f6b656e43", + "quantity": 5, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 16, + "asset_name": "546f6b656e42", + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 40, + "quantity": 19, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 31, + "asset_name": "546f6b656e44", + "quantity": 8, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 2213 + "index": 30634 + } + ] + }, + { + "withdrawals": [ + { + "amount": { + "quantity": 78, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" }, { - "id": "6d3969755e36654708a1178a82ea1177644f6042272028066716060e6019625a", - "index": 1 + "amount": { + "quantity": 185, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" }, { - "id": "9c605b4412c72d6d400b37163c7c74fd2477150b03265a65ad3c055643777e3e", - "index": 0 + "amount": { + "quantity": 103, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 30, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 124, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 68, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 139, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + }, + { + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "stake_address": "" + }, + { + "amount": { + "quantity": 162, + "unit": "lovelace" + }, + "stake_address": "" }, { "amount": { - "quantity": 44, + "quantity": 212, "unit": "lovelace" }, - "address": "", - "id": "bc1760052a024d4d7576fe3868292cbb69796a5a45377500320d5c1a64c6693c", - "derivation_path": [ - "9927", - "13185", - "13455", - "6635", - "2004", - "24327", - "19969", - "16022", - "29519", - "893", - "32734", - "29538", - "387", - "8405", - "25021", - "2603", - "8869", - "7351" - ], - "assets": [], - "index": 21138 + "context": "ours", + "stake_address": "" }, { - "id": "18511c5c37ec4137518c6f62110d5276595c476ec71c2d68777929617603783b", - "index": 0 + "amount": { + "quantity": 220, + "unit": "lovelace" + }, + "stake_address": "" }, { "amount": { - "quantity": 38, + "quantity": 204, "unit": "lovelace" }, - "address": "", - "id": "73922612ff7701185c4749469b437f3e2454462e1b4d6e3946632ecb3ddd621f", - "derivation_path": [ - "16506", - "32317", - "4263", - "15891", - "19602", - "19098", - "9988", - "26149", - "4995", - "22089", - "11690" - ], - "assets": [ - { - "asset_name": "546f6b656e43", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 15398 + "stake_address": "" }, { - "id": "5b163b0d0b47074b027f166825a0027a75697f5e2979706a76337fb90a078021", - "index": 1 + "amount": { + "quantity": 56, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "2b3e0f6f772c43232569381143076e3c3975ab03204c17797b0071365f9d6e01", - "index": 1 + "amount": { + "quantity": 253, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "0811c85a5b5312936b1852562478e7a4757d4e0a474b1a7667111f4f922e4bc1", - "index": 1 + "amount": { + "quantity": 182, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "2a28777f6a727f0d762b247edb46700f1b399e6d1e4747650a02063b1219421c", - "index": 1 + "amount": { + "quantity": 22, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" }, { "amount": { - "quantity": 96, + "quantity": 16, "unit": "lovelace" }, - "address": "", - "id": "7a5e5e09206c3bb72a132f133d5e217b6ce756b6ce4710743cd7d82300524ac1", - "derivation_path": [ - "18750", - "25657", - "4795", - "16291", - "26119", - "31728", - "22516", - "6450", - "13099", - "26139", - "15595", - "30482", - "26695", - "31758", - "14589", - "8184", - "21689" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ], - "index": 16524 + "stake_address": "" }, { "amount": { - "quantity": 99, + "quantity": 137, "unit": "lovelace" }, - "address": "", - "id": "3a43527e2476170b34f88bde47fbb5529a0f5f0f53e0631e7a472c9b22454b31", - "derivation_path": [ - "9819", - "3235", - "18970", - "19227", - "2692", - "24648", - "21661", - "19968", - "20019", - "9982", - "31990", - "16693", - "27403", - "16349", - "29799", - "3788", - "27494", - "12512", - "32009", - "715", - "19363", - "15528", - "32249" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 25, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 29, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 55, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 6, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "index": 10023 + "stake_address": "" }, - { - "id": "699f19584f037236707b09a1254c6c5c292db736fa6b4c6a097c0d3b4e194446", - "index": 1 - } - ] - }, - { - "withdrawals": [ { "amount": { - "quantity": 128, + "quantity": 132, "unit": "lovelace" }, "context": "ours", @@ -11992,15 +9809,14 @@ }, { "amount": { - "quantity": 9, + "quantity": 3, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 146, + "quantity": 246, "unit": "lovelace" }, "context": "ours", @@ -12008,14 +9824,14 @@ }, { "amount": { - "quantity": 57, + "quantity": 50, "unit": "lovelace" }, "stake_address": "" }, { "amount": { - "quantity": 170, + "quantity": 92, "unit": "lovelace" }, "context": "ours", @@ -12023,964 +9839,1170 @@ }, { "amount": { - "quantity": 91, + "quantity": 95, "unit": "lovelace" }, - "context": "ours", "stake_address": "" }, { "amount": { - "quantity": 40, + "quantity": 117, "unit": "lovelace" }, - "context": "ours", "stake_address": "" } ], "inputs": [ + { + "id": "37744ab149544e240d347660021d1413df4d1e623b14437a375f4c4414020363", + "index": 1 + }, + { + "id": "616c143355374b1b39e37c0f59181e6ee636b072540d07277336581f3b1e5c7a", + "index": 0 + }, { "amount": { - "quantity": 231, + "quantity": 157, "unit": "lovelace" }, "address": "", - "id": "3b51536d1f0e780a455d3141e54d09423953a0180a4e6252722452227f077dad", - "derivation_path": [ - "1488", - "31092", - "6102", - "24185", - "27879", - "3147", - "22814", - "17901", - "27856", - "18870", - "8224", - "32641" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 29, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 42, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 11, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } + "id": "3de9d041646713247b5e55584c55251f056f103178c019231e5e35696c090570", + "derivation_path": [ + "32382", + "25580", + "12960", + "11272", + "25169", + "21797", + "21861", + "3030", + "27675", + "31922", + "801", + "23993", + "20076", + "11395", + "20780", + "28507", + "13303", + "3329", + "1046", + "24723", + "9760", + "12056", + "20344", + "272", + "25429", + "29579", + "30412" ], - "index": 1334 + "assets": [], + "index": 17126 + }, + { + "id": "77db444e4d852f61797b726a486d124fefa0a07971577375164604a4421b4136", + "index": 1 }, { - "id": "e20a05643e43ce7314171f1c63193830c5062d202c250e41264c0f1935503539", + "id": "21417430074db7f862105e6d621c0e08642dec54043637285092bc6f35582d2f", "index": 0 }, { "amount": { - "quantity": 48, + "quantity": 122, "unit": "lovelace" }, "address": "", - "id": "544a731b4e7a402f6641396136ef0b36513c190073432843159a540167464957", + "id": "422375725b45141d514c1d1a102a211975244e1d7c4e632a6b9f20582b39dc71", "derivation_path": [ - "28448", - "15181", - "29963", - "18882", - "23138", - "26718", - "30358", - "3238", - "7706", - "1431", - "533", - "24784" + "32394", + "10623", + "6808", + "21987", + "10626", + "10338", + "5134", + "30925", + "9325", + "2768", + "18611", + "31448", + "21365", + "21823", + "4061", + "26022", + "21282", + "6080", + "4951", + "28564", + "30700", + "17120", + "23104", + "19370", + "29545", + "2696", + "26047", + "20115" ], "assets": [], - "index": 27914 + "index": 32053 + }, + { + "id": "670e314d07345b223c0f470fc24235ea5a29f0226821790b1403f54166273079", + "index": 0 + }, + { + "id": "7dd94819347f5686d8114e7a11486d792830235a5336baad9e92d3bb1e57077d", + "index": 1 }, { "amount": { - "quantity": 237, + "quantity": 254, "unit": "lovelace" }, "address": "", - "id": "1e4a233120432fb31f734b317a4d40281d700a57014c01a9e95ee24907e946eb", + "id": "0a16767e532f513f3629bf5174076a497a4103293f0f102f045676283b7a2d3b", "derivation_path": [ - "26440", - "10270", - "6506", - "24407", - "16289", - "9592", - "16834", - "20450", - "24390", - "6094", - "24569", - "23197", - "19519", - "8728", - "4241", - "22186", - "32276", - "26970", - "7524", - "4732" + "22254", + "6180", + "29058", + "26463", + "28410", + "15539", + "18519", + "4586" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 25, + "asset_name": "546f6b656e41", + "quantity": 19, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 47, "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 58, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 20161 + "index": 10242 }, { "amount": { - "quantity": 68, + "quantity": 205, "unit": "lovelace" }, "address": "", - "id": "6d270d6b3104615b60796f24062f615376440026971270b9a14352772de52c19", + "id": "3a66aea81d394018631e34b8772cc432cb1cba7b3a4a2519361311f217ae6a51", "derivation_path": [ - "11876", - "3466", - "6428", - "21454", - "19272", - "30130", - "5094", - "32214", - "6207", - "27491", - "17845", - "29773", - "11612", - "1271", - "13979", - "26129", - "8894", - "4377", - "28151", - "29477", - "17150", - "20922", - "26662", - "12671", - "15673", - "15258", - "7001" + "4523", + "12466", + "2335", + "27901", + "28490", + "16794", + "30076", + "8495", + "4718", + "2313", + "7032", + "8600", + "31926", + "8193", + "11472", + "10151", + "12588", + "3042" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 13, + "asset_name": "546f6b656e43", + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, + { + "asset_name": "546f6b656e41", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e42", + "quantity": 20, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, { "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 49, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 55, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 17, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 24, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 14, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 12, + "asset_name": "546f6b656e45", + "quantity": 16, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 32120 + "index": 19239 + }, + { + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "address": "", + "id": "c64957b6413e55504c6f01243555295a2a68540d0e7303cdf89f034a3b427e2a", + "derivation_path": [ + "8970", + "2588", + "11441", + "30621", + "18300", + "26706", + "32747", + "21983", + "32210", + "9621", + "20959", + "13856", + "16438", + "27606", + "22805", + "2793", + "6041", + "22793" + ], + "assets": [], + "index": 25461 }, { - "id": "61a92317d15d524a1f0c065f655e17534177127c120e2a9e42076b572515783b", + "id": "0cb508eb164231120e25da527a5b3a32151957114e38744b3c102b5c472c2053", "index": 1 }, { "amount": { - "quantity": 114, + "quantity": 231, "unit": "lovelace" }, "address": "", - "id": "024d141d74001b045825361553377a3a1136320e920e11661a1f4b6a382b3374", + "id": "21304e000c21507240a474253144431d411a5263681c103f4e0e3204c3897806", "derivation_path": [ - "16196", - "11908", - "23603", - "29255", - "21898", - "8220", - "7133", - "29738", - "29146", - "20011", - "1672", - "3051" + "11182", + "8817", + "17137", + "17906", + "21183", + "10022", + "1662" ], "assets": [ { "asset_name": "546f6b656e43", - "quantity": 20, + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", + "quantity": 14, "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 31, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e45", + "quantity": 34, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 4, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e45", + "quantity": 40, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 43, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e42", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 13813 - }, - { - "id": "544161ed4a73bb4d80137f167c61165c262078677a1836791162174d3c6a7f09", - "index": 1 + "index": 16326 }, { - "id": "2e19321d744a456f0c5c47167c6701015754779321e72a4f40297801670f3763", + "id": "13cb413a0266a7ea1b75206e2e11700b2e69677b2f3e253895cf12466c2a2200", "index": 0 }, { - "id": "3a7f576a0d806b6d37220a14de267f5923191096106c70506e70b9564c41442a", - "index": 1 + "id": "683453022676153d017166214065734eb11c4e27582b18616c1f584a08933917", + "index": 0 } ], "fee": { - "quantity": 77, + "quantity": 9, "unit": "lovelace" }, "outputs": [ { "amount": { - "quantity": 163, + "quantity": 29, "unit": "lovelace" }, "address": "", + "derivation_path": [ + "2922", + "6927", + "20691", + "9147", + "24087", + "2014", + "24332", + "19609", + "22732", + "133", + "31098", + "6540", + "32363", + "3856" + ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 9, + "quantity": 25, "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "amount": { - "quantity": 241, + "quantity": 212, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 75, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 34, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "16891", - "26757", - "14379", - "29867", - "30525", - "23288", - "13505", - "8301", - "30955", - "24331", - "29367", - "9418", - "17445", - "19977", - "27953", - "6928", - "894", - "10334", - "26054", - "11261", - "5029", - "6308", - "5498", - "12696", - "14844", - "4785", - "30144", - "10327", - "32686" - ], "assets": [] }, { "amount": { - "quantity": 239, + "quantity": 149, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "derivation_path": [ + "31244", + "7495", + "3459", + "18243", + "24409", + "24065", + "17919", + "31755", + "18363", + "6231", + "19197", + "2332", + "1939", + "17093", + "27947", + "21220", + "25810", + "21240", + "7860", + "25455", + "28188", + "9732", + "11195", + "1295", + "3897", + "5280" + ], + "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 199, + "unit": "lovelace" + }, + "address": "", + "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 22, + "asset_name": "546f6b656e42", + "quantity": 17, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e43", - "quantity": 2, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 33, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 20, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 6, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e42", - "quantity": 33, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 30, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e43", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 27, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 6, + "asset_name": "546f6b656e41", + "quantity": 15, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 35, + "quantity": 27, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e42", - "quantity": 31, + "asset_name": "546f6b656e43", + "quantity": 26, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ] + }, + { + "amount": { + "quantity": 117, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 76, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 146, + "unit": "lovelace" + }, + "address": "", + "assets": [ { "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 30, + "quantity": 20, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 9, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e44", + "quantity": 5, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e44", + "quantity": 52, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 190, + ] + }, + { + "amount": { + "quantity": 36, "unit": "lovelace" }, "address": "", "derivation_path": [ - "30374", - "16773", - "21099", - "30214", - "24739", - "4302", - "24138", - "20455", - "2110", - "21916", - "24649", - "20910", - "21885", - "15229", - "17609", - "20620", - "15969", - "23663", - "793", - "11840", - "9638", - "8840", - "20553", - "31314", - "16021", - "15991", - "6814", - "15900", - "30674", - "8732" + "14958", + "24923", + "14426", + "15577", + "29649", + "17033", + "23783", + "18177", + "23370", + "13234", + "16479", + "4702", + "27829", + "23454", + "28767", + "11176", + "15871", + "585", + "26704", + "18852", + "31532", + "27774", + "30783", + "1704", + "16846" ], "assets": [] }, { "amount": { - "quantity": 249, + "quantity": 248, "unit": "lovelace" }, "address": "", - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 29, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "amount": { - "quantity": 214, + "quantity": 244, "unit": "lovelace" }, "address": "", + "derivation_path": [ + "12468", + "17691", + "4815", + "8998", + "28671", + "14395", + "29521", + "7347", + "21459", + "20206", + "16047", + "21898", + "21816", + "13715", + "3317", + "11243", + "2455", + "25913", + "10293", + "13884", + "16393", + "13900", + "22375", + "9112", + "22749", + "655", + "7027", + "12757" + ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 19, + "asset_name": "546f6b656e44", + "quantity": 1, "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + } + ] + }, + { + "amount": { + "quantity": 227, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "29746", + "8115", + "21641", + "8145", + "30324", + "30670", + "2678", + "11658", + "10387", + "13638", + "17738", + "2417", + "13468", + "29503", + "15356", + "8170", + "10014", + "8109", + "19354", + "26740", + "10709", + "15335", + "2008", + "23716" + ], + "assets": [ { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "quantity": 18, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, - { - "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, { "asset_name": "546f6b656e43", - "quantity": 12, + "quantity": 1, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e45", - "quantity": 19, + "quantity": 24, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 20, + "quantity": 21, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e42", - "quantity": 42, + "asset_name": "546f6b656e43", + "quantity": 46, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 27, + "quantity": 18, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 14, + "quantity": 22, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 11, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e42", - "quantity": 30, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e44", + "quantity": 4, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 15, + "asset_name": "546f6b656e44", + "quantity": 29, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e45", - "quantity": 8, + "quantity": 2, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 242, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e44", - "quantity": 23, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "amount_incoming": { - "quantity": 76, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "16283", - "15774", - "30595", - "8965", - "20599", - "25705", - "9720", - "14543", - "32086", - "20587", - "16335", - "10127", - "2232", - "19054", - "5644", - "23891", - "29959" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 3, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - } - ] - }, - { - "amount": { - "quantity": 121, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 104, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "314", - "30039", - "18648", - "605" - ], - "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ] - }, - { - "amount": { - "quantity": 102, + "quantity": 168, "unit": "lovelace" }, "address": "", "assets": [] } ], - "script_validity": "valid", "metadata": { - "17": { - "int": 0 + "12": { + "list": [ + { + "bytes": "4750105a102b7a485a37fd100b6f5e0d589b2b115d6950191012a5505691e2441e3c7724634c0c240a193979683b540517375244a30139b83309c718cb" + } + ] } }, - "id": "00787121725d180e3b493971104a149a14345012204d6b36f11b71572bbff1fa", + "id": "1d380e71da437f64047a58e814717e7c26607c2c0d217e4d1d6773556b547f33", "collateral": [ + { + "id": "3b043c180d0d1e1d802d42025c72b9e147204d6b3dd720302d66994a6e34194e", + "index": 0 + }, + { + "id": "5007540c7d61427a6362452398aa523a67315d73901843ac54585df74d0d643a", + "index": 0 + }, + { + "id": "4d7a30092b4601d91b13a02d2b30055bc4ac3b6e1d1fb902685a350e03736a6c", + "index": 0 + }, + { + "id": "3b3a614d22b27c060f686a1449765e7a6d3873e405032e74690816a63147774a", + "index": 1 + }, { "amount": { - "quantity": 217, + "quantity": 153, "unit": "lovelace" }, "address": "", - "id": "3127177adc1310c4245024012e796d251e39134b2c2c693d635908260b0036d6", + "id": "6903ce6b184c230a3358323d35161e47e9452d2cce514d5cd01b2a655e150d63", "derivation_path": [ - "7492", - "8722", - "5297", - "28011", - "3264", - "23608", - "30160", - "25739", - "31000", - "14096", - "11631", - "25698", - "898", - "23722", - "13330", - "18556", - "27466", - "29486", - "30417", - "19986", - "15707", - "5707", - "27684", - "12267", - "2563" + "25617", + "5844", + "1584", + "3085", + "11083", + "26281", + "10552", + "7848", + "29719", + "24639", + "3602", + "11643", + "882", + "24645", + "29764", + "8101" ], "assets": [], - "index": 1790 - }, - { - "id": "0725fa119e1c09fc1ba909240adc3ac959016122760d1f74473044056e1d8d18", - "index": 1 + "index": 10543 }, { "amount": { - "quantity": 146, + "quantity": 114, "unit": "lovelace" }, "address": "", - "id": "0f67172d55095802342e565f6d6e3d770d51786b45125369c5726c710160656d", + "id": "6a0b195fec7c77172757f378025b385e4b2a17936267424c511f3e04152f5509", "derivation_path": [ - "8807", - "2234", - "11257", - "18267", - "5663", - "31529", - "8682", - "21461", - "1993", - "14237", - "31910", - "10660", - "3692", - "27025", - "27612", - "14789", - "31961", - "17138", - "5018", - "12858", - "1625", - "12406", - "8786", - "25259", - "16787", - "31918", - "25175", - "1422" + "14968", + "31596", + "6416", + "8532", + "11403", + "5904", + "3657", + "7982", + "17759", + "5632", + "32360", + "1382", + "11974", + "27945", + "6555", + "27333", + "26417", + "23916", + "3515", + "28235", + "30784", + "16378", + "15512", + "30064", + "18214", + "18986" ], "assets": [], - "index": 25292 + "index": 5168 }, { "amount": { - "quantity": 30, + "quantity": 201, "unit": "lovelace" }, "address": "", - "id": "77af2a7f7c409b9d337312687a4316496c16fe757c380f556a4f18d4243d7d0f", + "id": "4b15270e502b1e11a67ae2653d113a9e350d766f7d3e44789dd24b251d3f0a77", "derivation_path": [ - "25997", - "19419", - "30874", - "23117", - "29300", - "1015", - "31004", - "25791", - "3780", - "24143", - "26043", - "7976", - "28900", - "30631", - "12646", - "30661", - "17918", - "11438", - "30700", - "29378", - "3142" + "28786" ], - "assets": [], - "index": 20248 - }, - { - "id": "65621566716e2f633405314c39524a901eaa765ecdbfffca542320276f227866", - "index": 1 + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 30, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + } + ], + "index": 12898 }, { "amount": { - "quantity": 28, + "quantity": 76, "unit": "lovelace" }, "address": "", - "id": "78851f696419024a1f5e4b003bb62678771d2f4e08724c320c0a983f393c4744", - "derivation_path": [ - "28239", - "29534", - "16082", - "7570", - "30987", - "28696", - "29178", - "15051", - "14564", - "765", - "13209", - "7058", - "23335", - "17946", - "26777", - "7505", - "25698", - "27237", - "7792", - "24504", - "19231", - "3308", - "29782" + "id": "247d2422181e5073196d613bcd2877551e1175100f37bb650227656f53de6d2e", + "derivation_path": [ + "30544", + "28518", + "2952", + "3184", + "27670", + "18376", + "20933", + "107", + "14481", + "12983", + "3463", + "25508", + "22050", + "29989", + "27073", + "2303", + "20063", + "18257", + "22843", + "9888", + "11389", + "31207", + "9698", + "25533", + "19347" ], - "assets": [], - "index": 24460 + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 15093 }, { "amount": { - "quantity": 243, + "quantity": 150, "unit": "lovelace" }, "address": "", - "id": "4a3823174e19d223c6153d7959425c240ae297065c9c5940644a320a4696df29", + "id": "135e571074560673250f296405095e2266734d676b9c63c923284c00104e6a7e", "derivation_path": [ - "8181", - "13390", - "25323", - "8218", - "30004", - "11926", - "4080", - "21598", - "9827", - "2515", - "897", - "7542", - "14743", - "30629", - "8881", - "3546", - "12315", - "13555", - "32676", - "6681", - "13327", - "9667", - "12627" + "31217", + "29656", + "31332", + "7333", + "26081", + "10903", + "31656", + "3027", + "10451", + "28835", + "16986" ], "assets": [], - "index": 14045 + "index": 20271 + }, + { + "id": "5e4a32645d4b783818631257400347750f5f081b186417507a4bf0011827da04", + "index": 1 }, { "amount": { - "quantity": 163, + "quantity": 148, "unit": "lovelace" }, "address": "", - "id": "070c5d4b704a3d42769640066d0a07dd2f74203309c64f276f6946644c36b86a", + "id": "59152b17326d711f781b643f4561d5642e124542442f513a276c105a836d4419", "derivation_path": [ - "21656", - "29892", - "26365", - "2863", - "22255" + "25543", + "11260", + "24759", + "6126", + "7697", + "5784", + "3129", + "18430", + "21155", + "17529", + "20150", + "22908", + "8316", + "11795", + "22726", + "2262", + "14779", + "12804", + "23367", + "17643", + "30685" ], "assets": [], - "index": 29859 - }, - { - "id": "7c182e3106697d4d630c4f1d36871471d74c05673537f8411f370db1555e0cb1", - "index": 1 + "index": 1712 }, { "amount": { - "quantity": 213, + "quantity": 151, "unit": "lovelace" }, "address": "", - "id": "8c476d40285247563562ca2f4c3657653f7febb0a3220e225803232322ca7174", + "id": "1c31caa44b4a705d7971205e3d10727a0a46b6131415755f7b7d3b35175f8c70", "derivation_path": [ - "27359", - "30462", - "27470", - "17337", - "5007", - "7937", - "26975", - "20986", - "30929", - "19276", - "6773", - "29128", - "25258", - "8170", - "12201", - "28382", - "25067", - "26360", - "27174", - "19917", - "13991", - "18861", - "10897", - "3939", - "3297", - "32336", - "5726", - "22266", - "1317", - "2300", - "29606" + "13473", + "27946", + "8702", + "8341", + "2453", + "23602", + "215", + "31900", + "12254", + "12609", + "30646", + "934", + "7078", + "12636", + "5280" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 2, + "quantity": 28, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 23, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e44", - "quantity": 7, + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e44", + "quantity": 68, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, + { + "asset_name": "546f6b656e44", + "quantity": 40, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e41", + "quantity": 65, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, { "asset_name": "546f6b656e45", - "quantity": 17, + "quantity": 29, "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 18, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 8654 + "index": 26812 }, { "amount": { - "quantity": 181, + "quantity": 101, "unit": "lovelace" }, "address": "", - "id": "69922e3a5d6c5c21384c2b6f1f4b2c295f632b23f57f91c27d62000c204033dc", + "id": "50fe6238d17879ba56215653212374041b42d4260947070a12f0791c68287268", "derivation_path": [ - "10499", - "1361", - "29553", - "12276", - "5399", - "10721", - "8107", - "124", - "201", - "9361", - "19186", - "3317", - "6984", - "27523", - "29651", - "27053", - "14951", - "2253", - "32386", - "17177", - "17579", - "20759", - "25474", - "31209", - "5872" + "2106", + "14453", + "20017", + "19687", + "23905", + "27857", + "29075", + "18215", + "28400", + "11145", + "10135", + "3802", + "21173", + "15598", + "21866", + "11612", + "18825", + "17498" ], - "assets": [], - "index": 5411 + "assets": [ + { + "asset_name": "546f6b656e43", + "quantity": 23, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e41", + "quantity": 29, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 51, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e43", + "quantity": 45, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 30993 }, { "amount": { - "quantity": 5, + "quantity": 32, "unit": "lovelace" }, "address": "", - "id": "0d2b8a2e3a113839085a087c372109784648c3726e481869753d1b6d100b567c", + "id": "4b4e253c475833008071453377334f7fe513671d0156480d10381f3d22269100", "derivation_path": [ - "9887", - "29112", - "10856", - "1412", - "12343", - "27904", - "6827", - "8728", - "17218", - "28880", - "29654", - "16130" + "27406", + "25021", + "23692", + "29640", + "10119", + "6816", + "4718", + "13056", + "29956", + "5263", + "26870", + "26057", + "3895", + "15234", + "13234", + "5120", + "15356", + "24496", + "6034", + "10959", + "6734", + "323", + "25434", + "28275", + "31749", + "32337", + "30523", + "23492" ], "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 28, + "asset_name": "546f6b656e44", + "quantity": 7, "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "index": 27484 + "index": 20414 }, { - "id": "042d5d5071ab04685c036ccfb71715e71d6a7b09370a3f115def03192327e84a", - "index": 0 - }, - { - "id": "0d33630e035c520706ca663ea468490d6162663c432bbc3439045510134600d2", - "index": 0 + "id": "da6064635909316851dd0e235d3068467cc064e444647a75573a697926193338", + "index": 1 }, { "amount": { - "quantity": 236, + "quantity": 88, "unit": "lovelace" }, "address": "", - "id": "4cbc09241a3f0d67d0710f2a7a4d20bc01d82a5606296c01cc602850db387b03", + "id": "6a5c77c09e581adb471a5f670e1b017e1b290d79ce65632908762172700f1177", "derivation_path": [ - "328", - "715", - "24601", - "28229", - "26215", - "17481", - "3271", - "9503", - "4060", - "4420", - "2276", - "27380", - "17742", - "24561", - "7895", - "4927", - "19117" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } + "7507", + "2128", + "26947", + "16977" ], - "index": 21132 + "assets": [], + "index": 5542 + }, + { + "id": "080e8021762c200e5f4f1273577b7f200a16423a354168027138015571e17728", + "index": 0 }, { "amount": { @@ -12988,52 +11010,55 @@ "unit": "lovelace" }, "address": "", - "id": "77175e116d3f507c0e514a6b461370db1f3cfb6866485a41130b0a340f790f2c", + "id": "5a10024c5b69c74633655d045423771c75b43b0a0f53827f560b3b7175de771e", "derivation_path": [ - "17835", - "6784", - "23994", - "7200", - "20600", - "29002", - "7875", - "494", - "20784" + "372", + "24674", + "25802", + "23337", + "11105", + "29635", + "32028", + "26154", + "32578", + "3645", + "10260", + "2718" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 3, + "quantity": 30, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 8, + "asset_name": "546f6b656e43", + "quantity": 7, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e41", - "quantity": 14, + "quantity": 53, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e43", + "quantity": 2, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 39, + "asset_name": "546f6b656e42", + "quantity": 12, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 47, + "quantity": 11, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 9, + "quantity": 21, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { @@ -13041,428 +11066,493 @@ "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, + { + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, { "asset_name": "546f6b656e43", - "quantity": 29, + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "index": 16437 - }, + "index": 9585 + } + ] + }, + { + "withdrawals": [ { - "id": "5a5e006e3d6c178f121b64e42772976f7360440e556237123262a39ee848165f", - "index": 0 + "amount": { + "quantity": 138, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" }, { - "id": "c1a3118d7a725a65154300ca08401e382b3d78633766745683ba7e1443d7db75", - "index": 1 + "amount": { + "quantity": 242, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "38506349bfa47d2e511a33335d037b36241b521d7b7676516a0e59357b103158", - "index": 1 + "amount": { + "quantity": 102, + "unit": "lovelace" + }, + "stake_address": "" }, { - "id": "3b7e3b0217bf3c494a0e5e1fdd333d69517dd0a54b967b7f48080a78115c7817", - "index": 1 - }, + "amount": { + "quantity": 124, + "unit": "lovelace" + }, + "context": "ours", + "stake_address": "" + } + ], + "inputs": [], + "fee": { + "quantity": 131, + "unit": "lovelace" + }, + "outputs": [ { "amount": { - "quantity": 48, + "quantity": 39, "unit": "lovelace" }, "address": "", - "id": "0a213249310d00332d4a3ead00406a79466cfe067f111f204c3b192d113e5429", "derivation_path": [ - "23853", - "5992", - "30278", - "14999", - "4419", - "11316" + "15376", + "6519", + "28119", + "11096", + "5443", + "18586", + "24164", + "2544", + "1363", + "24536", + "23813", + "13865", + "20073", + "24627", + "1394" ], "assets": [ { "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 5, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 11, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "asset_name": "546f6b656e45", + "quantity": 30, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 126, + "unit": "lovelace" + }, + "address": "", + "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 10, + "asset_name": "546f6b656e44", + "quantity": 19, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + } + ] + }, + { + "amount": { + "quantity": 192, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "17696", + "2265", + "1002", + "28403", + "14665", + "7430", + "5651", + "3104", + "19360", + "17810", + "31201", + "4117", + "19752", + "17744", + "27389", + "19305", + "15208", + "3514", + "11853", + "30843", + "10017", + "17604", + "19681", + "15775", + "10382", + "6305", + "14324" + ], + "assets": [ { "asset_name": "546f6b656e43", - "quantity": 6, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 36, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 5, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "quantity": 6, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 12, + "asset_name": "546f6b656e44", + "quantity": 1, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, + { + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 120, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 214, + "unit": "lovelace" + }, + "address": "", + "assets": [ { "asset_name": "546f6b656e44", - "quantity": 21, + "quantity": 19, "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, + } + ] + }, + { + "amount": { + "quantity": 45, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "address": "", + "assets": [ { - "asset_name": "546f6b656e43", - "quantity": 23, + "asset_name": "546f6b656e41", + "quantity": 11, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 21343 + ] + }, + { + "amount": { + "quantity": 115, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 49, + "unit": "lovelace" + }, + "address": "", + "assets": [] }, { "amount": { - "quantity": 87, + "quantity": 181, "unit": "lovelace" }, "address": "", - "id": "5201421b060c172d552d41d7c9543c49c1a1758327153174b413a4472e223636", "derivation_path": [ - "6890", - "23294" + "4172", + "4813", + "25793", + "17570", + "13353", + "30760", + "1932", + "29319", + "3122", + "8291", + "16739", + "10541", + "30418", + "20884", + "7071", + "3973", + "24572", + "16511", + "14444", + "22807" ], - "assets": [], - "index": 20426 + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 14, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + }, + { + "asset_name": "546f6b656e43", + "quantity": 13, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 33, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 9, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 150, + "quantity": 239, "unit": "lovelace" }, "address": "", - "id": "5128c31856541b3f087b2c765a1e78022e680c064b62056127c15b1a4927085e", "derivation_path": [ - "6787", - "22577", - "204" + "9675", + "22926", + "30265", + "13425", + "24670", + "3098", + "1796", + "1720", + "4587", + "30678", + "10499", + "8809", + "3621", + "28226" ], "assets": [ { - "asset_name": "546f6b656e41", - "quantity": 26, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 4, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e42", - "quantity": 21, + "asset_name": "546f6b656e41", + "quantity": 13, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e44", - "quantity": 17, + "asset_name": "546f6b656e43", + "quantity": 2, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 13, + "asset_name": "546f6b656e44", + "quantity": 11, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 26, + "asset_name": "546f6b656e41", + "quantity": 6, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "quantity": 16, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e43", "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 21, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 19, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 30, + "quantity": 15, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e42", + "quantity": 24, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 24, + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 28787 + ] }, { "amount": { - "quantity": 195, + "quantity": 50, "unit": "lovelace" }, "address": "", - "id": "6e77404e046ceae63c0e351d1b48eedc22443414fb4e65c61d773a626c464644", - "derivation_path": [ - "5803", - "32477", - "10269", - "30965" - ], - "assets": [], - "index": 12306 - }, - { - "id": "8c661d520a782226785d4b6249670a4a1f1c0c550b485140065b580506bf2c10", - "index": 1 + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 1, + "policy_id": "11111111111111111111111111111111111111111111111111111111" + } + ] }, { "amount": { - "quantity": 142, + "quantity": 253, "unit": "lovelace" }, "address": "", - "id": "6d4e2813617a7f7667406a1f4af97bd3212b746b393d06243c617d4612587c82", - "derivation_path": [ - "18246", - "30403", - "23735", - "13320", - "18145", - "31033", - "29715", - "30911", - "8052", - "10363", - "17859", - "24898", - "13185", - "21495", - "27871", - "25691", - "14562", - "29431", - "23340", - "17801" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - } - ], - "index": 30494 + "assets": [] }, { "amount": { - "quantity": 60, + "quantity": 254, "unit": "lovelace" }, "address": "", - "id": "69097051013cea21342f2e5c87a760bf18235dd96b466564366f4c046f1953cc", "derivation_path": [ - "13775", - "5282", - "6734", - "18944", - "31755", - "25270", - "1751", - "7007", - "27963", - "17152", - "27844", - "7411", - "12537", - "9887" + "28722", + "20621", + "17838", + "15870", + "12215", + "31418", + "19307" ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 26, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "index": 5268 + ] }, { "amount": { - "quantity": 220, + "quantity": 114, "unit": "lovelace" }, "address": "", - "id": "77c207dc1e260b5f1a4c6f6f1b171f906e53544d5a42125065065c5a39792435", - "derivation_path": [ - "7699", - "15380", - "22121", - "9601", - "14361", - "11929", - "30200", - "29565", - "25720", - "14205", - "21639", - "30239", - "17738", - "22220", - "16588", - "11029", - "19734", - "29862", - "30328", - "13910", - "2060", - "24303", - "4874", - "25713", - "428", - "24242", - "16237", - "3062", - "11450" - ], - "assets": [], - "index": 12462 - } - ] - }, - { - "withdrawals": [ - { - "amount": { - "quantity": 233, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 245, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 52, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 149, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 231, - "unit": "lovelace" - }, - "stake_address": "" - }, - { - "amount": { - "quantity": 35, - "unit": "lovelace" - }, - "context": "ours", - "stake_address": "" - }, - { - "amount": { - "quantity": 200, - "unit": "lovelace" - }, - "stake_address": "" + "assets": [] }, { "amount": { - "quantity": 91, + "quantity": 182, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e43", + "quantity": 25, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] }, { "amount": { - "quantity": 193, + "quantity": 136, "unit": "lovelace" }, - "context": "ours", - "stake_address": "" + "address": "", + "assets": [] }, { "amount": { - "quantity": 2, - "unit": "lovelace" - }, - "stake_address": "" - } - ], - "inputs": [], - "fee": { - "quantity": 249, - "unit": "lovelace" - }, - "outputs": [ - { - "amount": { - "quantity": 229, + "quantity": 40, "unit": "lovelace" }, "address": "", - "assets": [] + "derivation_path": [ + "14270", + "484", + "23836", + "10099", + "24731" + ], + "assets": [ + { + "asset_name": "546f6b656e44", + "quantity": 7, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + } + ] }, { "amount": { - "quantity": 137, + "quantity": 205, "unit": "lovelace" }, "address": "", @@ -13470,599 +11560,562 @@ }, { "amount": { - "quantity": 222, + "quantity": 135, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, + "address": "", + "derivation_path": [ + "26383", + "30458", + "2270", + "14483", + "22938", + "24676", + "32195", + "13493", + "1903", + "10124", + "15457", + "26191" + ], + "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e41", "quantity": 19, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e43", - "quantity": 24, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e44", - "quantity": 1, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 5, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 202, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "25595", - "6284", - "20996", - "29613", - "29763", - "6187", - "29615", - "3437", - "22875", - "31165", - "8877", - "4090" - ], - "assets": [] + ] }, { "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 17, + "quantity": 126, "unit": "lovelace" }, "address": "", "derivation_path": [ - "23268", - "29161", - "202", - "29490", - "7489", - "22385", - "29055", - "30749", - "27604", - "9331", - "8571", - "27437", - "31841", - "1592", - "1386", - "30875", - "26669", - "10420" + "1802", + "1797", + "5172", + "20851" ], "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 15, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e41", - "quantity": 13, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 11, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e42", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "asset_name": "546f6b656e42", + "quantity": 12, + "policy_id": "11111111111111111111111111111111111111111111111111111111" } ] }, { "amount": { - "quantity": 143, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 28, + "quantity": 167, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "9432", - "15833", - "25725", - "28451", - "5229", - "28484", - "10884", - "25903", - "10787", - "30338", - "656", - "16402", - "26380", - "31878", - "3475", - "24368" - ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 23, + "asset_name": "546f6b656e41", + "quantity": 13, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 42, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e43", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e45", - "quantity": 36, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e41", + "quantity": 25, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e41", - "quantity": 3, + "asset_name": "546f6b656e42", + "quantity": 12, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e45", - "quantity": 14, + "asset_name": "546f6b656e44", + "quantity": 12, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 26, + "quantity": 21, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e42", - "quantity": 6, + "quantity": 5, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 12, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ] + }, + { + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "address": "", + "derivation_path": [ + "18853", + "19913" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 3, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e44", - "quantity": 18, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 20, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e42", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 2, + "quantity": 38, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { - "asset_name": "546f6b656e44", - "quantity": 12, + "asset_name": "546f6b656e42", + "quantity": 22, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 105, + "quantity": 75, "unit": "lovelace" }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 60, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 45, + "unit": "lovelace" + }, + "address": "", + "assets": [] + }, + { + "amount": { + "quantity": 131, "unit": "lovelace" }, "address": "", "derivation_path": [ - "29008", - "8951", - "5174", - "29975", - "9879", - "22189", - "27040", - "364", - "19099", - "18831", - "18716", - "3890", - "32098", - "29324", - "6620" + "20907", + "4865", + "5789", + "3117", + "12012", + "10472", + "17050", + "30564", + "14997", + "22769", + "31086", + "8552", + "1097", + "6475", + "7906", + "14916", + "15394", + "10709", + "16104", + "22675", + "30881", + "25973", + "6562", + "12202", + "16129", + "8420", + "20830", + "3544", + "9732" ], "assets": [ { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e45", + "quantity": 19, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "amount": { - "quantity": 68, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - } - ], - "amount_incoming": { - "quantity": 135, + "quantity": 70, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "3388", - "24764", - "20827", - "27931", - "19113", - "25682", - "6945", - "6855", - "15388", - "16100", - "9334", - "27376", - "15499", - "23795", - "20960", - "21656", - "366", - "2902", - "24540", - "13024", - "19813", - "2934", - "11434", - "29538", - "18364", - "4327", - "27431" - ], "assets": [] }, { "amount": { - "quantity": 179, + "quantity": 156, "unit": "lovelace" }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 16, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 2, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 25, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, + "address": "", + "assets": [ { "asset_name": "546f6b656e41", - "quantity": 5, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 14, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e43", - "quantity": 60, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e45", - "quantity": 9, + "quantity": 11, "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 25, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 17, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e41", - "quantity": 2, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, + } + ] + } + ], + "script_validity": "valid", + "metadata": { + "23": { + "map": [ { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "k": { + "string": "𢞍" + }, + "v": { + "map": [ + { + "k": { + "string": "㋆" + }, + "v": { + "list": [] + } + }, + { + "k": { + "string": "𦖛𧏚" + }, + "v": { + "bytes": "706317" + } + } + ] + } } - ], - "amount_incoming": { - "quantity": 201, + ] + } + }, + "id": "034e2353534015571e453f350a478d593008637d47e310443eb9466307663648", + "collateral": [ + { + "id": "7ed6760d7b3eb90368431f5f44237b397406484535124d266b174b4a51a75a28", + "index": 1 + }, + { + "id": "5a600004637102762747523158395c2a1e164f5730681f512d5f10553e5e697e", + "index": 0 + }, + { + "amount": { + "quantity": 146, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "1678", - "26529", - "26323", - "16894", - "8580", - "17249", - "25306", - "17688", - "27397", - "2155", - "26361", - "17396", - "11420", - "7433", - "21321", - "18458", - "26827", - "22859", - "20014", - "29858", - "13967", - "31144", - "18082", - "24904", - "4336", - "25781", - "13171", - "238", - "24708", - "28666", - "12562" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "id": "6d6c5dd54e0b5f70df06006692fd2f76524f055c0d12391d42667c004f077103", + "derivation_path": [ + "10933", + "12724", + "13511", + "15899", + "6541" + ], + "assets": [], + "index": 14061 + }, + { + "id": "5b362fa8685c66635c112ef011240e1206a2763a1989363d6f58bbdbca020a5c", + "index": 0 }, { "amount": { - "quantity": 252, + "quantity": 135, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "id": "6b3f174b603e62f5020c1c23a94efc5a6d3043771b42654e617c650a2a462016", + "derivation_path": [ + "32152", + "11358", + "18404", + "31594" + ], + "assets": [ { "asset_name": "546f6b656e41", - "quantity": 27, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "quantity": 7, + "policy_id": "33333333333333333333333333333333333333333333333333333333" } ], - "amount_incoming": { - "quantity": 248, + "index": 10324 + }, + { + "amount": { + "quantity": 81, "unit": "lovelace" }, "address": "", + "id": "3c6f01d3492d1777505d0b484d4642677906474b2fbb35630b576b17626f5730", "derivation_path": [ - "31438", - "27090", - "22473", - "25375", - "22026", - "7873", - "28963" + "29070", + "28582", + "17374" ], "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 1, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, { "asset_name": "546f6b656e41", - "quantity": 29, + "quantity": 25, "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 8, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - }, - { - "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 31524 + }, + { + "id": "65d50a11776164464a1807e6e53418684f795e15146e223241654540417f644a", + "index": 0 }, { "amount": { - "quantity": 228, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 37, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 23, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 21, + "quantity": 203, "unit": "lovelace" }, "address": "", + "id": "2c79547076184c6eee510655866223487cb86242cb4b2b7a215b567d39322323", "derivation_path": [ - "11651", - "24810", - "30612", - "4857", - "30583", - "16253", - "22243", - "26542", - "10634", - "2594", - "6852", - "7154", - "11729", - "8081", - "19190", - "30256", - "19999", - "25138" + "27663", + "7209", + "26754", + "3162", + "15674", + "10855", + "544", + "6750", + "7005", + "15880", + "2755", + "16372", + "19544", + "10345", + "752", + "11558", + "25507", + "18498", + "18350", + "6475", + "3588", + "32515", + "7664", + "25439", + "14250", + "19246", + "28188" ], "assets": [ { "asset_name": "546f6b656e44", - "quantity": 27, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 1, + "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ] + ], + "index": 10600 }, { "amount": { - "quantity": 248, + "quantity": 63, "unit": "lovelace" }, "address": "", + "id": "2f0e7d2424bf855751855b496e5622143f034e437352462763696be055a4291d", + "derivation_path": [ + "9077", + "209", + "8262", + "24589", + "14976", + "19573", + "12278", + "23761", + "9539", + "13955", + "6881", + "20798", + "9505", + "12757", + "32767", + "31539", + "5469", + "7415", + "8708", + "28341" + ], "assets": [ { - "asset_name": "546f6b656e44", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e44", - "quantity": 28, + "asset_name": "546f6b656e42", + "quantity": 15, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 26, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 23, + "quantity": 17, "policy_id": "33333333333333333333333333333333333333333333333333333333" } - ] + ], + "index": 22243 }, { "amount": { - "quantity": 103, + "quantity": 65, "unit": "lovelace" }, "address": "", - "assets": [] + "id": "600e5e433d495e04056f4852180457715e5728006252c73e0d72475c151e6963", + "derivation_path": [ + "3674", + "24691", + "23771" + ], + "assets": [], + "index": 17724 }, { "amount": { - "quantity": 240, + "quantity": 226, "unit": "lovelace" }, "address": "", - "assets": [] + "id": "5a653b560404073d30d148745f567840d80b135d7c024709806d005608425d3e", + "derivation_path": [ + "21851", + "23132", + "30625", + "17813", + "14382", + "23480", + "10832", + "8251", + "17801", + "2472", + "11449", + "12447", + "31754", + "8051", + "14276" + ], + "assets": [ + { + "asset_name": "546f6b656e45", + "quantity": 23, + "policy_id": "33333333333333333333333333333333333333333333333333333333" + }, + { + "asset_name": "546f6b656e41", + "quantity": 26, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + } + ], + "index": 14555 + }, + { + "id": "1a3ce144718b2147623e3a2951766b2d71633b347b433b367423ca130815279c", + "index": 1 }, { "amount": { - "quantity": 4, + "quantity": 188, "unit": "lovelace" }, "address": "", + "id": "390963bc1e19650c270b22f41c49e61e6c247a6f02171507f9681c6819291c18", + "derivation_path": [ + "3700", + "4021", + "16602", + "32090", + "23599", + "9105", + "25149", + "12083", + "7661", + "11518", + "19171", + "29977", + "641", + "18209", + "8984", + "12168", + "29468", + "11207", + "20446", + "32249", + "15121", + "20598", + "22764", + "7572", + "2351", + "10097" + ], "assets": [ + { + "asset_name": "546f6b656e42", + "quantity": 24, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, { "asset_name": "546f6b656e43", + "quantity": 9, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 54, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e42", "quantity": 10, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e42", - "quantity": 9, + "asset_name": "546f6b656e41", + "quantity": 5, + "policy_id": "22222222222222222222222222222222222222222222222222222222" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e42", - "quantity": 28, + "quantity": 8, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { @@ -14070,130 +12123,33 @@ "quantity": 24, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, - { - "asset_name": "546f6b656e41", - "quantity": 24, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 109, - "unit": "lovelace" - }, - "address": "", - "assets": [ { "asset_name": "546f6b656e44", - "quantity": 78, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 30, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 5, + "quantity": 19, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e45", - "quantity": 17, + "quantity": 2, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 9, + "asset_name": "546f6b656e42", + "quantity": 13, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 15, + "quantity": 27, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e44", - "quantity": 20, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] - }, - { - "amount": { - "quantity": 150, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 22, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e45", - "quantity": 15, + "quantity": 14, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ], - "amount_incoming": { - "quantity": 237, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "13805", - "26280", - "23846", - "5682", - "12730", - "30380", - "10376", - "26259", - "12077", - "29554", - "14651", - "25807", - "18056", - "10383", - "22101", - "24809", - "13487", - "1209", - "13722", - "4144", - "10439", - "17491" - ], - "assets": [] - } - ], - "script_validity": "valid", - "metadata": { - "16": { - "list": [] - } - }, - "id": "6e4d53aa3ba85f2b3370383463200b0f7150633d110c7000454129372b477e6c", - "collateral": [ - { - "amount": { - "quantity": 18, - "unit": "lovelace" - }, - "address": "", - "id": "70ee593109440d1e3839650b37d2381d39157e0e1e6644031214755335737467", - "derivation_path": [ - "31855" - ], - "assets": [], - "index": 708 - }, - { - "id": "1be2a846294c7b4c2954643c0b26737f3c003b221f08071b0826493a173761fb", - "index": 0 + "index": 7491 } ] } diff --git a/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json b/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json index b162e4293f2..bbed7151bae 100644 --- a/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json +++ b/lib/core/test/data/Cardano/Wallet/Api/ApiTxOutputGeneralTestnet0.json @@ -1,183 +1,152 @@ { - "seed": 739787873520361745, + "seed": -6422875769636208967, "samples": [ { "amount": { - "quantity": 81, + "quantity": 157, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "derivation_path": [ + "18076", + "1401", + "16839", + "29882" + ], + "assets": [ { "asset_name": "546f6b656e45", - "quantity": 16, + "quantity": 10, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 174, + ] + }, + { + "amount": { + "quantity": 31, "unit": "lovelace" }, "address": "", "derivation_path": [ - "10379", - "30280", - "22629", - "29579", - "16777", - "24308", - "7207", - "27972", - "10448", - "9859", - "28991" + "12782", + "17346", + "31989", + "28039", + "16936", + "136", + "17283", + "9495", + "3181", + "17291", + "32092", + "12528", + "5617", + "5958", + "18329", + "5081" ], "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 22, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 4, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 9, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, { "asset_name": "546f6b656e44", - "quantity": 21, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e41", - "quantity": 12, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 17, + "policy_id": "00000000000000000000000000000000000000000000000000000000" } ] }, { "amount": { - "quantity": 102, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e41", - "quantity": 1, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 50, + "quantity": 21, "unit": "lovelace" }, "address": "", "derivation_path": [ - "18375", - "4599", - "15320", - "10126", - "31491", - "15848" + "25631", + "5510", + "13534", + "30491", + "19060", + "23803", + "16340", + "3461", + "2433", + "19273", + "24382", + "9115", + "31514", + "10457", + "17133", + "16973", + "23464", + "24567", + "32742", + "11736", + "28530", + "14440" ], "assets": [] }, { "amount": { - "quantity": 64, + "quantity": 215, "unit": "lovelace" }, "address": "", - "assets": [ - { - "asset_name": "546f6b656e45", - "quantity": 4, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ] + "assets": [] }, { "amount": { - "quantity": 210, + "quantity": 88, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "assets": [ { - "asset_name": "546f6b656e45", - "quantity": 11, + "asset_name": "546f6b656e43", + "quantity": 5, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e43", - "quantity": 11, + "asset_name": "546f6b656e41", + "quantity": 22, "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e41", - "quantity": 17, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "asset_name": "546f6b656e44", + "quantity": 28, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { - "asset_name": "546f6b656e43", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e42", + "quantity": 10, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { - "asset_name": "546f6b656e44", - "quantity": 30, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e45", + "quantity": 16, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e41", - "quantity": 42, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 8, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e44", - "quantity": 3, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 84, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "24940", - "16608", - "26604", - "26661", - "379", - "28077", - "23255", - "12042", - "5963", - "21470", - "17872" - ], - "assets": [ - { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" + "asset_name": "546f6b656e42", + "quantity": 26, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { "asset_name": "546f6b656e43", - "quantity": 8, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 22, + "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e41", - "quantity": 24, + "asset_name": "546f6b656e45", + "quantity": 1, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" } @@ -185,110 +154,59 @@ }, { "amount": { - "quantity": 205, + "quantity": 165, "unit": "lovelace" }, - "assets_incoming": [ + "address": "", + "assets": [ { "asset_name": "546f6b656e41", - "quantity": 10, + "quantity": 20, "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 28, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 32, - "policy_id": "22222222222222222222222222222222222222222222222222222222" + "quantity": 8, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { - "asset_name": "546f6b656e41", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e44", + "quantity": 33, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "quantity": 34, + "policy_id": "11111111111111111111111111111111111111111111111111111111" }, { "asset_name": "546f6b656e41", - "quantity": 28, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 8, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e44", - "quantity": 16, - "policy_id": "44444444444444444444444444444444444444444444444444444444" - } - ], - "amount_incoming": { - "quantity": 158, - "unit": "lovelace" - }, - "address": "", - "derivation_path": [ - "4882", - "19388", - "7792", - "25395", - "1365", - "10815", - "22722", - "25479", - "30690", - "20896", - "18941", - "16917", - "6982", - "18190", - "31348", - "6410" - ], - "assets": [] - }, - { - "amount": { - "quantity": 37, - "unit": "lovelace" - }, - "assets_incoming": [ - { - "asset_name": "546f6b656e43", - "quantity": 13, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e41", - "quantity": 8, - "policy_id": "11111111111111111111111111111111111111111111111111111111" + "quantity": 6, + "policy_id": "22222222222222222222222222222222222222222222222222222222" }, { "asset_name": "546f6b656e45", - "quantity": 14, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e41", - "quantity": 19, + "quantity": 3, "policy_id": "33333333333333333333333333333333333333333333333333333333" }, { - "asset_name": "546f6b656e45", - "quantity": 7, - "policy_id": "33333333333333333333333333333333333333333333333333333333" + "asset_name": "546f6b656e41", + "quantity": 34, + "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e42", - "quantity": 7, + "quantity": 18, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { "asset_name": "546f6b656e43", - "quantity": 2, + "quantity": 6, "policy_id": "44444444444444444444444444444444444444444444444444444444" }, { @@ -296,159 +214,71 @@ "quantity": 1, "policy_id": "44444444444444444444444444444444444444444444444444444444" } - ], - "amount_incoming": { - "quantity": 195, + ] + }, + { + "amount": { + "quantity": 66, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "18389", - "31949", - "3299", - "21016", - "15870", - "29542", - "2756", - "22818", - "28283", - "7572", - "11165", - "15276", - "12775", - "31802" - ], "assets": [] }, { "amount": { - "quantity": 115, + "quantity": 103, "unit": "lovelace" }, "address": "", "assets": [ - { - "asset_name": "546f6b656e44", - "quantity": 28, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e45", - "quantity": 52, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - }, - { - "asset_name": "546f6b656e42", - "quantity": 18, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e43", - "quantity": 10, - "policy_id": "11111111111111111111111111111111111111111111111111111111" - }, - { - "asset_name": "546f6b656e42", - "quantity": 2, - "policy_id": "22222222222222222222222222222222222222222222222222222222" - }, - { - "asset_name": "546f6b656e42", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e43", - "quantity": 27, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, - { - "asset_name": "546f6b656e45", - "quantity": 24, - "policy_id": "33333333333333333333333333333333333333333333333333333333" - }, { "asset_name": "546f6b656e41", - "quantity": 14, - "policy_id": "44444444444444444444444444444444444444444444444444444444" + "quantity": 12, + "policy_id": "00000000000000000000000000000000000000000000000000000000" }, { "asset_name": "546f6b656e45", - "quantity": 53, + "quantity": 17, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] }, { "amount": { - "quantity": 1, - "unit": "lovelace" - }, - "assets_incoming": [], - "amount_incoming": { - "quantity": 64, + "quantity": 2, "unit": "lovelace" }, "address": "", - "derivation_path": [ - "31034", - "4659", - "21663", - "1031", - "6895", - "8494", - "21296", - "23101", - "6826", - "23568", - "1954", - "18686", - "16903", - "18636", - "25787", - "25994", - "32359", - "7728", - "20407", - "18374", - "32487", - "14114", - "1712", - "5404", - "11085", - "16728", - "29296", - "30188" - ], - "assets": [ - { - "asset_name": "546f6b656e42", - "quantity": 7, - "policy_id": "00000000000000000000000000000000000000000000000000000000" - } - ] + "assets": [] }, { "amount": { - "quantity": 51, + "quantity": 45, "unit": "lovelace" }, "address": "", "assets": [ { "asset_name": "546f6b656e44", - "quantity": 1, + "quantity": 21, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e45", + "quantity": 6, + "policy_id": "00000000000000000000000000000000000000000000000000000000" + }, + { + "asset_name": "546f6b656e41", + "quantity": 28, + "policy_id": "44444444444444444444444444444444444444444444444444444444" + }, + { + "asset_name": "546f6b656e44", + "quantity": 26, "policy_id": "44444444444444444444444444444444444444444444444444444444" } ] - }, - { - "amount": { - "quantity": 126, - "unit": "lovelace" - }, - "address": "", - "assets": [] } ] } \ No newline at end of file diff --git a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs index d03853626b0..ca032fb5bf4 100644 --- a/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/core/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -2143,8 +2143,6 @@ instance Arbitrary (ApiWalletOutput n) where <*> arbitrary <*> arbitrary <*> arbitrary - <*> arbitrary - <*> arbitrary instance Arbitrary (ApiTxOutputGeneral n) where arbitrary = oneof diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 6cdc9cbe777..1bd0a80cad9 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1393,13 +1393,10 @@ x-transactionOutputsInsideWallet: &transactionOutputsInsideWallet type: object required: - address - - amount_incoming - amount - derivation_path properties: address: *addressId - amount_incoming: *amount - assets_incoming: *walletAssets amount: *amount assets: *walletAssets derivation_path: *derivationPath From f7977b802b5d620c2569549fa5e5338f236a5c9b Mon Sep 17 00:00:00 2001 From: Johannes Lund Date: Tue, 2 Nov 2021 12:55:40 +0100 Subject: [PATCH 31/31] Tweak integration expectations 1. Check that the change output is recognized 2. Use `shouldContain` and `shouldNotContain` rather than `shouldSatisfy` and `elem` for nicer error messages. --- .../Scenario/API/Shelley/TransactionsNew.hs | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 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 5988139cf3d..98dd66ab92e 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 @@ -107,7 +107,7 @@ import Data.Text import Numeric.Natural ( Natural ) import Test.Hspec - ( SpecWith, describe, pendingWith ) + ( SpecWith, describe, pendingWith, shouldContain, shouldNotContain ) import Test.Hspec.Expectations.Lifted ( shouldBe, shouldNotBe, shouldNotSatisfy, shouldSatisfy ) import Test.Hspec.Extra @@ -489,15 +489,19 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do , ApiT (DerivationIndex $ fromIntegral addrIx) ] } - let isOurTxOut :: ApiTxOutputGeneral n -> [ApiTxOutputGeneral n] -> Bool - isOurTxOut expectedTxOut = (expectedTxOut `elem`) + let isOutOurs out = case out of + WalletOutput _ -> False + ExternalOutput _ -> True rDecodedTxSource <- request @(ApiDecodedTransaction n) ctx (Link.decodeTransaction @'Shelley wa) Default decodePayload verify rDecodedTxSource $ sharedExpectationsBetweenWallets ++ [ expectField #inputs (`shouldSatisfy` areOurs) - , expectField #outputs (`shouldNotSatisfy` isOurTxOut expectedTxOutTarget) + , expectField #outputs (`shouldNotContain` [expectedTxOutTarget]) + + -- Check that the change output is there: + , expectField (#outputs) ((`shouldBe` 1) . length . filter isOutOurs) ] rDecodedTxTarget <- request @(ApiDecodedTransaction n) ctx @@ -505,7 +509,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do verify rDecodedTxTarget $ sharedExpectationsBetweenWallets ++ [ expectField #inputs (`shouldNotSatisfy` areOurs) - , expectField #outputs (`shouldSatisfy` isOurTxOut expectedTxOutTarget) + , expectField #outputs (`shouldContain` [expectedTxOutTarget]) ] let filterInitialAmt = @@ -580,8 +584,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do verify rDecodedTxSource' $ sharedExpectationsBetweenWallets ++ [ expectField #inputs (`shouldNotSatisfy` areOurs) -- the input is not anymore belonging to wallet - , expectField #outputs (`shouldNotSatisfy` isOurTxOut expectedTxOutTarget') - , expectField #outputs (`shouldSatisfy` isOurTxOut expectedTxOutSource) + , expectField #outputs (`shouldNotContain` [expectedTxOutTarget']) + , expectField #outputs (`shouldContain` [expectedTxOutSource]) ] rDecodedTxTarget' <- request @(ApiDecodedTransaction n) ctx @@ -589,8 +593,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do verify rDecodedTxTarget' $ sharedExpectationsBetweenWallets ++ [ expectField #inputs (`shouldNotSatisfy` areOurs) - , expectField #outputs (`shouldSatisfy` isOurTxOut expectedTxOutTarget') - , expectField #outputs (`shouldNotSatisfy` isOurTxOut expectedTxOutSource) + , expectField #outputs (`shouldContain` [expectedTxOutTarget']) + , expectField #outputs (`shouldNotContain` [expectedTxOutSource]) ] it "TRANS_NEW_CREATE_04b - Cannot spend less than minUTxOValue" $ \ctx -> runResourceT $ do