diff --git a/lib/wallet/api/http/Cardano/Wallet/Api.hs b/lib/wallet/api/http/Cardano/Wallet/Api.hs index 77b2102726a..b1d0528f589 100644 --- a/lib/wallet/api/http/Cardano/Wallet/Api.hs +++ b/lib/wallet/api/http/Cardano/Wallet/Api.hs @@ -198,6 +198,7 @@ import Cardano.Wallet.Api.Types , ApiCoinSelectionT , ApiConstructTransactionDataT , ApiConstructTransactionT + , ApiDecodeTransactionPostData , ApiDecodedTransactionT , ApiFee , ApiHealthCheck @@ -674,7 +675,7 @@ type BalanceTransaction n = "wallets" type DecodeTransaction n = "wallets" :> Capture "walletId" (ApiT WalletId) :> "transactions-decode" - :> ReqBody '[JSON] ApiSerialisedTransaction + :> ReqBody '[JSON] ApiDecodeTransactionPostData :> PostAccepted '[JSON] (ApiDecodedTransactionT n) -- | https://cardano-foundation.github.io/cardano-wallet/api/#operation/submitTransaction @@ -1196,7 +1197,7 @@ type SignSharedTransaction n = "shared-wallets" type DecodeSharedTransaction n = "shared-wallets" :> Capture "walletId" (ApiT WalletId) :> "transactions-decode" - :> ReqBody '[JSON] ApiSerialisedTransaction + :> ReqBody '[JSON] ApiDecodeTransactionPostData :> PostAccepted '[JSON] (ApiDecodedTransactionT n) -- | https://cardano-foundation.github.io/cardano-wallet/api/#operation/submitSharedTransaction diff --git a/lib/wallet/api/http/Cardano/Wallet/Api/Client.hs b/lib/wallet/api/http/Cardano/Wallet/Api/Client.hs index a7297074b9b..36cc1cb6c1c 100644 --- a/lib/wallet/api/http/Cardano/Wallet/Api/Client.hs +++ b/lib/wallet/api/http/Cardano/Wallet/Api/Client.hs @@ -68,6 +68,7 @@ import Cardano.Wallet.Api.Types , ApiCoinSelectionT , ApiConstructTransactionDataT , ApiConstructTransactionT + , ApiDecodeTransactionPostData , ApiDecodedTransactionT , ApiFee , ApiNetworkClock @@ -230,7 +231,7 @@ data TransactionClient = TransactionClient -> ClientM ApiSerialisedTransaction , decodeTransaction :: ApiT WalletId - -> ApiSerialisedTransaction + -> ApiDecodeTransactionPostData -> ClientM (ApiDecodedTransactionT Aeson.Value) , submitTransaction :: ApiT WalletId diff --git a/lib/wallet/api/http/Cardano/Wallet/Api/Http/Shelley/Server.hs b/lib/wallet/api/http/Cardano/Wallet/Api/Http/Shelley/Server.hs index 9d95165dd15..924e72c77c4 100644 --- a/lib/wallet/api/http/Cardano/Wallet/Api/Http/Shelley/Server.hs +++ b/lib/wallet/api/http/Cardano/Wallet/Api/Http/Shelley/Server.hs @@ -359,6 +359,7 @@ import Cardano.Wallet.Api.Types , ApiCoinSelectionWithdrawal (..) , ApiConstructTransaction (..) , ApiConstructTransactionData (..) + , ApiDecodeTransactionPostData (..) , ApiDecodedTransaction (..) , ApiExternalInput (..) , ApiFee (..) @@ -452,6 +453,7 @@ import Cardano.Wallet.Api.Types , XPubOrSelf (..) , getApiMnemonicT , toApiAsset + , toApiDecodeTransactionPostData , toApiEra , toApiNetworkParameters , toApiUtxoStatistics @@ -2625,7 +2627,7 @@ constructTransaction -> ApiConstructTransactionData n -> Handler (ApiConstructTransaction n) constructTransaction api argGenChange knownPools poolStatus apiWalletId body = do - body & \(ApiConstructTransactionData _ _ _ _ _ _ _ _) -> + body & \(ApiConstructTransactionData _ _ _ _ _ _ _ _ _) -> -- Above is the way to get a compiler error when number of fields changes, -- in order not to forget to update the pattern below: case body of @@ -2633,11 +2635,18 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d { payments = Nothing , withdrawal = Nothing , metadata = Nothing + , encryptMetadata = Nothing , mintBurn = Nothing , delegations = Nothing } -> liftHandler $ throwE ErrConstructTxWrongPayload _ -> pure () + when (isJust (body ^. #encryptMetadata) && isNothing (body ^. #metadata) ) $ + liftHandler $ throwE ErrConstructTxWrongPayload + + when (isJust (body ^. #encryptMetadata)) $ + liftHandler $ throwE ErrConstructTxNotImplemented + validityInterval <- liftHandler $ parseValidityInterval ti $ body ^. #validityInterval @@ -2807,7 +2816,8 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d , encoding = body ^. #encoding } - apiDecoded <- decodeTransaction @_ @n api apiWalletId balancedTx + apiDecoded <- decodeTransaction @_ @n api apiWalletId + (toApiDecodeTransactionPostData balancedTx) (_, _, rewardPath) <- handler $ W.readRewardAccount @s db @@ -3227,7 +3237,8 @@ constructSharedTransaction , encoding = body ^. #encoding } - apiDecoded <- decodeSharedTransaction api (ApiT wid) balancedTx + apiDecoded <- decodeSharedTransaction api (ApiT wid) + (toApiDecodeTransactionPostData balancedTx) let deposits = case optionalDelegationAction of Just (JoinRegisteringKey _poolId) -> [W.getStakeKeyDeposit pp] @@ -3283,9 +3294,11 @@ decodeSharedTransaction :: forall n . HasSNetworkId n => ApiLayer (SharedState n SharedKey) -> ApiT WalletId - -> ApiSerialisedTransaction + -> ApiDecodeTransactionPostData -> Handler (ApiDecodedTransaction n) -decodeSharedTransaction ctx (ApiT wid) (ApiSerialisedTransaction (ApiT sealed) _) = do +decodeSharedTransaction ctx (ApiT wid) postData = do + let ApiDecodeTransactionPostData (ApiT sealed) decryptMetadata = postData + when (isJust decryptMetadata) $ error "not implemented" era <- liftIO $ NW.currentNodeEra nl (txinsOutsPaths, collateralInsOutsPaths, outsPath, pp, certs, txId, fee , metadata, scriptValidity, interval, witsCount, withdrawals, rewardAcctM) @@ -3449,10 +3462,12 @@ decodeTransaction ) => ApiLayer s -> ApiT WalletId - -> ApiSerialisedTransaction + -> ApiDecodeTransactionPostData -> Handler (ApiDecodedTransaction n) decodeTransaction - ctx@ApiLayer{..} (ApiT wid) (ApiSerialisedTransaction (ApiT sealed) _) = do + ctx@ApiLayer{..} (ApiT wid) postData = do + let ApiDecodeTransactionPostData (ApiT sealed) decryptMetadata = postData + when (isJust decryptMetadata) $ error "not implemented" era <- liftIO $ NW.currentNodeEra netLayer withWorkerCtx ctx wid liftE liftE $ \wrk -> do (k, _) <- liftHandler $ W.readPolicyPublicKey wrk @@ -3585,7 +3600,8 @@ submitTransaction ctx apiw@(ApiT wid) apitx = do let sealedTx = getApiT . (view #serialisedTxSealed) $ apitx - apiDecoded <- decodeTransaction @s @n ctx apiw apitx + apiDecoded <- decodeTransaction @s @n ctx apiw + (toApiDecodeTransactionPostData apitx) when (isForeign apiDecoded) $ liftHandler $ throwE ErrSubmitTransactionForeignWallet let ourOuts = getOurOuts apiDecoded @@ -3719,7 +3735,8 @@ submitSharedTransaction ctx apiw@(ApiT wid) apitx = do let sealedTx = getApiT . (view #serialisedTxSealed) $ apitx - apiDecoded <- decodeSharedTransaction @n ctx apiw apitx + apiDecoded <- decodeSharedTransaction @n ctx apiw + (toApiDecodeTransactionPostData apitx) when (isForeign apiDecoded) $ liftHandler $ throwE ErrSubmitTransactionForeignWallet let ourOuts = getOurOuts apiDecoded diff --git a/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs b/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs index fd0b09efc98..691b389fdb1 100644 --- a/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs +++ b/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs @@ -79,6 +79,7 @@ module Cardano.Wallet.Api.Types , ApiCoinSelectionCollateral (..) , ApiCoinSelectionOutput (..) , ApiCoinSelectionWithdrawal (..) + , ApiEncryptMetadata (..) , ApiConstructTransaction (..) , ApiConstructTransactionData (..) , ApiCosignerIndex (..) @@ -188,6 +189,9 @@ module Cardano.Wallet.Api.Types , WalletPutPassphraseMnemonicData (..) , WalletPutPassphraseOldPassphraseData (..) , XPubOrSelf (..) + , ApiDecodeTransactionPostData (..) + , fromApiDecodeTransactionPostData + , toApiDecodeTransactionPostData -- * API Types (Byron) , ApiByronWallet (..) @@ -1198,12 +1202,19 @@ data ApiMultiDelegationAction deriving (Eq, Generic, Show) deriving anyclass NFData +newtype ApiEncryptMetadata = ApiEncryptMetadata + { passphrase :: ApiT (Passphrase "lenient") } + deriving (Eq, Generic, Show) + deriving (FromJSON, ToJSON) via DefaultRecord ApiEncryptMetadata + deriving anyclass NFData + -- | Input parameters for transaction construction. data ApiConstructTransactionData (n :: NetworkDiscriminant) = ApiConstructTransactionData { payments :: !(Maybe (ApiPaymentDestination n)) , withdrawal :: !(Maybe ApiSelfWithdrawalPostData) , metadata :: !(Maybe TxMetadataWithSchema) + , encryptMetadata :: !(Maybe ApiEncryptMetadata) , mintBurn :: !(Maybe (NonEmpty (ApiMintBurnData n))) , delegations :: !(Maybe (NonEmpty ApiMultiDelegationAction)) , validityInterval :: !(Maybe ApiValidityInterval) @@ -1243,6 +1254,24 @@ data ApiValidityBound deriving (Eq, Generic, Show) deriving anyclass NFData +data ApiDecodeTransactionPostData = ApiDecodeTransactionPostData + { transaction :: !(ApiT SealedTx) + , decrypt_metadata :: !(Maybe ApiEncryptMetadata) + } + deriving (Eq, Generic, Show) + +fromApiDecodeTransactionPostData + :: ApiDecodeTransactionPostData + -> ApiSerialisedTransaction +fromApiDecodeTransactionPostData (ApiDecodeTransactionPostData sealedtx _) = + ApiSerialisedTransaction sealedtx HexEncoded + +toApiDecodeTransactionPostData + :: ApiSerialisedTransaction + -> ApiDecodeTransactionPostData +toApiDecodeTransactionPostData (ApiSerialisedTransaction sealedTx _) = + ApiDecodeTransactionPostData sealedTx Nothing + data ApiSignTransactionPostData = ApiSignTransactionPostData { transaction :: !(ApiT SealedTx) , passphrase :: !(ApiT (Passphrase "lenient")) @@ -2569,6 +2598,11 @@ instance ToJSON ApiSerialisedTransaction where sealedTxBytesValue @'Base64 . getApiT $ tx ] +instance FromJSON ApiDecodeTransactionPostData where + parseJSON = genericParseJSON strictRecordTypeOptions +instance ToJSON ApiDecodeTransactionPostData where + toJSON = genericToJSON strictRecordTypeOptions + instance FromJSON ApiSignTransactionPostData where parseJSON = genericParseJSON strictRecordTypeOptions instance ToJSON ApiSignTransactionPostData where diff --git a/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json b/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json index ff3db9c691b..5cdb8185017 100644 --- a/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json +++ b/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json @@ -1,130 +1,697 @@ { "samples": [ { + "delegations": [ + { + "join": { + "pool": "pool1x3q8qwnkpee8xupyddg4xhspq3j462c9f4kpucc42qchq3glyma", + "stake_key_index": "1" + } + }, + { + "quit": { + "stake_key_index": "14948" + } + }, + { + "quit": { + "stake_key_index": "150" + } + }, + { + "quit": { + "stake_key_index": "9237" + } + }, + { + "quit": { + "stake_key_index": "15756" + } + }, + { + "join": { + "pool": "pool1r4fy2wgm8pyyszn8qe4kuwqtgezjz2jhrsqzkjju99yxvfjf768", + "stake_key_index": "55" + } + }, + { + "quit": { + "stake_key_index": "4068" + } + }, + { + "join": { + "pool": "pool19v88s2qwx3yz64s5tah472zsvda4knm3vvsrktshq2qzxv60ktd", + "stake_key_index": "101" + } + }, + { + "quit": { + "stake_key_index": "1234" + } + }, + { + "join": { + "pool": "pool18uhxwdmxtfvrkdzzxftsgd6gr9yqzljc0vfskln9qpcpx39x76e", + "stake_key_index": "70" + } + }, + { + "quit": { + "stake_key_index": "12416" + } + }, + { + "quit": { + "stake_key_index": "14451" + } + }, + { + "quit": { + "stake_key_index": "5676" + } + } + ], + "encoding": "base16", "metadata": { - "30": { - "int": 0 + "13": { + "list": [] + } + }, + "mint_burn": [ + { + "operation": { + "burn": { + "quantity": 24 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "mint": { + "quantity": 5, + "receiving_address": "FHnt4NL7yPY7NcC36EDuAMXFRdmGGi4dfHUFWfgNmgMoeHVWtJWbotRWoFvNo4B" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e53", + "operation": { + "mint": { + "quantity": 13, + "receiving_address": "FHnt4NL7yPXmHBaqyNfQkhN92n2M3eP6oeFjF9zUqeqigWXzaTcX7HCt8onx9BU" + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e45", + "operation": { + "burn": { + "quantity": 23 + } + }, + "policy_id": "334c645c7c22c962adfb131dfb65894dda4b53b17c1567d4f9b554e3", + "reference_input": { + "id": "5a127d720e652f6f5f5a062f27204110e042666858ba69335c595a0e41d30b73", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e4a", + "operation": { + "mint": { + "quantity": 29, + "receiving_address": "FHnt4NL7yPYHMQdS9zr7KSYndyLiyVmUNuiq14CwVkbUm3a8FDc3pXUGday4ovW" + } + }, + "policy_id": "4353c210431a08ec121dfca20c5ef4664d869e40ffb54f1f89cc629d", + "reference_input": { + "id": "0e7e6260cc6c697f3b784e210534e31d42685c2c17951b3c09483b36195f1d42", + "index": 0 + } + }, + { + "asset_name": "546f6b656e57", + "operation": { + "burn": { + "quantity": 17 + } + }, + "policy_id": "77ec1fbc41dccb3a38b90bf3f1210f3d5a191fc92359262a96b82e21", + "reference_input": { + "id": "1a1b5641131b6b0a685a0326ed3b0e390854611728590a0a3f62220e5c414551", + "index": 0 + } + }, + { + "asset_name": "546f6b656e48", + "operation": { + "burn": { + "quantity": 27 + } + }, + "policy_id": "4f5968e38de3dd9259df96e6d095090a30f2b27969bca1328cbb42ef", + "reference_input": { + "id": "d13302a047456ab94602230946317a36f944033303a2451e0d216e3eb61e0940", + "index": 1 + } + }, + { + "asset_name": "546f6b656e52", + "operation": { + "burn": { + "quantity": 2 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 29 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "mint": { + "quantity": 11 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 4 + } + }, + "policy_id": "f949c0b802c173be2fe6bce7c07b7f00c89be533a01eb63505ff3b7a", + "reference_input": { + "id": "6d381e585d6e0c7127409500544148034a0d6c044a7508733ee23a145e114c3d", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 8 + } + }, + "policy_id": "183c7ede8253a07ff6ee75d238970e7741ccf3137e598fbc7e463694", + "reference_input": { + "id": "7b6e1a61924a7d6f001c623a716727dc7718372c2317a64c176d564a4a7d1857", + "index": 0 + } + }, + { + "asset_name": "546f6b656e44", + "operation": { + "mint": { + "quantity": 26, + "receiving_address": "addr_test1zpz47dhu77cexfrmu2nxn4rs9qklett72hlzx407f7505wvtz00qttpvdnphkk7jdn2st7u5cr06yk40d06ssapyd34sz2m2t4" + } + }, + "policy_id": "f337d94ab1f34abeeb145c043ac6c6c86eaa701865a8faedf75a1529", + "reference_input": { + "id": "e204755c700429823e0b1607f2612fb87f530c71215454234e0705680d644ebf", + "index": 1 + } + }, + { + "asset_name": "546f6b656e58", + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "mint": { + "quantity": 13, + "receiving_address": "FHnt4NL7yPYJVMQqqZ4creHUEFeE3qWQBHgzMaWrVQZzpc9jqScwQpzFEFSYfWd" + } + }, + "policy_id": "30b3322e52f34776321e47ebf90ad887cf058c4f88bb5af3f4de2640", + "reference_input": { + "id": "4e3e38fb6ebd09780b20100a7b70c7e5350e69266f4669a18d5c0130136c1495", + "index": 0 + } + }, + { + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_id": "6ff9f9fc71c1471b43a59704476251a9a79c292c705566b388d63ccc", + "reference_input": { + "id": "0e3810770ba2637f214b5e39b93d7d3a0c9b643b10361f22e62553445603602c", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 4 + } + }, + "policy_id": "3e011666bbb633d7b0d4b82a8e9980d84f7995130b79a2f1cf4b539e", + "reference_input": { + "id": "1b240972463077e50c516c714f6f682d5f0a0f1d10031dae271cee0066713b5a", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 8 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e56", + "operation": { + "burn": { + "quantity": 5 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 3 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e48", + "operation": { + "burn": { + "quantity": 6 + } + }, + "policy_id": "90798c73054f614093ee977471c284846691317f527ad001d9ef1bcd", + "reference_input": { + "id": "454456453b04d6d218584b067e165d1540632f1165e128392de52d6e4d2d316f", + "index": 0 + } + }, + { + "operation": { + "burn": { + "quantity": 22 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 4 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "asset_name": "546f6b656e41", + "operation": { + "burn": { + "quantity": 21 + } + }, + "policy_id": "2a3d7c0ae86b4108bba181f8eb70269f0e094b92a5064624c9d1ecf7", + "reference_input": { + "id": "38729b825e1e1a99207b19776b34387042483fb2531dec133f7b7e305c662399", + "index": 0 + } + }, + { + "asset_name": "546f6b656e59", + "operation": { + "burn": { + "quantity": 18 + } + }, + "policy_id": "c8dc593f12d839f4dff1fa8b9fdda8984bab33b4be6fff0c4f0277fd", + "reference_input": { + "id": "7c59a85d224f377c517643a4702073167a1b996f0b0acd40132a4205123a2327", + "index": 0 + } + }, + { + "asset_name": "546f6b656e49", + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_id": "b0183223ca73a006819a4cffc5338d9fba547a96d48fbe5fbca35db7", + "reference_input": { + "id": "b508624547113b69d55dd144411a496308545d24706a9db3e41344a3594b9c19", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 4 + } + }, + "policy_id": "61cf27d67f9241927e54f09d7972d9412bc0f8acf75e7584baaf10d1", + "reference_input": { + "id": "244e130e8a4d0b51162d24066aaf6a252d4721016ea023a44dd03d0a2d036368", + "index": 1 + } + }, + { + "asset_name": "546f6b656e59", + "operation": { + "mint": { + "quantity": 26 + } + }, + "policy_id": "9c4f690e095af27156f9f696befcf0597df4e280bd4019f22a796076", + "reference_input": { + "id": "79563e3f0b2d1261284b2c5361227f22085d2423332b44525e36c4175f516166", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 27 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e51", + "operation": { + "burn": { + "quantity": 22 + } + }, + "policy_id": "e6cb6e6e178ca2eec74307ec152963060de837b73f531d4fc322ad7e", + "reference_input": { + "id": "64432405452a17415f257504d76db8033ee0233b74697d7a6b5e79f372687b0f", + "index": 0 + } } - }, + ], "payments": [ { - "address": "FHnt4NL7yPXzWU7jcDxc59hdS19XYrFHhgtTUwLVqCfq65L8zxTjweVSZnjqvaR", + "address": "FHnt4NL7yPXrKXF1mAVJPKA7tfUAyFMMnSkR7m17r9Vi7MiVGaP13JBC8q11it5", "amount": { - "quantity": 237, + "quantity": 179, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 20 + "quantity": 26 }, { "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 14 + "quantity": 11 }, { "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 1 + "quantity": 27 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 36 + "quantity": 4 }, { "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 + "quantity": 11 }, { "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 30 }, { "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 10 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 27 }, { "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 20 + }, + { + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 + "quantity": 27 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 31 }, { "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 48 + "quantity": 22 } ] }, { - "address": "addr_test1yp9ync4jupuwf7jd4ahfmkmzaaq67k2g07auh4varvtdpdvgu2r0j4a9jl0td2tp9v6qmq3hk4nnu3cdrff69qtkv8xs2gq2yr", + "address": "addr_test1wrh5scaj36qlk4sfm3mwr5elj268jau3jvg5fwktay4le0gngucws", "amount": { - "quantity": 107, + "quantity": 216, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 13 + }, + { + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 6 + "quantity": 50 + } + ] + }, + { + "address": "FHnt4NL7yPY3B5PQUNCLj1RY3E5VsnpN2GsHqt2bF42fWVe4rcDvwmqUsL4N4Th", + "amount": { + "quantity": 204, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 15 } ] }, { - "address": "addr_test1qz0lt3dn5fn9670pdx739ny0caxqazp2yawy7p3e0k98vj95fv30e4q6v284zzxft62w7lvulxw5np7ut9zwha9lzmeqhchs7k", + "address": "addr_test1vprs38t79yt7mjahfwur2kecausrx3e5v4e534ng50h783g6eg2vm", "amount": { - "quantity": 20, + "quantity": 110, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 20 + } + ] + }, + { + "address": "addr_test1wq9yt0hus8kc7lrgvtagqqcaadexee2uugz90ecmeltafwqlt8wuk", + "amount": { + "quantity": 70, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 15 + "quantity": 25 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 12 }, { "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 50 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", "quantity": 20 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 13 + "quantity": 28 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 35 + "quantity": 4 }, { "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 33 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 3 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 46 + "quantity": 25 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 16 } ] }, { - "address": "FHnt4NL7yPXjaAhAqmRQpuZ88zL5EbFUBYo8u6jhnsr6xgXhN1nTkjfSU56jzin", + "address": "FHnt4NL7yPXsoVexfPV4GsireELf4tAUPU4Ks6pkfzegDdqFbuGyk9VAeSUvC5D", "amount": { - "quantity": 125, + "quantity": 181, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 3 + }, + { + "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 14 + "quantity": 26 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 29 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 29 }, { "asset_name": "546f6b656e43", @@ -134,466 +701,724 @@ { "asset_name": "546f6b656e45", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 19 + "quantity": 13 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e45", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 27 + "quantity": 20 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 28 + "quantity": 12 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 26 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 8 } ] }, { - "address": "addr_test1wpwv5m24gmkyj8v324zajtsqkzs64y90p4gv7wvsuza6umccjrws9", + "address": "FHnt4NL7yPYK8eZnLb9T62jxhWDKZKkioP3oPxYoP3DRDRVPtZo1bVUhonDdtyj", "amount": { - "quantity": 109, + "quantity": 99, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 20 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 21 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 27 + }, + { + "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 16 + "quantity": 24 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 23 }, { "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 18 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 8 }, { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 10 + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 21 } ] }, { - "address": "addr_test1vpqs5rgxkc2rdjvdy2p6uay2zn70m2g69z0hejc2kd0uf7c6p0n4p", - "amount": { - "quantity": 103, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "addr_test1wr2yzgn42ws0r2t9lmnavzs0wf9ndrw3hhduyzrnplxwhncaya5f8", - "amount": { - "quantity": 141, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "addr_test1wq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4cl3n4xr", + "address": "addr_test1wrs2w9p3nqfv8amnhgzwchtt8l7dt2kc2qrgqkcy0vyz2sg3p9azg", "amount": { - "quantity": 109, + "quantity": 167, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 4 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 7 + "quantity": 17 } ] }, { - "address": "addr_test1zpfdc02rkmfyvh5kzzwwwk4kr2l9a8qa3g7feehl3ga0228pk033k8a59e3l7zkae3zfq6j0yt5w65h24u7hrr48r7qq0gz83s", + "address": "addr_test1wqcvp8e3wncld53nv3dcca84y2jsp8dcwrd3njatekugjcsq9aqhh", "amount": { - "quantity": 129, + "quantity": 201, "unit": "lovelace" }, "assets": [] }, { - "address": "addr_test1wpwwm2ypw86gsmghajn8qwuhtg0q6fme4eyeejgzq6ttr6clwem62", + "address": "addr_test1qpz2m8d5ugfgxerp2zfkaecnr9a50462auztn2e6wap4heex0c4gjdq3kj9hy0l4362qdkv4704cdlzq0xpr3yvvql5q47ruq6", "amount": { - "quantity": 155, + "quantity": 73, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 16 - }, { "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 12 + "quantity": 28 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 6 + "quantity": 27 }, { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 26 + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 28 }, { "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 25 + "quantity": 28 }, { "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 18 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 20 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 17 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 17 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 27 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 18 + "quantity": 19 }, { "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 48 }, { "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 8 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 20 }, { "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 27 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 25 } ] + } + ] + }, + { + "delegations": [ + { + "join": { + "pool": "pool1tvancvmagyghvxjk8uqn5ce6xy48gepdd9x3c9e2tvmqqunv5kk", + "stake_key_index": "44" + } }, { - "address": "FHnt4NL7yPXqwL3iHbs6UhbwDHorJCo7Gfz1iXq4az41GoKLZGBWGrmhKUacHZA", - "amount": { - "quantity": 206, - "unit": "lovelace" + "quit": { + "stake_key_index": "12166" + } + }, + { + "join": { + "pool": "pool19gjkxdttyf8z5dpn8y6hyzextf7zksnlqg75cq68rpjsyx5ct9s", + "stake_key_index": "128" + } + }, + { + "join": { + "pool": "pool1zcg4u9q9tucxx3yqpqf3j52lwf0nxjcyf3lj28n3pdt5shdml4r", + "stake_key_index": "106" + } + }, + { + "quit": { + "stake_key_index": "11580" + } + } + ], + "encrypt_metadata": { + "passphrase": "2rZX y&a-;#-8%AJ~*,4u4" + }, + "metadata": { + "25": { + "string": "􍗊" + } + }, + "mint_burn": [ + { + "asset_name": "546f6b656e58", + "operation": { + "burn": { + "quantity": 28 + } }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "asset_name": "546f6b656e4a", + "operation": { + "burn": { + "quantity": 7 } - ] + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "mint": { + "quantity": 3, + "receiving_address": "addr_test1qzhwts5f7ke8fu94v38gvak4975rygdsk7qgtg6va4y3kgkfk433zxkshyfhdxrnpyv0ly53ghu58zzmnyl8c2sppyjsvd3det" + } + }, + "policy_id": "24c4ca7e232bef849cd0a9a2abbf5904933e5aa7a1bebe849fbf7429", + "reference_input": { + "id": "49e800090af453584c03653495bb441d095f626a33221d7ce424657d59650329", + "index": 1 + } + }, + { + "operation": { + "mint": { + "quantity": 10, + "receiving_address": "addr_test1zzva9wz9tjq4aam2pxh0p4wqz9uj0lhvq0620d3djdwjha4x6pygwfeeu7fzrdkmvjx4zqn3dwn328k6sczdd95ryp9styr933" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 11 + } + }, + "policy_id": "617cc7d3759c5b32592924fc54908c6f330ea63ed9276fe9362af080", + "reference_input": { + "id": "0f5a7118602163587c71421b5454792510b57743473043cbed914c766144737d", + "index": 0 + } + }, + { + "operation": { + "mint": { + "quantity": 16, + "receiving_address": "addr_test1wrnftmt4av9qhug65wqegcpq879v98zq533qufvtgdpgtugrdukda" + } + }, + "policy_id": "9723d0af0d32f7abed540cc6363524801288709fb8dbf6927277ea1e", + "reference_input": { + "id": "34f13c465f140ce566608a275c5aed222e2a6604061f740d304913b31a65342b", + "index": 1 + } + }, + { + "asset_name": "546f6b656e5a", + "operation": { + "mint": { + "quantity": 13, + "receiving_address": "FHnt4NL7yPYL6kBU9JvpTLKj2cwMZWrLL9odEH4vTWhczCCeYYsb9ZL5tyRfRRM" + } + }, + "policy_id": "632450879b5a6b6c3f1f8b51a237a51c1eb96eb34d79d73f0bd42602", + "reference_input": { + "id": "7d76bc542251524a6b7b1b6f117b366934da1782a52bd9226d604a51222e30cd", + "index": 1 + } + }, + { + "operation": { + "mint": { + "quantity": 8, + "receiving_address": "FHnt4NL7yPXuXfknZrZZTye3TNDmonGVqGWL4co56YM28gc95DgYCrXg4KmNHcb" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 26 + } + }, + "policy_id": "61ad1ef3dba9beb5d760f41772255e6d124a272a8de7ce8a33ed077a", + "reference_input": { + "id": "5930d218360c6f3e13334af5325b4d1ae28f662d773a269a15011f273d51181a", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 18 + } + }, + "policy_id": "c30ca78fad5f3d0176f84bd8fabc1cf0d1eedb1755857274be79688e", + "reference_input": { + "id": "753c367e79120b227a1a1645695435531f571744136f0a8e122a6f617b03ed69", + "index": 0 + } }, { - "address": "FHnt4NL7yPXuZQdLyCPEhoQRSKwrBhr7tXxtPmHRRwAmhtMPc2fCkeSNCfv5hRA", - "amount": { - "quantity": 223, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 8 + "asset_name": "546f6b656e47", + "operation": { + "burn": { + "quantity": 13 } - ] + }, + "policy_script_template": "cosigner#0" }, { - "address": "addr_test1vrxqf96n8lhsw60rnuk0hkn9em8aph05jxsl5z5y7rhqjfcx5z4q7", - "amount": { - "quantity": 93, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 16 + "asset_name": "546f6b656e49", + "operation": { + "burn": { + "quantity": 6 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { - "address": "addr_test1wzqpcpat57jknchv2rqedznswjaf6jwxnm0zp53fysyrwdczzqrx9", - "amount": { - "quantity": 127, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 17 + "operation": { + "mint": { + "quantity": 1, + "receiving_address": "addr_test1ypn93rdv8kezysdsavdzahst8lhtguugy7natfgkzwn0l3f4xrxf4elj39g3r2vm0gppsnwhcr82wsj0zcedww23k8ts8052v7" } - ] - } - ] - }, - { - "delegations": [ + }, + "policy_id": "e4d4254705d4e39db0212508a8369c5758277014ea9e1a51806126b7", + "reference_input": { + "id": "7e25f3370fb54d573f5508276c23773a352d72cf2247577168123f120d767f26", + "index": 1 + } + }, { - "join": { - "pool": "pool1vs25v82s04xrgkq6pcv9xgp809ehvye7p4r375muy9argsmur03", - "stake_key_index": "6" + "asset_name": "546f6b656e55", + "operation": { + "burn": { + "quantity": 14 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "join": { - "pool": "pool12e3xz2jltptr7fnfv4z8y8zlzvus7vgwxv957kncfvzzwfyuclc", - "stake_key_index": "97" + "asset_name": "546f6b656e54", + "operation": { + "mint": { + "quantity": 20, + "receiving_address": "FHnt4NL7yPY4xx4NrmJxfvZVzG4EwWgE6NMLqozcfpiTufHga7tjdt8LwTv8oKC" + } + }, + "policy_id": "1a1c48b3bcc5bb3075f36eb84719eadd2f6744bcd017dcfcf13367c2", + "reference_input": { + "id": "c161cf8a4e791255614675670524154a0d3c2eb13d1723693d3415717b00d643", + "index": 1 } - } - ], - "encoding": "base16", - "metadata": { - "27": { - "bytes": "a60e505c5b77584247491690615d475e10129a0138e86b7b3c441a2f32b42632dc" - } - }, - "mint_burn": [ + }, { - "asset_name": "546f6b656e4b", "operation": { "mint": { - "quantity": 15, - "receiving_address": "FHnt4NL7yPXy9x4c2LK9gL4SgsM7KM421e7gZQnUR7c5xup8P8J9JSvMLwDWiG7" + "quantity": 25, + "receiving_address": "FHnt4NL7yPY1Jndg38W29a3RrRKgYHUFqu5qWhoQ9Jae49wDPHo4c1hg6aTz4tH" } }, - "policy_id": "edf04861b20af147952c0bbb4da178a40319a282673426b661279fef", + "policy_id": "93b58dc836860673c629d158851cc78876997283b1ff0582c89ea13a", "reference_input": { - "id": "59ca374af63f0a3c6473105d2b575b38ad7f267daa9473e351d0647a196b7004", + "id": "56559d4f0709454a36174869598d56720f6a1f3d682107084a44365150440449", "index": 0 } }, { "operation": { - "burn": { - "quantity": 7 + "mint": { + "quantity": 28 } }, - "policy_id": "7b5e59b4f5931d05afcbade2c94b250284cd285883cf531e7bd7a13a", + "policy_id": "16c636b039837f59a43fc06dcbaf6858fc0c5faf4ea3c0064f8350f8", "reference_input": { - "id": "0506881bc34160116a0b6b22402b2c3fcf547c271cb2174cbc385e5b7b48692e", - "index": 0 + "id": "581358122e175d4947ee742e170d263a2f000a4506a32a74790b00295341285c", + "index": 1 } }, { - "asset_name": "546f6b656e4d", + "asset_name": "546f6b656e53", "operation": { "mint": { - "quantity": 21, - "receiving_address": "FHnt4NL7yPXmHUHetsWqK8NbGJ5R4jjARvc3ZkNikGqkm1QRFbTC1DK59WrEdTP" + "quantity": 13, + "receiving_address": "addr_test1yrumvfvzxnnfqn6sj7ffjezt4v2grx444tya3rlmk9jmj2855yh0ufsrygf0dyl495cm8y0c8kpdxsrftlkf59a3320s8uss0w" } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } }, { - "asset_name": "546f6b656e4a", + "asset_name": "546f6b656e4e", "operation": { "burn": { - "quantity": 18 + "quantity": 25 } }, - "policy_id": "d45582dc8cd3f8c01fad103fa75480d895a5c6398ae4d489e4c779f9", + "policy_id": "72e44eb552ff30d2f7820695d4baabb1b2e3f9e5450efc1f687cef1b", "reference_input": { - "id": "35660219ce725c1b1256f15e0e914334c06b211b062ec304581046444d287538", - "index": 1 + "id": "145e7d89e18c5ef37113797e37357c2e48a8decc44576c78216a2a403507276b", + "index": 0 } }, { - "asset_name": "546f6b656e56", "operation": { "mint": { - "quantity": 1, - "receiving_address": "FHnt4NL7yPYL3Q2heBP9pNH2EAX2d7wpW1upo1Sz57JfLEmFBjuZejCVwVDpfbF" + "quantity": 5, + "receiving_address": "FHnt4NL7yPXtybeeSjbWUfKNDavY71GT3cYWd7dXpEoMoe92KHtoEQS3YgszVQL" + } + }, + "policy_id": "d82a81f69ce6c63b29c2644197103d58aab7eb36831331069281731d", + "reference_input": { + "id": "4b6a6174ada82b3c270c450113dc2801150f1f064e6bf15031500a3e6e397544", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 9 } }, "policy_script_template": "cosigner#0" }, { - "asset_name": "546f6b656e4d", "operation": { "burn": { - "quantity": 15 + "quantity": 5 } }, - "policy_id": "7a5421edf1eed899a374862c8a1dc4fd087347b92abe828658bcca72", - "reference_input": { - "id": "773e1340f5202b7a50c24e4b6670386b52345352e6365b6c7b1b7f6824002d47", - "index": 0 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } }, { "operation": { "mint": { - "quantity": 11, - "receiving_address": "addr_test1yqts92xcr5a264fay0kjstut8snfrlgkvcaeg7s5cyywyc2ycqvvhjm3my2we6rua6phczk5m23t9ssky3s4e47rw95se4zzzw" + "quantity": 6, + "receiving_address": "FHnt4NL7yPY7UrKKSFEVgvsa2WGLBnhC68U3CnchRpAreU9AZEAFJSsLUhSkzLe" } }, - "policy_id": "789bd1e19b4ecceb8aee017000bdd9935444b485a782481fe32d5fb5", - "reference_input": { - "id": "2d5650186528472e3b2d624f0ade9462f739263e7848525fd3932a7f6759274f", - "index": 0 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } + }, + { + "asset_name": "546f6b656e4e", + "operation": { + "burn": { + "quantity": 26 + } + }, + "policy_script_template": "cosigner#0" } ], "payments": [ { - "address": "addr_test1vp0pknx0g8w5c8dzmcnsh424puu6znv3thvh7tvyd0yzhns29smyu", + "address": "FHnt4NL7yPYDjUFQ6LXon9EsD4DNApwaA3mwWev8Nwcz8PGDmsXA4EivEvzciNM", + "amount": { + "quantity": 76, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1xqdjd999qkp8d4c4uvtxpsvjhqefxty5mr5x6slpmmk2v95qdc228j8f94jp5qmkfw04ky9jlvljxekj9zt4ns66wans9vtzxv", "amount": { - "quantity": 123, + "quantity": 16, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 19 + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 7 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 10 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 12 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 3 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 2 + } + ] + }, + { + "address": "FHnt4NL7yPXq47rB5BmCUFzizeXgCe6r7Wpbi1uG8cWPXZSisiyHwrzQi6J1arF", + "amount": { + "quantity": 180, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 1 } ] }, { - "address": "FHnt4NL7yPYHVMyuGSiy2xem8ceUodHbmXMXSr2qSmFuvgPzU4H29GrdWLCY23E", + "address": "FHnt4NL7yPXsh1VdV1V9pt3avNKdpiNPWZf87wnoSWz9r8t2J4JsTf677W7rFwc", "amount": { - "quantity": 57, + "quantity": 162, "unit": "lovelace" }, "assets": [] }, { - "address": "addr_test1xp8pk8ur0txppf53dgvqhkp72fadydpqkpyd2c9llcm38l029n0szzg0puurgdr9zp9msvtq8jh5fv9gt85j74n0438qyhajc0", + "address": "addr_test1zz7g620e86tyyx2xz5szck2tstrd2aw7y96f2hytr6dx8gqygralxxgcurxtstnjhl4wlxqt9yye89dcm4pc79fellrsgpd0m7", "amount": { - "quantity": 80, + "quantity": 128, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 11 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 51 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 19 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 16 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 1 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 41 } ] }, { - "address": "FHnt4NL7yPXpoSL4vv4bTiWL2W7yuZUxEFPQb61G15zmRwRxhwx2LYUEFqWMZi4", + "address": "FHnt4NL7yPY7g61N3EwmxBoQuzUw3ZZqUKnfDdNzTCZYkWPxMi2qybFHLf7HV7k", "amount": { - "quantity": 171, + "quantity": 90, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 21 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 + "quantity": 29 }, { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 13 + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 22 }, { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 13 + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 44 } ] }, { - "address": "FHnt4NL7yPYEav1s5VJs5x3EqqW9NNDWvKTE9atY66tsXyYjoDveASnNTHRKf4d", + "address": "FHnt4NL7yPXzy8At2WPY5kc4kYTRbbir3XGbuvqYkDKoUKqxeckybht4NZ4ZdQC", "amount": { - "quantity": 32, + "quantity": 182, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 11 + "quantity": 12 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 9 + "quantity": 33 }, { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", "quantity": 16 }, - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 11 - }, { "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 28 + "quantity": 30 }, { "asset_name": "546f6b656e44", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 8 + "quantity": 20 }, { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 56 + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 45 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 + "quantity": 16 }, { "asset_name": "546f6b656e44", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 33 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 27 + "quantity": 18 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 20 + "quantity": 17 + } + ] + }, + { + "address": "FHnt4NL7yPYFzyutaq5xUTQVmirsKtB5w9DL3zRcnuEv4iQMf4hFceoLKz3S9TR", + "amount": { + "quantity": 100, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 7 } ] + }, + { + "address": "addr_test1xzffqhgm4z6m5pxzr7p5rk3c73yz2y6d2gjhu4vds7f4erg9ar6gwhjn57un5x2p6w4fwu8r05gxry46czu65566gyvsvrjth0", + "amount": { + "quantity": 52, + "unit": "lovelace" + }, + "assets": [] } ] }, @@ -601,122 +1426,123 @@ "delegations": [ { "join": { - "pool": "pool1vcd8jqr7xg04zdrdyuzh5zrfzawxy7pzregjx0e8dg5964zs009", - "stake_key_index": "49" + "pool": "pool1wusqveqhr43s6wnmxfq42vstw5py2qruwd55ylqp2sghszd37kn", + "stake_key_index": "79" } }, { - "join": { - "pool": "pool12d6gqrsexew5vv3gqenp2kes2yu9xpmjzd6hgy2rdpsj2yune8p", - "stake_key_index": "87" + "quit": { + "stake_key_index": "11249" } }, { "quit": { - "stake_key_index": "11284" + "stake_key_index": "4453" } }, { "join": { - "pool": "pool1rga5y0mpp4cs56e78eg3kfrxy48qu2grxckhygn0tdukv5rg5w2", - "stake_key_index": "8" + "pool": "pool18uczckew858n7nsvvqgk6q3xgugz7a3nxaxh56gexansz8v0qlm", + "stake_key_index": "128" + } + }, + { + "quit": { + "stake_key_index": "8927" } }, { "join": { - "pool": "pool194z5x6rsg595v86pvack5nsp0dkyk23l8ywpsmpxzfq4y4as3az", - "stake_key_index": "76" + "pool": "pool1gd6k70pfzamk20pwg4qrgcpxq4lpvnq0fdznxqnqd4fxuzjgzag", + "stake_key_index": "86" + } + }, + { + "quit": { + "stake_key_index": "8742" + } + }, + { + "quit": { + "stake_key_index": "6095" } }, { "join": { - "pool": "pool18ga82dzgdut5gusu04cqqaj9p4rkkr5q05kj2aepr3kxggnmt68", - "stake_key_index": "41" + "pool": "pool1zephc83e09xnzamtzywrvwe0zdmj2mcnwdjx67r8deez7qy9eel", + "stake_key_index": "37" } }, { "quit": { - "stake_key_index": "8544" + "stake_key_index": "4640" } }, { "quit": { - "stake_key_index": "2975" + "stake_key_index": "3822" + } + }, + { + "join": { + "pool": "pool1fy7ngtmppgzp25tsde3yvwzpvp9q6zp9tea973twtu35whws9rd", + "stake_key_index": "59" } }, { "quit": { - "stake_key_index": "5607" + "stake_key_index": "9854" } - } - ], - "mint_burn": [ + }, { - "asset_name": "546f6b656e4c", - "operation": { - "mint": { - "quantity": 23, - "receiving_address": "addr_test1zzn2amjajmku63pu48nup4an6zmglvdwj8wupw5c2q7et6rv77mnzw9llpkekksuxjxmnlwhuvuyfa6wzfp2f5pxm2usy6smv8" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "join": { + "pool": "pool1gdt4unr224tksqtryp9nut2pyaj424puz9lhkgqwvg3xvnlzrug", + "stake_key_index": "37" } }, { - "asset_name": "546f6b656e41", - "operation": { - "mint": { - "quantity": 14, - "receiving_address": "addr_test1wq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4cl3n4xr" - } - }, - "policy_id": "67a640079813f965ab41d7c9ea2763b58b603a73548691d7efaa18ab", - "reference_input": { - "id": "32916f7d3133d6531190d7378572e246415162727c132a36520a163fbd34774f", - "index": 0 + "join": { + "pool": "pool19q8hz7eagqypu8pd2e9hgzcfzue369jygyp3c9ctzcvjjvx3mhv", + "stake_key_index": "54" } }, { - "operation": { - "mint": { - "quantity": 10, - "receiving_address": "addr_test1wrkklag37yvauqm7qucrf7rur9hmhtwl62t3x8fgpufn8zq5c6585" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "quit": { + "stake_key_index": "2840" } }, { - "operation": { - "burn": { - "quantity": 29 - } - }, - "policy_script_template": "cosigner#0" + "join": { + "pool": "pool1tey46gnup3pxzfr98eg8ja3mx92nu62zze7ycesqfd69wyj9l0f", + "stake_key_index": "95" + } + }, + { + "quit": { + "stake_key_index": "11932" + } }, { + "join": { + "pool": "pool1g4es57fcty5yv965rgzsv4mwrsyz7vj4f34k7aggrvxzwngjs4d", + "stake_key_index": "74" + } + } + ], + "encoding": "base16", + "encrypt_metadata": { + "passphrase": "RAE𢧟㜏⏙Dru*9Se)D𐀗,3pAEj5`,4*4R$&𦣐9a𖨨렂,3M7K&O҄𢓯𮇩,e⥠y1_KG#𬿸krPP\"j:49,錅𦵂eb\\𠠺𢬾iB~:#ᒚ" + }, + "metadata": { + "13": "􎳸" + }, + "mint_burn": [ + { + "asset_name": "546f6b656e42", "operation": { "mint": { - "quantity": 2, - "receiving_address": "FHnt4NL7yPXwGHfXVEAKn3NJRpEuouhP7qnBHyoqvSCvoGtimbeX3GQQRmtje1L" + "quantity": 11, + "receiving_address": "FHnt4NL7yPXyRH5mbSDEx74ciQvXeiV678e5kp7ciBfcmbjFLuBv7PjnndAztzk" } }, "policy_script_template": { @@ -732,839 +1558,832 @@ } }, { + "asset_name": "546f6b656e45", "operation": { - "burn": { - "quantity": 26 + "mint": { + "quantity": 25 } }, - "policy_id": "cc7690f882404b86e847ff75fa7ad1950f0af92f4dff22b4ded9ccc6", + "policy_id": "71e86bd058fb45039e73989d2f4f5b4b0e403e2d6a73bf439c0bf881", "reference_input": { - "id": "7808192eb8a61b34002a7814355870007501277874265d50e8a0607d310f2985", - "index": 1 + "id": "f2222912096f331a41363e5f711260244d5803625f8d74793a079f4c0c03856c", + "index": 0 } }, { + "asset_name": "546f6b656e57", "operation": { - "burn": { - "quantity": 15 + "mint": { + "quantity": 7, + "receiving_address": "addr_test1wqnjsuq6p7rckj2ntxea8vdu32a6kd57643eff5g5w5p53guafkkf" } }, - "policy_id": "5c04dbd723878225639c57763dbd979ed658565204ba98ed2b141858", + "policy_id": "3fb29c761d78e80579290dab0261635046a86183dc5c9f503317103d", "reference_input": { - "id": "1f305a60c91b740a744d0868aa3133427467157f4c0c60516ecd0f6b1d207b2f", + "id": "48e87518533a34712d09197d17263f4c66d66629051709147c3611730e2c3100", "index": 1 } }, { - "asset_name": "546f6b656e4a", + "asset_name": "546f6b656e47", "operation": { "burn": { - "quantity": 6 - } - }, - "policy_id": "01adacbd01fcec2ff0c668387d301757bf3aee4f5a38a902d8225a9b", - "reference_input": { - "id": "645dc1546c5a662b545a253ff9b208dd0062466d041746442f27701b5234227f", - "index": 0 - } - } - ], - "payments": [ - { - "address": "addr_test1wpcesyjchs2zysn3gqd7kylrs8ls9mvtf3ekv0qawyyz67qwjruvv", - "amount": { - "quantity": 49, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 9 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 10 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 8 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 20 + "quantity": 17 } - ] - }, - { - "address": "addr_test1yp4gr5jhgr8v248ekr9c7rmnau0lx0dyx9ddaadmrmedtcd6ezkxkpxam7avt8tj368r0eak6jp4nmkxppuuqr2r903sa9ffjr", - "amount": { - "quantity": 71, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 42 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 25 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 16 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 27 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 53 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 15 - } - ] + "policy_id": "26a2aa8eff26d7908b846b74dddc2f0becab43fed8fd380dd6c30ccb", + "reference_input": { + "id": "1529674696577642443a6031535b31612e0209eb78185f4d364618811bc74840", + "index": 1 + } }, { - "address": "FHnt4NL7yPXmWXd4u5G4ZZPbwVCbfS9KQiY7DkGw9dqAr2knbD9iNApPM4Jsk9W", - "amount": { - "quantity": 79, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 18 + "operation": { + "burn": { + "quantity": 2 } - ] + }, + "policy_id": "9170a8637bff94b72c3761f71ff205141d705fd84a6deea0d9a8b6b6", + "reference_input": { + "id": "696bde4583407222634965472439137a446f275a7e626f6acb18d1114e0f8c8b", + "index": 1 + } }, { - "address": "addr_test1zp5qzgc4hpze8075qyylnfrsqrm0hxpvuknaat6lykrqeewfw6h80ncrv564pck45mcemufa84w9qhmn5zxzns7qxarsf6r58e", - "amount": { - "quantity": 208, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 14 + "operation": { + "burn": { + "quantity": 26 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "FHnt4NL7yPXvu2RLBr5WU4Z87ZczHB9RHc3Ag4RLQTK6zKNkjesU5ZszH9Awpqn", - "amount": { - "quantity": 247, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 27 + "asset_name": "546f6b656e59", + "operation": { + "mint": { + "quantity": 1, + "receiving_address": "FHnt4NL7yPYJph7ZGaCwLuWAqio7Hz6mF76Jz2KVh3Rk5NeNpD6ZFqZbvUkGwUj" } - ] + }, + "policy_id": "fdde985f4c18c566573b6e1b104f0ab4974b06e0af9e311e6c8f5590", + "reference_input": { + "id": "4b75244e473b1548186074501d5a52054c66623839480738109974590f4b4379", + "index": 0 + } }, { - "address": "FHnt4NL7yPY3XdMnx1WUiRq35sYJDyUmeuoZtQoWwpTFvkiMuMhymrontReeCNr", - "amount": { - "quantity": 76, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 5 + "asset_name": "546f6b656e4e", + "operation": { + "mint": { + "quantity": 28 } - ] + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "addr_test1xq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr46jms758dkjge0fvyyuuadtvx47t6wpmz3unnn0lz36755q9pkqrn", - "amount": { - "quantity": 43, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 17 + "asset_name": "546f6b656e46", + "operation": { + "mint": { + "quantity": 18 } - ] + }, + "policy_id": "3515fdf6d873101ac90fc82bfddf0e6a9e09e92b735c0bab0530a945", + "reference_input": { + "id": "6c451f4d2cf8094d1862118705372a47120d7d5b406f774c3f262ea363627f67", + "index": 1 + } }, { - "address": "FHnt4NL7yPXvAgpFZU2RH27EBTNFUp97HsiUMg2DhV3caM9wLGYhf2o393pf2rY", - "amount": { - "quantity": 61, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 21 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 11 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 36 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 11 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 22 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 2 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 28 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", + "asset_name": "546f6b656e56", + "operation": { + "burn": { "quantity": 30 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 56 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 29 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 } - ] + }, + "policy_id": "91f35db634aea2a9ae2b3787c8eff1cfef74a166f08341a3de3a3412", + "reference_input": { + "id": "304f28345aa97a4a795803295cb972192e19df0b7c4a12584c57cc0f75d72f2b", + "index": 1 + } }, { - "address": "FHnt4NL7yPY8miaHUDmviozP4MeksT3UdG27BjPoZPxMNTWK38FjhC9AC3tSWX1", - "amount": { - "quantity": 20, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 14 + "operation": { + "mint": { + "quantity": 18, + "receiving_address": "addr_test1vph9epyv3ydhn8xmlhdkuke08rl3mspx2qzwvnm8ett9hecc20drc" } - ] - }, + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + } + ], + "payments": [ { - "address": "addr_test1wrttejxvytsx950vqh8ffpmqze0v4edr3hyr2q4tpqklnugwu39va", + "address": "addr_test1yq4h5vqknllu94z8gdgg2eanjjslhuzsth2my5e3cadxnp5pfx2529rv36f8ea9dne3h4zwyhua45ffrzqd9tvkcgeyqhs9dqh", "amount": { - "quantity": 201, + "quantity": 1, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 29 + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 17 } ] }, { - "address": "FHnt4NL7yPY1efs3JdYhPQbxym4iaiMB592XhLoUyDR45NfDNNHnPxsDXTij3DN", + "address": "addr_test1wz7tllup32ekndgu95aw59wa273cr03lue8gk7xenvk3rvgknfgqm", "amount": { - "quantity": 55, + "quantity": 205, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 31 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 28 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 24 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 21 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 31 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 11 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 30 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 30 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 5 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 14 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 28 + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 18 } ] }, { - "address": "FHnt4NL7yPYEgV2YCv4QV9fdHXbY7xsE45o3AeRxpjxX7PQnFP2Esfkzhw8iJ9i", + "address": "addr_test1vz2q62l9faky6n4f4gex989ee3k53gdmnd7wykdvvnq0rrcy6lnfn", "amount": { - "quantity": 92, + "quantity": 207, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 30 + "quantity": 6 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 33 + "quantity": 29 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 8 + "quantity": 17 }, { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 28 }, { "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 2 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 9 }, { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 26 + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 17 }, { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 30 - } - ] - }, - { - "address": "addr_test1qqufqawp48hdrf72e89ryfwd375gfh623am4uvvtthnvwvh9qe9p9h0534znrv9a59vlu2u09r8dmzpyq5vpshvnytqqe774yq", - "amount": { - "quantity": 237, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 15 - } - ] - }, - { - "address": "FHnt4NL7yPXwdXZDjdQcr9Mz3DKMBPGtzjZAJTrR4xUoFBGKH61TTdJTcnyc6En", - "amount": { - "quantity": 22, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 8 + "quantity": 17 }, { "asset_name": "546f6b656e45", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 8 + "quantity": 29 }, { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 25 + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 }, { "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 8 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 8 + "quantity": 30 } ] }, { - "address": "addr_test1wqc5rsaqqmgakhjhzk388uzh3ej9sry7rz5gfyqj4ddpelc2zp40p", + "address": "addr_test1vq50nm7yuuz5u77v3gl3l3dftgarmyzdc3eljec5naw95egq4jlrp", "amount": { - "quantity": 200, + "quantity": 224, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPYBfPZmajczDG2RU2rDThfWarTP4gzWrJthEu3ZkGGTRZqmQUiUR2w", + "address": "FHnt4NL7yPXksQYQwmfi6TV7Zb5nLQhVE1wxdZbSJstneJyq2eWA42vKQWvNk5s", "amount": { - "quantity": 63, + "quantity": 121, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 7 + } + ] }, { - "address": "FHnt4NL7yPXmeQsrENGEE7gTfrMKcGP4bkPcagaE6UvQTJm6HCP3BpDNbGAHVXx", + "address": "addr_test1qzfznl494ds4y9q62yzje4nruzc5zrxx49ua92ncnfxqt5qgmruyzaw5t8m96v2yxrhc93wem6d5equxq5ck3gy66ygsp68qym", "amount": { - "quantity": 24, + "quantity": 31, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 6 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", "quantity": 8 } ] }, { - "address": "FHnt4NL7yPXwxwa4FHTb4b9voDd8GbbvsGHWmPTSpTkX3X6X5XRa8epVECsJ73Y", + "address": "FHnt4NL7yPXvgARui4Tt1wg92sATs3YfD3UhqDF6XiadKUjt4K7nEUeNh86LgDG", "amount": { - "quantity": 32, + "quantity": 132, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 7 + "quantity": 28 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 6 + "quantity": 28 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 50 + "quantity": 11 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 17 + "quantity": 29 }, { "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 29 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 16 }, { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 - } - ] - }, - { - "address": "FHnt4NL7yPY6yFf1FDepTYuxPSAbFN3ek5df76Bbd7DsTHjSNQEt1STELseC2Gx", - "amount": { - "quantity": 159, - "unit": "lovelace" - }, - "assets": [ + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 13 + }, { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 6 + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 7 } ] }, { - "address": "FHnt4NL7yPXn1g3ym5A6EQyvx5dxgQQ1S4Tcvqi4B2SrNwN2BCYGuBFvtvyFGxC", - "amount": { - "quantity": 126, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "addr_test1yqec3snv9r2fkxg58wacus8gzysdyqght9td4jyjvndejj3976wgde4c93wxr27f7mke2fuu2e5wdhqryjxqam2ylm8skchzjp", - "amount": { - "quantity": 118, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "addr_test1yq6338z797lquq9p5djyurnh52ssg7zkqtv5q65hnjf3gdyv2laavvnkhtq8gkttztahxm34rt36dh2sa99m3ugmnfeswx20zh", + "address": "FHnt4NL7yPXjHX3r7jSmAM2qdtULKdDRpimMvqaxuFUXmQaAAz5F9GCj67ARC1N", "amount": { - "quantity": 89, + "quantity": 189, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPXyN2PZnE6kHc5Kmq5KG3hCeyjvjh6qZTjM42ryG2VBnFho8Ngh6mJ", + "address": "FHnt4NL7yPXxwFWMTBko818X82rQjGAHDzNcg39giaqVZFoAd1Ur6oX5fgXWxq1", "amount": { - "quantity": 35, + "quantity": 161, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 + "quantity": 8 } ] }, { - "address": "addr_test1vqahrzwmvgg2phm5htekatlg4upq7mdhkfv49ray0z7489cvzu2ek", - "amount": { - "quantity": 3, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXwbD1k5oET4tEguTiDBrAhdMiALcEX7nV2Ru7EXfBYjSzb3VTU1sA", - "amount": { - "quantity": 109, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPY8qYac1MH6oPsopJABfoigoLtxRUenRgPHPwTZaLUnKKaYzfDnf7j", + "address": "addr_test1xq84efqlcsdepnr94kdjnmxsz8h34wz9gwqzsxup003rwd8ke9za7aczngvgd8dhagjnvxk6kzt3c4fa45pgw7fg8rkseewklp", "amount": { - "quantity": 195, + "quantity": 151, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 23 - }, - { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 17 + "quantity": 33 }, { "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 6 + "quantity": 26 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 27 + "quantity": 22 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 30 + "quantity": 28 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", "quantity": 20 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 28 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 19 + "quantity": 26 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 15 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 15 + "quantity": 2 }, { "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 8 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 6 }, { "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 6 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 15 } ] }, { - "address": "addr_test1wq6pzpamynrnre27z5nc4ga5lzlj05k9q5fukvajrc9u8acv9tdhv", + "address": "addr_test1wr2yzgn42ws0r2t9lmnavzs0wf9ndrw3hhduyzrnplxwhncaya5f8", + "amount": { + "quantity": 84, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPY34hWihFLF2H4jiYPMYsJYd52ad7wTAUH2VXKCohQQ9xiMGKVT5i7", "amount": { - "quantity": 173, + "quantity": 91, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e42", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 17 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 12 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 31 + }, { "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 1 + "quantity": 35 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 18 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 45 } ] - }, - { - "address": "FHnt4NL7yPXhWCECzqunYKxkDfhCesQmAvHbPVjd28TnUAaUQ5NG1FGsUPNrRCv", - "amount": { - "quantity": 204, - "unit": "lovelace" - }, - "assets": [] } - ], - "withdrawal": "self" + ] }, { "delegations": [ { - "quit": { - "stake_key_index": "10900" + "join": { + "pool": "pool1zuxju9g02ydzzg6dxpjj5fjezcgzygrc9ydqz4mdtvcrjl8atdz", + "stake_key_index": "42" } }, { "quit": { - "stake_key_index": "1607" + "stake_key_index": "9705" } }, { "quit": { - "stake_key_index": "7546" + "stake_key_index": "3427" } }, { - "join": { - "pool": "pool1vvlnuv26fgjgq9te2f65w9jttcg860fnv9a326e8duwzsj9yyay", - "stake_key_index": "73" + "quit": { + "stake_key_index": "6655" } }, { - "join": { - "pool": "pool1d3ykxknffe6pcqz5zuthw2jsw97puwcjz5z8k6662sap74jyy22", - "stake_key_index": "26" + "quit": { + "stake_key_index": "14848" } }, { "join": { - "pool": "pool1ru736sg2dsszujee8cmpy2nlvevhgascwq487hexxf7svya6k6v", - "stake_key_index": "35" + "pool": "pool1gcrxkqtwp90h6nq3894zy3p2g50rg7chq4a5jzq6qvqkw04c9r6", + "stake_key_index": "32" } }, { - "join": { - "pool": "pool1p5t476gjva09wl69v5rhyanetesk6djdqyf8xw2jv9k5cvfspn0", - "stake_key_index": "59" + "quit": { + "stake_key_index": "10707" } }, { "join": { - "pool": "pool1yujyswclyv2pvj2lpex4slfnxdcjvs6t0gv5wurtd329zj4ejl9", - "stake_key_index": "88" + "pool": "pool1999n7qjy99fsg629pd7y7gf3p2qqvwf3pacjvqefrg7yjdq65rd", + "stake_key_index": "35" } }, { - "join": { - "pool": "pool19vhrjd6qgfl4svtvpsuxg7guxarsy0cdxfurczj88gcxuqkdddv", - "stake_key_index": "52" + "quit": { + "stake_key_index": "14783" } }, { "quit": { - "stake_key_index": "5192" + "stake_key_index": "3447" } }, { "join": { - "pool": "pool1ggssk6rrpudnvx3lqss4qj2ft3ejsl3lddwxvdn0qc4x7kygnq2", - "stake_key_index": "50" - } - }, - { - "quit": { - "stake_key_index": "2653" + "pool": "pool1xs6kqr6tvdrhzfqwzs29q2ea0vmn5nnsr3u5gqt3rvnpyvmue0w", + "stake_key_index": "34" } }, { - "quit": { - "stake_key_index": "16200" + "join": { + "pool": "pool1y4kk63c9r95nctjvfa9j7ktrvstkjsrfqumqu4nzr9u5gpnrukg", + "stake_key_index": "118" } }, { "join": { - "pool": "pool1zf4z6lskzyj86fzkf5crsfpjrg2rsznav38zsx6eff4kygc7sv6", - "stake_key_index": "6" + "pool": "pool1t9qry8660af3vqmdpvhyj2tw049hz924r46qzaejrv79wwcjde2", + "stake_key_index": "3" } }, { "join": { - "pool": "pool10s08knmqvpf3u0nsxu3scur0z4j8zgn8qvgpynjepyg366rdq76", - "stake_key_index": "114" + "pool": "pool1qen3kgga9q0p6rfwr944yem7yecj6rsfxpypc5m8zgqrg0pnuay", + "stake_key_index": "52" } }, { - "join": { - "pool": "pool12avhvqcr9apskjncv5rs2kzt0y7q5am09ypzkeqztu3yczj6w72", - "stake_key_index": "5" + "quit": { + "stake_key_index": "672" } }, { "quit": { - "stake_key_index": "12267" + "stake_key_index": "1939" } }, { - "join": { - "pool": "pool19f24cvs2rvxz2j3kpgwsgw37derq5jm6ddjkykc6fe5p22xd6pf", - "stake_key_index": "20" + "quit": { + "stake_key_index": "2203" } }, { "quit": { - "stake_key_index": "15374" + "stake_key_index": "787" } }, { - "join": { - "pool": "pool18slnsmt68g58gfgawppyudjcdc6zwhj3f5erchqyx9qhkaxxkzp", - "stake_key_index": "111" + "quit": { + "stake_key_index": "15679" } }, { "quit": { - "stake_key_index": "2393" + "stake_key_index": "801" } }, { "join": { - "pool": "pool1zcnqxl3swe9y59mzvy8p2juqx983wvs3dyes53rvqp8ycd8c4c4", - "stake_key_index": "37" + "pool": "pool1xqrx7ejaf5n4vw329dnks3jpyue9uaf2zau5gk30wq2xsdgvh70", + "stake_key_index": "121" } }, { - "quit": { - "stake_key_index": "13537" + "join": { + "pool": "pool1zd93gsfhturjqtprzuj5yupfyqr47tt6wawsu5ttdpmy5ap7gfv", + "stake_key_index": "99" } }, { - "quit": { - "stake_key_index": "7311" + "join": { + "pool": "pool1dfapkyectgasx92u95uztqqqwae9kgtedu4xqqpw0c9hwnqg486", + "stake_key_index": "69" } }, { - "quit": { - "stake_key_index": "9477" + "join": { + "pool": "pool1t44zs429xaj9s4pftc04urzkycfqz8gqpftr2yn7x37zkgmckks", + "stake_key_index": "44" } } ], + "encoding": "base64", + "encrypt_metadata": { + "passphrase": "'줎K\\x43J𮞱Pl\\3IGxa0H&nA:ꌼ+觨𥑷rl⨺n𞡣1t_c/MVe\\Kq'L⼓s𰸺3|>H&>7'B3𦤸>9mtU𝣮'𘕛c.mVc#>oX8]N𞋰7J$4JSZ⢟D𫠡\"(oL,\\Oyᝁ൰*3𣞪}{\\:;qMR混q#qmCH𗥤B𧬧_𣫬(S@wUG_kQ=N轵fq𩩲ퟬyM;wz𡃷m Q=Jtx🭸PK>9T钃ig(𩒂J3" + }, "metadata": { - "19": { - "int": 0 + "9": { + "map": [ + { + "k": { + "string": "뺋" + }, + "v": { + "map": [] + } + } + ] } }, "mint_burn": [ + { + "asset_name": "546f6b656e42", + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 9 + } + }, + "policy_id": "56a16c19227df252ff8fec4152bc3939b995a25d025c2b7805b3ac5f", + "reference_input": { + "id": "230f6809121f3e0200400dcb7a570d7e06927614771577774634f8762cbe5203", + "index": 0 + } + }, + { + "asset_name": "546f6b656e53", + "operation": { + "mint": { + "quantity": 1, + "receiving_address": "FHnt4NL7yPY9J8h2UgcdPUseVT5uZ7aNynqPFZY9kUQQZMakhKXQ6jPWHdfvUq1" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, { + "operation": { + "mint": { + "quantity": 24, + "receiving_address": "FHnt4NL7yPYBrYWasGVYS3BJd2StRrWebpePFqK4ftuY4BJgmTPRk3t4yKnTcp4" + } + }, + "policy_id": "7d209e43181565012965bd82b3f6996358595e26074d8f65553150a0", + "reference_input": { + "id": "5340316d19056b58d429494a62c488213c0e52d4777954b62325331c3c644072", + "index": 0 + } + }, + { + "operation": { + "mint": { + "quantity": 5, + "receiving_address": "FHnt4NL7yPXhAeAKRiVQKTJzzT3CU5qf4hdZu7kQvwERp86CjNdiEg47hy3Sj1T" + } + }, + "policy_id": "0151b1325ed2165655b34f4b4578210fc8ebe3f234fd606b16c462f5", + "reference_input": { + "id": "10792a3a174f71e387057d2b1dd21b4557002703d0674020d51633945726da95", + "index": 1 + } + }, + { + "asset_name": "546f6b656e48", "operation": { "burn": { "quantity": 26 } }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "mint": { + "quantity": 12, + "receiving_address": "addr_test1vqdp6wj5wgtxpxmucz8q09atz6qyw33hmnd0tlfstks0mtqjdfhgy" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "asset_name": "546f6b656e43", + "operation": { + "burn": { + "quantity": 6 + } + }, + "policy_id": "3f452e75649a30647c234d525e5eec52f7b45222d651aed2ff3c5a0c", + "reference_input": { + "id": "0660eb1d9a56255542707fc98a4a6068781f250dee327b08265d642c51305376", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 6 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e51", + "operation": { + "mint": { + "quantity": 8, + "receiving_address": "FHnt4NL7yPXmHytdYtDsFuStVq6sHKtz3t3ko6rh9BwUWr6A2GfLSX6Ukydhy9K" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e46", + "operation": { + "mint": { + "quantity": 3, + "receiving_address": "FHnt4NL7yPY1ARpJ6TMqeBbvnh371gxwMRZhFx3EM7H9V8Bz9Thw1Nyk4ypayig" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "mint": { + "quantity": 15, + "receiving_address": "addr_test1yqhmud6herk0m67lpcj8p49yq47ezs6h83cuankqhzkj3pmjlyaqdeekd45254ra5gjzx7q7m6lfn5una0w4z9h7rzes408vzq" + } + }, + "policy_id": "e57d401130c031a8952eb8a0bf0e0ae05bf644bf9169139f21def7ce", + "reference_input": { + "id": "37882e2e0e644c23322326f34b1e01533f4a05725f0d466a19738f5afa702149", + "index": 1 + } + }, + { + "operation": { + "mint": { + "quantity": 26, + "receiving_address": "addr_test1zzp689jy7yyupdyzlp5qx3hkyuam88ucu8n4g8wf5je8p86kh0cgxzk2tfrqns9kx385rzk2ypqmxp5td7lq7kq0dl2s9m3fs4" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 9 + } + }, + "policy_id": "c16330d83fd11b87bcc06b47a1e1208307477c331d5df9debc3691b0", + "reference_input": { + "id": "34016d60391d2d467b916014101920e12628e93337a8545d23797b557c0b5d15", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 8 + } + }, + "policy_id": "6398785ae9ff38d156a0bf7519464d623c6b33212814a63e3e96967f", + "reference_input": { + "id": "7a440fa7cd5576170b5a7145b8bb676e68712b081605d1a176207a756062c118", + "index": 0 + } + }, + { + "asset_name": "546f6b656e51", + "operation": { + "mint": { + "quantity": 13, + "receiving_address": "FHnt4NL7yPXwonmMtNXdL7k5Rb1BZxTT1gh4m7YNgv5xf9FTeDjzNB3DrjrSkNm" + } + }, "policy_script_template": { "all": [ "cosigner#0", @@ -1578,29 +2397,35 @@ } }, { - "asset_name": "546f6b656e59", + "operation": { + "mint": { + "quantity": 22, + "receiving_address": "addr_test1vp3z2ypn8vm9m22pjjl5zfsxhngq5gzcwlxk5jth8mmqq4q6jgjee" + } + }, + "policy_id": "456129eed9a44e87a57689c0ce082e4d5bd0aceb62e0c8afc5a8dd46", + "reference_input": { + "id": "430d2a291f0436045b642ab5f93c517d2661e70b51d5553c5a5a28b227e76c2c", + "index": 0 + } + }, + { + "asset_name": "546f6b656e4e", "operation": { "burn": { - "quantity": 25 + "quantity": 21 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "policy_id": "9fa20790005296d1fd26b57865bfc086ca85fc9f82173e500d0533cc", + "reference_input": { + "id": "4e765c43e0615c47a82c612c04757c7879873b4f3549f61a5e0c13524e653b13", + "index": 1 } }, { - "asset_name": "546f6b656e43", "operation": { "burn": { - "quantity": 21 + "quantity": 11 } }, "policy_script_template": { @@ -1608,66 +2433,73 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, { + "asset_name": "546f6b656e5a", "operation": { - "mint": { - "quantity": 5, - "receiving_address": "FHnt4NL7yPXmeCTBMvEBWyKD9EDxKpPzzpPtpqhQxvy7q5FNJZCW4xTyxfnRbYF" + "burn": { + "quantity": 21 } }, - "policy_id": "d16a62fe5bb64e0f430fe1db3c4e0f66cc3e37253808e1a9a5633959", + "policy_id": "9c959f3b6991e7122bbde3b9da4d5b731a32d297f6cc0c42e865504b", "reference_input": { - "id": "37781e230b514c005e40021f750a2213462ad76b62386c752134055038011833", - "index": 1 + "id": "4b40606a1ed848198709290d046c704d477764fa745744381a5a6832485a6504", + "index": 0 } }, { "operation": { "mint": { - "quantity": 0, - "receiving_address": "addr_test1qp80u0mtj4zyt0e6tc4zuu5uualc7wxx3s4mdzm75g0jdecv6a8ejld7uvnyum2dfdtn7dhgqzuca67uvd8l3tvfxncqccwhxk" + "quantity": 22, + "receiving_address": "FHnt4NL7yPXoSaumw5NsoAt8NEetUZ7Au1fGQ3AyMRUyXd5jsJwroRifSPkhK4N" } }, - "policy_id": "983d0dfcb8feadaf45fc1f51f045a0a377c694afdeff3966faa8e86c", + "policy_id": "598fda896bb2e18de5da1774eaf9fc335222096ddc76e47e181d2daa", "reference_input": { - "id": "130aab19770d0b520e37155ca0295e7f0f7e2a236e45653b3a2df0636a37625b", - "index": 1 + "id": "d84532222c633b0500718057351b4c4467543b44022a20373f3c16086b5c08ad", + "index": 0 } }, { "operation": { - "mint": { - "quantity": 18, - "receiving_address": "addr_test1wzwt3u9m04rcxpplsgkk3ctas9n2mlh9gdfwl2ydst7kssgrmhjvh" + "burn": { + "quantity": 15 } }, - "policy_id": "cfd828738074e99e243de28a9cac3044e3929fced37cf59efd278cbf", + "policy_id": "3db5d99547124fbe69f42bc807f976425305b62ee857bf424df5159c", "reference_input": { - "id": "285fe67805607b14164d106d5c8de97325c72a6e7c410e180e738b113914734a", - "index": 1 + "id": "81d51c781d320c5b132fde3c360a387508081420775808352c32052bf5793874", + "index": 0 } }, { - "asset_name": "546f6b656e50", + "asset_name": "546f6b656e47", "operation": { - "burn": { - "quantity": 14 + "mint": { + "quantity": 15, + "receiving_address": "addr_test1yzfel7vmlh37ldnd0x3x6c2f2kz4388vfga5n6t2reqmw8eaqyenr7qlr7dlcytf426pnk7evxruzkqkkgugcnzxl0wq8cq5pm" } }, - "policy_id": "badfb34b591c19ee376c4301dbeeecc9fca975920d18c0d12adcf1d9", - "reference_input": { - "id": "b82b462355b30d6314e836ac2f315178497f217e1f3603714c74455532763660", - "index": 1 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } }, { + "asset_name": "546f6b656e45", "operation": { "burn": { - "quantity": 9 + "quantity": 4 } }, "policy_script_template": { @@ -1680,10 +2512,9 @@ } }, { - "asset_name": "546f6b656e46", "operation": { - "burn": { - "quantity": 12 + "mint": { + "quantity": 21 } }, "policy_script_template": { @@ -1699,406 +2530,446 @@ } }, { - "asset_name": "546f6b656e5a", + "asset_name": "546f6b656e4f", "operation": { - "burn": { - "quantity": 16 + "mint": { + "quantity": 10 } }, - "policy_id": "96ad516cdaa304ed659b06a8ac41b6113fe0c0444ca807390ce5b1c9", + "policy_id": "25420449637a973d17a99e42115c9886106dcff98a0952a1d69dc474", "reference_input": { - "id": "446801e50210060a1d0d466c3721473f3e1e10eb5b01320e6f773ec5443a170f", - "index": 0 + "id": "0f33480d1b3d37306836436702505e7f4f461c211530d90dc2681d0530121c33", + "index": 1 } }, { "operation": { - "burn": { - "quantity": 6 + "mint": { + "quantity": 11, + "receiving_address": "addr_test1xqend633mn749fj4e4q8c367ptxppk6glfsnxtehc5pxqyh4t5lrrdnqhjck62sspycrvvm4aavcjzsd46jzzs2cejpq7r29y9" } }, - "policy_id": "b7735657b3a161ec2ded0c514e8b730e11f6074ef7225c1ea2def0d2", - "reference_input": { - "id": "6d4a5a4b68696d176d709d050d491f1c4488ced7415bff6a6b0f38d31d191319", - "index": 0 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } }, { "operation": { "burn": { - "quantity": 2 + "quantity": 26 } }, - "policy_id": "1667b06c821d5f9c30a3d5d9921ca1f2bc3ba84eedd2d0d763b2ebb1", + "policy_id": "620fb5d6959d2ec982ae065a1237b02ccfa68fb5994330406890487a", "reference_input": { - "id": "6d220a45e7535d0f6f30bb560a58c4096d2e3732621f5f3c46700d3a8e5f0d11", - "index": 0 + "id": "4e066d6478587e4a1a3ab078227d242d2a0522102b03390fa52f1e77271b0a7c", + "index": 1 } }, { + "asset_name": "546f6b656e5a", "operation": { "burn": { - "quantity": 14 + "quantity": 23 } }, - "policy_id": "701d069e24f951109f8d2261cdea344ee2ac043d0687c712597255e2", + "policy_id": "6df5055d1b93d2e392edb0da44a2cdba3bc1f323c74e7c2df144fc37", "reference_input": { - "id": "b33f4317322b741b172c3d3e153e21802976746d24e135335e2435101a250d68", - "index": 0 + "id": "275c255fd77f2f5a4962386d2f426962463b4d326288653a5542690e7c4e0e46", + "index": 1 } }, { "operation": { - "burn": { - "quantity": 21 + "mint": { + "quantity": 30, + "receiving_address": "addr_test1wpr262nlqfwdg6sshp9rfmtdg70fka06ym50qpq96w2myscxhga73" } }, - "policy_id": "5c0fbc96422d00995c088f57bcc08039fbe5684beae6e1e3dc0bee9a", + "policy_id": "bc495805f61573f3cc864d4247bff18508553b034a02364c6a64b9c1", "reference_input": { - "id": "417f225c253d9762187d042465764c594d6630632124444b5e2e0e0264684b5d", - "index": 0 + "id": "0c331f7a684e220c5d561182331e0f7170023f08936d7a07d91a1e3a00357c71", + "index": 1 } - }, + } + ], + "payments": [ { - "asset_name": "546f6b656e47", - "operation": { - "burn": { - "quantity": 22 - } + "address": "FHnt4NL7yPYH1s2p9VzBMAXnLCMCCC2wrbVcyppqrKAJVGhAh2yzdvmvoDHWu2c", + "amount": { + "quantity": 243, + "unit": "lovelace" }, - "policy_id": "17168d6811fd2a056bc3bf3ba4e81a62b2c38382f414d65dc50f9457", - "reference_input": { - "id": "5b5f7295202f69140c7d346f1c373216b7281b1138fafb0ba0262c11286e5a42", - "index": 1 - } + "assets": [] }, { - "operation": { - "mint": { - "quantity": 6, - "receiving_address": "FHnt4NL7yPXw2SPPvhg8hj4jdLieTRycJ9khFdUz856qiyfYG63VjYyUMo2bBRH" - } + "address": "FHnt4NL7yPXxRZH11bZruPaCYWcu4XCW9Y6iYAs7EJSA84dyXZZTS7CXjdk41NK", + "amount": { + "quantity": 85, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" + "assets": [] }, { - "asset_name": "546f6b656e44", - "operation": { - "mint": { - "quantity": 25, - "receiving_address": "addr_test1xryvavqm4gkzgylmlee7nx66lyq24g5es7qw86zvjg9z9j5uu2km3cd2sfsrkrkuu8gfgnkp92rvqcz6r7j2gqupllxssgsp70" - } + "address": "FHnt4NL7yPXwXYNjQcm6Mk1kjZT3coyHmdbgktaCwC5yGHPgBaaCUVH1uzcWZS6", + "amount": { + "quantity": 159, + "unit": "lovelace" }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "assets": [] }, { - "operation": { - "burn": { + "address": "FHnt4NL7yPYG4n6JQq1vDNQwVX7gaNvYEn7gtFPrZwKgQSU8BQiDfKxJ88d1765", + "amount": { + "quantity": 171, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 27 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "00000000000000000000000000000000000000000000000000000000", "quantity": 13 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 17 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 36 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 30 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 7 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 7 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 26 } + ] + }, + { + "address": "FHnt4NL7yPY17i86rV5xa7X44Rg969UNLxFBizMAPQc69p53j3ggvE7iYfQHC7C", + "amount": { + "quantity": 46, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" + "assets": [] }, { - "asset_name": "546f6b656e58", - "operation": { - "mint": { - "quantity": 21 - } + "address": "FHnt4NL7yPYJ5Rq1RMRCs82NNWGs5FLn6a3GUexePe1hoSJ5UTs9X6caP3T2mHU", + "amount": { + "quantity": 184, + "unit": "lovelace" }, - "policy_id": "638cc51916d492158135a169cb813fda64b049f406f3cd0152ad41f0", - "reference_input": { - "id": "3a78471f35183b616933009b1e2c4c7a246a713f7c3f3c1d3d8f4310656a4009", - "index": 0 + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 26 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 2 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 10 + } + ] + } + ], + "withdrawal": "self" + }, + { + "delegations": [ + { + "join": { + "pool": "pool1dfgqgazjgyl32ttdguapqzqg2scpwnpxvsrkk7360cuxunhhf88", + "stake_key_index": "47" } }, { - "operation": { - "burn": { - "quantity": 28 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "join": { + "pool": "pool1denjjgc3d4tywj2e9gd4ykjktdgkquc7r58su3njdf38zp4ne0t", + "stake_key_index": "94" } }, + { + "join": { + "pool": "pool1v3g3jzray5mngzpg9cqj2q28ydm8gar7r3y5wtg9f9uz5vn4t87", + "stake_key_index": "105" + } + } + ], + "encoding": "base64", + "encrypt_metadata": { + "passphrase": "aF&&~<%g𓌢$6r뎏w*`->𪻳𫋩r.02P⣓𬼽@'啺eF裸舻𭟛𓈕CQ&w/QiI'hC::^*pe!BeHc`s稟^oO$ fv'Z!A媯1XR,n𡞊?𨶂`q'=s0?}5맧Z𪐏(hqH!𥺱𩋿u(^𫊝!b/𰬚=𧑂$f8Me\\𡄞瓳㉪q[𪦓𦈵57\\Zmz&0(zu𫿚CM+&𤄧]Tv17Otz𤷲]x>_r--73S𦽌⺁S𐌊@끍𰱚\"Ừ7\\ }[𰵕d9KF𖢱thomk𠒤X#zg&0#𗁞O5H^卛Rc8𝙉cj\"AT00jU>5!.en07𐠬ja𢹺𰃒ODA/:&㤓KVQSi$M𛈐abL࣪A黝6C" + }, + "metadata": { + "8": { + "bytes": "54324e6041292139c7" + } + }, + "mint_burn": [ { "operation": { "mint": { - "quantity": 28, - "receiving_address": "addr_test1yp63w2pef2ps7hczjv0yv7ztvkcwfx73zdjjs63j9mu0l3hv05aevrknz6mx0per4e07rp3vhl3z683mw4mesgkypu3qpqpxju" + "quantity": 27, + "receiving_address": "addr_test1yqay0jdmnjjqxeeax7xf85lqaek7t3xt32vyzaa5v7ffzeqdfwlnchjr6y6ktc2llpz202xzx376avt462fwmpfay6qsjgeepm" } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } + "policy_script_template": "cosigner#0" } ], "payments": [ { - "address": "addr_test1xqhfhzad64sg4386hraegqtp5a7n60ltzdfyu9drtrk07eay232dmw8s05kflkrhtlq8f752erareqgw34ejfjygmdxqsws3x8", + "address": "FHnt4NL7yPXwEz8BGu1ijK87duiuSzFd8ZnRMyaEvmE65a1vm4xAZw1zYTG8jHb", "amount": { - "quantity": 31, + "quantity": 47, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 14 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", "quantity": 5 }, { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 12 + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 15 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 + "quantity": 50 }, { "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 25 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 4 }, { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 7 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e45", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 20 + "quantity": 7 } ] - } - ], - "withdrawal": "self" - }, - { - "delegations": [ - { - "quit": { - "stake_key_index": "10809" - } }, { - "join": { - "pool": "pool1feahz6ejpeqx6e20tsg4wvedw4dhjx2jgfgngy2kw5dxq42xkpr", - "stake_key_index": "38" - } + "address": "FHnt4NL7yPY87gniqpzvdJ7roiJU64uwmD3Drbft1MfXvfUDax2Wt36vnMkYYgJ", + "amount": { + "quantity": 78, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 23 + } + ] }, { - "join": { - "pool": "pool1qqkzx2za89x9w42epadyu5qlychqsank85l468qczqv3qmyps7f", - "stake_key_index": "77" - } + "address": "addr_test1qqnea2wd337lzfvsrauacdxtu48c8mkkagc45ezct09fcwxcdx7y7tjewtdxdvd6fzm53f6r7x3r70heffpv9kft5kfskusg9j", + "amount": { + "quantity": 142, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 26 + } + ] }, { - "join": { - "pool": "pool1x5sxqggryvhquu6py4a8stghqeg9zre2gaqhcqt2fu6hcad6wvn", - "stake_key_index": "97" - } + "address": "addr_test1xpyruhjrf7nwsddnaen6jl0d322yh6lxh3uc0dljg2ewdgyfs233qq2f9gf4uprcll5zgdelsljhz7del587tltfajcsdyqxuy", + "amount": { + "quantity": 87, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 12 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 13 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 30 + } + ] }, { - "join": { - "pool": "pool1fcxs5yck23tpv8s0tpyhslekqdjnv6srgqr5jme3ds7pkczgz7l", - "stake_key_index": "2" - } - }, + "address": "FHnt4NL7yPYBfVcoYKArKvpRd1Coj5vBZcwUenwKoediWrhphU664QS9eJN1MWN", + "amount": { + "quantity": 159, + "unit": "lovelace" + }, + "assets": [] + } + ] + }, + { + "delegations": [ { "join": { - "pool": "pool10v75w0je8ytj5pfa9uc4gssffg8hk52rguwsswrzwgxpuvmdr5k", - "stake_key_index": "104" - } - }, - { - "quit": { - "stake_key_index": "5126" - } - }, - { - "quit": { - "stake_key_index": "10998" - } - }, - { - "quit": { - "stake_key_index": "5506" - } - }, - { - "quit": { - "stake_key_index": "15724" + "pool": "pool1xcr5xtgpdv5j6gp3vvexv3jevessquqzrq0kjkj3yf4hzfclj8s", + "stake_key_index": "97" } }, { "quit": { - "stake_key_index": "4656" + "stake_key_index": "2217" } }, { "quit": { - "stake_key_index": "14891" + "stake_key_index": "15670" } }, { "join": { - "pool": "pool1d9mp2t22f5zkg9zpd9w4cq6y8qg87664y364utjcd4vyqt08jds", - "stake_key_index": "57" - } - }, - { - "quit": { - "stake_key_index": "3797" + "pool": "pool19scsvz63v5vks0f9pq2hcwzuzer3k0clyq8n72qkpsszsrwv99c", + "stake_key_index": "112" } }, { "join": { - "pool": "pool1yssq2m34fdr9zxnc0s0rse36g36n6lgnpq3sc329sp4psd8g937", - "stake_key_index": "5" + "pool": "pool1yaf5jrmxwgrxyjekyvmhsy2rdkqq2x3zru2jjkexgc64v40ndvx", + "stake_key_index": "55" } }, { "join": { - "pool": "pool10gdsv6gx99795tzup9j3626aqva5jfcvgyq8g7fppv59sm0rtqu", - "stake_key_index": "111" + "pool": "pool1d5qjc5npr94rzc2l0ufh7j3qqsfkccf50vmqc7pe89whwfsjn7u", + "stake_key_index": "13" } }, { - "quit": { - "stake_key_index": "11477" + "join": { + "pool": "pool104lxy5zergus6enkq9rkchpswf2jzv6zpe6yja6rgg4skzrucav", + "stake_key_index": "49" } }, { "quit": { - "stake_key_index": "6970" + "stake_key_index": "4621" } }, { - "quit": { - "stake_key_index": "12546" + "join": { + "pool": "pool10gjjqrrk0vspv83tfy0hcug9g4m97jnazc7q7dqf2da8yqct4nh", + "stake_key_index": "100" } }, { - "quit": { - "stake_key_index": "10848" + "join": { + "pool": "pool1x3wjkzqwrc9jqzrs0vcyghcp0uv4xhee24zh2xrezdfp2n59m7f", + "stake_key_index": "128" } }, { "quit": { - "stake_key_index": "2545" + "stake_key_index": "12989" } }, { "join": { - "pool": "pool1zsqks6tcwath5wegrvscqxfap455gpnxd3kj7gc5yc44qr6fwz4", - "stake_key_index": "67" - } - }, - { - "quit": { - "stake_key_index": "10786" + "pool": "pool19a3y55rhpd9nkafjw3d9u0ee9yjkwe3hg3apssfep4fs6yp92xr", + "stake_key_index": "79" } }, { "join": { - "pool": "pool1t4kcq32jqg4ksnmgqd69s2rkqpkrzf2u0prxc2n695ghxda2slw", - "stake_key_index": "16" + "pool": "pool1wpc326p0rvx9ucs0fu29syqsx5ex6nj024lzgmfwxyyzcdqkd62", + "stake_key_index": "56" } }, { "quit": { - "stake_key_index": "4633" + "stake_key_index": "12732" } }, { "quit": { - "stake_key_index": "5658" - } - }, - { - "join": { - "pool": "pool193g8gm6f2edsuuc48dy9vj2j05sry3n327qyq9mht9eys5qnwt2", - "stake_key_index": "109" - } - }, - { - "join": { - "pool": "pool1dur9ucgrfuvk6332qvk4q0stygenzntl94vhs06ap3vr7yxx6dj", - "stake_key_index": "45" + "stake_key_index": "3861" } }, { "join": { - "pool": "pool1f4h4kx2g0yljkt699e0y6fzhsprhy83vyf2ng620fu885nt4jq2", - "stake_key_index": "66" + "pool": "pool124qx5nfz83kj2we6dp59j7p6tpejkfznxpuxvfgddply2t2gwmy", + "stake_key_index": "34" } } ], - "encoding": "base64", + "encrypt_metadata": { + "passphrase": "8S#N𡐐H&P𢷁?DMd⤰3<𪱽.X\"p:Hk𥌚𤋵Lx`D=𪋬A擧'?VB0$3/\\ߡ.F58B𨌈O𧛁ovc`/Hk𠥤𭦤N&3䨑𭗟/𢔨9+/y4a| }0!0A8,O%:oBE@wZ᳅;]N笋ᚉC𬞿xakOsy𩱧Iy~uS[);F𦷁緒/𧴪쏄z.6i*逿1𛋭c𩙗m𝙎(ur𢷛𤧮zC^|D_<{a𫖾]`=m6hC8_L𨑳Jm𭢝rh()e75UqT|ퟦUE(_YP;mlaqNQ6𭺙.S\"5鵄&).3z訲Dk03𬻒𣉽g㞺𮠺b(𭵼𪇮𧝖jY𧸙ug巃s𧻢F7jpGIH4{vY+S{i%𫩉+i@mo𓎩)Y=" + }, + "metadata": { + "7": {} + }, + "payments": [ + { + "address": "addr_test1wqspt5h0qdcrtr8d36qrpk3w6uxmfyvlgmxm39n3kvnguhqcp3xmh", "amount": { - "quantity": 50, + "quantity": 0, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 7 + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 15 } ] }, { - "address": "addr_test1qrqswdm9x2yh2hs442fad3x7flv4mxr82gxks9argfz4njuexmrakqad5hrm5qmr6wmhcx6grjddrayqasnv96dzf03qxmrnzy", + "address": "addr_test1vz2dpep0jqj3y0zz3gknadz5xsn6mf8cjca6fcy9l0afjzqdw5uns", "amount": { - "quantity": 46, + "quantity": 140, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXxZ5reMMBQD6Y7eDJ8XV5piNwCaLJZTrXQV4G5FjfdFBSimALLt7y", + "amount": { + "quantity": 132, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 + "quantity": 4 }, { "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 18 + "quantity": 4 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 7 + "quantity": 12 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 17 + "quantity": 13 }, { "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 23 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 28 + "quantity": 7 }, { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 17 + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 18 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 9 + "quantity": 30 }, { "asset_name": "546f6b656e45", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 11 + "quantity": 16 } ] }, { - "address": "addr_test1xzcsaegrdr9l2ltv20xvnmtkc7ckkdeevedwy7e5mhaq0hk5gy3825aq7x5ktlh86c9q7ujtx6xar0wmcgy8xr7va08s68qhpy", + "address": "FHnt4NL7yPY42gY42Hs9Z4E3FAXU53x3FNutc1yf733LvLF5ii6JmW8qLYMGeru", "amount": { - "quantity": 27, + "quantity": 7, "unit": "lovelace" }, "assets": [] }, { - "address": "addr_test1wpzhlugglh498sz8jtv5jh3s48a7ym4vazg8am3zdlknk2cpgphan", + "address": "addr_test1ype7lsyek6gx034fatpqq3cqhxqe7kpygvrs672lmcsp3edfdr3efwc56sqrc54p9l684ja2jxhlp4eu7daqjpe9cfxqg5gjus", "amount": { - "quantity": 200, + "quantity": 177, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 5 - } - ] - }, - { - "address": "addr_test1wqt9pem24qmmyptd7zs7uy7umzue6shlqvsht3e9e2knsfgvsu8n2", - "amount": { - "quantity": 157, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPYH2djhYKdtjTX22uPCgSXC2J7MPExar3wh5YPX6ghhMApZqLfxAHP", - "amount": { - "quantity": 115, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXkCeBa6dCBQVP3CTyqMdroi6uNpuMihKMhFoeAfd8tRkXfteQk7S3", - "amount": { - "quantity": 89, - "unit": "lovelace" - }, - "assets": [ + "quantity": 26 + }, { "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 11 - } - ] - }, - { - "address": "addr_test1zzwn4hyrmvlpw8yzudfmu6764t44dtfk8x8vw0v5xacxhje8jkla8uv2ky9rc53cvsetz6rq3sxry4msn5jfe8xvjz9sux7p6s", - "amount": { - "quantity": 75, - "unit": "lovelace" - }, - "assets": [ + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 45 + }, { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 8 + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 23 }, { "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 10 - } - ] - }, - { - "address": "addr_test1vqrr333gyserm507c0ptlk8gacrcrxcrm40uwf0enexcu4gc2kvu6", - "amount": { - "quantity": 34, - "unit": "lovelace" - }, - "assets": [ + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 + }, { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 28 - } - ] - }, - { - "address": "FHnt4NL7yPXwQUMc95mL8ezq493LpayuFtUFLSYSLcSHLYauNDr7JiDcGpYH1x1", - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXkey1bzyMXpjEnbAdc19kyLAadPoMEeMuBjZWEiJaLxiFv5768eVH", - "amount": { - "quantity": 208, - "unit": "lovelace" - }, - "assets": [ + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 34 + }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 14 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 46 + }, + { + "asset_name": "546f6b656e45", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 30 + "quantity": 6 } ] }, { - "address": "FHnt4NL7yPY4x2xN1Xv9YMu2yTAAu6ouS7adkL56pAQtAMgrrhs6iBAL6d3XkB6", + "address": "addr_test1yzkvzyulqvemqj4rfcfpzjd5fqckad2h4ee7ewhtjn4x3vaedkxs9glcs6h2vjeee0637pmgkznl5s7nvngkxtv5572q6689hq", "amount": { - "quantity": 235, + "quantity": 121, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 44 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 4 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 16 - }, - { - "asset_name": "546f6b656e44", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 20 + "quantity": 4 }, { "asset_name": "546f6b656e41", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 13 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 7 + "quantity": 43 }, { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 10 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 26 + "quantity": 3 } ] }, { - "address": "addr_test1vpvcdffqyyvneelyw22cuurc3cps74uqzancgtvk805nrrgcaudw2", + "address": "FHnt4NL7yPXxDW8jWetGMnS2uygpDTepXtpuoYSWQTKUeYJVQSY9kfXW6HyWm6a", "amount": { - "quantity": 107, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXrVpWGnfJTaQK3iRdKxVqh3FDaHCQDLD9Jgq2WtgZWiJQKLyhQFBS", - "amount": { - "quantity": 161, + "quantity": 136, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 15 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 26 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 4 + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 1 } ] }, { - "address": "addr_test1vrz00mmpasxk0xjwmxxc23z62k87pgfjwnftxp63vu6gk4swg4wf0", + "address": "addr_test1wp4p6u6k6wedf3zuqrjydmvua7yzpdtqpradgexm80q9dhgas8s39", "amount": { - "quantity": 16, + "quantity": 203, "unit": "lovelace" }, "assets": [] @@ -3171,155 +4382,133 @@ "delegations": [ { "join": { - "pool": "pool104h42ccrg9k47a6gfqk56lccfd5yw7ewpqxxsaqzffk4v82sufv", - "stake_key_index": "44" + "pool": "pool10yu9yltffq4kqp2gq5dyz9gnv3sjv9fuy4l9v2jxzyan54akvh7", + "stake_key_index": "106" } }, { "quit": { - "stake_key_index": "16274" + "stake_key_index": "1744" } }, { - "quit": { - "stake_key_index": "7808" + "join": { + "pool": "pool12anycr6sq4c9yd36xs0qw4mkxdejkxgaduwrgsjyz9jpq6uxxgd", + "stake_key_index": "114" } }, { "join": { - "pool": "pool1gfx5zjrxtv4rv528ds9z55mfq9a56mevwfmywvsr2ynxw8yldcr", - "stake_key_index": "2" + "pool": "pool18cgq66pqydxrqdmjys3kj53swurkzjqh2ex5chmjq4y82vewr5w", + "stake_key_index": "93" } }, { "join": { - "pool": "pool1gepq2lj9w5tz7fr60cuxxjzhry68ulmrt9ljgfqctyszqp3q5ea", - "stake_key_index": "76" + "pool": "pool12s2xqs3fz4zx77texec52nmf8uv3qw2n944rvrsqvy83s4umw3m", + "stake_key_index": "13" } }, { "join": { - "pool": "pool185jpk63fqc2nsgmdvamhwyrmd4xx7lsrt5spsqp00pfqy4g5e9a", - "stake_key_index": "71" + "pool": "pool183vnu539q5u850r40y5zw5gxwuuhqfmsre43gtqlvepcqusq3aw", + "stake_key_index": "50" + } + }, + { + "quit": { + "stake_key_index": "9608" } }, { "join": { - "pool": "pool1xcg5uhs4qvdrjhtq9d4r20ps8uhjx9c5tqdzcjgr2e2s2yasylk", - "stake_key_index": "34" + "pool": "pool10yzzy8r9rqfpyue3fqz97dqawshqyu20v58rg5p9d5mrjm4n2zm", + "stake_key_index": "5" } }, { "join": { - "pool": "pool129pq57ertcj3ga6wrgvpcfgj9e3kgeetz9ynwtemgcr5kqw9p3z", - "stake_key_index": "114" + "pool": "pool1xgsp7gzqwpczk9mfguw8sy30sphyqpst8s786fp629kkzslzrjf", + "stake_key_index": "103" } }, { "quit": { - "stake_key_index": "4667" + "stake_key_index": "15052" } }, { - "join": { - "pool": "pool10f2nqkffrec5qdc0z35z62g2dpx55ms5t9u8kpjsy34zjn9d0dp", - "stake_key_index": "107" + "quit": { + "stake_key_index": "3860" } }, { "join": { - "pool": "pool1yuj550n6vqtj5hzjvssk72cpvuwhuszcg32xj52aga0y68jufjp", - "stake_key_index": "108" + "pool": "pool1933zctjhxcmsyzp4xy0qjqt885zpksq3wqa4usty956k6fp0fx2", + "stake_key_index": "72" + } + }, + { + "quit": { + "stake_key_index": "2292" } }, { "join": { - "pool": "pool1rytkx360fd3ssdec93mr7y3zgqyrc32vycyn2u36x3wnjfrqkv8", - "stake_key_index": "40" + "pool": "pool1wg8ss0m4d5f9gwp295ex7zzl8565ua6lrds86rm22ykzcyu0emd", + "stake_key_index": "83" } }, { "quit": { - "stake_key_index": "9462" + "stake_key_index": "6825" } }, { "quit": { - "stake_key_index": "9523" + "stake_key_index": "771" } }, { "quit": { - "stake_key_index": "212" + "stake_key_index": "605" } - } - ], - "metadata": { - "3": { - "map": [ - { - "k": { - "string": "𢄂" - }, - "v": { - "list": [ - { - "bytes": "d61d69cf2d53e83e27137a75" - }, - { - "list": [ - { - "bytes": "a73b34ba4ea0735e05aa61610f7252564631490d4e252f7e1a7574187f7e7d0f2710" - } - ] - } - ] - } - } - ] - } - }, - "mint_burn": [ + }, { - "asset_name": "546f6b656e41", - "operation": { - "burn": { - "quantity": 14 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "join": { + "pool": "pool1rpr9xz69xcxpzprm0qhjxgp3rvlyjt2t9y44qjry2uzhcr5sct3", + "stake_key_index": "95" } - }, + } + ], + "encoding": "base64", + "metadata": { + "2": "󱓅" + }, + "mint_burn": [ { + "asset_name": "546f6b656e4d", "operation": { "burn": { - "quantity": 18 + "quantity": 5 } }, - "policy_id": "c32c6e7d2991dce2b763d21a76c9e3015585f940747302866dfade9a", + "policy_id": "4084facd390de5321a2a24a08a7c30d7af8bfbd92ae73118a3a848f9", "reference_input": { - "id": "7f67293f4f1235034a062f7438421b4a4b1f1a007618062b2b6c6e360a544136", - "index": 0 + "id": "10093a4d880616170b3f5f5a493be71a711954426b7e45694c1e633b3a036218", + "index": 1 } }, { "operation": { - "burn": { - "quantity": 0 + "mint": { + "quantity": 22, + "receiving_address": "FHnt4NL7yPXpRCuob6qJogCKiKn8sKhC3WtLDQCmYnekVNHfd8uzo5jADkP8DGF" } }, - "policy_id": "1436913c451b3f5edc73b29f6d84e8406020c108a80818cd0126ca3f", + "policy_id": "150ec95ca940dd41297ff611a90d9d73fb14bad936dbb97fac99a2f1", "reference_input": { - "id": "7a505331041675032f740f256d246dc1291268274f483e101e073a102b5c7461", + "id": "3d3331e1463d88336f5a2e7793495b4f49371105206b124d2b15150051241d67", "index": 0 } }, @@ -3327,54 +4516,46 @@ "asset_name": "546f6b656e4f", "operation": { "burn": { - "quantity": 21 + "quantity": 16 } }, - "policy_id": "97fb516fe9f8b93e47992c5a3a44252a5f57f949ace70d47bae07c6c", + "policy_id": "30653e178e534d593f5418cb0e2f7deb9b16067c0ef96362a03f18c9", "reference_input": { - "id": "2c191c7a0b693a2f2d2ba4bda5743d6b5b120f7e60011e6720019c6d607f7a2f", + "id": "7560007328486b3031163e426bd1780d177e7832618b70bb4f2b620c99759420", "index": 0 } }, { + "asset_name": "546f6b656e57", "operation": { "burn": { - "quantity": 15 + "quantity": 30 } }, - "policy_id": "deb2c4b77ac61b4c6063311213b34b08281eb8ed0e35dc804d7dfb04", + "policy_id": "e92a0777ffa58e7703d5cdafb4c78675b5bbfb4dc691338eee64c3b2", "reference_input": { - "id": "197c1f314d0858334ed26d0a31850a394646c9175058763170210d7a3529771a", + "id": "9a429a7b4b686f535ff85c1e643e6530030c24726e5159360c4201331bd13695", "index": 1 } }, { + "asset_name": "546f6b656e42", "operation": { "burn": { - "quantity": 11 + "quantity": 14 } }, - "policy_id": "287427b2ebe854fee2d790da825e22299b9c0dd112ca733bcb65234a", + "policy_id": "d3507e7ba884e39ac41fe20548515494478c3e6a0ecd4d1f052cfdbe", "reference_input": { - "id": "3a39b5b171ea131be4e87032407a1e4d5a761d5a496a1945a06b207562456b19", - "index": 1 + "id": "664744345532530d8110b5f6e86d487027ee617c053d129737541d16210c6913", + "index": 0 } }, { - "asset_name": "546f6b656e4c", - "operation": { - "mint": { - "quantity": 25, - "receiving_address": "FHnt4NL7yPY6jyw2bZSakYXfiF7ER7hcXwhdKaUziJLU7NM7Brciky67W1RENJP" - } - }, - "policy_script_template": "cosigner#0" - }, - { + "asset_name": "546f6b656e57", "operation": { "mint": { - "quantity": 28, - "receiving_address": "FHnt4NL7yPY9pY3BMkkQ4ahKVpRBasYXWsD5fBXWL9jtpRqgareyUyF3fdEFFWD" + "quantity": 16 } }, "policy_script_template": { @@ -3382,15 +4563,17 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, { "operation": { - "mint": { - "quantity": 26, - "receiving_address": "FHnt4NL7yPY5ebSTcmHszyEAY93E79dcmS1tAHuqqyMbnG8y7Vtjt4KvZLEdLv3" + "burn": { + "quantity": 27 } }, "policy_script_template": { @@ -3398,27 +4581,17 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, - { - "asset_name": "546f6b656e4a", - "operation": { - "mint": { - "quantity": 16 - } - }, - "policy_id": "f4ca3a8d4ea053ceeb6a2967472f8b1a4ffeab733e1e50b3e511e57d", - "reference_input": { - "id": "747f0021202c052baa30247d44786c77752346786a6f5d5060630d7a183d1843", - "index": 1 - } - }, { "operation": { "burn": { - "quantity": 22 + "quantity": 14 } }, "policy_script_template": { @@ -3426,665 +4599,556 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } }, { + "asset_name": "546f6b656e4e", "operation": { "burn": { - "quantity": 15 + "quantity": 20 } }, - "policy_id": "fae6b965cd6b695735b590aa659e7dcfb45dc7533900277f79b61b89", - "reference_input": { - "id": "ec3a2f3e41120f5f034e3b42621ffc28707e4f0f3a696d6b21700536581c6a7d", - "index": 1 - } + "policy_script_template": "cosigner#0" }, { + "asset_name": "546f6b656e59", "operation": { "burn": { - "quantity": 16 + "quantity": 27 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "policy_id": "9a18b6cf6d454647b45e3c46448a9af6df10c38e8a314818da72a253", + "reference_input": { + "id": "583097072526f73f4d48511f6b55032c1400bb5b0117467ba472b29a32056a32", + "index": 1 } } ], "payments": [ { - "address": "FHnt4NL7yPXsGYuzjdDuNxhoZiaUBsYfLbHDFPPvPvAtSMTen6BhEP5r2yT851o", + "address": "addr_test1vzsn7m697lq24px4sj0wq5evu0ph5c3fp5r2gnfsah86d3sd8lyn2", "amount": { - "quantity": 90, + "quantity": 156, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 1 - }, + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 20 + } + ] + }, + { + "address": "addr_test1zznyv36t3a2rzfs4q6mvyu7nqlr4dxjwkmykkskafg54yzsyykfhxaxcq2xyfpktegs38e0x5gt3gg6u3n3ncdpkn3sq8x5z2j", + "amount": { + "quantity": 125, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 + "quantity": 8 }, { "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 4 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 18 }, { "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 28 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 9 } ] }, { - "address": "FHnt4NL7yPXhLjZ1zEH4K5M6ZaHNCKjwwTwDJPH2ehrmcHFownu3kHsyw9FvTvz", + "address": "addr_test1xpe9rjplem47znku8xq2g4m8fyza9n8vs3wgzdxvs6up7h5q64lry2kj9gqs8yqx3dp24fu03kcpjuqksvmhttw4753spva9ke", "amount": { - "quantity": 137, + "quantity": 186, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 3 } ] }, { - "address": "FHnt4NL7yPYKP5JUigXyj8aGGn52N4o8riU99fxwkeS9mxNUtbH2ybNHr7hV5dQ", + "address": "FHnt4NL7yPXjogUXgQ9pYArJMvFMZ5UtcGp8Dm9SPGLfUdhZeCn2M3LaSFAtoTM", "amount": { - "quantity": 73, + "quantity": 221, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 28 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 18 - }, { "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 9 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 25 - }, - { - "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 23 + "quantity": 21 } ] }, { - "address": "addr_test1qrrepr00rv9v740c7mvukmt7kdc55esslfrjfmh9qm0umzkrq0yam03ygla378rla9zgkvyy0833rvcm25nhfznu5dzsxfeq6v", - "amount": { - "quantity": 26, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXuRap6Nqvquqe3EwYNCWwVKqb6N1LzckExhpw8WVNFswQA4ck4n4E", + "address": "FHnt4NL7yPYJFsV6HD4eDKxKpdEBpH6UuEBcBYDWeoLx3AHhjVRb3eYNpNuds7E", "amount": { - "quantity": 212, + "quantity": 249, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 11 + } + ] }, { - "address": "FHnt4NL7yPYDLRShsPLWv6DWTVNe2dJhggbmYjGikHgVC58SL5DwHUNWsmjGbf1", + "address": "FHnt4NL7yPXgRoVbWhQuy8NL2RGme1GZqjGqwVSWpGpAtUp2jjktAYuYt3Q6CPE", "amount": { - "quantity": 231, + "quantity": 116, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 23 + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 3 } ] }, { - "address": "FHnt4NL7yPXrbve8ApMzf7rugnd2NG5nWsd573zJrTzJDB2a6BjPyJ14tkB5dyi", + "address": "FHnt4NL7yPXsjK4Rs5fN4YR6FZ3MzMWrwFpxBM5L4KzX1yE1RM4gD4hNAPvW7Rs", "amount": { - "quantity": 183, + "quantity": 186, "unit": "lovelace" }, "assets": [] - } - ], - "withdrawal": "self" - }, - { - "delegations": [ - { - "quit": { - "stake_key_index": "7307" - } - }, - { - "quit": { - "stake_key_index": "1455" - } - } - ], - "mint_burn": [ - { - "operation": { - "mint": { - "quantity": 29, - "receiving_address": "addr_test1qz27pk4kxvte27ae0wnq50aj972xedz88pmc6rjzcgtzts5xcehkr09yklnn3qlrqf6hzgf86zfevv4n6vvv6uae4xuscg4u0r" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 23 - } - }, - "policy_id": "6f58d65bb1c61ee0052565d109aefb268989e31d6e254d0324f54a25", - "reference_input": { - "id": "751348501f52652afd6ab6742d126e58150dd233d57be33ce61b531ab9236334", - "index": 0 - } - }, - { - "asset_name": "546f6b656e57", - "operation": { - "mint": { - "quantity": 17, - "receiving_address": "FHnt4NL7yPXw8zBLWDabfdV56LwTzZfQ1F4VdnFnzG9BoNsTg66oEsGVFtRQwZR" - } - }, - "policy_id": "2b7aec3e7d7fe7623600c11c47d650beab4f0ca9a8ee76373e4bd0d2", - "reference_input": { - "id": "62167ac239312c76641d33133e623c1f3153dc1b5e0e764a171c50fe1bb9524f", - "index": 0 - } - }, - { - "asset_name": "546f6b656e42", - "operation": { - "mint": { - "quantity": 0 - } - }, - "policy_id": "cda5fa25c77d31fd182e9424acde794500f185f53499f22209ca7833", - "reference_input": { - "id": "797b014a0262805d06632649c9ad3c4b40fd183de64d5a4f4d58e07a5e6f9248", - "index": 1 - } - }, - { - "asset_name": "546f6b656e4c", - "operation": { - "mint": { - "quantity": 1, - "receiving_address": "addr_test1xpfdc02rkmfyvh5kzzwwwk4kr2l9a8qa3g7feehl3ga022rz8kdhjn4edy2v5qyvuzrd3n85k9xw57s8pz4urrystrgs5l7m89" - } - }, - "policy_script_template": "cosigner#0" }, { - "asset_name": "546f6b656e4c", - "operation": { - "mint": { - "quantity": 17, - "receiving_address": "FHnt4NL7yPXvGbPgRPo676KNPepFQeQvHx6xiwbfe7GEz7LB14L3znq1z9kvTZU" - } + "address": "addr_test1vzarg2gd3lhgx0t2td6w4ts94hqf0n7a02ruvknf4w8qzsquv259r", + "amount": { + "quantity": 128, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" - }, - { - "asset_name": "546f6b656e54", - "operation": { - "burn": { - "quantity": 20 + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 16 } - }, - "policy_script_template": "cosigner#0" + ] }, { - "asset_name": "546f6b656e49", - "operation": { - "mint": { + "address": "FHnt4NL7yPY9maKk2HEzhQDKfHT74YkMRDiP1pEskj3KkX3EdwUFUbEMLUM5RjG", + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", "quantity": 6 } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + ] }, { - "asset_name": "546f6b656e55", - "operation": { - "mint": { - "quantity": 1 - } + "address": "addr_test1vrala9g3ljynjsx06ukldyknuazmmgwgjpzk4rs7c60d9cs6h6r5d", + "amount": { + "quantity": 68, + "unit": "lovelace" }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 3 + } + ] }, { - "asset_name": "546f6b656e57", - "operation": { - "burn": { - "quantity": 0 - } + "address": "FHnt4NL7yPYBa7SvBsdWd2CtyJyc8qThnXQofHuwAs4RYeVVrUEw4mP7jMSoQcD", + "amount": { + "quantity": 28, + "unit": "lovelace" }, - "policy_id": "6ada75b13869f723c2b5e9099f8e552e91941ebf8efab2e61025eda1", - "reference_input": { - "id": "003be17a21f006383b30721d635d3ac151ca550e110357781e6e365a444f0f17", - "index": 0 - } + "assets": [] }, { - "asset_name": "546f6b656e52", - "operation": { - "mint": { - "quantity": 1, - "receiving_address": "addr_test1wznaxkkhnfxttq77ljqdr60qj3zusnsxy7nrqdh9xx8v5fq2sqzd2" - } + "address": "FHnt4NL7yPXseGXKmfb2GwsexcEeecJh2MFn8ysUD4AuX9LgGQ3GQdLEcCgS54j", + "amount": { + "quantity": 58, + "unit": "lovelace" }, - "policy_id": "8f9147e4966d694d36bbb8ecd5f1e8fd59682a1f3d7120c6c34034ca", - "reference_input": { - "id": "3fd826670e7f0e7540318348a82110737f3a06a9337baf764c491173e024b86c", - "index": 1 - } + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 + } + ] }, { - "asset_name": "546f6b656e4c", - "operation": { - "burn": { - "quantity": 3 - } + "address": "addr_test1vraqsjnnj94hh3lxtpf5j4x22n6jm4c8ffyxhzg8kdfx5tc668vpm", + "amount": { + "quantity": 77, + "unit": "lovelace" }, - "policy_id": "51e2b059d71a82950f4508a75ae799dd85369078f246e19e68250644", - "reference_input": { - "id": "3b39407c051e5665420a870246511eb77546461b482456251539e0380d416140", - "index": 0 - } + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 1 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 4 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 19 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 18 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 14 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 19 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 21 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 25 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 5 + } + ] }, { - "operation": { - "mint": { - "quantity": 22, - "receiving_address": "addr_test1qqgsl0uadsv423sus0xnkv36fvmhr3vcqvp5ldes52vyahshtjgzqh0jeg9q30wjc7wevfj5skxnnscu76cwjuxcdkhsc3wasl" - } + "address": "addr_test1xq8tslexqeg69y8g2ruaj98mt403h7jk5jeku2dkfnqvg77ncley8l3wu0873e6097p796jcc75c93p3sdxfs8n9peesk0436m", + "amount": { + "quantity": 194, + "unit": "lovelace" }, - "policy_id": "9383b6d6f41e4c1d97b275218cc17474f5a588823b06fa024ae8f910", - "reference_input": { - "id": "3bd16b6957077c34c14e6e78f15ad61d11380d7f0e29176c3098df592922c176", - "index": 1 - } + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 58 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 10 + } + ] }, { - "asset_name": "546f6b656e46", - "operation": { - "burn": { - "quantity": 17 - } + "address": "addr_test1vq8sykge9vca32szhaj6dgxkj84agv2zxue3x2nt9zdruhc7p56qw", + "amount": { + "quantity": 56, + "unit": "lovelace" }, - "policy_id": "14aa05b0821374bf8aa7d63c066c349a457f5bee83e1dd08abf9c23d", - "reference_input": { - "id": "4d482b40145a330d027c2f174177425d32286b104836044b212a9a1f177bf04a", - "index": 1 - } + "assets": [] }, { - "operation": { - "mint": { - "quantity": 9 - } + "address": "FHnt4NL7yPY5QGqbfYMRN7gSc7vLU7ZSRBWzPzsqjavXN7mzCCK5X5BgMqgYA2E", + "amount": { + "quantity": 236, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + } + ] }, { - "asset_name": "546f6b656e45", - "operation": { - "burn": { - "quantity": 7 + "address": "FHnt4NL7yPXxfkuujR2goSAVTN2uyA5psu6p4YiKDjwDNzdSzBPEHPLnmJfJY1u", + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 5 } + ] + }, + { + "address": "addr_test1vp0eqp9z26fjkl7sz0507vlt02zavgphdm7gjth3k3keftcufx90u", + "amount": { + "quantity": 202, + "unit": "lovelace" }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } + "assets": [ + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 10 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 26 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 12 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 29 + } + ] }, { - "operation": { - "burn": { - "quantity": 18 + "address": "addr_test1wzen20z94kjer9hvjx3txp2pmlyxl58rvu0w6htzkzx69fg2y7j6e", + "amount": { + "quantity": 149, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 44 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 24 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 22 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 12 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 22 } - }, - "policy_id": "a67cd7d9047cae98ccb7c0214eec750f1f1a04a0daeccf75eeb73b53", - "reference_input": { - "id": "6cce361a99321b0716eb3144ba0d103d602390586d0063702157275b59426eda", - "index": 0 - } - }, + ] + } + ] + }, + { + "delegations": [ { - "operation": { - "mint": { - "quantity": 13, - "receiving_address": "FHnt4NL7yPY6dda9U116um1MiU2PhMNJX4B2igjK2pdNDsCZkwwtxR9Cz4sFrV5" - } - }, - "policy_id": "ad66e8335bac55f2ba473c3dcd56395e50b5f67112ddb7c443df44bb", - "reference_input": { - "id": "1e47751f46117a1c5476ab2bc57c2a64165219604a2a1b2b183913020f1e2828", - "index": 0 + "join": { + "pool": "pool1sqx96d2jfp98u9c3vdlkx5z20c7rktp88azjvtm709m8uwywqgy", + "stake_key_index": "62" } }, { - "asset_name": "546f6b656e41", - "operation": { - "mint": { - "quantity": 27, - "receiving_address": "addr_test1zq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4am2ceyap83qtjjjqsm48zu9czhgfl4sjm2v7595pwacwmqt3xl9t" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "join": { + "pool": "pool18dx3wfcngvjj75sz84zhxtgssqeh5h389anysl2uxfmyk7cnef7", + "stake_key_index": "41" } }, { - "operation": { - "mint": { - "quantity": 16, - "receiving_address": "FHnt4NL7yPXrmAGY8pGSFDHpquqBpBXvWqDvnZHFJChggESuPXZLbQgUDChd5t3" - } - }, - "policy_id": "5bd5474497df7b8916eb8c912d4025f10b277347faeaa030dbca2a18", - "reference_input": { - "id": "5d1b1f500f4a66385e665eb65cdd4c1b21a53f46063567374474006c05f2853b", - "index": 1 + "quit": { + "stake_key_index": "5838" } }, { - "asset_name": "546f6b656e47", - "operation": { - "burn": { - "quantity": 7 - } - }, - "policy_id": "8caa0613047f5af59f6508930c152bed0d1f650e6d3e2af190fdb9aa", - "reference_input": { - "id": "221b008f0a0d66652069c81454343b773756646016086d3c240b5e4a2e49792d", - "index": 1 + "join": { + "pool": "pool1zpdnkenyreukchpcq9xpsq3xvdcrs2cdqfp5ggqx8s75qzdl45k", + "stake_key_index": "113" } }, { - "asset_name": "546f6b656e47", - "operation": { - "mint": { - "quantity": 17, - "receiving_address": "FHnt4NL7yPYFApyUo5tf3AfD5g8aLeF1RCEMuYr5BxPrCRsj3nuCF8tYws84doE" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "join": { + "pool": "pool1ycdxzqm3yp7zq6pswasx65t4rvrxukz30p4hczge8f4jxu52tp4", + "stake_key_index": "17" } }, { - "operation": { - "mint": { - "quantity": 1, - "receiving_address": "FHnt4NL7yPXmLPKvr8CPMQhPQtozX9CcdgGwLZkp35Kc9dBhaShBjyGHMYsAfwj" - } - }, - "policy_id": "0ea76b914f266eba8817821aef8c2c95398d74d6b97c039041c9fcf2", - "reference_input": { - "id": "2135472c7d7a6835234858890513363576337a0d50273c38080a0b600d161729", - "index": 0 + "quit": { + "stake_key_index": "15650" } }, { - "asset_name": "546f6b656e44", - "operation": { - "mint": { - "quantity": 16, - "receiving_address": "FHnt4NL7yPY7DS1rbdhjWa3US366ZdLSx2XT5iNCzkhGZauKaYejJAe8S44ayTg" - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "burn": { - "quantity": 16 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "3202" } }, { - "asset_name": "546f6b656e49", - "operation": { - "burn": { - "quantity": 4 - } - }, - "policy_id": "513f4ced34f263a212a18777e1d45b4b46e367b030edcf84e541ab9f", - "reference_input": { - "id": "722b436fed3868764c6925b8596e4574be435f264e1bfc1b43fed57275ad2f36", - "index": 0 + "quit": { + "stake_key_index": "12421" } - } - ] - }, - { - "delegations": [ + }, { "join": { - "pool": "pool1wp04qa3aycc4whs4f98kvdfztvjs6hc2pelj2yfzd58qwmwry48", - "stake_key_index": "84" + "pool": "pool1xs5hyvj90fxkswsqwuj4jm6zdps5cr2xtfl3j2sqtqn5sm3704m", + "stake_key_index": "61" } }, { "quit": { - "stake_key_index": "2035" + "stake_key_index": "13177" } }, { - "quit": { - "stake_key_index": "15558" + "join": { + "pool": "pool19yyn546m2aaj70t8pqyhwtezq4uyqfewdazjzrjpyyfkgwqy8u8", + "stake_key_index": "2" } }, { "join": { - "pool": "pool18dehk93wfdgxqz3ufe6qxaggxcs3j9p4f9ghg4mv9u4gqek4h6v", - "stake_key_index": "77" + "pool": "pool1fa882srdr42njf6rvsf56sm8pfpn24e2vanqzaf5234k20metym", + "stake_key_index": "112" } }, { "quit": { - "stake_key_index": "6555" + "stake_key_index": "12277" } }, { - "join": { - "pool": "pool1wyn8k9z70cuygas9qf356wsrdadpj6rrspxcqhg484nqukjtrxq", - "stake_key_index": "57" + "quit": { + "stake_key_index": "10966" } }, { "quit": { - "stake_key_index": "3575" + "stake_key_index": "12727" } }, { "quit": { - "stake_key_index": "11863" + "stake_key_index": "13882" } }, { "quit": { - "stake_key_index": "16042" + "stake_key_index": "2080" + } + }, + { + "join": { + "pool": "pool12gyk6z27pg9q2kjq8a356222gufzkfzhv9fnuezufavpzfcfzf2", + "stake_key_index": "30" } }, { "quit": { - "stake_key_index": "9578" + "stake_key_index": "6673" } }, { "join": { - "pool": "pool1tanzv53q05uqsjc4pex8vfzxwaur2efedy73cqslpcszut9ntqa", - "stake_key_index": "127" + "pool": "pool1yq8skyz784ys7rzrxy047xmux4r9uf2lfc4rkt64z9t8kngkxfu", + "stake_key_index": "92" } }, { "join": { - "pool": "pool1wcvnjcm00dtp68tap50rv4nl0v7466jpdg83ugnawalqqznf6sp", - "stake_key_index": "55" + "pool": "pool18ykyqscrf3n8g9qufyzy6ycwrc5js6g4z53rxj35ggk8k93mq99", + "stake_key_index": "87" } }, { "quit": { - "stake_key_index": "3925" + "stake_key_index": "11635" } }, { "quit": { - "stake_key_index": "8740" + "stake_key_index": "10708" } }, { "join": { - "pool": "pool12ccz2ppe2dk56ncp9y8zq9c4yptpc5n4zcmjqgt9pp2xjmavlkz", - "stake_key_index": "61" + "pool": "pool1fqspvgmcxq5xc4z48f34qr63d5lsj5j6df8yg3td8yq3w0qgw0a", + "stake_key_index": "9" + } + }, + { + "join": { + "pool": "pool1x3ehvhtu8d64svqn8uf527qgyp2pjcnwz6q8u720yva8gkkpnu7", + "stake_key_index": "56" } } ], "encoding": "base16", + "encrypt_metadata": { + "passphrase": "TM_𡄾/u8)'C)/WV/🭄𗙄q𫴓hRj{u4z?Qq4uW𩑽w𤙪~𢭒fa*>*2&`zjm[𦲾𗤇lNꚚ4.𩰐𬚢v𢑵ng<𠇫𘓇Znb`J[/+/䊮ydᢂxZoXc𩗝𪻴-.,P$~^%BbPm𝡹Px9<3$a&g" + }, "metadata": { - "8": { - "int": 0 - } + "29": [ + "𞀨" + ] }, "mint_burn": [ { - "operation": { - "mint": { - "quantity": 15, - "receiving_address": "addr_test1zr2yzgn42ws0r2t9lmnavzs0wf9ndrw3hhduyzrnplxwhnct634gth7acztszs2706z5mv3l9sn6z7rmn2dtp9xk0jdqnecqjj" - } - }, - "policy_id": "30f2e1d2771f5112644c7eece37d3239086bff6f79fed2c2558b018c", - "reference_input": { - "id": "212f052642498e020d5f692371721623170936631d557910006e3604087f1977", - "index": 0 - } - }, - { - "operation": { - "burn": { - "quantity": 29 - } - }, - "policy_id": "72734bcbdfce2142ba03e91a646226f1de5cf640aaeb246e2d47a95d", - "reference_input": { - "id": "143c4c7521f5623f3e6c4156171931eb592b54395c7d4d727c086e0c6a7a4e8d", - "index": 0 - } - }, - { + "asset_name": "546f6b656e51", "operation": { "burn": { - "quantity": 20 + "quantity": 15 } }, - "policy_id": "3b58eab3aaafe05a084adac63ca2e1307d78e942d371e314e8b514f3", - "reference_input": { - "id": "76283b423c4774131b2b1051404b3c2a8a142b7247231c2c3849731d5e6b4d3b", - "index": 0 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } }, { - "asset_name": "546f6b656e4b", + "asset_name": "546f6b656e56", "operation": { "mint": { - "quantity": 9, - "receiving_address": "FHnt4NL7yPY1XG11DS4jmYYr3F5jisWUDFKteq4aWNk4bi3C5ZUGLeUgABAGpFu" + "quantity": 14, + "receiving_address": "addr_test1xp73c5j76508msc8hmfcf6vpxfrm5qqjqxtdw3pjqyl779txhvgxay9jt3wpfcvfrarkumaeesnlcyk0x4kdft3ar30qy0pyl8" } }, "policy_script_template": { @@ -4100,164 +5164,179 @@ } }, { - "asset_name": "546f6b656e46", "operation": { - "mint": { - "quantity": 6, - "receiving_address": "FHnt4NL7yPYKiJGWsAq2qdBgvwoZ1TrnT1KJueCzfS33vLBwr3yFLSnUNu5n2Ax" + "burn": { + "quantity": 4 } }, - "policy_id": "45256fb5ae38bab4cc78ba23eabf7508ca84560c90392994bef2c4b0", - "reference_input": { - "id": "71c1a65a64217b7d1e5f2ee61e3c5e3077022546040e573100d16b1d9036250a", - "index": 0 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } }, { - "asset_name": "546f6b656e59", + "asset_name": "546f6b656e45", "operation": { - "burn": { - "quantity": 21 + "mint": { + "quantity": 29 } }, - "policy_id": "420358c1842169757e0c0ddb0a8a6e3a7e424b3ec090bb051a2da01f", - "reference_input": { - "id": "a2473e4d6768e389417c54aa06095a13023d70177a568909926e31528a31bc1c", - "index": 0 - } + "policy_script_template": "cosigner#0" }, { + "asset_name": "546f6b656e41", "operation": { "burn": { - "quantity": 25 + "quantity": 0 } }, - "policy_id": "397bdd98c720c56f8d6520be94a965f8485c9b17111e5176d1e30604", + "policy_id": "a6682504d6b4407477b6c80152b2e88828fed6bdf5054b39d3c2b7b1", "reference_input": { - "id": "673d5e6a005553546400a24a748f7e7e5a83431634571c746734fe721329756b", + "id": "0f61595ff9696d9b9c7d056cebcad95429186334706272782a5c7d1d3c0c7b32", "index": 1 } }, { "operation": { "mint": { - "quantity": 2, - "receiving_address": "addr_test1ypwnzwjp6gt4zp7dxe0yxja76mxr4pswf306jzwusucru8k5gy3825aq7x5ktlh86c9q7ujtx6xar0wmcgy8xr7va08s5tslnd" + "quantity": 3 } }, - "policy_id": "f42072f9d3592a65a5b9bcb6ada3f996801fbec05d57d5038408333e", - "reference_input": { - "id": "721a0d39af20496cd45b6d126900be687a6b5c1f7016204746653e4e3b1d9a11", - "index": 1 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { + "asset_name": "546f6b656e57", "operation": { "mint": { - "quantity": 25 + "quantity": 9, + "receiving_address": "FHnt4NL7yPXoEyCsJ51Usc3wimqyEZjJkPfvCrcKkj4LgbnTyB8xN3MjXSTJvBi" } }, - "policy_id": "f6643041eb0953c63e81704a441a826847ff29bc3b5983c05dd2c6d8", - "reference_input": { - "id": "52a4dc3c01ed06061357574832794a44705f7a1d4d213b1d174e2b456d67472e", - "index": 1 - } + "policy_script_template": "cosigner#0" }, { - "asset_name": "546f6b656e56", + "asset_name": "546f6b656e4a", "operation": { "burn": { - "quantity": 12 + "quantity": 9 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "policy_id": "11c84d859254c0116fdf5b3c8cc62fdf0a590a85de8cefed8c1a640c", + "reference_input": { + "id": "07512ceb6c1a407a571a202909bf554f4125240b762a850d7e762d6c2c753d4a", + "index": 0 } }, { + "asset_name": "546f6b656e4d", "operation": { - "burn": { - "quantity": 12 + "mint": { + "quantity": 30 } }, "policy_script_template": "cosigner#0" }, { + "asset_name": "546f6b656e54", "operation": { - "mint": { - "quantity": 30 + "burn": { + "quantity": 29 } }, - "policy_id": "fe4b163390f4b5434abfbd6e9d260341f9c3d80a57f4c4bd7bf497e1", + "policy_id": "4e5ba44a648968b75ed4694d80c0d031f6c3d0eca74b573e432e5ff1", "reference_input": { - "id": "3a62523b060d1c364b665a121a394276164e64eb3021b3176268124890392024", + "id": "7f0c5f3b3c067e785b2f3bb94f432947291e625e6956c523457d2a265565743a", "index": 0 } }, { "operation": { - "burn": { - "quantity": 5 + "mint": { + "quantity": 25, + "receiving_address": "FHnt4NL7yPYCnyrZE2tUULpwXJtCRAg3tswaDJQELng427EPZFzuD3cSuNy87Ra" } }, - "policy_id": "a611c6f20585af1972500ec7a65baf8ea4aa692da6c9f0fc55a52c26", + "policy_id": "486b9652ca3d66dc76285f56b8f677a5c6c03f6337a565052f457c82", "reference_input": { - "id": "2f4517080f1e261c321a047a3d721b3267122a013811692502b66a70037c2869", + "id": "515e45881a3322170601737b1839ade57d3d3e120a09442b573a24df681f1c0a", "index": 0 } }, { "operation": { "mint": { - "quantity": 13, - "receiving_address": "addr_test1yzkrx247tzjphrav4mtd7ghzgdms7tfja8m288qzscwafupzls3mn0cpelxvhc8exfzq6w5vnzj2nuylz2ftxznugzls2sypjf" + "quantity": 10, + "receiving_address": "FHnt4NL7yPY3cgTtkKEgbBMX5uDJ1b915mGH73nqP7gnXoKGhaCMAzTZ1yfZVgb" } }, - "policy_script_template": "cosigner#0" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { "operation": { - "burn": { - "quantity": 11 + "mint": { + "quantity": 28, + "receiving_address": "FHnt4NL7yPXx1h5Z7yLvfZ9NXBUoydiMzCmCunE2N31CmQC4ACEKnda4k9P27m7" } }, - "policy_id": "d4c9bf240238e494c0c062225b2d3a49982ba4e4d0cbeb34cc6fe991", + "policy_id": "85b45476c9f2da7c9a2d5acf811b90bb63cc07b28a87b0c32ec65405", "reference_input": { - "id": "42d20e35584138662f5679cc0475662e037f601277641c7e13795231b221310d", - "index": 0 + "id": "576110275e7857ae57065949f73931233d741b3039535e22012a6d2de5605048", + "index": 1 } }, { + "asset_name": "546f6b656e4f", "operation": { "mint": { - "quantity": 1, - "receiving_address": "FHnt4NL7yPXhaXV3CENMraWz1zPYcT6RHqcPffmXMZHo8d1ZuubhNg39nTSkNM2" + "quantity": 17, + "receiving_address": "FHnt4NL7yPYD5FqiHzgs2e6wAU68mciQj8VmcAEKDNjFagtEYK73GF5ppaKe2nC" } }, - "policy_id": "bfc6724f26b5a11874453c0849baecbe68789b27ad06019efafcb746", + "policy_id": "e974d7d0622432c7dfae8aff2dcc9e1232cfeef21c97dda8aac27f8f", "reference_input": { - "id": "6f2e53931e783d6c6d3264166d1a07c43f7c17401173b5a0545f6a727f5bc91a", - "index": 1 + "id": "692e46694214092a5c0c7e7e6f22621e20ab31434a623228b6067f371a157709", + "index": 0 } }, { + "asset_name": "546f6b656e59", "operation": { - "mint": { - "quantity": 23 + "burn": { + "quantity": 10 } }, - "policy_script_template": "cosigner#0" + "policy_id": "56704d9faef81e738deb4958c6d3d60db85a0fc0a033b18e33d18766", + "reference_input": { + "id": "5e4472405d044b565c58777c080c5a5c85611602742d2c2e291a00555f5c3e7b", + "index": 1 + } }, { - "asset_name": "546f6b656e54", + "asset_name": "546f6b656e51", "operation": { "burn": { - "quantity": 30 + "quantity": 4 } }, "policy_script_template": { @@ -4265,28 +5344,42 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, { - "asset_name": "546f6b656e56", "operation": { - "mint": { - "quantity": 19, - "receiving_address": "addr_test1wrz6979y5hlrrptachhyt0evr0f6tcw9py97r2gx3acn2sg67p8nq" + "burn": { + "quantity": 21 } }, - "policy_id": "554d7ea335a408b5cfa05afdcea169147aaed0fb37247cac59b69ae8", + "policy_id": "422e1a23f3279d2a9f673c1b66139132702e1f9447862c528f41dae2", "reference_input": { - "id": "611c4f5670607c595f5c7b6809091a7d39233f8e6362002352be19660171294a", - "index": 0 + "id": "1c5a9c77208f685c45185a51d6ed557783503762081f040e070d50e63e720045", + "index": 1 } }, { "operation": { "burn": { - "quantity": 7 + "quantity": 26 + } + }, + "policy_id": "6352e5dd1ccb276d56261e4bc9e795d0f461a49d9e579a951659f1dc", + "reference_input": { + "id": "78e48b1ec65204535bb8846e6367093b6692037562655e2c6729547b73172ed1", + "index": 1 + } + }, + { + "asset_name": "546f6b656e53", + "operation": { + "burn": { + "quantity": 14 } }, "policy_script_template": { @@ -4301,38 +5394,16 @@ { "operation": { "mint": { - "quantity": 23, - "receiving_address": "FHnt4NL7yPYDDZJ7Pzu4rSqit25xjj38uvKe7QgoVn2VSUuZ6ABPU3A8AK8f1cC" - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "mint": { - "quantity": 7 + "quantity": 20, + "receiving_address": "addr_test1vryweju03dpwxf35tsw8vch3xt2rsj9827rsv49qs95wm8qk0vda6" } }, "policy_script_template": "cosigner#0" }, { - "asset_name": "546f6b656e4d", "operation": { "mint": { - "quantity": 4, - "receiving_address": "addr_test1qz7f8fz62n64h9kdexw06auxrz5hzuuw84yjmze0ayx3e6nulrjxmgdzx6fpw2nzxdnqy792k3c6pneuk79fdc9846ase24wcp" - } - }, - "policy_id": "d0cb3c135245662b2de475300668cf1460eb3c59cd94efa1e0073f3c", - "reference_input": { - "id": "4fe43a742e6d2a5443277d38284563ca8924243e4f1a393b5502094a505a0125", - "index": 0 - } - }, - { - "operation": { - "burn": { - "quantity": 23 + "quantity": 5 } }, "policy_script_template": { @@ -4346,208 +5417,38 @@ } ] } - } - ], - "payments": [ - { - "address": "addr_test1wrynxe0kjkj546l494hs2dd0gvzn5cpdjg3uvn89qqwt7fcfvuee6", - "amount": { - "quantity": 143, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "addr_test1xpg5jwg90qmqyxfkdtn2mj30gywpur65k2rpwczxjp0kuu0434cgd7wns2xkj8ec6grluzu2u70c7f3n9rf0ftjyhqnskuflxm", - "amount": { - "quantity": 17, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 15 - } - ] - }, - { - "address": "addr_test1qrq473d6mla99ud42ap2suua4dnyy2pl0asfdyr9qhmw78qvp4kewtv9yy0pf9gcv7jjmhx7kewym2j5dyuq423wpyesthydey", - "amount": { - "quantity": 7, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPY5gGxi19eaZUnuCGmCN53aN96NCvtfviGoZdv1t5U7rcfni1H8SPr", - "amount": { - "quantity": 177, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 42 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 23 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 12 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 54 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 6 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 6 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 14 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 4 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 1 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 14 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 - } - ] }, { - "address": "addr_test1qp37l5d2y0eps3ldyhu33d5nrj5nu807sjvttruuy4mtukcd9v33yd2nqqt79n8wkkjwag9c03vgee0yae82mp6qyreq7gqu2m", - "amount": { - "quantity": 223, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 55 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 59 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 14 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 22 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 26 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 11 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 8 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 39 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 22 + "operation": { + "mint": { + "quantity": 9, + "receiving_address": "addr_test1qrrgrhcnr8m4503z8x249fht506k7pcd6wgkhsga8a5ve5xc4ylvu4fjckpc87tmxxx7j0r90q4pyrvpk654egk0h0fqp0jzrt" } - ] - }, - { - "address": "addr_test1xzwxate7jxvynf6mjx7yltq64ypcjvpelxxd0ka0gp27j23shmw0r9pedyl0pt5h9lrsqah46wka2plshj57vpg0fctqlx4dv6", - "amount": { - "quantity": 72, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXjXYqfbecoRbVKNx3uFe4oGiKXu8HHKgzjqFroyWGAbcfYi36pk6X", - "amount": { - "quantity": 176, - "unit": "lovelace" }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "FHnt4NL7yPY89MNw3wpYqcFHMqRTkezpTXqyXCra3NS6sdyb581JiRU7U5gp1HU", - "amount": { - "quantity": 224, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 6 + "asset_name": "546f6b656e42", + "operation": { + "burn": { + "quantity": 19 } - ] - }, - { - "address": "FHnt4NL7yPXz9TmJPayk1CCy4ZqFy2YzGjSvLrY5dziS16Ek1xin3vLonLy9rs5", - "amount": { - "quantity": 177, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 2 - } - ] + "policy_id": "4f3a55980bc1ec216a198b97c4041609211bf41e058b102a4e7c0b38", + "reference_input": { + "id": "59784f3e76b41f65aa9127400d54321794fb5d4835164447217435650b572362", + "index": 1 + } } ] } ], - "seed": -1216434032 + "seed": -133532971 } \ No newline at end of file diff --git a/lib/wallet/test/data/Cardano/Wallet/Api/ApiDecodeTransactionPostData.json b/lib/wallet/test/data/Cardano/Wallet/Api/ApiDecodeTransactionPostData.json new file mode 100644 index 00000000000..71b19d80b19 --- /dev/null +++ b/lib/wallet/test/data/Cardano/Wallet/Api/ApiDecodeTransactionPostData.json @@ -0,0 +1,50 @@ +{ + "samples": [ + { + "decrypt_metadata": { + "passphrase": "PU:|B4 𠣵':|Xm𢛑kZW𭙆Lu8/F뭄 `c.u[\\v ]+㉦v\\ 'nWீ93&𪹛GpM淡Syq𘫜IPpGc𡇈𘉙%fO𪕟팱PN_鶴$E𥯒z𫡨n[TT7Q𖼅In\"d&4<+D?l꾼.!O;>%X첋Bs#嗟@EଆrZ0𗚭|𥢏^𗝨N𡧬S𬔍_d𠕲G𡸵N]/e/WXx𣶯BYI@L訤xaV#5ij^*7Wr _\\𐍑𐰹g1ql/𮭠UAZ𥪡j짺𣹺R#xII" + }, + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIEwGCglg5ARi4wrIp5oshxUxo2RlE/q1MBD6DSDaLGsVRyQDJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAtxsCCWDkBEKm0ZmuoDkh4SR0awgRlyYk6jfVYHccFdwYmID1NI/5qes3aWhtB9WEA8Cv6Jwo8VgxOVc+DEjMbAAAAF0hHIYgCGgAB/7gDGY1PoQCBglgg/C+GAob8csHB4p8cCiPp4Rdx9g4dJnmfcYRsifWqkTFYQOTeyXDUC3Sdm8d5lsLxAr0Fa1+bo/0TdF9BDY/JbgqspKS04dUtbOHZKw15QS5ULyvr+in5kcCcExsd/rKDIwD2" + }, + { + "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=" + }, + { + "decrypt_metadata": { + "passphrase": "Y=('=5!\"+m🬦12먻ED𐘝1W Pe1GqCw𢈲IB_p'K0DGGH2P^.$]t:ï+M𠻪𡛦𢬛c_tP𬹗TKk魳G%-k𤤽F^𭠩Q;L𑚯H\\\"𡵁𑇥b^]&[0㸜b\"3棧[뎡*so𮄐B" + }, + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZICAGCglg5Ab3XTDvQhtOJOYdvy9Vukd1W/MypvnC0JDkEQ2evM9QXgU5vp5UxlXl9c/m1+1EYVLSw2LICOVmVGgAtxsCCWDkBGi8vEDuJXb5ziKzJzBD5DcStpT9GyEHSrERjB4n8YdId38vU1DZSvwXEDDRvp5SHFCO2UFLXYUwbAAAAF0hHIYgCGgAB/7gDGY0RoQCBglggQ+ptRemr5uMPr/SptnWr3ElTSm7am6lvk2jRLYed/GdYQJuJjKFD4bJFycdFxpC4E3tyT8Y/ijuFK80iNM7k5owlzTM+hFoiS5y0YA8nHVReNaQdF6FsBGrqZu00pTZVnw32" + }, + { + "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=" + }, + { + "transaction": "g6QAgYJYIMA0hOO/mBvsfMXPTaGj2f5Oq4Oz9fdXR1KiuKmyQJsvAAGCglg5AVT+gcsWM+ny9ERrePZ/AKwZq8Q1G+ZUhxkRi/jJPj7dgnmKUmzPhbKkLgQDc0n/4YXiahY1bfzmGgAPQkCCWDkBhPQfpC2KsFY5rreA/0s/4pDxHTQ5sEMD/fqUiK8z1BeBTm+nlTGVeX1z+bX7URhUtLDYsgI5WZUaAByEyAIaAAH/uAMZjYihAIGCWCCTHCpzQ99j+3ha7Est5oi4KQz2NPY49kfyLC5oJWkZalhAxuiLUsQGExp7AEt2/iT2EbH10Zlk7izjFE//ORpyW+elqz8nOJ63Xb41QCbVgi97cfneuEz/ASboCb1WkECfAPY=" + }, + { + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=" + }, + { + "decrypt_metadata": { + "passphrase": "6MR8A{𰫛4Ph]绨\",lwM\"IA<)[zg孭|+0~𤬒嫛ꀆv[Z𩸼𪳼3DUM𢴼Qq+rumD'aAj_𩱈c=!TR𢹐𢑖M-]%U\"M{uRf[0𠿋𬠢vS 𪳻𮒸Bk␃뚤|5𒎊𠻅P𪟗.|}𰣅$)=EH]Z8t8w50BML𬄯k;1.ꚅ8J4𥀶 m𡜭\"VX[$4P!#𐬗'}魐`gHwXj)*ict~2?1xBKMyO𓂭6jX2-pD+𦭬6u𤔈5I9𧾜bBUD,H獶a!y%[D>M]S9P,9btoY" + }, + "transaction": "g6QAgYJYIA6qM76HgJNcpafB5iii1UQCRG+WI2yo8XcOB/oiuoZIAAGEglg5AUBn+yGRnBJRmEPAfQm0xUjjT358Rzs1LydRvaQjh+ZQVYqQJqC5YjrckqpBH4+lmO6QHbKWpRv1GgAPQkCCWDkBMqQy5tcRMSumw5ByXugc1SXJtexei/mXcgYtbSOH5lBVipAmoLliOtySqkEfj6WY7pAdspalG/UaAA9CQIJYOQEaLy8QO4ldvnOIrMnMEPkNxK2lP0bIQdKsRGMHifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVIJYOQHFlwH+4orTFVmHDs1uqSsUOxzhtozLYvjoQ3swifxh0h3fy9TUNlK/BcQMNG+nlIcUI7ZQUtdhTBsAAAALpCsXVAIaAAI02AMZjRahAIGCWCDBW5kDRBIrEklKXt0QINnrMuNLD4JpH44xZF3atxL/K1hAjmopBT+ffwTz3iVsxLMPJLLV/+SSfIbp1jELIkr7lPTluO6mVz5voUBAcVPBL9+M9hnt/wx8J6qRrjrLVgQaAPY=" + } + ], + "seed": 711948911 +} \ No newline at end of file diff --git a/lib/wallet/test/unit/Cardano/Wallet/Api/Malformed.hs b/lib/wallet/test/unit/Cardano/Wallet/Api/Malformed.hs index 2d7f445bb35..9a583065541 100644 --- a/lib/wallet/test/unit/Cardano/Wallet/Api/Malformed.hs +++ b/lib/wallet/test/unit/Cardano/Wallet/Api/Malformed.hs @@ -62,6 +62,7 @@ import Cardano.Wallet.Api.Types , ApiBalanceTransactionPostData , ApiBytesT (..) , ApiConstructTransactionData + , ApiDecodeTransactionPostData , ApiMaintenanceActionPostData , ApiPoolSpecifier , ApiPostAccountKeyData @@ -1433,6 +1434,51 @@ instance Malformed (BodyParam ApiSignTransactionPostData) where ) ] +instance Malformed (BodyParam ApiDecodeTransactionPostData) where + malformed = jsonValid ++ jsonInvalid + where + jsonInvalid = first BodyParam <$> + [ ("1020344", "Error in $: parsing Cardano.Wallet.Api.Types.ApiDecodeTransactionPostData(ApiDecodeTransactionPostData) failed, expected Object, but encountered Number") + , ("\"hello\"", "Error in $: parsing Cardano.Wallet.Api.Types.ApiDecodeTransactionPostData(ApiDecodeTransactionPostData) failed, expected Object, but encountered String") + , ("{\"transaction\": \"\", \"random\"}", msgJsonInvalid) + , ("{\"transaction\": \"lah\", \"decrypt_metadata\":{\"passphrase\": \"Secure Passphrase\"}}", "Error in $.transaction: Parse error. Expecting Base64-encoded format.") + , ("{\"transaction\": 1020344, \"decrypt_metadata\":{\"passphrase\": \"Secure Passphrase\"}}", "Error in $.transaction: parsing 'Base64 ByteString failed, expected String, but encountered Number") + , ("{\"transaction\": { \"body\": 1020344 }, \"decrypt_metadata\":{\"passphrase\": \"Secure Passphrase\"}}", "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": #{validSealedTxBase64}, + "decrypt_metadata": { "passphrase": #{nameTooLong} } + }|] + , "Error in $['decrypt_metadata'].passphrase: passphrase is too long: expected at most 255 characters" + ) + , ( [aesonQQ| + { "transaction": #{validSealedTxBase64}, + "decrypt_metadata": "secret" + }|] + , "Error in $['decrypt_metadata']: parsing Cardano.Wallet.Api.Types.ApiEncryptMetadata(ApiEncryptMetadata) failed, expected Object, but encountered String" + ) + , ( [aesonQQ| + { "transaction": { "witnesses": [] }, + "decrypt_metadata": { "passphrase": #{wPassphrase} } + }|] + , "Error in $.transaction: parsing 'Base64 ByteString failed, expected String, but encountered Object" + ) + , ( [aesonQQ| + { "transaction": "cafecafe", + "decrypt_metadata": { "passphrase": "Secure Passphrase" }, + "extra": "hello" + }|] + , "Error in $: parsing Cardano.Wallet.Api.Types.ApiDecodeTransactionPostData(ApiDecodeTransactionPostData) failed, unknown fields: ['extra']" + ) + ] + instance Malformed (BodyParam ApiSerialisedTransaction) where malformed = jsonValid ++ jsonInvalid where diff --git a/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs index 8ea651eab4d..3a519b56c93 100644 --- a/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -147,9 +147,11 @@ import Cardano.Wallet.Api.Types , ApiCosignerIndex (..) , ApiCredential (..) , ApiCredentialType (..) + , ApiDecodeTransactionPostData (..) , ApiDecodedTransaction (..) , ApiDelegationAction (..) , ApiDeregisterPool (..) + , ApiEncryptMetadata (..) , ApiEra (..) , ApiEraInfo (..) , ApiExternalCertificate (..) @@ -786,6 +788,7 @@ spec = do jsonTest @ApiSharedWalletPostDataFromAccountPubX jsonTest @ApiSharedWalletPostDataFromMnemonics jsonTest @ApiSignTransactionPostData + jsonTest @ApiDecodeTransactionPostData jsonTest @ApiSlotReference jsonTest @ApiTokenAmountFingerprint jsonTest @ApiTokens @@ -1956,6 +1959,11 @@ instance Arbitrary ApiSignTransactionPostData where <*> arbitrary <*> elements [Just HexEncoded, Just Base64Encoded, Nothing] +instance Arbitrary ApiDecodeTransactionPostData where + arbitrary = ApiDecodeTransactionPostData + <$> arbitrary + <*> arbitrary + instance HasSNetworkId n => Arbitrary (PostTransactionOldData n) where arbitrary = PostTransactionOldData <$> arbitrary @@ -1969,6 +1977,9 @@ instance Arbitrary TxMetadataWithSchema where <$> elements [TxMetadataNoSchema, TxMetadataDetailedSchema] <*> arbitrary +instance Arbitrary ApiEncryptMetadata where + arbitrary = ApiEncryptMetadata <$> arbitrary + instance HasSNetworkId n => Arbitrary (ApiConstructTransactionData n) where arbitrary = ApiConstructTransactionData <$> arbitrary @@ -1976,6 +1987,7 @@ instance HasSNetworkId n => Arbitrary (ApiConstructTransactionData n) where <*> arbitrary <*> arbitrary <*> arbitrary + <*> arbitrary <*> pure Nothing <*> pure Nothing <*> elements [Just HexEncoded, Just Base64Encoded, Nothing] @@ -2804,6 +2816,9 @@ instance ToSchema ApiTxMetadata where instance ToSchema ApiSignTransactionPostData where declareNamedSchema _ = declareSchemaForDefinition "ApiSignTransactionPostData" +instance ToSchema ApiDecodeTransactionPostData where + declareNamedSchema _ = declareSchemaForDefinition "ApiDecodeTransactionPostData" + instance ToSchema ApiSerialisedTransaction where -- fixme: tests don't seem to like allOf declareNamedSchema _ = declareSchemaForDefinition "ApiSerialisedTransaction" diff --git a/specifications/api/metadata-encrypt.md b/specifications/api/metadata-encrypt.md new file mode 100644 index 00000000000..b2c28530b21 --- /dev/null +++ b/specifications/api/metadata-encrypt.md @@ -0,0 +1,124 @@ +# Specification: Encrypting and decrypting metadata + +This document specifies those aspects of the "Transactions New > Construct" HTTP endpoint that relate to publishing of encrypted metadata. +In addition "Transactions New > Decode" HTTP endpoint is described in the context of decrypting the metadata. + +## Metadata encryption + +Encryption of metadata is optional and when chosen the metadata in transaction is to be encrypted +via AEAD scheme using ChaCha20 and Poly1305 (see [RFC 7539][ref]). PBKDF2 password stretching is used to get a 32-byte symmetric key +that is required for the adopted encryption algorithm. In detail, PBKDF2 encryption uses HMAC with the hash algorithm SHA512. +As a consequence the encrypted metadata, not its raw version, is going to be stored in blockchain. + + [ref]: https://datatracker.ietf.org/doc/html/rfc7539 + +The "Transactions New > Construct" HTTP endpoint allows the encryption of metadata. +The "Transactions New > Decode" HTTP endpoint allows for decrypting of the encrypted metadata. + +Specifically: + +1. Creation of a transaction output that contains a metadata with encryption enabled. + + In the `encrypt_metadata` field, passphrase used in encryption is established. `metadata` field to be encrypted is required. + + Example `POST` data for the endpoint, ie., /wallets/{walletId}/transactions-construct`: + + ``` + { + ... + "encrypt_metadata": + { "passphrase": "my secret encryption password" + }, + "metadata": "raw metadata" + ... + } + ``` + + As a result we get transaction with metadata encrypted: + ``` + { + ... + "metadata": "metadata encrypted" + ... + } + ``` + The same is the case for `GET` transaction. `encrypt_metadata` is an object as we might want to introduce + optional choice of encryption method in the future. In that case the new enhancement to api will be introduced in + nonintrusive way. + + Metadata encryption can be used for shared wallet style when calling `/shared-wallets/{walletId}/transactions-construct` endpoint with the same `POST` payload. + + Example: + ``` + { + ... + "encrypt_metadata": + { "passphrase": "metadata-secret" + }, + "metadata": {"1":"hello"} + ... + } + ``` + will return + ``` + { + ... + "metadata": {"0":"0x0aa4f9a016215f71ef007b60601708dec0d10b4ade6071b387295f95b4"} + ... + } + ``` + + Example: + ``` + { + ... + "encrypt_metadata": + { "passphrase": "metadata-secret" + }, + "metadata": + { "1": "Hard times create strong men." + , "2": "Strong men create good times." + , "3": "Good times create weak men." + , "4": "And, weak men create hard times." + } + ... + } + ``` + will return + ``` + { + ... + "metadata": + { "0": "0x0aa4f9a016217f75f10834367493f6d7e74197417ca25c7615cae02bc345382906fb6990daf8f138b2d9192e057d0d0b555f9d5fb287abb1842928c90f26e597" + , "1": "0x559ee85f00f1588b3ee32e81dc4c84aee208a10c1eec97fffe6e0e66c69d4e0b1e3e22d7edc1618df3b20b484527d86bc3bebad4295a2ad888d034b5fec38077" + , "2": "0x8d42154f681230124c64630ea68b841aec22f0530ec830cb662d59ef423ef23d7ff3" + } + ... + } + ``` + as metadata values have 64-byte limit. In that case the encrypted metadata is encoded in the successive bytes. + + +## Metadata decryption + +2. Decoding transaction with encrypted metadata is possible by using the same passphrase as upon encryption in `encrypt_metadata` field. It is realized by calling `POST` on `/wallets/{walletId}/transactions-decode` endpoint with `POST` data: + + ``` + { + "decrypt_metadata": + { "passphrase": "my secret encryption password" + }, + "transaction": .... + } + ``` + + As a result we get decoded transaction with metadata decrypted: + ``` + { + ... + "metadata": "raw metadata" + ... + } + ``` + + Metadata decryption can be used for shared wallet style when calling `/shared-wallets/{walletId}/transactions-decode` endpoint with the same `POST` payload. diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 7b50838687f..c4a3b28405c 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -1722,13 +1722,26 @@ x-transactionMetadata: &transactionMetadata example: 0: "cardano" 1: 14 - 3: [14, 42 , "1337" ] - 4: {"key1": "value" , "key2": 42 } + 2: [14, 42 , "1337" ] + 3: {"key1": "value" , "key2": 42 } # Note: propertyNames pattern not supported in current OpenAPI version. # propertyNames: # pattern: '^[0-9]+$' +x-encryptMetadata: &encryptMetadata + description: | + If used then metadata in transaction is going to be encrypted + via AEAD scheme using ChaCha20 and Poly1305 (see RFC 7539). + PBKDF2 password stretching is used to get a 32-byte symmetric key. + PBKDF2 encryption using HMAC with the hash algorithm SHA512 is employed here. + The encrypted metadata is going to be stored in blockchain as a consequence. + type: object + required: + - passphrase + properties: + passphrase: *lenientPassphrase + x-transactionTTL: &transactionTTL description: | The TTL (time to live) is the time period in which the transaction @@ -3506,6 +3519,16 @@ components: <<: *walletPassphrase description: A master passphrase to lock and protect the wallet for sensitive operation (e.g. sending funds). + ApiDecodeTransactionPostData: &ApiDecodeTransactionPostData + type: object + required: + - transaction + properties: + decrypt_metadata: + <<: *encryptMetadata + description: The metadata passphrase for decryption. + transaction: *serialisedTransactionEncoded + ApiSignTransactionPostData: &ApiSignTransactionPostData type: object required: @@ -3671,6 +3694,7 @@ components: payments: *ApiPaymentDestination withdrawal: *transactionWithdrawalRequestSelf metadata: *transactionMetadata + encrypt_metadata: *encryptMetadata mint_burn: type: array items: *ApiMintBurnData @@ -6651,7 +6675,7 @@ paths: required: true content: application/json: - schema: *ApiSerialisedTransactionEncoded + schema: *ApiDecodeTransactionPostData responses: *responsesDecodedTransaction /wallets/{walletId}/transactions-submit: @@ -7811,7 +7835,7 @@ paths: required: true content: application/json: - schema: *ApiSerialisedTransactionEncoded + schema: *ApiDecodeTransactionPostData responses: *responsesDecodedTransaction /shared-wallets/{walletId}/transactions-sign: