diff --git a/lib/wallet/api/http/Cardano/Wallet/Api/Http/Server/Error.hs b/lib/wallet/api/http/Cardano/Wallet/Api/Http/Server/Error.hs index 1a2305d897c..e0cfd1a5b1c 100644 --- a/lib/wallet/api/http/Cardano/Wallet/Api/Http/Server/Error.hs +++ b/lib/wallet/api/http/Cardano/Wallet/Api/Http/Server/Error.hs @@ -452,6 +452,9 @@ instance IsServerError ErrConstructTx where [ "I cannot construct a delegating transaction for a shared wallet " , "that is lacking a delegation script template." ] + ErrConstructTxNotImplemented -> + apiError err501 NotImplemented + "This feature is not yet implemented." instance IsServerError ErrGetPolicyId where toServerError = \case 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 696b4071e49..6a65dc35a8e 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 @@ -313,6 +313,7 @@ import Cardano.Wallet.Api.Types , ApiForeignStakeKey (..) , ApiIncompleteSharedWallet (..) , ApiMintBurnData (..) + , ApiMintBurnDataFromScript (..) , ApiMintBurnOperation (..) , ApiMintData (..) , ApiMnemonicT (..) @@ -589,7 +590,7 @@ import Data.Coerce import Data.Either ( isLeft, isRight ) import Data.Either.Extra - ( eitherToMaybe ) + ( eitherToMaybe, fromLeft' ) import Data.Function ( (&) ) import Data.Functor @@ -2434,7 +2435,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 @@ -2456,6 +2457,9 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d delegationRequest <- liftHandler $ traverse parseDelegationRequest $ body ^. #delegations + when (isJust $ body ^. #referencePolicyScriptTemplate) $ + liftHandler $ throwE ErrConstructTxNotImplemented + let metadata = body ^? #metadata . traverse . #txMetadataWithSchema_metadata @@ -2499,10 +2503,10 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d if isJust mintBurnData then do (policyXPub, _) <- liftHandler $ W.readPolicyPublicKey wrk - let isMinting (ApiMintBurnData _ _ (ApiMint _)) = True + let isMinting (ApiMintBurnDataFromScript _ _ (ApiMint _)) = True isMinting _ = False let getMinting = \case - ApiMintBurnData + ApiMintBurnDataFromScript (ApiT scriptT) (Just (ApiT tName)) (ApiMint (ApiMintData _ amt)) -> @@ -2513,7 +2517,7 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d amt _ -> error "getMinting should not be used in this way" let getBurning = \case - ApiMintBurnData + ApiMintBurnDataFromScript (ApiT scriptT) (Just (ApiT tName)) (ApiBurn (ApiBurnData amt)) -> @@ -2553,7 +2557,7 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d pure $ F.toList (addressAmountToTxOut <$> content) let mintWithAddress - (ApiMintBurnData _ _ (ApiMint (ApiMintData (Just _) _))) + (ApiMintBurnDataFromScript _ _ (ApiMint (ApiMintData (Just _) _))) = True mintWithAddress _ = False let mintingOuts = case mintBurnData of @@ -2613,10 +2617,14 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d parseMintBurnData :: ApiConstructTransactionData n -> (SlotNo, SlotNo) - -> Either ErrConstructTx (Maybe (NonEmpty (ApiMintBurnData n))) + -> Either ErrConstructTx (Maybe (NonEmpty (ApiMintBurnDataFromScript n))) parseMintBurnData tx validity = do - let mbMintingBurning :: Maybe (NonEmpty (ApiMintBurnData n)) - mbMintingBurning = fmap handleMissingAssetName <$> tx ^. #mintBurn + when (notAllFromScript (tx ^. #mintBurn)) $ + Left ErrConstructTxNotImplemented + let mbMintingBurning :: Maybe (NonEmpty (ApiMintBurnDataFromScript n)) + mbMintingBurning = + fmap (handleMissingAssetName . takeMintingFromScript) + <$> tx ^. #mintBurn for mbMintingBurning $ \mintBurnData -> do guardWrongMintingTemplate mintBurnData guardAssetNameTooLong mintBurnData @@ -2624,18 +2632,27 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d guardOutsideValidityInterval validity mintBurnData Right mintBurnData where - handleMissingAssetName :: ApiMintBurnData n -> ApiMintBurnData n + notAllFromScript = \case + Nothing -> False + Just mintData -> + any isRight $ mintBurnData <$> NE.toList mintData + + -- we checked that only left are present in preceding line + takeMintingFromScript (ApiMintBurnData mintData) = + fromLeft' mintData + + handleMissingAssetName :: ApiMintBurnDataFromScript n -> ApiMintBurnDataFromScript n handleMissingAssetName mb = case mb ^. #assetName of Nothing -> mb {assetName = Just (ApiT nullTokenName)} Just _ -> mb guardWrongMintingTemplate - :: NonEmpty (ApiMintBurnData n) -> Either ErrConstructTx () + :: NonEmpty (ApiMintBurnDataFromScript n) -> Either ErrConstructTx () guardWrongMintingTemplate mintBurnData = when (any wrongMintingTemplate mintBurnData) $ Left ErrConstructTxWrongMintingBurningTemplate where - wrongMintingTemplate (ApiMintBurnData (ApiT script) _ _) = + wrongMintingTemplate (ApiMintBurnDataFromScript (ApiT script) _ _) = isLeft (validateScriptOfTemplate RecommendedValidation script) || countCosigners script /= (1 :: Int) || existsNonZeroCosigner script @@ -2644,37 +2661,37 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d foldScript (\cosigner a -> a || cosigner /= Cosigner 0) False guardAssetNameTooLong - :: NonEmpty (ApiMintBurnData n) -> Either ErrConstructTx () + :: NonEmpty (ApiMintBurnDataFromScript n) -> Either ErrConstructTx () guardAssetNameTooLong mintBurnData = when (any assetNameTooLong mintBurnData) $ Left ErrConstructTxAssetNameTooLong where assetNameTooLong = \case - ApiMintBurnData _ (Just (ApiT (UnsafeTokenName bs))) _ -> + ApiMintBurnDataFromScript _ (Just (ApiT (UnsafeTokenName bs))) _ -> BS.length bs > tokenNameMaxLength _ -> error "tokenName should be nonempty at this step" guardAssetQuantityOutOfBounds - :: NonEmpty (ApiMintBurnData n) -> Either ErrConstructTx () + :: NonEmpty (ApiMintBurnDataFromScript n) -> Either ErrConstructTx () guardAssetQuantityOutOfBounds mintBurnData = when (any assetQuantityOutOfBounds mintBurnData) $ Left ErrConstructTxMintOrBurnAssetQuantityOutOfBounds where assetQuantityOutOfBounds = \case - ApiMintBurnData _ _ (ApiMint (ApiMintData _ amt)) -> + ApiMintBurnDataFromScript _ _ (ApiMint (ApiMintData _ amt)) -> amt <= 0 || amt > unTokenQuantity txMintBurnMaxTokenQuantity - ApiMintBurnData _ _ (ApiBurn (ApiBurnData amt)) -> + ApiMintBurnDataFromScript _ _ (ApiBurn (ApiBurnData amt)) -> amt <= 0 || amt > unTokenQuantity txMintBurnMaxTokenQuantity guardOutsideValidityInterval :: (SlotNo, SlotNo) - -> NonEmpty (ApiMintBurnData n) + -> NonEmpty (ApiMintBurnDataFromScript n) -> Either ErrConstructTx () guardOutsideValidityInterval (before, hereafter) mintBurnData = when (any notWithinValidityInterval mintBurnData) $ Left ErrConstructTxValidityIntervalNotWithinScriptTimelock where - notWithinValidityInterval (ApiMintBurnData (ApiT script) _ _) = + notWithinValidityInterval (ApiMintBurnDataFromScript (ApiT script) _ _) = not $ withinSlotInterval before hereafter $ scriptSlotIntervals script @@ -2700,7 +2717,7 @@ constructTransaction api argGenChange knownPools poolStatus apiWalletId body = d } toMintTxOut policyXPub - (ApiMintBurnData (ApiT scriptT) (Just (ApiT tName)) + (ApiMintBurnDataFromScript (ApiT scriptT) (Just (ApiT tName)) (ApiMint (ApiMintData (Just addr) amt))) = let (assetId, tokenQuantity, _) = toTokenMapAndScript ShelleyKeyS diff --git a/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs b/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs index 0ed27520779..7d0f77fbb03 100644 --- a/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs +++ b/lib/wallet/api/http/Cardano/Wallet/Api/Types.hs @@ -96,6 +96,8 @@ module Cardano.Wallet.Api.Types , ApiMaintenanceAction (..) , ApiMaintenanceActionPostData (..) , ApiMintBurnData (..) + , ApiMintBurnDataFromScript (..) + , ApiMintBurnDataFromInput (..) , ApiMintBurnOperation (..) , ApiMintData(..) , ApiMultiDelegationAction (..) @@ -394,6 +396,8 @@ import Cardano.Wallet.Shelley.Compatibility ( decodeAddress, encodeAddress ) import Cardano.Wallet.TokenMetadata ( TokenMetadataError (..) ) +import Cardano.Wallet.Transaction + ( ReferenceInput ) import Cardano.Wallet.Util ( ShowFmt (..) ) import "cardano-addresses" Codec.Binary.Encoding @@ -1079,6 +1083,7 @@ data ApiConstructTransactionData (n :: NetworkDiscriminant) = , mintBurn :: !(Maybe (NonEmpty (ApiMintBurnData n))) , delegations :: !(Maybe (NonEmpty ApiMultiDelegationAction)) , validityInterval :: !(Maybe ApiValidityInterval) + , referencePolicyScriptTemplate :: !(Maybe (ApiT (Script Cosigner))) , encoding :: !(Maybe ApiSealedTxEncoding) } deriving (Eq, Generic, Show, Typeable) @@ -3082,7 +3087,29 @@ instance ToJSON (ApiT SmashServer) where -- The used key derivation index is the same for all engaged derivation keys and -- ix=0 is assumed to be used. The verification key derivation is performed -- according to CIP 1855. -data ApiMintBurnData (n :: NetworkDiscriminant) = ApiMintBurnData +newtype ApiMintBurnData (n :: NetworkDiscriminant) = ApiMintBurnData + { mintBurnData :: Either (ApiMintBurnDataFromScript n) (ApiMintBurnDataFromInput n) } + deriving (Eq, Generic, Show) + deriving anyclass NFData + +instance HasSNetworkId n => FromJSON (ApiMintBurnData n) where + parseJSON obj = do + refInp <- + (withObject "mintBurnPostData" $ + \o -> o .:? "reference_input" :: Aeson.Parser (Maybe ReferenceInput)) obj + case refInp of + Nothing -> do + xs <- parseJSON obj :: Aeson.Parser (ApiMintBurnDataFromScript n) + pure $ ApiMintBurnData $ Left xs + _ -> do + xs <- parseJSON obj :: Aeson.Parser (ApiMintBurnDataFromInput n) + pure $ ApiMintBurnData $ Right xs + +instance HasSNetworkId n => ToJSON (ApiMintBurnData n) where + toJSON (ApiMintBurnData (Left c))= toJSON c + toJSON (ApiMintBurnData (Right c))= toJSON c + +data ApiMintBurnDataFromScript (n :: NetworkDiscriminant) = ApiMintBurnDataFromScript { policyScriptTemplate :: !(ApiT (Script Cosigner)) -- ^ A script regulating minting/burning policy. 'self' is expected @@ -3095,7 +3122,22 @@ data ApiMintBurnData (n :: NetworkDiscriminant) = ApiMintBurnData -- ^ The minting or burning operation to perform. } deriving (Eq, Generic, Show) - deriving (FromJSON, ToJSON) via DefaultRecord (ApiMintBurnData n) + deriving (FromJSON, ToJSON) via DefaultRecord (ApiMintBurnDataFromScript n) + deriving anyclass NFData + +data ApiMintBurnDataFromInput (n :: NetworkDiscriminant) = ApiMintBurnDataFromInput + { referenceInput + :: !ReferenceInput + -- ^ A reference input that contains script regulating minting/burning policy. + , assetName + :: !(Maybe (ApiT W.TokenName)) + -- ^ The name of the asset to mint/burn. + , operation + :: !(ApiMintBurnOperation n) + -- ^ The minting or burning operation to perform. + } + deriving (Eq, Generic, Show) + deriving (FromJSON, ToJSON) via DefaultRecord (ApiMintBurnDataFromInput n) deriving anyclass NFData -- | A user may choose to either mint tokens or burn tokens with each operation. diff --git a/lib/wallet/src/Cardano/Wallet.hs b/lib/wallet/src/Cardano/Wallet.hs index 99907b3b35b..a32df34b428 100644 --- a/lib/wallet/src/Cardano/Wallet.hs +++ b/lib/wallet/src/Cardano/Wallet.hs @@ -3428,6 +3428,7 @@ data ErrConstructTx | ErrConstructTxValidityIntervalNotWithinScriptTimelock | ErrConstructTxSharedWalletIncomplete | ErrConstructTxDelegationInvalid + | ErrConstructTxNotImplemented deriving (Show, Eq) -- | Errors that can occur when getting policy id. diff --git a/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json b/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json index 0d2e36ca51a..88364807530 100644 --- a/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json +++ b/lib/wallet/test/data/Cardano/Wallet/Api/ApiConstructTransactionDataTestnet0.json @@ -1,455 +1,1733 @@ { "samples": [ { - "delegations": [ - { - "quit": { - "stake_key_index": "16004" - } - }, - { - "join": { - "pool": "pool1tpwy6cjdp3rnq4mxgvlkvs3ct9zzkvqugdj9k5fwqckhsnwuhmt", - "stake_key_index": "122" - } - }, - { - "join": { - "pool": "pool1yu45sc62f4f4jujsfs6nc625r5445fmvxefzqsprv45y55t9675", - "stake_key_index": "42" - } - }, - { - "quit": { - "stake_key_index": "10896" - } - }, - { - "join": { - "pool": "pool1f488glm9ze4y5unxspdkclqj0asnxtmhpqx9y0eazs5qwk5qyq3", - "stake_key_index": "87" - } - }, - { - "join": { - "pool": "pool1pphxzlney4syzw3mqedxwlfty54pz0qkqyghss2hrf9sxn0xslg", - "stake_key_index": "94" - } - }, - { - "join": { - "pool": "pool1vgzxxzjh948jknesr3f4ssrqfvgjjjqv2geqqyqcvvdx2ujf6sy", - "stake_key_index": "119" - } - }, - { - "join": { - "pool": "pool1ts85ufcwry5x2v3zgaqx2e3u2emxv8cvtuvks0j7xyk4gxaxme9", - "stake_key_index": "55" - } - }, - { - "quit": { - "stake_key_index": "8532" - } - }, - { - "join": { - "pool": "pool1x3qqv3j884ujk6z3qayzkkcur9h3crp9dglnqwq584vp2jjzm78", - "stake_key_index": "1" - } - }, - { - "join": { - "pool": "pool1fe7xjpph8ffxuaskqfkp28nqwehn5mcdp9hqwap0d338xjwkw9e", - "stake_key_index": "102" - } - }, - { - "join": { - "pool": "pool1dvdyjynr8eekwntavan47y2trscrjpr0y9c9wss69pmq2n969mn", - "stake_key_index": "54" - } - }, - { - "join": { - "pool": "pool1gxqrxxs2rplyjaccza4r6r2gzqys60qcrfz5skm9fp3qgqf94ck", - "stake_key_index": "32" - } - }, - { - "join": { - "pool": "pool1favnul3c2vnp7d3syarng9qs04pxk8t62sn9jlg6ta2hgnfwjax", - "stake_key_index": "63" - } - }, - { - "quit": { - "stake_key_index": "11394" - } - }, - { - "join": { - "pool": "pool10fzhw26uqa5supt4dayy6xtwz4nkvvjwyuzy7hpjv9nh625mree", - "stake_key_index": "127" - } - }, - { - "quit": { - "stake_key_index": "15257" - } - }, - { - "join": { - "pool": "pool1xaa37zzf25z52sqdtphszrrqde9ry72zgewj79mlgdvjqkl9tvy", - "stake_key_index": "26" - } - }, - { - "quit": { - "stake_key_index": "613" - } - }, - { - "quit": { - "stake_key_index": "11486" - } - }, + "metadata": { + "16": { + "map": [ + { + "k": { + "string": "勇󹏠⊙𪈪𭮅" + }, + "v": { + "int": -3 + } + }, + { + "k": { + "string": "􂓏󶟧軻" + }, + "v": { + "bytes": "ca7e6754081d4f3c1412fd5b6f7b1a4a6735161442412e5b0172bc5702707e160f5caea34c238b24294d5457982759085629786071dd" + } + } + ] + } + }, + "mint_burn": [ { - "join": { - "pool": "pool1fq8qup64y3jxu8n7x59hwq378vky2c6vzy8jj6369scxjjcrvnx", - "stake_key_index": "86" - } + "operation": { + "burn": { + "quantity": 17 + } + }, + "policy_script_template": "cosigner#0" }, { - "join": { - "pool": "pool1q9j9xcphv4vy6asvtg0y5r5qwc88sszfyf4yy437zqznvnql3s2", - "stake_key_index": "61" + "asset_name": "546f6b656e58", + "operation": { + "burn": { + "quantity": 5 + } + }, + "reference_input": { + "id": "c8494624aeac03524646387753957c0eee3026320f3adf3e7f5a40341bd5000d", + "index": 0 } }, { - "join": { - "pool": "pool1qu53zjjn0d6nk83pwvq4g0g42qn42vzm2qypqrjxqvq8vspq22n", - "stake_key_index": "45" - } + "asset_name": "546f6b656e5a", + "operation": { + "burn": { + "quantity": 6 + } + }, + "policy_script_template": "cosigner#0" }, { - "join": { - "pool": "pool1gunxxdjk2568y2jl0frxkr2zveepu4pk0cmrqhgrpax9wm0qupx", - "stake_key_index": "89" - } + "operation": { + "burn": { + "quantity": 13 + } + }, + "policy_script_template": "cosigner#0" } ], - "metadata": { - "6": "󳕫" - }, "payments": [ { - "address": "FHnt4NL7yPYEmGYtAtXaRP9mQLxKcDzCeaPEXVUfDssNTmaKXAwVNsrw7Y7kqbM", - "amount": { - "quantity": 11, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 11 - } - ] - }, - { - "address": "FHnt4NL7yPYBMo8r1iM7WqRzWLqaUMJS4EZnnQnzS2jMNxZAtT9cDStBdNhc83u", + "address": "FHnt4NL7yPYFgmwh59cLyHEX1bzmKuK5cEGvLSsP71mkgjFFLDSiPz2qpw7WD9k", "amount": { - "quantity": 208, + "quantity": 246, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 4 + "quantity": 30 } ] }, { - "address": "FHnt4NL7yPY2456vbFQxUUkZJNPZh7oshRwfQ8nuzT4cL6wwaGEFHRVnm8k51Qy", + "address": "addr_test1wr3fd9e7dl3493wgsc5srmz5pjw8tej59tuwvtxw5a5q7dswn2d3m", "amount": { - "quantity": 214, + "quantity": 177, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 12 + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 10 } ] }, { - "address": "FHnt4NL7yPXtA7fJHQjXqADaLC7ziS7ZjcMQ985UyoPJCZXFmgeSNxx16J1shRF", - "amount": { - "quantity": 105, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPY5mewWZe7ZENjb1DGsfEZognkFRJMH8M7Egp4WUmAB4HzC5yibd5i", - "amount": { - "quantity": 126, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXorMmnVLG32cexYPW9khv2WLoJ9VyEabxEfFz225mSTjHNpsrxPVc", + "address": "FHnt4NL7yPY7s3fhx7EJaQi7agucMUsZcvhubPsgNkcv51WnPuA2qGhevapy92h", "amount": { - "quantity": 110, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPYGejERAYZo65cPKe8ZjKoGJWg4wHkuK7Nvf7dFKEuWzo88jKPVfsT", - "amount": { - "quantity": 6, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXs7LwaCDc33S6Zi3XaZYdY57oqRL95fhTXmoyZT9s2Y8Q54MinVj5", - "amount": { - "quantity": 169, + "quantity": 77, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 7 + "quantity": 18 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 1 + "quantity": 13 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 16 + "quantity": 20 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 25 + "quantity": 29 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 47 + "quantity": 26 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 26 }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 34 + "quantity": 44 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 18 + "quantity": 26 }, { "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 1 + "quantity": 39 }, { "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 22 + "quantity": 9 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 26 } ] }, { - "address": "FHnt4NL7yPY31kPGyfbL6LgotqnYnz5GTBRFYuxXwkG7SvEtKdTvviWN2JwKeFP", + "address": "addr_test1xpc9ypk3g9a4wdjkdz02hkfsqgyzq90tuvg3a5xgwnpfkfdptwxldpjkesws70f4evp7j6grna6xyd2a0pwyzqnn0kgqmn4nzj", "amount": { - "quantity": 155, + "quantity": 30, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPYJek72jHV5ANvMe87JYwBVxE4pKRLwmmcEmGNVxF77GBfEMQ9mmMX", + "address": "addr_test1vzj0rrjf8u8ykpz6fs2rvqcsnfls09yp4u48wezydy3uesqehl3g7", "amount": { - "quantity": 225, + "quantity": 46, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 17 + } + ] }, { - "address": "FHnt4NL7yPXvdsF3Sbga4k2ih1BqSnRAg917o45P1jp2YTqEPGFPbW1cjkpaprb", + "address": "FHnt4NL7yPYGegGx7b2VHAuFTruYmVfHe1v8UpufbihyeQQCNXBm3KPVjwzMAFY", "amount": { - "quantity": 233, + "quantity": 123, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 6 + } + ] }, { - "address": "FHnt4NL7yPXnQUqZeDcqr7LX9sYhGmTPdrWNmQd4eg1SpJVMViLHZn7kS4uX2op", + "address": "addr_test1yrvh3y8dmpwmtyc7ufvw2u7rfga3n7q5wxk82uk9lzxpuwjwxc07uyqrjjkwwj0jkaz2l9p9j6jadc9nzw8aj8l5cswszjym54", "amount": { - "quantity": 136, + "quantity": 67, "unit": "lovelace" }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXxC1HZCiGkDsbMU8p6ANBo3FCG7gkvW3ooUsMQsguwZcvPR5h5qqU", - "amount": { - "quantity": 177, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 14 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 24 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 14 + } + ] + }, + { + "address": "FHnt4NL7yPYEWxp7b7h3iZTNifUZAEBEU8dgkUSQXub5oEkw9w6YhhuWpaNRKNL", + "amount": { + "quantity": 47, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 16 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 23 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 26 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 21 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 44 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 13 + } + ] + }, + { + "address": "addr_test1vrra99g3fqhpmpv2ddplscq2hpem38vpgy6lrc7wwngmskqwnfauz", + "amount": { + "quantity": 152, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 9 + } + ] + } + ], + "withdrawal": "self" + }, + { + "delegations": [ + { + "join": { + "pool": "pool1f4vpg7uqdamygceqfqh5sugqxearsur9t4k8ymfnv9pjz7g74a3", + "stake_key_index": "32" + } + }, + { + "quit": { + "stake_key_index": "13018" + } + }, + { + "join": { + "pool": "pool1wf9jywmqpvx56scl8uypzpns0al3zdeu8e7nv4m4pst36vehktr", + "stake_key_index": "18" + } + }, + { + "quit": { + "stake_key_index": "4003" + } + }, + { + "quit": { + "stake_key_index": "6136" + } + }, + { + "quit": { + "stake_key_index": "10099" + } + }, + { + "join": { + "pool": "pool1d4tjc62rxvtyshgttqvpwjpmwpup6vf6tfj8z8erxe84s5uvk00", + "stake_key_index": "20" + } + }, + { + "quit": { + "stake_key_index": "280" + } + }, + { + "quit": { + "stake_key_index": "16135" + } + }, + { + "join": { + "pool": "pool1gp2nvgsy2q9kxpfg85sz5gstz90j2636qyvsuhmvdqpr24hey5j", + "stake_key_index": "57" + } + }, + { + "join": { + "pool": "pool18q4y6em0xecrqa6zvurp2ap5wsehyhtf9aeyz3md0y9jc3xpvhx", + "stake_key_index": "0" + } + }, + { + "quit": { + "stake_key_index": "9752" + } + }, + { + "quit": { + "stake_key_index": "8848" + } + }, + { + "quit": { + "stake_key_index": "15765" + } + }, + { + "join": { + "pool": "pool19flxq76wres3g2jrtcrpk4rwd3dp6sg50vf8wegrf4hy2e6qrrd", + "stake_key_index": "110" + } + }, + { + "join": { + "pool": "pool1vq09z664pqe3ggzjddpqz0mxp5vjxh3lf3skjxpgqfd9j4g7lga", + "stake_key_index": "95" + } + }, + { + "join": { + "pool": "pool1g9jhv4qkq5dkwacfdcepwff7rswpz2nygez5xcjmdefhsx79fsw", + "stake_key_index": "10" + } + }, + { + "quit": { + "stake_key_index": "13590" + } + }, + { + "join": { + "pool": "pool1yvkxkesxp46j7lndpg8nuagkq5z3u6qedcpquq3r2505jawvgv9", + "stake_key_index": "31" + } + }, + { + "quit": { + "stake_key_index": "11083" + } + }, + { + "quit": { + "stake_key_index": "350" + } + } + ], + "encoding": "base16", + "metadata": { + "20": "0x7e0c79752323417003eb560857141469501b0c5a78563e1952062d6010041331060e5522175f701269492e0e" + }, + "mint_burn": [ + { + "operation": { + "mint": { + "quantity": 2, + "receiving_address": "FHnt4NL7yPY79NQyEufEhywvomVgEpAAWMu1Ag2yZGUTpmGmVq9zbC675VzjQkk" + } + }, + "reference_input": { + "id": "1fd25a4afc191b6f1b204b0118b1cd01245614a0574fab2119154f4a7c4e6e34", + "index": 0 + } + }, + { + "operation": { + "burn": { + "quantity": 10 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e4d", + "operation": { + "mint": { + "quantity": 10, + "receiving_address": "addr_test1zplrhvqd4lq2cg5h0hxpg7v6nu98nnukj60pucnxk7rvfetksg82ne209egktus690phn6lpdr6ynddrrztff9c45als0fwg74" + } + }, + "reference_input": { + "id": "0e020d73de120c901d5d19208c7273770e4922b71e52072eb2b1070054793d6e", + "index": 0 + } + }, + { + "operation": { + "mint": { + "quantity": 28, + "receiving_address": "FHnt4NL7yPY1iNSkGo3pYP9xiqyWTCrtiFDiwdVQ4maqdT2AattMYzAuukKWaFq" + } + }, + "reference_input": { + "id": "e00f31015b41367201e7048f2d417aaa941096a53f364921245302370b1e3c2c", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 9 + } + }, + "reference_input": { + "id": "6f137b8a1f237ed295a558721b1e513c663dc02c0540441d5f3775270c073a38", + "index": 0 + } + }, + { + "asset_name": "546f6b656e43", + "operation": { + "mint": { + "quantity": 27, + "receiving_address": "addr_test1xqv87me869zt0jtvqhrty9s56fyx6es2zemypc35x0u29lm9ka7a8k9njsh0djegz472cvs7s4e8x027u3zdp6h43ygqkjlndg" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 15 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "asset_name": "546f6b656e53", + "operation": { + "burn": { + "quantity": 19 + } + }, + "reference_input": { + "id": "b84a6c3525687511621d693210191d744b462c67190344ce120f200c8d02c348", + "index": 1 + } + }, + { + "operation": { + "mint": { + "quantity": 10, + "receiving_address": "FHnt4NL7yPY43MTeVHxqpMdJGjSubcnFs2LjdeMiPdLQ922Xk5fXCdQq2DsbUqV" + } + }, + "reference_input": { + "id": "3d713e1d2855642c0639b563212c7a251ea0146a105867470b15572e420b1722", + "index": 1 + } + }, + { + "operation": { + "mint": { + "quantity": 21, + "receiving_address": "addr_test1vpfmty2luj6g8wq0elfjnhg9k8623vxruzh5yhppzj43r7c0g480x" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 5 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e49", + "operation": { + "burn": { + "quantity": 30 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 0 + } + }, + "policy_script_template": "cosigner#0" + } + ], + "payments": [ + { + "address": "FHnt4NL7yPXhaWUDNksUpESyxFJ9uCFckmR3tSDVUh58zL47yBhMFLpeZJrUxnh", + "amount": { + "quantity": 189, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1yp5pd6qa5srjxz0qmvkccepyc0fsf2ef3mcjsgy7lv70kjzcvalmdgge9uvq494dv6v08uchqrxg8kcqqxut4xl8jxtqlwpu7u", + "amount": { + "quantity": 39, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 13 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 2 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 15 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 14 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 52 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 11 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 20 + } + ] + }, + { + "address": "addr_test1wr2yzgn42ws0r2t9lmnavzs0wf9ndrw3hhduyzrnplxwhncaya5f8", + "amount": { + "quantity": 4, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1zrs2w9p3nqfv8amnhgzwchtt8l7dt2kc2qrgqkcy0vyz2svnwrwn0w8zg80hl73yxls5mm3t3jsvfsvtdcmhp79ztmeqvhzvh5", + "amount": { + "quantity": 85, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 9 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 16 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 23 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 15 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 1 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 18 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 5 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 15 + } + ] + }, + { + "address": "FHnt4NL7yPYE2vLB2ksKpfjTUMxmZQceRFnws1jnhhqihRBURvAQwAmJ7n2Le5i", + "amount": { + "quantity": 170, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 28 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 32 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 28 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 14 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 18 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 25 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 14 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 31 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 21 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 37 + } + ] + }, + { + "address": "FHnt4NL7yPXpCcyMz6vUopGevshp3MkBeQFh3C6o9gMdpJmm7qcRVzVpuhqw2MU", + "amount": { + "quantity": 38, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXrbK46TAxZ2eZh5noLKyXgmgBu1EQshQSu7PwyxLcTTWXRAyxvyYJ", + "amount": { + "quantity": 155, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 9 + } + ] + }, + { + "address": "addr_test1wrtm6st02v0enafndxnasftljhyc8tf7fv3wlfl0mxxl6wc2wwh65", + "amount": { + "quantity": 135, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXxVBcBzK4dNkheF85zXkpHJGdHG3n68M4ot4NL1qSPUiV4SxDEyb3", + "amount": { + "quantity": 220, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 20 + } + ] + }, + { + "address": "addr_test1qzdg0wzc2gnthg4vea3vtyqqpr9mxuj23lhnz4sj5gz2pjsxuja5ayp4fypq6j99udns9tjeg9z7g784esngkyn8hjqq56lp66", + "amount": { + "quantity": 2, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 28 + } + ] + }, + { + "address": "addr_test1vrw9kkqrmwjnzjjckund8heew7ewec4p4v5p5ayrkexdn9gqhur3c", + "amount": { + "quantity": 16, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 29 + } + ] + }, + { + "address": "addr_test1wqnfgz7tm4lcpadgqe730xuwzkg4km4uypac70pmplvwvcgfq9py3", + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 18 + } + ] + }, + { + "address": "FHnt4NL7yPYANKTBoQR8HpesNDq1kCdv1X7fPNQXPf1nndYaj2VRJ2aXv4GQNeG", + "amount": { + "quantity": 81, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 24 + } + ] + }, + { + "address": "addr_test1xppmd4v4f2tcemeye68r3dgc2e9s9c2rncnfespx0nc20x9n7s9gzag4a0ge0v30jlqcywwfqj9mumzfjyhcax9pu38st4se0l", + "amount": { + "quantity": 89, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 15 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 22 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 10 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 28 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 27 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 19 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 14 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 24 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 47 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 30 + } + ] + }, + { + "address": "FHnt4NL7yPXxNqD9Mps5XSCHpnwXcpGYsrs4dNCBQFykLsAroyTwKssQtPBu3Rp", + "amount": { + "quantity": 77, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 16 + } + ] + }, + { + "address": "FHnt4NL7yPXoAdmMZo4Ao4kwhXLYGtQp3PeE9iMr2EThRQKM29gQChyYQ3xSyRj", + "amount": { + "quantity": 57, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 2 + } + ] + }, + { + "address": "FHnt4NL7yPY7Wh5KrruNoCjBXqaLVmviEDS4BfA1TNuujmxnz3SfA1AKwruLaeY", + "amount": { + "quantity": 239, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1wq4t5hxa8mpfunak478s49s6tqxe2qtjfv779cerv2xxtnsf27e60", + "amount": { + "quantity": 179, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 10 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 13 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 10 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 10 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 19 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 15 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 35 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 26 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 26 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 15 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 18 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 27 + } + ] + }, + { + "address": "FHnt4NL7yPXsLz3YieGiQo1cYSa9twRwc7hrzymbje2Pdf3fCmRfpXNBxf2uZR1", + "amount": { + "quantity": 254, + "unit": "lovelace" + }, + "assets": [] + } + ] + }, + { + "delegations": [ + { + "quit": { + "stake_key_index": "4847" + } + }, + { + "join": { + "pool": "pool12e6s5ycngda828ru9ytnuhrn0e4s7crzrs7nv82794z35p0586j", + "stake_key_index": "127" + } + }, + { + "quit": { + "stake_key_index": "15564" + } + }, + { + "join": { + "pool": "pool12c7q73rgq5ypv73cyggs5dm60fdr7fz6y988klf3xpfz63su2fv", + "stake_key_index": "40" + } + }, + { + "quit": { + "stake_key_index": "23" + } + }, + { + "quit": { + "stake_key_index": "7656" + } + }, + { + "join": { + "pool": "pool1tavsxg2s2q83uxsrxcr87yek9axrwxf6yeq4g4rsw5yssx0smy5", + "stake_key_index": "15" + } + }, + { + "join": { + "pool": "pool1vfgzwm2wwpxjcxna83dxqrqsy4lxxvplrvprc4jfqq0j672kx8c", + "stake_key_index": "58" + } + }, + { + "join": { + "pool": "pool1wqu8yet7f4frs7fj8d5zvhqlr5uyjy3ztxqxqcccgau4gkhq974", + "stake_key_index": "84" + } + }, + { + "quit": { + "stake_key_index": "13374" + } + }, + { + "join": { + "pool": "pool1qezx67zqwa85u730gdyxzpsyred4xnelpeyy2n2hycw9za2nggz", + "stake_key_index": "35" + } + }, + { + "quit": { + "stake_key_index": "10846" + } + }, + { + "join": { + "pool": "pool1q4fnswsnq9zssgm48e44jszlvcdh5u36r5m4s9gptay5c9fg0vv", + "stake_key_index": "58" + } + }, + { + "join": { + "pool": "pool10cxyka2stgvyzdn09jqqvwz20d05kp2p2c2j6ezvqsdry9ncdjv", + "stake_key_index": "87" + } + }, + { + "quit": { + "stake_key_index": "8932" + } + }, + { + "join": { + "pool": "pool10ulpvfs7vfvsz5gqyum9kkmspdcnvdscgp4nj6z8rpds68cke2n", + "stake_key_index": "90" + } + }, + { + "join": { + "pool": "pool1yyv4xv2ky45979zj8qthwa668y3kgxnlp9ckkgck9vanvgqs603", + "stake_key_index": "107" + } + }, + { + "join": { + "pool": "pool1pjq8jnn92g9zqym7qysrzwrswe2ys86mg45p6mfgduc9s6mj9jh", + "stake_key_index": "15" + } + }, + { + "quit": { + "stake_key_index": "5970" + } + }, + { + "join": { + "pool": "pool1rus5supeg37ry964d3l8s9gdv369zeenfvgsuqzw93yxq3rh2m5", + "stake_key_index": "16" + } + }, + { + "join": { + "pool": "pool1t4mx67eqsqfyjlrw2uajqdsq844hkp3twsjz6acrz3jryslxhhn", + "stake_key_index": "24" + } + }, + { + "join": { + "pool": "pool19dc4ys2cvgfss8ze9yqz29ze9az85lzry4vj6e2nzv4qumfagge", + "stake_key_index": "42" + } + }, + { + "join": { + "pool": "pool199v97d3xyc53kjrew9jr2ae4qszn6n6pv994jgqrd9s9685g0jj", + "stake_key_index": "43" + } + }, + { + "quit": { + "stake_key_index": "7739" + } + }, + { + "quit": { + "stake_key_index": "8677" + } + }, + { + "quit": { + "stake_key_index": "11182" + } + }, + { + "join": { + "pool": "pool1xyejk9ndpy4sue3mf3mxwnehyfz4z5qrddpx6wmz05s858nthlq", + "stake_key_index": "106" + } + } + ], + "metadata": { + "20": [ + { + "⩳": -1, + "𡓻􎔱": [] + }, + "󰫪𝥹􁥛" + ] + }, + "mint_burn": [ + { + "asset_name": "546f6b656e48", + "operation": { + "burn": { + "quantity": 28 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 16 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e4e", + "operation": { + "burn": { + "quantity": 23 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e59", + "operation": { + "mint": { + "quantity": 9 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e4f", + "operation": { + "mint": { + "quantity": 1, + "receiving_address": "addr_test1wqlslzndn43pcuqgdf4rgxcpuv22whv0uctssr2y94vmkgsn2k2q7" + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 1 + } + }, + "reference_input": { + "id": "7a2e12c490163b451e26f64bb1202c10c21c162a331d3d7777282b74130f317c", + "index": 0 + } + }, + { + "asset_name": "546f6b656e41", + "operation": { + "mint": { + "quantity": 28, + "receiving_address": "addr_test1xq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4eh4xwypdhunwnkx5lz4924tpwqzk7y6ej04hapwy2w9juq4qxmk7" + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "mint": { + "quantity": 27, + "receiving_address": "FHnt4NL7yPYDnqSWnMiy5LnAkyNdttjDM4ie536ZD6BmkqVfz5ptZ9jrPvbaxQC" + } + }, + "reference_input": { + "id": "2a635abf447f66443c8009366f452576341b2b2026587e71514e254b3c080263", + "index": 0 + } + } + ], + "payments": [ + { + "address": "addr_test1vplgut5gjaw7me655xymazt5cysn8whw5cduwqy4gr2skrs5sg46c", + "amount": { + "quantity": 121, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXqdAzT4Bsj5RoVKncyKZFRmyYK1mgUk1BvPLxJdntKreb1LXYQGWV", + "amount": { + "quantity": 99, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 22 + } + ] + }, + { + "address": "FHnt4NL7yPY2vTi3afzM3CkxWhPhCSDxWGixyaQHhCeiTMdse6hkPewPDggN7DN", + "amount": { + "quantity": 130, "unit": "lovelace" }, - "assets": [] + "assets": [] + } + ], + "withdrawal": "self" + }, + { + "delegations": [ + { + "quit": { + "stake_key_index": "5935" + } + }, + { + "quit": { + "stake_key_index": "882" + } + }, + { + "join": { + "pool": "pool1q3m95t60xfrkj4mcv9h4glzvpuf565fcw3z8cujxpsqnjn23wl4", + "stake_key_index": "37" + } + }, + { + "join": { + "pool": "pool1r9vzvlyqdq8gqy3fgqr3xkpqzd4pclr5tyls6krjrdujc0y2rtz", + "stake_key_index": "42" + } + }, + { + "join": { + "pool": "pool105zrgtpud9kkw820vqzrquqqtphkkrpvp49zkksvxszz6nlrce5", + "stake_key_index": "9" + } + }, + { + "quit": { + "stake_key_index": "12481" + } + }, + { + "quit": { + "stake_key_index": "5290" + } + }, + { + "quit": { + "stake_key_index": "10237" + } + }, + { + "join": { + "pool": "pool1wskswvmsyvcs7wfjx4g9kgge9sfgqts7pyjxs6nqygsqv2478s2", + "stake_key_index": "51" + } + }, + { + "join": { + "pool": "pool1xfvsyzstp4exqdzyzeu46ys7xs39jarpv3w4yhpgtagkxq9vd07", + "stake_key_index": "103" + } + }, + { + "join": { + "pool": "pool1t409g6c6rs28cstj9gynye368u09cnc29cqr27ma0p55yxd2ca3", + "stake_key_index": "20" + } + }, + { + "join": { + "pool": "pool1w3jj2ymwq9n8jtnqffsrsx6ydev92apdyg3pyhmtr36kvncfnmm", + "stake_key_index": "13" + } + }, + { + "join": { + "pool": "pool184lszkncvsyx66g8vf4nwtqetyjhja2px9jz772cx5jk26zg8kv", + "stake_key_index": "76" + } + }, + { + "quit": { + "stake_key_index": "4090" + } + }, + { + "quit": { + "stake_key_index": "4071" + } + }, + { + "join": { + "pool": "pool1pfjn52z72vqr2qjh2fwjjgq72ueqz2rxps63wfprqppp63clfhv", + "stake_key_index": "0" + } + }, + { + "quit": { + "stake_key_index": "5664" + } + }, + { + "join": { + "pool": "pool1d3vrxdsypuvjjcqvdp9ska60gfr9sgmuydqrgapv2a6rufxjxns", + "stake_key_index": "9" + } + }, + { + "quit": { + "stake_key_index": "2709" + } + }, + { + "join": { + "pool": "pool10uuxql2eq4gxzlzzdywsv320w9txuxrt0ynkkxta0fy9q7xuru7", + "stake_key_index": "55" + } + }, + { + "quit": { + "stake_key_index": "12571" + } + } + ], + "metadata": { + "25": { + "int": 0 + } + }, + "mint_burn": [ + { + "operation": { + "burn": { + "quantity": 7 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "operation": { + "mint": { + "quantity": 4, + "receiving_address": "addr_test1xpf3g36y8xvwrgj4dn9zcueksys20e2ke5wcgnm4jpsk6wqkndv0k77q44469nppj3ek597hfhr420calhtrq5gl64pqh42lhz" + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e44", + "operation": { + "mint": { + "quantity": 5, + "receiving_address": "FHnt4NL7yPXqJBoz596zXdTnC6U7o8MxQQqavfjySZq8yeiYSGXpKJJXqP6pb1p" + } + }, + "policy_script_template": "cosigner#0" }, { - "address": "FHnt4NL7yPYGWrUGyihFbk7WJtmoG8wMmR2ucuYGPoarLXd3tnNbWgoPLuNoa1H", - "amount": { - "quantity": 231, - "unit": "lovelace" + "asset_name": "546f6b656e4a", + "operation": { + "mint": { + "quantity": 27 + } }, - "assets": [] + "reference_input": { + "id": "5f2e283d59133c53a8084b44db245d368d417157074f44600f29476705541b7b", + "index": 0 + } }, { - "address": "FHnt4NL7yPY4K7FpWkF4KgwkNEvAj8kxyhFGBcgAvbi3h6WsJDJL13HexKR3vqZ", - "amount": { - "quantity": 255, - "unit": "lovelace" + "operation": { + "mint": { + "quantity": 5, + "receiving_address": "FHnt4NL7yPY3cSCJStGqLV5yFrKXy6vLYSK51sR7KinxXGb757BxMUe3ktXzZsC" + } }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 21 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 11 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 16 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 7 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e56", + "operation": { + "burn": { + "quantity": 25 } - ] + }, + "reference_input": { + "id": "28705c481207d43d422a5b2e1b2b2022b32e1b6f6a2723336321377ba07a4a30", + "index": 1 + } }, { - "address": "FHnt4NL7yPXi4wkbHNnsyiLxhZ356TWNo7FJBRp6nbJ6Eo1Ne4zUmTAPcML7oHv", - "amount": { - "quantity": 72, - "unit": "lovelace" + "asset_name": "546f6b656e50", + "operation": { + "mint": { + "quantity": 10, + "receiving_address": "FHnt4NL7yPXhEmFAPNxCqmwFN8t43XMZPQXDnwAHRN8wrvCg5xD2XnetxpF8e3L" + } }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 27 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "asset_name": "546f6b656e41", + "operation": { + "burn": { + "quantity": 13 } - ] + }, + "reference_input": { + "id": "0276ca5c3f5b6a853859481f69730b15611f193a64389c614352302a5a0e0add", + "index": 0 + } }, { - "address": "FHnt4NL7yPXxefZSRuH8D4N42C2QmPiLt7QDNpvxwW9KNuH3YhHf5QwTHfNFJuM", - "amount": { - "quantity": 63, - "unit": "lovelace" + "operation": { + "mint": { + "quantity": 13, + "receiving_address": "addr_test1qrrud7z2ddekyr7yxrfyye8llhef6ncxu4y5e82zq3zd02nxjh0pmw9prj29khshzwdv6x08hefuu4xp2ct7kgwplk0sznuftp" + } }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 30 + "reference_input": { + "id": "47741e1a410a775a0f6a887262667d1c6c3d89547b441c232a494b01510e792d", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 6 } - ] + }, + "reference_input": { + "id": "1077584d560ed7146549331b3c4880f443427e7c7448d12b422b183b1d58431f", + "index": 1 + } }, { - "address": "FHnt4NL7yPYDZtXApoDMzzNG4j5Nmq8zCNrVNbGUr2BMFeHKuU2vuPz67egoEHB", - "amount": { - "quantity": 166, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 19 + } }, - "assets": [] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "FHnt4NL7yPYHLQ4nBxADBhJLQCdMNvhAD4ksYCT45xGZC7wc6DxRTFQ2kcSjzgp", - "amount": { - "quantity": 218, - "unit": "lovelace" + "asset_name": "546f6b656e53", + "operation": { + "mint": { + "quantity": 15, + "receiving_address": "addr_test1vptq5c2s3q6y9wt8474k5fxarrw9wanxuphzq6k3l8pfy3cdfk4p2" + } }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 + "reference_input": { + "id": "5f3678601428594e3a1bce4c7563a062076e037c47206d47054779e47c44c613", + "index": 1 + } + }, + { + "operation": { + "burn": { + "quantity": 26 } - ] + }, + "reference_input": { + "id": "764a3259d8e232142a5b5948413c72173035d86e454a0f371a712f066fd9692f", + "index": 0 + } + }, + { + "operation": { + "mint": { + "quantity": 9 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e47", + "operation": { + "burn": { + "quantity": 3 + } + }, + "reference_input": { + "id": "18512d623a361370746873797f7aaf222ada1b5f241bc2131de257db26da1705", + "index": 1 + } + }, + { + "operation": { + "mint": { + "quantity": 28, + "receiving_address": "addr_test1zptk0sdkl9shka4k6nchc3vv7asaxewrkrfdwt2myt5kmgh8yvnmznf0te8dxcvqr7g55szfdrm9yjg7zpqjmy44hrjq0fd35h" + } + }, + "policy_script_template": "cosigner#0" + }, + { + "operation": { + "burn": { + "quantity": 8 + } + }, + "reference_input": { + "id": "483aba616dde0f6914667470bf351cc69a57c83937235239640f3e014780071f", + "index": 0 + } }, { - "address": "FHnt4NL7yPYDswW64RmyUdnscdTFU6SXXGW4wJYbXy9bM9Gz86K9z8kmPYqFcMC", + "asset_name": "546f6b656e55", + "operation": { + "burn": { + "quantity": 14 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + } + ], + "payments": [ + { + "address": "addr_test1wr2yzgn42ws0r2t9lmnavzs0wf9ndrw3hhduyzrnplxwhncaya5f8", "amount": { - "quantity": 87, + "quantity": 204, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 16 + "quantity": 25 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 8 } ] }, { - "address": "FHnt4NL7yPY4rn6yiwa1KgxsLjNEq5saFgak4mZWvBtmj2wH9uMQhcpVVGb6d4X", - "amount": { - "quantity": 141, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPYKqnojcv8hAG9EEVPmMzT2X5uYztwn7dsp1gkz1244Ui138V377fg", + "address": "FHnt4NL7yPY9DbEZCFVo9hbKJW5ELzaMabR8Nrh4XQH1yA318dYEahCZwqaruuH", "amount": { - "quantity": 18, + "quantity": 91, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 10 + } + ] }, { - "address": "FHnt4NL7yPXme4ttvLiTU7FqZ3NXBXNCeSUGtFEhouFKTPT571zdzS3HvEhwyjK", + "address": "addr_test1xp482kjrv6jnurysxhys4gkfejdgm7n7s6mvkp08nx5euadxger5hr65xynp2p4kcfeaxp7826dyadkfddpd6j3f2g9qe49nh8", "amount": { - "quantity": 109, + "quantity": 120, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 28 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 17 + }, { "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 3 + "quantity": 26 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 70 }, { "asset_name": "546f6b656e41", @@ -457,570 +1735,421 @@ "quantity": 11 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 4 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 + "quantity": 28 }, { "asset_name": "546f6b656e41", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 23 + "quantity": 28 }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 + "quantity": 21 }, { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 41 + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 12 }, { "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 21 + "quantity": 26 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 23 } ] }, { - "address": "FHnt4NL7yPXhWpToYo9rJ6VFpKWaYvsVs5e1GNivAuHdkHnDxBGyV4C9TXUbUHj", + "address": "addr_test1xrfvndj063jtn2t5v38a8rve8cxfh0n6ppzf7xvqnlgn4vl5trlz728vng408a2psmyw4t4jn7jxpag5tgpksvq8vhhqlvl4fj", "amount": { - "quantity": 252, + "quantity": 151, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 13 - }, { "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 15 + "quantity": 7 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 36 + "quantity": 29 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 18 + "quantity": 2 }, { "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 + "quantity": 7 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", "quantity": 16 }, { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 17 + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 22 }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 22 + "quantity": 23 }, { "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 52 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 28 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", "quantity": 21 }, { "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 + "quantity": 15 } ] }, { - "address": "FHnt4NL7yPY4eRgCUKcJtatv6xYBFAUvfNzPazsFfoFFbLUAep3QhF4woS5DaUf", + "address": "addr_test1wq9z4tcrj4xcqa072pm80kuwt69aw4avf9qjquxdjfrj68chnw6zn", "amount": { - "quantity": 14, + "quantity": 95, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPY9CaA8DVg8fpBRqXDy43hPsFzXqSG8WTsQUdU8h4g7MweTFLDZEfc", + "address": "FHnt4NL7yPYJHA65dEcfwsBoCb7T9kLkdYMAG7eGPop6Y26EDmBkQBk6ST7VnVs", "amount": { - "quantity": 142, + "quantity": 170, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 + "quantity": 10 + } + ] + }, + { + "address": "addr_test1vzsh5ggaz5dhtuueetnhg63l8mqkzkq35dztq9gmltns5as7udeer", + "amount": { + "quantity": 249, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 44 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 23 }, { "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 27 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 9 }, { "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 45 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 7 }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 1 + } + ] + }, + { + "address": "addr_test1zz5daal9ft773aemswm7xkxgs92lnxvaww5s2m8f57tglh5yfl4udmssp8al05wm8c88ewa0gky8a4hht5c5sewuqrqsdyunve", + "amount": { + "quantity": 23, + "unit": "lovelace" + }, + "assets": [ { "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 25 + } + ] + }, + { + "address": "FHnt4NL7yPXz3YvQS8GLeu63XEquAZ1B2eUnPvKouvioMs8XqsJ3PvHM6Ck4Qti", + "amount": { + "quantity": 190, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e45", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 + "quantity": 9 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 27 + "quantity": 20 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 21 + "quantity": 12 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 51 + }, + { + "asset_name": "546f6b656e41", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 23 + "quantity": 14 } ] }, { - "address": "FHnt4NL7yPXzh1YxnL4Np2zSsxjn7bmw8PrX8iqUqHTnYuSFchx2R3G1A9nyHdk", + "address": "addr_test1zpfdc02rkmfyvh5kzzwwwk4kr2l9a8qa3g7feehl3ga022ytt7r4d67pv8yacd7ru2ywla0mdaqx9s94ag4ewl7usplqhyrxlg", "amount": { - "quantity": 246, + "quantity": 203, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 27 + "quantity": 16 }, { "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 36 - }, - { - "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 11 + "quantity": 5 }, { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 20 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 26 + "quantity": 7 } ] - } - ] - }, - { - "delegations": [ - { - "join": { - "pool": "pool1y9ksz6z52dqgqwj8tfj5jg2z2d795qsafdgjyzzjxvhxx9pcp6d", - "stake_key_index": "87" - } - }, - { - "quit": { - "stake_key_index": "13088" - } - }, - { - "join": { - "pool": "pool1tcjjvmqq0ym8u3e3w5qz7h2nz9jsdqpj0s3xwpflxq6zgyrrgkt", - "stake_key_index": "78" - } - }, - { - "join": { - "pool": "pool12gaqc5ne0aazv9n4r9t5sftkrvsks4jpvpwr63f48pwy70sg5mk", - "stake_key_index": "17" - } - }, - { - "quit": { - "stake_key_index": "12352" - } - }, - { - "quit": { - "stake_key_index": "6557" - } - }, - { - "join": { - "pool": "pool1z4k3yfp8g9mqc7qvx503zzmypyajjvqwfdln2hzm9avqz78s4fr", - "stake_key_index": "47" - } - }, - { - "quit": { - "stake_key_index": "7169" - } - }, - { - "join": { - "pool": "pool1qe88wu6x2f74fqp5z9yqy6trp554g8sfye85qxsnfsdruyaxqw3", - "stake_key_index": "2" - } - }, - { - "quit": { - "stake_key_index": "16354" - } }, { - "quit": { - "stake_key_index": "14372" - } + "address": "FHnt4NL7yPY9z5HAXgozmvX6FwycGqs4EvwtFDifqL7b6VCXF2AkjwnuFufHYdN", + "amount": { + "quantity": 210, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 18 + } + ] }, { - "join": { - "pool": "pool1yclngtcgtsgqcjj60p2kjnmy2pprqxgkqsupxtstws94z5mx4ds", - "stake_key_index": "45" - } - }, + "address": "FHnt4NL7yPY7yVuXsFKPgWqheFEgdy9pxF5Knkrs3Mr1uagP8Tv3gP2cY2JvAgK", + "amount": { + "quantity": 24, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 10 + } + ] + } + ], + "withdrawal": "self" + }, + { + "delegations": [ { "join": { - "pool": "pool1tvgj5dn9gsu46geevfuhgqpqyvy92tf78ftnxe3q05n8zwmu6kl", - "stake_key_index": "32" - } - }, - { - "quit": { - "stake_key_index": "15880" + "pool": "pool19es87w6nqafpjkjeyyljk5p39axx24eu8d8kv6nrdecqv4wl3xz", + "stake_key_index": "1" } }, { "join": { - "pool": "pool1t9lpxaceduenk6zjvcznw4zv0flzujjnpvsr593zrs5ksyjde8k", - "stake_key_index": "62" + "pool": "pool1yulxc3txwps3u8t4xv9y70pugs7h78ffrf7sv7zcwytgqu4agha", + "stake_key_index": "92" } }, { "join": { - "pool": "pool1vv8hkfg5qyu45s6tf5l4umz4xusp7t6tw3jpsnfxrgs4ja6zyqg", - "stake_key_index": "38" + "pool": "pool1pyxyghm0ggyzj2zu8sq4j2qqq4lgqhqvfqwq7qfprqj8yscw98v", + "stake_key_index": "126" } }, { "join": { - "pool": "pool18q2rwtst9p5xz7qep5kjx2s60f0k5ag2vyr5x2g3fdu9cq4preh", - "stake_key_index": "118" + "pool": "pool1fg38z36az3q9y82lwcl5wrgn2ssqggem83m468sqfc3s54d8et9", + "stake_key_index": "106" } }, { "join": { - "pool": "pool12uvqzuc4w90sulra9p2kgdcm2563hqyqwfx5qjq5zcfqczqqpxv", - "stake_key_index": "94" - } - }, - { - "quit": { - "stake_key_index": "5788" + "pool": "pool1yfuqvzqyddr9q6n4t3tzsecgwqgycde4rvd8wnmj04hx2k3fqwa", + "stake_key_index": "8" } }, { "join": { - "pool": "pool1gsqkwznrre332gc6q5js2tzz0et8scccvvhqypnjp5g9ktghgzj", - "stake_key_index": "58" + "pool": "pool1g40sqzszydkqggfnf9w4khq9psy5u3stg4vp2grr2g0zu9zfyv2", + "stake_key_index": "48" } }, { "quit": { - "stake_key_index": "14793" - } - }, - { - "join": { - "pool": "pool1vvdzxwngpvtkkmn62phyj7fkxdzs5ngxtatxgkp79p3scmh7n8v", - "stake_key_index": "71" + "stake_key_index": "15130" } }, { "join": { - "pool": "pool1qymjywtr9ds5c9m7v9czw6my8ecqshr7rdt3kwg3qsdxzgm377t", - "stake_key_index": "116" - } - }, - { - "quit": { - "stake_key_index": "16301" + "pool": "pool1g3wy7rsdt409gl69q33qumtpdvh87ysn99z8xvzhfqwz6ujwmwl", + "stake_key_index": "75" } }, { "quit": { - "stake_key_index": "11032" - } - }, - { - "join": { - "pool": "pool1dszjc8zjx5kjz2jw89w4kj3q8em4ysgpypegqdskgd4n2ns4je2", - "stake_key_index": "116" + "stake_key_index": "3812" } }, { "join": { - "pool": "pool1dp2sqvj2yylr7kj7rd6n2yfyzqdxgl6uvcn4ymsdxfm5g533kya", - "stake_key_index": "48" + "pool": "pool1x5c3jdznrpenu7r5pem4q3r9peqkwxpwz9f9jjndwpzq25d0gd8", + "stake_key_index": "123" } }, { "quit": { - "stake_key_index": "6441" + "stake_key_index": "16062" } }, { "quit": { - "stake_key_index": "6531" + "stake_key_index": "6212" } }, { - "quit": { - "stake_key_index": "2040" + "join": { + "pool": "pool18pwp6lqedp44wvnh2yfxump3q4y8ynsz24f3kd6yye9hv5ztqjy", + "stake_key_index": "86" } }, { "join": { - "pool": "pool19a0zcy3pgau3kxqe93jykpedd4cqjujrpqkzxhjvqe94gkn4jrp", - "stake_key_index": "6" + "pool": "pool10prqzszt2emh6vcddp3xy2fxzger7jtxfsw3ym6lxu3xym6qfkr", + "stake_key_index": "54" } - } - ], - "metadata": { - "26": { - "ᖽ": "󻑪􋜕􀐰", - "둒𥙩": [ - { - "𘚒󻔑": -1 - } - ], - "󺸰󹌞": -1 - } - }, - "mint_burn": [ - { - "asset_name": "546f6b656e49", - "operation": { - "mint": { - "quantity": 5 - } - }, - "policy_script_template": "cosigner#0" }, { - "operation": { - "burn": { - "quantity": 17 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "3794" } }, { - "operation": { - "burn": { - "quantity": 0 - } - }, - "policy_script_template": "cosigner#0" + "join": { + "pool": "pool1qp34xhjwx4t5y43nfsuk6ftxw9cycqeugqky5psavaarj3th0ww", + "stake_key_index": "55" + } }, { - "asset_name": "546f6b656e4f", - "operation": { - "burn": { - "quantity": 28 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "16056" } }, { - "asset_name": "546f6b656e46", - "operation": { - "mint": { - "quantity": 24, - "receiving_address": "FHnt4NL7yPY46zCCwNu9AFVcv449mKFjpQzQMcx1LqarywrVwajxW55bMtFjt4w" - } - }, - "policy_script_template": "cosigner#0" + "join": { + "pool": "pool1wcu4wzzdqqljwymx8q6nchpr9sq5snzs29tr5d2k0sk9x0uj2pt", + "stake_key_index": "39" + } }, { - "asset_name": "546f6b656e51", - "operation": { - "mint": { - "quantity": 10 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "463" } }, { - "asset_name": "546f6b656e57", - "operation": { - "mint": { - "quantity": 2, - "receiving_address": "FHnt4NL7yPXrQGZvG3j7Hxx6zHGDXNBPJ3fdVgbmx518FCFCSA4Sbzh12c93QBq" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "3374" } }, { - "asset_name": "546f6b656e59", - "operation": { - "burn": { - "quantity": 15 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "join": { + "pool": "pool10awqwmqvt5znqdned5c3zzftpdypeqrm049q2s3z9ehywgrwfmu", + "stake_key_index": "21" } }, { - "operation": { - "burn": { - "quantity": 27 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "join": { + "pool": "pool1x4njsn2yge7pclf7y53y58szpulp6qprfgtzzer4wsn8j95qawm", + "stake_key_index": "33" } - }, + } + ], + "encoding": "base64", + "mint_burn": [ { - "asset_name": "546f6b656e4c", + "asset_name": "546f6b656e55", "operation": { "mint": { - "quantity": 29, - "receiving_address": "FHnt4NL7yPYDaxTckbvPeW5hUAT9U7t1tDjsgMeLRpa7S7zUaUCPGiJ5Qm9isJq" + "quantity": 1, + "receiving_address": "FHnt4NL7yPYALDnDcch8Mdt4htD28MtfDJBNLbUZhhHwnRZB8cFnpkf5JhUGxr4" } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "6c38c83a6c67684c6a065eff6b4a171a60206939750c3e847443365706215468", + "index": 0 } }, { "asset_name": "546f6b656e55", "operation": { "burn": { - "quantity": 15 + "quantity": 22 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + "policy_script_template": "cosigner#0" }, { - "asset_name": "546f6b656e46", "operation": { "mint": { - "quantity": 23, - "receiving_address": "FHnt4NL7yPYFm7TZSk1F8RNWTWMsJHbdtZq4r4LaKh1vU6fPADXn7xrK5B5oivS" + "quantity": 19 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "d779580f0b7c069f5d02144bfc496fa7040b782948ca2475543f445044953179", + "index": 1 } }, { - "asset_name": "546f6b656e55", "operation": { "burn": { - "quantity": 18 + "quantity": 29 } }, "policy_script_template": { @@ -1035,43 +2164,30 @@ { "operation": { "burn": { - "quantity": 16 + "quantity": 9 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "13b10357014e0914525b5f0c74190d1ad3be30f4be4edf47cc7b343536215875", + "index": 0 } }, { - "asset_name": "546f6b656e50", "operation": { - "mint": { - "quantity": 25, - "receiving_address": "FHnt4NL7yPXja1ATP8SQEEswTaMZGpBdp3bnCGSjyEALe8QyFfhHBb3N15LiKzv" + "burn": { + "quantity": 10 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "2d437a2948a212128b163621181c17b0463a425881022d7e5c409d0a705b4823", + "index": 0 } }, { "operation": { "mint": { - "quantity": 1, - "receiving_address": "FHnt4NL7yPY3buvdTNbywFdEV8HfGQ2mZanQbrBh4DqxFHn3BL5hustWiof1K8s" + "quantity": 17, + "receiving_address": "FHnt4NL7yPXszQ2yQuhWRKyvTFFLc3woZfL8zYdDLtvabDeXtpumPaYKfEgDgd5" } }, "policy_script_template": { @@ -1089,76 +2205,19 @@ { "operation": { "burn": { - "quantity": 13 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "mint": { - "quantity": 1, - "receiving_address": "FHnt4NL7yPXgXqMtMdeyh2ebwbHHoEVLrjuh2o7TEiSrcKHvCG3ixXt6nnmJdUL" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "asset_name": "546f6b656e5a", - "operation": { - "mint": { - "quantity": 23, - "receiving_address": "FHnt4NL7yPXy7qH55L6tt4AVp78EUiqfqXCTzTXHDjE1PuCA8NRKfcQoYQR25Ty" + "quantity": 4 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "7a5b2459402c2385521c2d393666d1c35e65720e204852271a6d7d59331b054f", + "index": 0 } }, { - "operation": { - "mint": { - "quantity": 5, - "receiving_address": "FHnt4NL7yPXhtygeamFzE9Pi4Jhwunm4zYEinbFyLks1aqtvMdX33e3w21RYVGN" - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "mint": { - "quantity": 7 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e4a", "operation": { "burn": { - "quantity": 26 + "quantity": 22 } }, "policy_script_template": { @@ -1166,1217 +2225,1107 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } }, { "operation": { - "mint": { - "quantity": 1 + "burn": { + "quantity": 8 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "c64804214348399ec45a5f00335a3b11b633129a69385222646a593059af4aed", + "index": 0 + } }, { - "asset_name": "546f6b656e45", "operation": { "burn": { - "quantity": 17 + "quantity": 12 } }, - "policy_script_template": "cosigner#0" - } - ], - "payments": [ - { - "address": "FHnt4NL7yPXz5xkovgBJX4XF1z9rP6bsGo9FsKwqW9NTdDW1dAzdGqYvoTynJ1u", - "amount": { - "quantity": 44, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXpmQndShfsG8e2iErvp4Lc3DcrkynhA5SjA6VuzwYdD27pnWZUyPJ", - "amount": { - "quantity": 176, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXqwHQ7pcrpmG5EhQdFQ8kgwm6MRHW5JuKfJZX1tJ9dLjoq4DirTZB", - "amount": { - "quantity": 72, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXufNfCVw6PKPvLPTGknhtrQZV7SNT1YWqV44FbkcCt4oERiSsuC46", - "amount": { - "quantity": 108, - "unit": "lovelace" - }, - "assets": [] + "reference_input": { + "id": "0a5d0477271e2c430b0245564a09c9a1587871376725786a16662f0440657979", + "index": 0 + } }, { - "address": "FHnt4NL7yPXzCgKwCnPNvDj3VcxGk6JKobA1Q8MoVUDuHNvXQXP4Qa5mHMmdjSm", - "amount": { - "quantity": 198, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 25 + "operation": { + "burn": { + "quantity": 13 } - ] - }, - { - "address": "FHnt4NL7yPYCBPKnCg2FUGYXeeoG5py6JQGtVM4ff8a3cbiJMTw8Js9jUYU4QKp", - "amount": { - "quantity": 8, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 22 - } - ] + "reference_input": { + "id": "1937972de617091b6e206074461f7e0f3045ff027f7f93185268ab2a524a489b", + "index": 0 + } }, { - "address": "FHnt4NL7yPXhvT2G2Zsw3yfHrutG9NtWpp8rWiSgqadaRp9bfB932Pd2pHvPUeL", - "amount": { - "quantity": 234, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 4 + "asset_name": "546f6b656e43", + "operation": { + "mint": { + "quantity": 14, + "receiving_address": "FHnt4NL7yPY5Wp7qtoL8XbJpnKJzV2FQmyD9c1WK9PJ6d9rvHyH2sQK6HjhajCw" } - ] - }, - { - "address": "FHnt4NL7yPXtkGcMHRfqo6GWnbVavzn1DPDDqmLSonS9VgSsU22U5tzjWosV2TR", - "amount": { - "quantity": 11, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 9 - } - ] + "reference_input": { + "id": "68214bb2080a650207234440797862191c6e7378770961370e7740212ebe3452", + "index": 0 + } }, { - "address": "FHnt4NL7yPXk1yCu4tkAp38RgyLjs157bHhwCqXfjeQZCs6UjsTkLEwp1aD687f", - "amount": { - "quantity": 3, - "unit": "lovelace" + "operation": { + "burn": { + "quantity": 21 + } }, - "assets": [] + "reference_input": { + "id": "8f060914100c11376b4b12371beb3c026342054a680746535e255b417d0c5d51", + "index": 0 + } }, { - "address": "FHnt4NL7yPXu1F39Zd7FT9fXPinxJXLjZpY9p8WLBTSyZaNJeEbDTdC6j8TcssH", - "amount": { - "quantity": 16, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 29 + "operation": { + "burn": { + "quantity": 22 } - ] - }, - { - "address": "FHnt4NL7yPXuh7PA2XHGNZQ9pcAxMCsJCy79gygiBpfqjMT5BZWRA2h5S3GgzoH", - "amount": { - "quantity": 102, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 10 - } - ] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "FHnt4NL7yPY4sXehsdJf8PHhGry1YTmNpR8Sh6thsz1Y8bvRVcV2xcRqNiG8Fj2", - "amount": { - "quantity": 180, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 22 + "operation": { + "burn": { + "quantity": 26 } - ] + }, + "policy_script_template": "cosigner#0" }, { - "address": "FHnt4NL7yPXj11BKjrvAGWgompzsZK8UjXxUFntJn6bo2sKZrqp2zVMh137Aowo", - "amount": { - "quantity": 71, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 17 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 16 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", + "asset_name": "546f6b656e44", + "operation": { + "mint": { "quantity": 16 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 17 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 28 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 29 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 8 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 3 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 19 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 7 } - ] - }, - { - "address": "FHnt4NL7yPXh5BdrFxN9VeaZK67XHXqWNHm7EWXZmUwiBjryXPBgid11evRfG1f", - "amount": { - "quantity": 215, - "unit": "lovelace" }, - "assets": [] + "reference_input": { + "id": "346b9c610f303d43336e4c1a657e4e28665c312d0b715f0112dadb323cb73636", + "index": 0 + } } ], - "withdrawal": "self" - }, - { - "encoding": "base16", - "metadata": { - "11": "𨖫" - }, "payments": [ { - "address": "FHnt4NL7yPYBFsc6E1iPZb8ycroNLUF6yetMRoYvTY6YCD5hfrzuoeREoRxonsY", - "amount": { - "quantity": 210, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 26 - } - ] - }, - { - "address": "FHnt4NL7yPY1oKnciaNr4V5HYw8qWMdJdhcKc74NURRMeinJFwNBJpE5Zi2bVTP", + "address": "FHnt4NL7yPXnJK5WibcYQyZtX65eToPNAqACYsd5DVWXMXnRJYGjqMF5JtLs5Z3", "amount": { - "quantity": 106, + "quantity": 71, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 30 + "quantity": 11 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 17 + "quantity": 59 }, { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 9 + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 13 }, { "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 42 + "quantity": 9 } ] }, { - "address": "FHnt4NL7yPXrkwgod4dY2KZNNW52up8ZwuiWma23FyRYAFkn1hpC98JUz6NGp7v", + "address": "addr_test1yrthfny85ph78syxzmx6a53ukp28al0aaejgkmrv56xaa6mzaarxgsnrl0pu9fzp3vgxtxsqkz5uz86tkra4vgct04jqhjs442", "amount": { - "quantity": 234, + "quantity": 125, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPY4NWR5wHSLCrCw4qupFC9bxzu8rC4D7tSAx3rkHSwdCu9ccyT2TwG", + "address": "addr_test1wq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4cl3n4xr", "amount": { - "quantity": 160, + "quantity": 104, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 23 + "quantity": 10 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", "quantity": 14 }, { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 10 + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 20 }, { "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 14 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 15 }, { "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 32 - } - ] - }, - { - "address": "FHnt4NL7yPXwaAHuSZveZxXRos83rViDXCYGUE8PaaCNXZx7SGtRyPTgTy1RZRP", - "amount": { - "quantity": 228, - "unit": "lovelace" - }, - "assets": [ + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 16 + }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 3 + }, + { + "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 13 + "quantity": 7 }, { "asset_name": "546f6b656e45", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 30 + "quantity": 29 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 12 }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 + "quantity": 17 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 27 }, { "asset_name": "546f6b656e45", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 20 + "quantity": 13 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 7 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 28 } ] }, { - "address": "FHnt4NL7yPYGD5hP5mMhd8tfoYq3xtSbHvFhJzGBPDdptXZww5tYL9XbpUyN6Kp", + "address": "FHnt4NL7yPXqoj3cCn7PJE5CBfuahQCNDS7ViAsBR8WWd1ADci3JV42CvjFRRGu", "amount": { - "quantity": 113, + "quantity": 194, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 20 } ] }, { - "address": "FHnt4NL7yPYJBvZc9drKXu3nQd6KQ9bZcNczuR1ikx4CgzmGAnGuKan5cSBjshG", + "address": "addr_test1zpfdc02rkmfyvh5kzzwwwk4kr2l9a8qa3g7feehl3ga022xs3e5pj28mz9hglqqsjznnunltzu23a3t7qw2rjqf3r7ds8v3uq8", "amount": { - "quantity": 127, + "quantity": 226, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 27 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 1 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 14 + }, { "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 17 - } - ] - }, - { - "address": "FHnt4NL7yPXiEskFrNeVzwm7KSrfRZAgJkeZjy7Cncz9WhNihvbkZYsVbt7WmdW", - "amount": { - "quantity": 162, - "unit": "lovelace" - }, - "assets": [] - } - ], - "withdrawal": "self" - }, - { - "delegations": [ - { - "quit": { - "stake_key_index": "5033" - } - }, - { - "join": { - "pool": "pool1fpxz7u6ffchsvx3gqsry5kqgzd2xk3jqgf8xu95qr3c8xt4gv8c", - "stake_key_index": "58" - } - }, - { - "join": { - "pool": "pool1fczz2xeh04jpzc28z4d3cct7v52q776aze68xd26ts88vyrj0wv", - "stake_key_index": "50" - } - } - ], - "withdrawal": "self" - }, - { - "encoding": "base16", - "metadata": { - "13": { - "int": 0 - } - }, - "mint_burn": [ - { - "asset_name": "546f6b656e49", - "operation": { - "mint": { - "quantity": 30, - "receiving_address": "FHnt4NL7yPXpDG8ANK1hRDW29geDHdTq2ozf7FzMeW9QnvMQ71mqMmXvMXBpTxx" - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "burn": { + "quantity": 9 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", "quantity": 16 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 29 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 14 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 16 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 12 } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 5 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "asset_name": "546f6b656e53", - "operation": { - "burn": { - "quantity": 27 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "burn": { - "quantity": 27 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "burn": { - "quantity": 28 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - }, - { - "operation": { - "mint": { - "quantity": 30, - "receiving_address": "FHnt4NL7yPYJBJ3sorpWuwe2QfzAjrfWGsimJVT57WgBDwYRynwiUGEwGD69CGK" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] - } - }, - { - "asset_name": "546f6b656e56", - "operation": { - "burn": { - "quantity": 15 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } + ] }, { - "operation": { - "burn": { - "quantity": 18 - } + "address": "addr_test1xqtg4tmkrddxdx84thxsdqvdnpmfp9s7d87h3ac0szwvrp2jms758dkjge0fvyyuuadtvx47t6wpmz3unnn0lz36755qxql3yv", + "amount": { + "quantity": 156, + "unit": "lovelace" }, - "policy_script_template": "cosigner#0" + "assets": [] }, { - "asset_name": "546f6b656e59", - "operation": { - "mint": { - "quantity": 20, - "receiving_address": "FHnt4NL7yPYDdPkEv6mqY79857f38ZEcDN6zJfou6gmJGfYm3YWGM2sqjsXSaDv" + "address": "addr_test1ypv97ww3yhw5akq8wpj885mfl8p9cjlvsx5r9grffqh85qaxger5hr65xynp2p4kcfeaxp7826dyadkfddpd6j3f2g9q344076", + "amount": { + "quantity": 60, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 29 } + ] + }, + { + "address": "FHnt4NL7yPXt3K14nP8RBVEXx459bu5ShAr6E1Qf1ptyyT5DsRuTEvvTAcw9GRg", + "amount": { + "quantity": 62, + "unit": "lovelace" }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] - } - } - ], - "payments": [ + "assets": [] + }, { - "address": "FHnt4NL7yPYHwxrAzuPCFVMGfoVn4p1ZMpsKpCRZGERoeqabcYAwpAWwvhAu9De", + "address": "addr_test1wq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4cl3n4xr", "amount": { - "quantity": 128, + "quantity": 136, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 7 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 26 + "quantity": 22 }, { "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 14 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 21 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 15 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e45", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 13 + "quantity": 22 }, { "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 12 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 20 }, { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 16 + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 21 }, { "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 9 - }, - { - "asset_name": "546f6b656e41", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 26 + "quantity": 24 }, { "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 30 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 7 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 22 + "quantity": 16 + } + ] + }, + { + "address": "addr_test1vzxzcuyzjzs6uvusg0adjpda02qj7uce8e7lprqmt8ywa7q3vgcnx", + "amount": { + "quantity": 122, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 3 } ] }, { - "address": "FHnt4NL7yPXiWcER6zQRD9UCmRpQ1JfrQq7pnC2bL1RSeRHRCjG3A8STnqPeafE", + "address": "FHnt4NL7yPXsvX8ZqEbNAFM5EisHZoFDmQUi3GGSbTbCEHLrtsEpJsqyU38Z1Bk", "amount": { - "quantity": 180, + "quantity": 177, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 + "quantity": 13 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 17 + "quantity": 5 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 2 + "quantity": 26 }, { "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 26 + "quantity": 11 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 27 + "quantity": 19 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 19 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 36 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 25 }, { "asset_name": "546f6b656e44", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 14 + "quantity": 18 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 27 + "quantity": 3 }, { "asset_name": "546f6b656e41", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 19 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 6 + "quantity": 17 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 9 + "quantity": 25 } ] + } + ], + "withdrawal": "self" + }, + { + "delegations": [ + { + "quit": { + "stake_key_index": "6745" + } }, { - "address": "FHnt4NL7yPXqXSSrBHMXDYtQ1MuV4Xa8d791qU3USz8UkTBjTmqv34sMY8SpjNj", - "amount": { - "quantity": 110, - "unit": "lovelace" - }, - "assets": [] + "quit": { + "stake_key_index": "4300" + } }, { - "address": "FHnt4NL7yPXhMXAwxYf7cvYyrtLbXxd5qsoyZubFE26hX2R5Wg7Nh4ufdw8cXVg", - "amount": { - "quantity": 102, - "unit": "lovelace" + "quit": { + "stake_key_index": "13058" + } + } + ], + "encoding": "base16", + "metadata": { + "5": { + "map": [ + { + "k": { + "string": "􉶏毢" + }, + "v": { + "list": [ + { + "string": "䉖󷎌" + } + ] + } + } + ] + } + }, + "mint_burn": [ + { + "asset_name": "546f6b656e56", + "operation": { + "mint": { + "quantity": 14, + "receiving_address": "addr_test1zpqwwejh5taq5d4j3vs8uhsehtzuffusjv8mrezxx2dnpauhndjgd9ftwq4mlrzsphvsyy3l7733d09m7k5n8v8mzqhq9jhz97" + } }, - "assets": [] + "reference_input": { + "id": "87dc2fa6aa52107f532462392f1c4e9e1b190a490ded5c6e6bf60b7727035d5a", + "index": 1 + } }, { - "address": "FHnt4NL7yPXzb4xvAPQFbNztmsXK55iDjLKhUH95iZCJQb3VK2frvYnAzUrZbFq", - "amount": { - "quantity": 13, - "unit": "lovelace" + "asset_name": "546f6b656e57", + "operation": { + "mint": { + "quantity": 7, + "receiving_address": "addr_test1qp3qxef2gafflfudvz44jfyfdyczcl08z60fu8m432a4gszmr2eyhr4ya290kj67qwrtrhlhk2w875hz4xvt2xek0gus9xcx78" + } }, - "assets": [] - }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + } + ], + "payments": [ { - "address": "FHnt4NL7yPXjJR1u1SypTW8smwYAz6HpPZnGaetBTm1AJ2EhKeZLv73hq4N8g1C", + "address": "FHnt4NL7yPY1kM4UWnoGnYtgohkFV6sQTuMhVG69mA6s2iY6ELVgPzf2g67cXus", "amount": { - "quantity": 172, + "quantity": 0, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 21 + }, { "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 2 + }, + { + "asset_name": "546f6b656e45", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 + "quantity": 6 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 12 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 1 } ] }, { - "address": "FHnt4NL7yPY8wwUuNVpCX99XUUpuN2osz6Zw8Z4618d5CHjH6FvPjzDYev6KXxH", + "address": "FHnt4NL7yPXkSeFwwYTwk1FU73q4AENBL9EVe2dCihyN4PTg3nMZ26gDWAMw1Qi", "amount": { - "quantity": 116, + "quantity": 159, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 6 + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 16 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 10 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 11 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 24 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 64 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 9 }, { "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 1 }, { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 6 }, { "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 15 - }, - { - "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 23 + "quantity": 9 }, { "asset_name": "546f6b656e41", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 18 + "quantity": 10 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e45", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 32 + "quantity": 23 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", "quantity": 26 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 21 + "quantity": 8 } ] }, { - "address": "FHnt4NL7yPXieK8d8ADz4akLA6gzgfhhuAmNXhSzQoRQEhSM6YuHVX3AE5Rxn5N", - "amount": { - "quantity": 205, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXqeMjmjPYTzgFMNUTkYLzg3BeZur8sEt4QCR7RubasGs3uDMt9d84", + "address": "FHnt4NL7yPYJyNw3xBhsXte6X48iBZYkqGFhwi1kHutsjEXDrhEMswGWYayZEnw", "amount": { - "quantity": 190, + "quantity": 192, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPYFyDgSanE8VDN8RH5yq1rL4Jwnut8uX2buTvpXTWWyCjNbKmvFDfc", + "address": "FHnt4NL7yPXtivc7ppo19oEJTqdzkFriMUb1tKErU5NvxZWRN465uTjqMTZ4rVi", "amount": { - "quantity": 207, + "quantity": 133, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 26 - }, - { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 6 + "quantity": 15 }, { "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 3 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 25 + "quantity": 10 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", "quantity": 1 }, { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 5 - }, - { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 33 + "quantity": 13 }, { "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 24 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 30 }, { "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 17 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 25 } ] }, { - "address": "FHnt4NL7yPXttqJrhLesoW3badKJvLX1W4axFyMYFkvCDGwH2bzXFEGJ7TYs8VC", + "address": "addr_test1xpfdc02rkmfyvh5kzzwwwk4kr2l9a8qa3g7feehl3ga0228zp9gwpfw4843hxvenn40nl2tpu4spgpn4pkxunrqs9wvs4mh4yn", "amount": { - "quantity": 32, + "quantity": 247, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 24 + } + ] }, { - "address": "FHnt4NL7yPYHpNquSFJhpzPmFDyT1ou3PgxVaBDt2dm3BSQVEtdnj5pVxChc2oQ", + "address": "FHnt4NL7yPYFoGMKr3HcaqwLaJgpHHFcoRDoEdNWepbWp7LGCeXVv3nXJRCDX6A", "amount": { - "quantity": 45, + "quantity": 255, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 24 + "quantity": 41 }, { "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 7 + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 35 }, { "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 27 + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 15 }, { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 26 + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 23 }, { "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 25 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 4 }, { "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 35 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 6 }, { "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 19 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 11 }, { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 19 + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 2 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 31 + "quantity": 71 } ] }, { - "address": "FHnt4NL7yPXuufJh4N21ZfyVFFjGvJSymmxTNAiRtCZT4NjHRyXmvkeBWBciGem", + "address": "FHnt4NL7yPXjTt45iWYiK5KuTKbjTxAEmXtnV847c7ZsL2VazB7UVcwvoESsWSD", "amount": { - "quantity": 198, + "quantity": 220, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 5 + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 2 } ] }, { - "address": "FHnt4NL7yPXovUiGfVbUUSiR3DDCnTPAcftWK679tzLotfxhRjagTRtAgYLHAv7", - "amount": { - "quantity": 98, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPYJLeK6UXkt83DBiJ7sK614d5iqfHVKymvQchvPi1L8Z4zpFSNvaA7", - "amount": { - "quantity": 240, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPY1S14PSBK2suL5P41t1uozPH2qKRXta9bEx84hkKVpC6zGLwfoRq8", + "address": "FHnt4NL7yPYBZCvMMmuz1riFUFjt3S5SeqXrSDVAbZrE455TXJGhFd8aKGg6d1J", "amount": { - "quantity": 64, + "quantity": 221, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPXpTY1VYz13ZrYQpLMMPPPnyBwYMF6tmUoaaGooYBRFZuyF7eA2Rmh", + "address": "FHnt4NL7yPYFPhzqSveXAcZoYdrVoixDAB1UJuLY9i7nhrMyZn1eki5ERSLbxvA", "amount": { - "quantity": 223, + "quantity": 46, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 13 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 1 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 17 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 27 + }, { "asset_name": "546f6b656e43", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 19 + "quantity": 4 }, { "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 28 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 18 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 13 + "quantity": 16 }, { "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 15 + }, + { + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 16 + "quantity": 1 } ] }, { - "address": "FHnt4NL7yPXsucPfDUE6Vq2bKSy6FTZJj2HuQE8pYBSWVYB4dJj9R9YBdAJduoK", + "address": "addr_test1xz858v6vcw35ha9qwrnaa48ncdp03wu9e0vcc3xuagh934p4xrxf4elj39g3r2vm0gppsnwhcr82wsj0zcedww23k8tse0r0tg", "amount": { - "quantity": 68, + "quantity": 64, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 14 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 10 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 12 + } + ] }, { - "address": "FHnt4NL7yPXkm93dNJZF3819T1EaLWtq8gXBT3JJXZpSosWhTgmwNDLrF4wYA2M", + "address": "addr_test1qr7lnxea9u3ctphmudj7qul2pspkgnmdt2ev26x456sl7jg88tg0p9nwvpjr0tuavn9324sjz0kgvmp8tzswcq4lgfrsfdn6hd", "amount": { - "quantity": 20, + "quantity": 114, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 13 + } + ] }, { - "address": "FHnt4NL7yPYBmwpGD3EGyuwNwdm9i4NvmdZLm473FhjaxLozJtRUTteThppcNmR", + "address": "addr_test1zqfz24cdru9fs7p2hk0agf0860h3rqj5ce7hsyafl3ulsjcqsrduxvf7fdnsx7hkgeuwstfuskm0w4y25q9y735n9cuscaguwq", "amount": { - "quantity": 55, + "quantity": 87, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 9 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 1 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 11 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 30 + } + ] } - ], - "withdrawal": "self" - }, - { - "delegations": [ - { - "quit": { - "stake_key_index": "11038" - } - }, + ] + }, + { + "delegations": [ { "join": { - "pool": "pool1tun5xhr5t9mxksgcva0x5hpzvugyums2spjkuksjqdvzjelsw9n", - "stake_key_index": "83" + "pool": "pool1dpg4x7jw9ausk03ftd0366nzf4cqx4fm2vpzxx6xqdt9cmwulrp", + "stake_key_index": "113" } }, { "quit": { - "stake_key_index": "8237" + "stake_key_index": "12801" } }, { - "quit": { - "stake_key_index": "12570" + "join": { + "pool": "pool1vgepyp33vglngrp5feejclqzxqnkgtnsv40qud278g89qk6qps5", + "stake_key_index": "80" } }, { "quit": { - "stake_key_index": "1316" + "stake_key_index": "5019" } }, { "join": { - "pool": "pool1xphxj7nxtdt4wpjf9a5kvsj203g923cufp99vafl9y3jwt5qc4e", - "stake_key_index": "107" + "pool": "pool1qc2hu7qf9ya9kdmvpsjkw73qvcwkw73cratyjxnxyu8h690v0w6", + "stake_key_index": "5" } }, { - "quit": { - "stake_key_index": "5839" + "join": { + "pool": "pool10q0k77tld4lp7hsugvd8v6q3233x6cj7z4t4jvjjpyp9cqdwxha", + "stake_key_index": "8" } }, { "join": { - "pool": "pool1858pw0fqyvgnzyp2zg85uys5gu6py36pdy2xvmz6fcz3us9uumh", - "stake_key_index": "60" + "pool": "pool1fvj3xkn8qq6quresgszhs4ptxq53j3rpw35zutqwdvu45ez8nyu", + "stake_key_index": "51" } }, { "join": { - "pool": "pool1gyxyjlrvrv4p78srwvkhzqtdg459ceszfp4rqpcmy4fhx8ul2dq", - "stake_key_index": "54" + "pool": "pool1relj7cmv2vrxgrnvx4fjz8pp0a4hcajp09hpvj6rw4l85rn7kea", + "stake_key_index": "15" } }, { - "quit": { - "stake_key_index": "500" + "join": { + "pool": "pool10d5p5uchgdtnzer5pamky7e2pve5ka3fqekxwl35qge4uyhleal", + "stake_key_index": "108" } }, { "quit": { - "stake_key_index": "10941" + "stake_key_index": "13196" } }, { - "quit": { - "stake_key_index": "3772" + "join": { + "pool": "pool105hx5xec2qmy59zcxuxp7kn2zggrzyff2ewzqzrkgay5w5tzuuu", + "stake_key_index": "105" } }, { - "quit": { - "stake_key_index": "2046" + "join": { + "pool": "pool1f9vnq43h9cps7rc6xst5gm24pawsq9ff05ppvfzq93w4qmk4cqk", + "stake_key_index": "17" } }, { "join": { - "pool": "pool1ggy4w468r9kxqrthderkznedqf4x6cesq939236zwuerwq46r7s", - "stake_key_index": "75" + "pool": "pool1qf48yt2fpfrrza278al45jnkwu6h5y6x2uxkz220wun8x7z0skn", + "stake_key_index": "95" } }, { - "join": { - "pool": "pool1vuur5fc8v5nj742m9anzy5jexu55y8s5w94xkrt8p343shjk0ay", - "stake_key_index": "50" + "quit": { + "stake_key_index": "561" } }, { "join": { - "pool": "pool1den4zgrl0qnpy8rzd4ay6d2f8duhk62ppelqyr3adplsxyxdnmn", - "stake_key_index": "88" + "pool": "pool1yv9yvtp2gglrckgmfgvrj0gg834s7lesxyrn27zgdeekqvmh9c9", + "stake_key_index": "14" } }, { - "quit": { - "stake_key_index": "14352" + "join": { + "pool": "pool1tvn454gu0glzzz6sdjq92qjkra3kv0q324qyqz209f48jnkzn6h", + "stake_key_index": "125" } }, { - "quit": { - "stake_key_index": "5320" + "join": { + "pool": "pool1wakq7763p4gp69r58vl4cvchwcfzk5n60a4nkdsr9vwkqk67xkj", + "stake_key_index": "75" } }, { - "quit": { - "stake_key_index": "16281" + "join": { + "pool": "pool19vjysnmq0dtjwzm8vsysuzqjweqrggvqvctxq33stu28uhfjdug", + "stake_key_index": "32" } }, { - "quit": { - "stake_key_index": "13207" + "join": { + "pool": "pool1yvn4jvq9dvhnzspeysy42q6yxvur5dq8237y66mxppn45gvfg5y", + "stake_key_index": "30" } }, { "join": { - "pool": "pool1rgfzwrpa844zzzrpvc0p68rsga94gerfq5kkk75qy7qrvzzvjtp", - "stake_key_index": "25" + "pool": "pool1rqsr5htlgynjq9nl0de4wvjp9e3skkt28fuqul27gcsquk7kfp0", + "stake_key_index": "57" } }, { "quit": { - "stake_key_index": "4494" + "stake_key_index": "209" } }, { - "quit": { - "stake_key_index": "14761" + "join": { + "pool": "pool1fvx8gw6hdfdzujm0sp89y0r22cj46mgh0pmrxdpt2vzk54cdy0v", + "stake_key_index": "26" } }, { "quit": { - "stake_key_index": "6787" + "stake_key_index": "11444" } }, { "quit": { - "stake_key_index": "1818" + "stake_key_index": "8991" } }, { "quit": { - "stake_key_index": "2098" + "stake_key_index": "3909" } }, { "join": { - "pool": "pool1py6kslzwrdc47330daskuse5x55qgvs7sqkhk3ncwdms60hd0hq", - "stake_key_index": "125" + "pool": "pool1wswrwmzgp9h4sreq2qkhx6quggppzk6ddecqclshradnytavgkw", + "stake_key_index": "119" } }, { "join": { - "pool": "pool1tgdp25m90s35yd60xfg3za6tzf4xx037xccxwsedz4rzzyx685m", - "stake_key_index": "94" + "pool": "pool1fu2zk5e6vsdzy5edddhhxfq50fypglppq98xvh6tr3tz64x420r", + "stake_key_index": "38" } }, { - "join": { - "pool": "pool10c0nxs26r588upm08y5cquje0gnz3qqwqcuz5cjf2d28wmky8kq", - "stake_key_index": "42" + "quit": { + "stake_key_index": "9542" } }, { - "join": { - "pool": "pool12ya9c62rpclpjwpdysnqcamzfen8yceyzazzs3rrpauhssju0v4", - "stake_key_index": "22" + "quit": { + "stake_key_index": "3182" + } + }, + { + "quit": { + "stake_key_index": "4278" } } ], + "encoding": "base64", "metadata": { - "30": [] + "1": { + "bytes": "597aa8610ba72266271577363d5f785617163130341b0026ca5f" + } }, "mint_burn": [ { "operation": { "mint": { - "quantity": 14, - "receiving_address": "FHnt4NL7yPXrXCFtiKWCgQpzUsAgdAfFFJBix4ko2Dh9pTh4ruSo7xFS7YhQgP6" + "quantity": 19, + "receiving_address": "addr_test1zpzy8xlyhlcq469z0pvj750qz809hcwgltqtyqmz6t06r0fwlmtjalmdc9e5lf3875ywyvcraquzm7p4x2ful0rzl95st76zvw" } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "3d4b4cd50124ce4a2a1c867a487c1f2d55b447a421d73a185ef50a72197d314e", + "index": 1 + } }, { - "asset_name": "546f6b656e54", "operation": { - "mint": { - "quantity": 1, - "receiving_address": "FHnt4NL7yPYFtfYvpckew8gRwH8QVPYdudWY8T4MbgowxdswDRrQLbtN1h79Wn8" + "burn": { + "quantity": 9 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "775d713a8e627e022d406f293557aa58511c1c7fa70aaac3641075164d510940", + "index": 0 + } }, { - "asset_name": "546f6b656e50", + "asset_name": "546f6b656e56", "operation": { "mint": { - "quantity": 12 + "quantity": 1, + "receiving_address": "addr_test1zz208lpkes2hgvw8fq502xcjpac9zf0tdpqsfpuhk0xzx9stvld0dh8ymlmj0qwmy7w39kxpenry2ywzuryfw2qzf7uqv858s9" } }, "policy_script_template": { @@ -2393,118 +3342,96 @@ }, { "operation": { - "burn": { - "quantity": 13 + "mint": { + "quantity": 18, + "receiving_address": "addr_test1wq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4cl3n4xr" } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "4268386473677c4223c83e20357d7b276c78105f0e224d5266084e222c152641", + "index": 1 } }, { + "asset_name": "546f6b656e56", "operation": { "mint": { - "quantity": 0, - "receiving_address": "FHnt4NL7yPXh25haTNa88becMJhVcjiuhtPew4akvLR17gNoNMLP5PfKAPSS259" + "quantity": 15, + "receiving_address": "FHnt4NL7yPXrZWJhioZ7P4Kw55fopmDNeEQrZ9Ewkb68Pxp3YYwKwRLW2y6SmAw" } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "66c4564f361a61270f048b792d0c7a097e2be627691036664e2a2a5e76272f22", + "index": 1 + } }, { - "asset_name": "546f6b656e4a", + "asset_name": "546f6b656e43", "operation": { "burn": { - "quantity": 13 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "asset_name": "546f6b656e46", - "operation": { - "mint": { - "quantity": 26, - "receiving_address": "FHnt4NL7yPY4EsNCmPZHM4AezghM4uzaJvRXQG4MJ77bLkK724Kv6JpMQpi1ng5" + "quantity": 5 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "7e6d1e57d10742dd146215634e3b273a7c144a38326f311a4ae62c3f4c795719", + "index": 1 } }, { + "asset_name": "546f6b656e41", "operation": { "mint": { - "quantity": 22 + "quantity": 10, + "receiving_address": "addr_test1qq760f2k5rlgvdplexma9vuqes3ystg8gldxfqhkxr0rny5jj0lm6rgxhnm56wvnqk6tkcgcrjgw3sx98l50z7823sxq2hzml4" } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "2e3f3215173185f13a014075294d4f760e755e34fd6041797c7f027008057e52", + "index": 1 } }, { + "asset_name": "546f6b656e44", "operation": { "burn": { - "quantity": 23 + "quantity": 9 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "547553390952446125743c7246137f1276522ee15a24dd30066c4f2b4378271f", + "index": 0 } }, { + "asset_name": "546f6b656e44", "operation": { - "mint": { - "quantity": 16 + "burn": { + "quantity": 19 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "a1690d235f58065b27a95a507da0234121391e627a422ec06470441f23320a91", + "index": 0 + } }, { + "asset_name": "546f6b656e51", "operation": { "burn": { - "quantity": 5 + "quantity": 7 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "b8e260d36e8dad6709937e5601c2632c131ff76d6b7d5d3951110c568f02616c", + "index": 1 } }, { + "asset_name": "546f6b656e4c", "operation": { "mint": { - "quantity": 16, - "receiving_address": "FHnt4NL7yPXr4TJf4HTdyrgsMnRTB8MqE1YvumvcX8hhXjXEtuPUxeAK9BRGSyN" + "quantity": 1, + "receiving_address": "FHnt4NL7yPYD2vvC81DPpVAa73xMvDAW1BVWC8zSZaMRcshw4C1YfXESX5eQEE2" } }, "policy_script_template": { @@ -2521,34 +3448,29 @@ }, { "operation": { - "burn": { - "quantity": 28 + "mint": { + "quantity": 8 } }, "policy_script_template": "cosigner#0" }, { + "asset_name": "546f6b656e43", "operation": { "mint": { - "quantity": 29, - "receiving_address": "FHnt4NL7yPYHKtN7PjcEiYqDZqZCHHhu6iL9ygeGFV1k6xvf7RcYWSMLpYqU8Qr" + "quantity": 13, + "receiving_address": "FHnt4NL7yPXiQQDVDPcac86eFoot2nsAz4VR2odxz4qqWuhEsDRmTdXgDdqHWar" } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "712a6c164e6d51751240217a0923238817a750596f7a1f7f6d170b3db9413b0e", + "index": 0 } }, { - "asset_name": "546f6b656e44", "operation": { - "mint": { - "quantity": 12, - "receiving_address": "FHnt4NL7yPXkLCxxQjLx8rWjsV7is4C67qqniPAJjDaqvbCVWMdXQBTqriP1wkV" + "burn": { + "quantity": 11 } }, "policy_script_template": { @@ -2556,43 +3478,15 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } }, { + "asset_name": "546f6b656e4f", "operation": { "burn": { - "quantity": 27 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "asset_name": "546f6b656e54", - "operation": { - "burn": { - "quantity": 13 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "operation": { - "burn": { - "quantity": 12 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "asset_name": "546f6b656e48", - "operation": { - "burn": { - "quantity": 8 + "quantity": 18 } }, "policy_script_template": { @@ -2605,9 +3499,11 @@ } }, { + "asset_name": "546f6b656e41", "operation": { "mint": { - "quantity": 25 + "quantity": 22, + "receiving_address": "addr_test1vpe53cerjgyz39tv8cpfjsf778mry2rmfv7pqd7n44c63dc7k7xq5" } }, "policy_script_template": { @@ -2615,1714 +3511,1600 @@ "cosigner#0", { "active_from": 100 - } - ] - } - } - ] - }, - { - "delegations": [ - { - "quit": { - "stake_key_index": "2864" - } - }, - { - "join": { - "pool": "pool1ypmkx4j9vf99se22fy3pqtql9ajrv5pfxetswunyzy0pk49pfsd", - "stake_key_index": "94" - } - }, - { - "join": { - "pool": "pool1ye0xvd3zt995vl3uxd7svg3yz5282jphraprvpqvfq9zuyxsm2m", - "stake_key_index": "91" - } - }, - { - "quit": { - "stake_key_index": "6138" - } - }, - { - "join": { - "pool": "pool1gggrjsq8y3t5gsgdxp9n5prjdgrs53sh05aysu3krqu9cu2wkak", - "stake_key_index": "84" - } - }, - { - "join": { - "pool": "pool1yv0kqkjztsdyynj4gu0suhsr8qvpxcsxtq7xgfgttq5ncdwdg6s", - "stake_key_index": "64" - } - }, - { - "join": { - "pool": "pool1dddssutupgdnu6c8rar36nregvx5k3tdg5djqd28z97h23ma5un", - "stake_key_index": "70" - } - }, - { - "join": { - "pool": "pool1f9jzw8cnrcs4jnz7tus3syj7fa9pzkm4zezk786jvdd5y63mztp", - "stake_key_index": "72" - } - }, - { - "join": { - "pool": "pool1vd88vg3v23d9q9gxvv636vf7war3xkqwzs4cqxjfra74syg5vx5", - "stake_key_index": "99" - } - }, - { - "quit": { - "stake_key_index": "1622" - } - }, - { - "quit": { - "stake_key_index": "11680" - } - }, - { - "join": { - "pool": "pool1taejyneqz408pqpwg9ck7velx9d45vrd9f5zyuf405u47d2hpfs", - "stake_key_index": "118" - } - }, - { - "join": { - "pool": "pool18swxcgf3rsl9zczepuqxkwsfq5wjys6h2gk85fjzvc4nskzancf", - "stake_key_index": "52" - } - }, - { - "join": { - "pool": "pool1gds5qrj8rd2j66rryuxn7dfngqlkjgfhxyxcqntafqhx553035s", - "stake_key_index": "67" - } - }, - { - "quit": { - "stake_key_index": "5491" + }, + { + "active_until": 150 + } + ] } }, { - "quit": { - "stake_key_index": "181" + "asset_name": "546f6b656e50", + "operation": { + "burn": { + "quantity": 16 + } + }, + "reference_input": { + "id": "3735c86637420f1907521d022410728a12706159597d146824727161b41a64dc", + "index": 1 } }, { - "join": { - "pool": "pool12chhglchwyzyq8p0yecnveemd9352t34gdzryac22pj4wdx4y7c", - "stake_key_index": "94" + "asset_name": "546f6b656e4d", + "operation": { + "mint": { + "quantity": 22, + "receiving_address": "FHnt4NL7yPXvfwR5hSQqtSC48QyTtcw5ho1qzkiWqZ9ppQr3f81HGpGkbERh1PM" + } + }, + "reference_input": { + "id": "675861703a401053c421d64d75c1a0587e130e6911363a3d1b76237cec767569", + "index": 1 } }, { - "quit": { - "stake_key_index": "13286" + "operation": { + "burn": { + "quantity": 16 + } + }, + "reference_input": { + "id": "047d7b2a0f1f3796906f161e335b7469486e1c3511234745521e146e0e1c4532", + "index": 0 } }, { - "quit": { - "stake_key_index": "10791" + "operation": { + "mint": { + "quantity": 13, + "receiving_address": "addr_test1wpu9ypxcu5alhdn256m2agcwxfdjwf252may9y53quggmhsu46rs4" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] } }, { - "quit": { - "stake_key_index": "10153" + "operation": { + "mint": { + "quantity": 30, + "receiving_address": "FHnt4NL7yPY6UuBCssaGZuYZXSKkVtMCnoW7FCW9MN5xdxMjov9tMZ7hZxCgArM" + } + }, + "reference_input": { + "id": "2c6c4b3f2cf6008e5f120c1919031e5269f26ce2913e422226565f3ca8585158", + "index": 1 } }, { - "join": { - "pool": "pool1wcep5yr4zuxkgvcd8vp5xq29g4gzxkqp2u5qccnwwckqq42n34l", - "stake_key_index": "61" - } - } - ], - "encoding": "base64", - "metadata": { - "5": { - "string": "󺟶" - } - }, - "payments": [ - { - "address": "FHnt4NL7yPY1JHsawRpdX464Zur2ZvS8tB5n7A2rHvUibK7dyuMaqj5LntmcAD6", - "amount": { - "quantity": 79, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 30 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 13 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 14 + "asset_name": "546f6b656e4c", + "operation": { + "burn": { + "quantity": 16 } - ] - }, - { - "address": "FHnt4NL7yPXwZ7vLMGhxUqEqjtKpdCnAHuubW7PRReG2wsMn3udEaL636EpqRgs", - "amount": { - "quantity": 25, - "unit": "lovelace" }, - "assets": [] + "reference_input": { + "id": "126e730f2c4f1e09713a6c4253332959cf1d9b2107225d213075387c0154351e", + "index": 1 + } }, { - "address": "FHnt4NL7yPYApXZPnWJwNLGJFzKUey7iQKWp3cThpbxgeWgToh9ZVktCe6wVmhs", - "amount": { - "quantity": 160, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 23 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 20 + "operation": { + "mint": { + "quantity": 13, + "receiving_address": "addr_test1vrguwl488tzry2f5z32sg2selc9j5qs2mj2drmh9j2hm0cqcnepwt" } - ] - }, - { - "address": "FHnt4NL7yPY9souVsep2hPFRH2zMAVh85suJUkapbKtgBxuTp7rBU9sWA3wG8CB", - "amount": { - "quantity": 106, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 16 - } - ] + "policy_script_template": "cosigner#0" }, { - "address": "FHnt4NL7yPY6U9LhPfA8xkngbY2684PTm8Z8hhNqQRXVkb493odPpqV5JmLdgaT", - "amount": { - "quantity": 34, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 21 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 7 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 18 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 37 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 16 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 39 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 18 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 29 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 3 + "operation": { + "burn": { + "quantity": 6 } - ] - }, - { - "address": "FHnt4NL7yPY1SRi3Ltnu94jHhBJshjfr5QyGPwxqUJCjF1TDwLuMZd929ecg8Td", - "amount": { - "quantity": 177, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 - } - ] + "reference_input": { + "id": "1dde684a34726344314d199503fa851f7f591771466564df5a5c4c0c6d36254a", + "index": 0 + } }, { - "address": "FHnt4NL7yPY3sGbqhGpSKS8kqG8vK9D6magQxrZB8CvvSCVecqgXcEgGA1f3193", - "amount": { - "quantity": 157, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 20 + "operation": { + "mint": { + "quantity": 27, + "receiving_address": "addr_test1qrjkwn2x9v2kd3klr8v2kjkq0ayle9vpwzvl6ln932z08flf8fny0tarnn652lqsuaf52ljmvqc6hmzud8wp7dpkt40sr95emg" } - ] - }, - { - "address": "FHnt4NL7yPXpVhZsNbesKmB9Trcvsf6sVSWvjJtb5BUsmWr455QgDWftn6oHySv", - "amount": { - "quantity": 9, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 - } - ] - } - ], - "withdrawal": "self" - }, - { - "delegations": [ - { - "quit": { - "stake_key_index": "10193" + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] } } ], - "encoding": "base16", - "metadata": { - "23": "0xc4251c1e345d77d4083d456222795c2845705a530ff6184e672e4b110d7b59596dd6125f0d0b7205694168682794087f5f2a649ec60c642547621c" - }, "payments": [ { - "address": "FHnt4NL7yPY17NR4Tmqdpd9fBWJf3HN2dHwCm8XhJuD5wnLCwghebCJPnfbufEP", + "address": "addr_test1zza2leunuv8r8uwh2kpz2dvvzpfxt84p05avrw2p4fpdgnj40nfju5tnnaghn3h6tv4mf2awdxk9nsquvlmm644s2n7q0mc85x", "amount": { - "quantity": 43, + "quantity": 27, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 10 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 22 } ] }, { - "address": "FHnt4NL7yPXgSsh8ELm7EpGU9saDgEstBdHwEshBhfznJvxh1VwrmLumkdmsT2j", + "address": "addr_test1xrh9fd42039u2jsz537fnazfx7j7x4tn2zme7rxlvfyc9ymqhdcq50efz7k37y3x8klv4y8d4edzgk770mskra2njq7q22ltay", "amount": { - "quantity": 191, + "quantity": 9, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 1 + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 24 } ] }, { - "address": "FHnt4NL7yPYAoAYfaWR4HhUxFHXPXwHoxaiCcnRbaTYFmuWt34uXHToiKfkpRzv", - "amount": { - "quantity": 32, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPYH1io9H9AWPrdLhNMS3DmdiLqyEVen1qk49eFziJmS3km3FET7GWB", - "amount": { - "quantity": 232, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXqDJCx3ef7BHvJuZTn7BLeBtQftMmPAnZYvGpcjk3m59BfUjC5ThX", + "address": "FHnt4NL7yPXzCE6K7QoUxsodDLh26innxLf63neHvt2VF3S7dtHh9xCptrpWpHZ", "amount": { - "quantity": 240, + "quantity": 73, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 5 } ] }, { - "address": "FHnt4NL7yPYESDbAUfXVVAcHBJUz7kV4A9qtb4d6iygNd5mh4m9yigkqYN8fb8Y", + "address": "addr_test1xrew6al06d57xcx22xmcmeezzncy6u0jxj06z9r6r83jlpyf6kuqdxjqmmlpg3avyz70uc5wnf2m7jr83q2hqjrff3hqp706wu", "amount": { - "quantity": 100, + "quantity": 206, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1wqsck3e6pf25f8kpv9jsxgueqk6r4vgl8jcvr0aww6dp07gmkur2j", + "amount": { + "quantity": 85, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 4 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 6 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 28 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 18 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 17 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 33 + }, { "asset_name": "546f6b656e44", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 11 + "quantity": 16 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 15 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 23 } ] }, { - "address": "FHnt4NL7yPYE5Yfw5EffafLQAVs6fiYZAX5rZVLqw2iFRW5tBQvH88ri9e9mMpH", + "address": "FHnt4NL7yPY9HwPpVxyMd5byicy3GkyjfKmUjWVvU2R29p5hP1oo72Dg3Et6E48", "amount": { - "quantity": 36, + "quantity": 28, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 49 + }, { "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 9 + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 5 }, { "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 18 + }, + { + "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 + "quantity": 23 }, { "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 15 + "quantity": 7 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 47 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 18 }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 12 - } - ] - }, - { - "address": "FHnt4NL7yPXsCzy99pzENuyomtEyay78HGN2e1znvNGNsQKYfQUa38iF7PU7Boq", - "amount": { - "quantity": 57, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPYAHdW7hVsRp82ef3b16NNVaMKnKQuCbmboeJ4vJYg3FbQJHWc3mqc", - "amount": { - "quantity": 80, - "unit": "lovelace" - }, - "assets": [ + "quantity": 19 + }, { "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 13 + "quantity": 8 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 22 } ] }, { - "address": "FHnt4NL7yPXzK2YL5rf58FF8imzzDT2fqSaipvZz5TeRSwCJfD8gJ3eSRXtjNhr", + "address": "FHnt4NL7yPXqYMizeZpKq2RP5i8JE5hPoNMzv9gJXRSnE2uBLFDWqjGBjsZhXQR", "amount": { - "quantity": 231, + "quantity": 2, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 27 + "quantity": 10 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 59 + "quantity": 5 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", "quantity": 28 }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 27 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 22 + }, { "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 9 + "quantity": 16 }, { "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 18 + "quantity": 24 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 10 + }, + { + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", "quantity": 14 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 22 + "quantity": 8 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 30 + "quantity": 28 }, { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 22 + "asset_name": "546f6b656e43", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 13 }, { "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 8 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 17 } ] }, { - "address": "FHnt4NL7yPYCRyWBiUupxj5BZJpCcQm5UkWFE3a1h44PtA614Auf8hRgjbMjL9B", + "address": "addr_test1vprhr4fp4q2tctvyvymj7wpsu4gkynmhdmx82ee9phg40psrh7lft", "amount": { - "quantity": 111, + "quantity": 254, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1wzcjk6m0z5r7en07jwusmzv26pe68skpt00jm97e7zc3epqp3lale", + "amount": { + "quantity": 188, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 14 + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 27 } ] }, { - "address": "FHnt4NL7yPY8kT3QUjMoYHMvCSEkbpkFfeycQBhp56qUHDVSNJYnNcpxSGLEkiy", + "address": "addr_test1vzlph9puy0lcsq9wpj6z4dcasg9gd7u5xrgpeh7evvq0e2syna938", "amount": { - "quantity": 237, + "quantity": 68, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXu41vyRyVJZr3BtcDwTc3vziR43ni9JN1bM32vfyQCvZLFCkR2ze8", + "amount": { + "quantity": 174, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 3 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 25 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 12 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 12 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 15 - }, - { - "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 15 - }, + "quantity": 19 + } + ] + }, + { + "address": "FHnt4NL7yPXso2svWi7E7u6wBiuyv1pJuenKT4sV6ysYg32sGbaZSCwtEj1oGJ2", + "amount": { + "quantity": 211, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPY9AFMozzZg2EPaNpfpJ2xpijEhT4kNRnQFCQiZ8ia5AokfHh42rtN", + "amount": { + "quantity": 75, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 1 + "quantity": 22 } ] }, { - "address": "FHnt4NL7yPXh8HvSnfG9Pu3ooWWxjaVzUGp5KTcJ4hAeMcNTEV2pD3fFL6hhYw8", + "address": "addr_test1wz5xw2w25n6t7sh3ywg22axecagvkj3e0vdaf4vhkv2ywnc5v4nwr", "amount": { - "quantity": 130, + "quantity": 95, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 19 + } + ] + }, + { + "address": "addr_test1vr5shze0szc0xrmzyjye34275c0dh396ru2nzl6fvnlqhccx655l4", + "amount": { + "quantity": 8, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 23 + "quantity": 10 }, { "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 53 + "quantity": 1 }, { "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 + "quantity": 59 }, { "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 8 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 4 }, { "asset_name": "546f6b656e45", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 30 + "quantity": 21 }, { "asset_name": "546f6b656e41", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 29 + "quantity": 45 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 25 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 22 } ] }, { - "address": "FHnt4NL7yPXmXUWZSZaLL4x9rd3Aba94w6tCd9EpDLmk8XX3PixCdkRNG4T3uGQ", + "address": "FHnt4NL7yPYKwgQKGwYQN7c7qpdsBtwEVKgyqBkTCzYmn42PnizDYA1D3EjyymJ", "amount": { - "quantity": 214, + "quantity": 20, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 32 + "quantity": 21 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 27 + "quantity": 43 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 16 + }, + { + "asset_name": "546f6b656e41", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 10 - } - ] - }, - { - "address": "FHnt4NL7yPXv3pPC3VJ1QU3saKtYRFSFem5k4d6PQTc5e2XtvsuL99Pryj8eiMD", - "amount": { - "quantity": 8, - "unit": "lovelace" - }, - "assets": [ + "quantity": 17 + }, { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 16 + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 8 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 14 } ] }, { - "address": "FHnt4NL7yPYFVe8EoceJbHvbTyWCSKXEn1oKDdtcSMeANk6pc2GCArnymYTFbYy", + "address": "addr_test1wpdszv6xcmx728ez7fwrgwe8nuepuytwyaxhtc9kgpehd4gax0hvz", "amount": { - "quantity": 37, + "quantity": 249, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 + "quantity": 1 }, { "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 29 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 32 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 12 + "quantity": 22 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 9 + "quantity": 11 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 30 + "quantity": 1 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 11 + "quantity": 17 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 + "quantity": 23 }, { "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 32 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 37 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e45", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 3 + "quantity": 37 } ] }, { - "address": "FHnt4NL7yPY27qMeYHTMbk5mEfUEYBJdfyDDPTCfqN3c3uw44WrueCpH888cNHv", + "address": "FHnt4NL7yPYCUTHZmX5WQeJCxPrKVHt3xfPXBuj83qkMHNCfB31g5cbad84Hbyj", + "amount": { + "quantity": 126, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXvmkR59hFALGyUCvu7vPgkVb8xkTY46tYVDoXwPsv4ELzKCNXsbeL", "amount": { - "quantity": 70, + "quantity": 44, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e41", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 7 + "quantity": 34 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 30 + "quantity": 4 }, { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", "quantity": 8 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 23 + "quantity": 15 }, { "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 16 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 25 }, { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 19 - } - ] - }, - { - "address": "FHnt4NL7yPYFAdVetyYEdsq2jCMuCk6TYAQZQCXjNV1Dz9biiQJfC8ZJGXvc5Eq", - "amount": { - "quantity": 45, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 10 + "quantity": 22 }, { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 20 - } - ] - }, - { - "address": "FHnt4NL7yPYFeERv7DPoBejAGXSaYNVcCz18PbpzJesqBquX2qWxsqkZXDKe9DV", - "amount": { - "quantity": 100, - "unit": "lovelace" - }, - "assets": [ + "asset_name": "546f6b656e41", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 23 + }, { "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 2 }, { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 18 + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 30 }, { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 2 }, { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 38 + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 26 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 1 + "quantity": 14 } ] }, { - "address": "FHnt4NL7yPY8kS377Rwb4ZJfBsWxnMe4Lejx8i4DoASEnyEGeVRoWtiGPo7wWBL", + "address": "FHnt4NL7yPY85y2Nc2cEtPx1qS7io21cQYn3xzpsz3gTY9ZbQB1jBX6vu1iM6qR", "amount": { - "quantity": 234, + "quantity": 254, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 27 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 - }, { "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 + "quantity": 30 }, { - "asset_name": "546f6b656e44", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 26 }, { "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", + "policy_id": "44444444444444444444444444444444444444444444444444444444", "quantity": 3 }, { "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 6 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 35 } ] }, { - "address": "FHnt4NL7yPXo1VYB5NApJ2ebgbq1DrjC3AYmPLbg4omFhtiwLULpqxf3LZJyKKr", + "address": "addr_test1zrfl0ef7mg9c9z45s7uml96tlx2x2f82nmh3fz6el3w9dq8hvh3k463p4zr0u7xr0u27dzpdp8kw6zdm36af58duvt3qscg645", "amount": { - "quantity": 128, + "quantity": 122, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPYDXqixnQyz8BDzXMTXWEavr4WXBDdTTE6QcDMt1TZksuD3WV1ikrc", + "address": "addr_test1zq7plfmaj0yrwgsszsa63838rmaaauhj930r7gnjn2vq2zp9ytdl76qk203at3zpfsyqhs3cu0arqttpdqpw3ylhcdkqfrj40v", "amount": { - "quantity": 31, + "quantity": 78, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 13 + "quantity": 5 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 1 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 24 }, { "asset_name": "546f6b656e43", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 + "quantity": 1 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 18 }, { "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 3 + "quantity": 31 }, { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 30 + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 23 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 30 + "quantity": 19 }, { "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 16 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 43 + }, + { + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 9 + "quantity": 4 } ] }, { - "address": "FHnt4NL7yPXqJjxw3WvD3SYt6meEv69TJZaMmArTUsHhyJYTJkZR9pyiXMZnWKQ", + "address": "FHnt4NL7yPY774qPzmN1kuG97EfnSFTdgPZd52GcXFSne6mku3xqYxJ5hfVccrj", "amount": { - "quantity": 98, + "quantity": 158, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPXuHm8iqRsUa3XPeQKgbCaED75vZTu4JQSzVsCmFncNDy5QbF4KJsk", - "amount": { - "quantity": 52, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 26 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 27 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 17 - } - ] - }, - { - "address": "FHnt4NL7yPYGTqw5Zi9CmcWPKMXP2poWpzeYsKeus8CzKRBxSEpKr7dBWGnMU2H", + "address": "addr_test1yp8qnkpvh7hhvyqups5nd7tf9f6sjjk570q4mhkqyner8lzjms758dkjge0fvyyuuadtvx47t6wpmz3unnn0lz36755q0vknh0", "amount": { - "quantity": 63, + "quantity": 47, "unit": "lovelace" }, "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 2 - }, { "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 18 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 + "quantity": 40 }, { "asset_name": "546f6b656e45", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 22 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 18 + "quantity": 16 }, { "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 + "quantity": 24 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 18 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 23 + "quantity": 7 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 11 + "quantity": 18 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 3 + "quantity": 28 } ] }, { - "address": "FHnt4NL7yPXydJGa6sQW8w1Tv7qRWbFgziahs4UjtqcBC6x1FjfcZ72u1e6Rf4f", + "address": "FHnt4NL7yPXharVatMp7StYhhnEYcBME6hmubQUaFePcyr9MDGPpW6DSbVhJzkg", "amount": { - "quantity": 242, + "quantity": 18, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 14 + } + ] }, { - "address": "FHnt4NL7yPY2sif7earcVf3U3SfAZeg5rD7x4XMzhJyntpt4JiDagkKS5N1YkPr", + "address": "addr_test1wr2yzgn42ws0r2t9lmnavzs0wf9ndrw3hhduyzrnplxwhncaya5f8", "amount": { - "quantity": 187, + "quantity": 113, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 14 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 18 }, { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 19 + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 2 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 24 + "quantity": 25 }, { "asset_name": "546f6b656e41", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 10 + "quantity": 4 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 17 + "quantity": 25 }, { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 11 + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 25 }, { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 42 + "asset_name": "546f6b656e45", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 7 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 29 + "quantity": 6 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 7 + "quantity": 19 } ] + } + ] + }, + { + "delegations": [ + { + "join": { + "pool": "pool1zs89s2mjxarxknmx89sxvtzr8afx28340y6jgp3gr4rqksp2n6h", + "stake_key_index": "104" + } }, { - "address": "FHnt4NL7yPY9ZFCtP8zoWrrK3oQM3SF34eGUC2DmL6YEx2z5mnf9Nqfigon5b1V", - "amount": { - "quantity": 122, - "unit": "lovelace" - }, - "assets": [] + "quit": { + "stake_key_index": "12457" + } }, { - "address": "FHnt4NL7yPY8d4xKX7pTx8EaskGdgkBSqkeJk5z1u4kS8XejZHrW9eTUk4J4GQ4", - "amount": { - "quantity": 147, - "unit": "lovelace" - }, - "assets": [] - } - ], - "withdrawal": "self" - }, - { - "metadata": { - "9": { - "list": [ - { - "int": -2 - } - ] - } - }, - "mint_burn": [ + "quit": { + "stake_key_index": "4021" + } + }, { - "asset_name": "546f6b656e57", - "operation": { - "burn": { - "quantity": 13 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "join": { + "pool": "pool1quv5q6n5qy8ysc6dzad4wge3fsw4w72nsq9zc3pezvf3w5eajfg", + "stake_key_index": "103" } }, { - "operation": { - "mint": { - "quantity": 17, - "receiving_address": "FHnt4NL7yPYGBwomynkGsMqfpmg5S5fc7YppwnmpebV7mhkuyS3BPhB7Qdcg6LK" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "join": { + "pool": "pool1rcu36uqd8qpq6yzlrvnzqfp5r95ysf6rgs94u3e4yclhgm685ja", + "stake_key_index": "69" } }, { - "operation": { - "burn": { - "quantity": 14 - } - }, - "policy_script_template": "cosigner#0" + "join": { + "pool": "pool1pg34uv3e8qqqwdmqfqyhsytsp3v3ygrv254xvnpctegqkq0yjwm", + "stake_key_index": "119" + } }, { - "operation": { - "mint": { - "quantity": 7, - "receiving_address": "FHnt4NL7yPXyCNsurcDTdyNDqG8yaJ9HkDKpRtHtiUjbZSJn4sWcZkPmhTUFPhy" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "join": { + "pool": "pool1q5x85urntdhk5anlw5fskw6dwv73w9grry05jsg4t3052gaaxnf", + "stake_key_index": "111" } }, { - "asset_name": "546f6b656e48", - "operation": { - "burn": { - "quantity": 16 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "quit": { + "stake_key_index": "8762" + } + }, + { + "join": { + "pool": "pool1f5nqxfekqgc8vkn309p9v6ff9f04kmpnp44ny52vy3rnq9a4sve", + "stake_key_index": "120" + } + }, + { + "quit": { + "stake_key_index": "3742" + } + }, + { + "join": { + "pool": "pool1ypsszaedwdj37xmj955xqyfrxul5s32n95g5zapvwa2xus4ddjs", + "stake_key_index": "15" + } + }, + { + "join": { + "pool": "pool1rcukzt63z4f9jyr79qx4sagswd43sgnzvgu8wtgqvufrqrmd9qg", + "stake_key_index": "64" + } + }, + { + "quit": { + "stake_key_index": "5414" + } + }, + { + "join": { + "pool": "pool1peu3x8cxv3e82ez38yg8696ntam8y3zxzcv46uz6wq95wdcdq75", + "stake_key_index": "41" + } + }, + { + "quit": { + "stake_key_index": "13465" + } + }, + { + "join": { + "pool": "pool19gyh29g5tcjxcr6mwg33qhchpacx6m6rqg7nkqm0rpq86tnzjt4", + "stake_key_index": "24" + } + }, + { + "quit": { + "stake_key_index": "10023" + } + }, + { + "quit": { + "stake_key_index": "4496" + } + }, + { + "quit": { + "stake_key_index": "5761" + } + }, + { + "quit": { + "stake_key_index": "13591" + } + }, + { + "quit": { + "stake_key_index": "10674" + } + }, + { + "quit": { + "stake_key_index": "7317" + } + }, + { + "quit": { + "stake_key_index": "8887" } }, { - "asset_name": "546f6b656e4a", - "operation": { - "mint": { - "quantity": 0 - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "join": { + "pool": "pool1pq74smewwuq9jrr5fvlz56zupskxswjx9dmqv7s4xd6j5cwecc3", + "stake_key_index": "70" } }, { - "asset_name": "546f6b656e41", - "operation": { - "mint": { - "quantity": 30, - "receiving_address": "FHnt4NL7yPYLAXuLWNQG2g3LwWWVYMtes1zGeA3hYvRo1AAXT7NQ5naCGsNbzp8" - } - }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "quit": { + "stake_key_index": "13927" } }, { - "operation": { - "burn": { - "quantity": 3 - } - }, - "policy_script_template": "cosigner#0" + "join": { + "pool": "pool1yfq35yppfqeq2ne4xuphczs4gfw464spxu7ruvs2zet4cx6dd2r", + "stake_key_index": "64" + } + }, + { + "quit": { + "stake_key_index": "13679" + } + }, + { + "join": { + "pool": "pool125er2km2duqzwcc48d3r6cj0y324fqrc8al4xe22dvhn679wz7l", + "stake_key_index": "35" + } } ], + "encoding": "base16", + "metadata": { + "20": { + "map": [ + { + "k": { + "string": "䢒􉤔󾇣􎒿" + }, + "v": { + "list": [ + { + "list": [] + }, + { + "map": [] + } + ] + } + } + ] + } + }, "payments": [ { - "address": "FHnt4NL7yPXnMtK4CK6cu9ynUKWoGcumwA1zMckye7JFtXzkpdp9sHqFjUXugJt", + "address": "FHnt4NL7yPY1NxFXr8znvGWHwDqAxktHKkCiRejVbxFbKXuWhuzfMyRLdXbqazS", "amount": { - "quantity": 246, + "quantity": 212, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 - }, + "asset_name": "546f6b656e44", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 26 + } + ] + }, + { + "address": "addr_test1wphmgwsewvmmzv64vlk2a3ahu6l3pwd3kpsgdt59jvz5tjcjmz3s9", + "amount": { + "quantity": 169, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 + "quantity": 20 }, { "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", + "policy_id": "11111111111111111111111111111111111111111111111111111111", "quantity": 9 }, { "asset_name": "546f6b656e44", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 18 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 27 }, { "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 17 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 23 }, { "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 44 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 15 }, { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 13 }, { "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 6 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 2 }, { "asset_name": "546f6b656e44", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 20 + "quantity": 14 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 18 + "quantity": 25 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 10 } ] }, { - "address": "FHnt4NL7yPXrSBrYwGG9SG5XHrPRHPYWx576Hx2QUofpdr4TABdVXXsKhewe4tA", + "address": "FHnt4NL7yPXyhDjaRsd5AMzQ38PyMDGTWvtG1nUQCYtn4gJhNbeRWSATur2NK5b", "amount": { - "quantity": 206, + "quantity": 165, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXinpAG2AAq6KkQqPygfSiJretdnc9saQosefrLV8qYcJYzbXHF9So", + "amount": { + "quantity": 160, + "unit": "lovelace" + }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 26 + } + ] + }, + { + "address": "addr_test1qqafp9gldc0rh0ct9shr47kynuzk4jsz86u9swj8k557qnflm87pd9aefj8parwn4qmer9g08ulplu02ystwa33ykgmsy36k9l", + "amount": { + "quantity": 12, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPYDK75iMm79z68HhoFpa2Jbx4j4nJGp9qJxtBFg99BxxRpmqfcgWMq", + "amount": { + "quantity": 19, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXnWmLNpDyXjwCaMkhmEGfuQnR9iyYiechCFMBtiscuK6MvwWAndSY", + "amount": { + "quantity": 34, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPYAcfy5E7Co52gupsBeyAVYvcmBNmoJuyjV8LuSJFRUJmjCVqPkSn4", + "amount": { + "quantity": 138, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 25 + "quantity": 16 }, { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 11 }, { "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 30 + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 26 }, { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 5 + "asset_name": "546f6b656e42", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 19 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e44", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 27 + "quantity": 47 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 14 + "quantity": 24 }, { "asset_name": "546f6b656e45", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 3 + "quantity": 25 } ] }, { - "address": "FHnt4NL7yPXvbgWqEqr7JMadFW5hrSHhzWFTvMm1yEiTZP5tD7FLXUwDutc5ko1", + "address": "addr_test1wzlrpdmujc5crrvwlyfner8sxu2hjls4ly6la0d06dtsezsudfcru", + "amount": { + "quantity": 77, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPYEUApf6ETT5vqiY6ET3CJPNvVanogU6iN9BBtafqzZNA2fDBt8atz", "amount": { - "quantity": 107, + "quantity": 208, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 13 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 48 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 44 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 8 + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 1 } ] }, { - "address": "FHnt4NL7yPYFz4QZq6Rd6wG6zCNUeY9Sx1meWeyJEYwCCUt2F9wtQjWuqZMMgQp", + "address": "addr_test1xz6agmxjqhnp6lgm692fu9wdnhlv03mc0r90zkd2n23mywqwgcpvtml527fdt9pa42yqry3ym80e569xvhnrfpv7sp8q7tlvkq", "amount": { - "quantity": 40, + "quantity": 43, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 4 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 26 - }, - { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 40 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 10 + "quantity": 1 }, { "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 19 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 51 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 27 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 + "quantity": 11 }, { "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 18 + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 6 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 13 - }, + "quantity": 35 + } + ] + }, + { + "address": "addr_test1qrathq05tp7d43wknzu9m3yezshj47wa3jjmksuy5plks55hpjfpmnqn4s2uu768h3vusm67fxv5umxqaqhugdrd5pfsdl94p0", + "amount": { + "quantity": 59, + "unit": "lovelace" + }, + "assets": [ { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 27 + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 14 } ] }, { - "address": "FHnt4NL7yPXsUSFU9nGdfox9KeQW9eNT7kVF796psjDEeDXFPhSPzXFkw5zkafN", + "address": "FHnt4NL7yPXmbbXawrWPYQcgxmUF41qwLpbYfrUBddYVEvEf2omWCekemxbDmqC", + "amount": { + "quantity": 183, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1vzc5wwzteh4e37dn8lz078vf5zltp60d4fqmq2s0l037v7sdt6t72", "amount": { - "quantity": 171, + "quantity": 189, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 22 + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 8 } ] }, { - "address": "FHnt4NL7yPYAkUhe9chkGjSjm1g8bHAjghozQ8zRXCJhNWVi6Q5UXXRRLCHbTjF", + "address": "FHnt4NL7yPXqquzrHQ7NSuYPHMhnZbYLfZSuvPfxzmwCXLvVKqm5UES2vBzybbd", "amount": { - "quantity": 96, + "quantity": 17, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPY3TatMjTdBRd4TU9nrXAVFCqF761BYR4fRrvRrR2LYXNZvmPMWsBh", + "address": "FHnt4NL7yPXimpN2EtJXTdowvgBHpjCNjx2wgQfZPsrHwaRzxyuDdfuf32Asd73", "amount": { - "quantity": 196, + "quantity": 164, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPXqUtzhPM9Kaob7kG2XUxt4JkPw6E6d84X63zVPq7o1MTuep7UFxHn", + "address": "FHnt4NL7yPY3rxK8oN2Dx59E1MV1NG5kZuSVWJGEiCUPVZhShnuBpkDY2F6HVbY", "amount": { - "quantity": 104, + "quantity": 59, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", + "policy_id": "11111111111111111111111111111111111111111111111111111111", "quantity": 27 } ] }, { - "address": "FHnt4NL7yPY9jywWrUX4c3KBUTrLegFM46V1mWgj7mKeMFCz2gQQc6k1dMCAuBN", + "address": "addr_test1vqrvyc3a305he8uyun3l2ne9d6rxnkjzxav4f7ugj0qwlfsw80dxq", "amount": { - "quantity": 113, + "quantity": 253, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 12 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 21 - }, + "quantity": 28 + } + ] + }, + { + "address": "FHnt4NL7yPY2DfLvrnrnYFZerJWJ15C8enfAw372USP83MFff9TGm4wzSxqbEjx", + "amount": { + "quantity": 35, + "unit": "lovelace" + }, + "assets": [ { "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", + "policy_id": "00000000000000000000000000000000000000000000000000000000", "quantity": 14 }, { "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 21 + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 16 }, { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 25 + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 24 }, { "asset_name": "546f6b656e45", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 29 + "quantity": 4 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 29 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 22 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 2 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 3 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 29 + "quantity": 18 } ] }, { - "address": "FHnt4NL7yPXtPBwp7efY3RRUyxdFDfUjzoDDp68hiWxsjvyigryd9AV7XvSc89Q", + "address": "addr_test1xzjyhtmahjvq9mzth8vq2gmzpm9wdp9pyk3uyswzujf72ttcqzkgyfzq7u0d3ye60mhxv8503sghgkgkhg97qvzqtejqt6uewk", "amount": { - "quantity": 28, + "quantity": 175, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPYEXW7Hf8hmhJ3NJVpJ2uqExF91VEKVxzhHQVmGWS37MycGqTVEANP", + "amount": { + "quantity": 20, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 10 + "quantity": 19 } ] }, { - "address": "FHnt4NL7yPXhUBptB8Pt3U8jBYCqEqkwuRHavNdLRyteQik6LsFFFrgPBvgkusV", + "address": "FHnt4NL7yPXoWuD8aK283NPMeY9yyzGuEGDyYbttG6BnVuHsLgocNCJncALg4nN", "amount": { - "quantity": 114, + "quantity": 203, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPYKWcFLJ44rTCQ4TzpsiCSrEV1cJ3DGjUwdMuU15BDL2qqpvcwXC23", + "amount": { + "quantity": 11, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 26 + }, { "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 11 + "quantity": 9 }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 22 + }, + { + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 5 + }, + { + "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", "quantity": 20 }, { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 1 + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 13 }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 9 + "quantity": 28 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e43", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 21 + }, + { + "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 30 + "quantity": 25 } ] }, { - "address": "FHnt4NL7yPXpEkeX9uzH6FeVk7GEqg1anZKBSJZPkHnLLxgvQPZLXocZz33qY8J", + "address": "addr_test1vzzcq372cc94jd9ymdyq64m894xp3zd44ufey7x4ket79cqavq9h0", "amount": { - "quantity": 96, + "quantity": 24, "unit": "lovelace" }, - "assets": [] + "assets": [ + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 14 + } + ] }, { - "address": "FHnt4NL7yPXj5fwvtf4E7fFmSoMgScUjKTupdTpvUfmj7r7Gi8JPQvrahzKNrDL", + "address": "addr_test1wpqlpetx9f77w2muth20f8qgvt35cdt2e3hp0655p7n8mpcysvzvg", "amount": { - "quantity": 66, + "quantity": 252, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPY7ThEvDwuTpbVjmAKd2pezgQ23WyE2VhYVRiTrf5xyzz9o4pD3sPp", + "address": "FHnt4NL7yPY6fHdKdqyfzT1mAJn1V15c9kptG8Ki8tpKPZGoj7x1RZzrMZM9Ag1", "amount": { - "quantity": 229, + "quantity": 49, "unit": "lovelace" }, - "assets": [] - } - ], - "withdrawal": "self" - }, - { - "delegations": [ - { - "quit": { - "stake_key_index": "12885" - } - }, - { - "join": { - "pool": "pool1t4rqy7cqgecrkupcwg595sjd2fhh7m2yd4gn58pwdsw56v6he6w", - "stake_key_index": "112" - } - }, - { - "quit": { - "stake_key_index": "7969" - } - }, - { - "quit": { - "stake_key_index": "4148" - } - }, - { - "join": { - "pool": "pool1rdmx653q8s23wump9phsg9p804tquuf4wy5nw7pmyfv8qspjhz7", - "stake_key_index": "12" - } - }, - { - "join": { - "pool": "pool1rgcrslcercmyqzquv9tscufmwu995pr0p9pj276fdvz8jmj7hkh", - "stake_key_index": "4" - } - }, - { - "quit": { - "stake_key_index": "11029" - } - }, - { - "quit": { - "stake_key_index": "6350" - } - }, - { - "join": { - "pool": "pool1r98j2gq8f4pn6w2qqgmhgyjqp9wcqnzxv33sw5n7fyn4zn94v7y", - "stake_key_index": "11" - } - }, - { - "join": { - "pool": "pool19dtyk9ef94hpkmgtw52z75tpqd59j4fyqaz3u56lrdh4zc8e9ax", - "stake_key_index": "54" - } - }, - { - "join": { - "pool": "pool18as35g28xa79yg679d2zydgvd5cpcpg8dc3pyverp3pyk6eavek", - "stake_key_index": "31" - } - }, - { - "join": { - "pool": "pool1pctszz37vsy9ve3cyp9z57r82awrxlf3pc686tn3tdr3wqar250", - "stake_key_index": "121" - } - }, - { - "quit": { - "stake_key_index": "5404" - } - }, - { - "join": { - "pool": "pool104hs59nrg9thqv6c0gg5zfq6fuzjzhffry9qvqgsq9q4wrpum3u", - "stake_key_index": "92" - } - }, + "assets": [ + { + "asset_name": "546f6b656e41", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 19 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 23 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 7 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 19 + }, + { + "asset_name": "546f6b656e42", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 6 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 38 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 15 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 5 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 10 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 51 + } + ] + } + ], + "withdrawal": "self" + }, + { + "delegations": [ { "join": { - "pool": "pool19f3427p6x3arumpr0gujzd37ffwpqcjpvugkza6d0ug42yxsmkm", - "stake_key_index": "13" + "pool": "pool1xyy4c06jpdsj6scjv3sr22gp8s2sgmcc8y0xc0r4qa58qywg272", + "stake_key_index": "82" } }, { "quit": { - "stake_key_index": "13421" - } - }, - { - "join": { - "pool": "pool1zcqq5hm80yhjgl6h8s5s6ucm8q5xjlg42q28wveaqg4z7q2a2w8", - "stake_key_index": "112" - } - }, - { - "join": { - "pool": "pool18an5vmfe2fxj7lrszsh8ul35tdyxvcntvfkyz0j3tvhpxgjhcwx", - "stake_key_index": "117" + "stake_key_index": "13536" } }, { "quit": { - "stake_key_index": "16026" + "stake_key_index": "6469" } }, { "join": { - "pool": "pool1xqxzwd2wfdnxjdc4y3dncdnv23yxjdqsvucp6tt6p49yqfckzej", - "stake_key_index": "99" + "pool": "pool1v3e97j64w375w8f5vs3jjkrpzeanq5td93phglp3f3jj2nhd9y4", + "stake_key_index": "55" } }, { "quit": { - "stake_key_index": "7535" - } - }, - { - "join": { - "pool": "pool1wacsjs3593rjx7q2teznsggexa43z0p7tcupkjcpwftj2mzemcp", - "stake_key_index": "98" + "stake_key_index": "4190" } } ], "encoding": "base64", "metadata": { - "11": {} + "3": { + "map": [] + } }, "mint_burn": [ { "operation": { - "mint": { - "quantity": 1, - "receiving_address": "FHnt4NL7yPXpMCgWvaV9GyGmW4bAommaPyhn6vmTYtx57SywDxPz8k6kkPbYcm6" + "burn": { + "quantity": 6 } }, "policy_script_template": { @@ -4335,53 +5117,52 @@ } }, { - "asset_name": "546f6b656e5a", + "asset_name": "546f6b656e43", "operation": { "burn": { - "quantity": 26 + "quantity": 21 } }, "policy_script_template": "cosigner#0" }, { + "asset_name": "546f6b656e48", "operation": { "burn": { - "quantity": 17 + "quantity": 29 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "564b3b72bf5f6f6a09295d1a21130250ea15d278661f4c3a0e3921447e7a7d02", + "index": 1 } }, { - "asset_name": "546f6b656e42", + "asset_name": "546f6b656e52", + "operation": { + "mint": { + "quantity": 0, + "receiving_address": "FHnt4NL7yPXhYBUuHmssCJxSofPgrBzttF2b7UpYDJxF84Dc3FF91KxGJzrEFtj" + } + }, + "policy_script_template": "cosigner#0" + }, + { "operation": { "burn": { - "quantity": 17 + "quantity": 15 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "241a0a16164ead2b0069203b9049606b68045c0b4f52292f102d7606754d7d63", + "index": 0 } }, { - "asset_name": "546f6b656e49", + "asset_name": "546f6b656e4f", "operation": { "burn": { - "quantity": 6 + "quantity": 23 } }, "policy_script_template": { @@ -4398,27 +5179,21 @@ }, { "operation": { - "mint": { - "quantity": 23, - "receiving_address": "FHnt4NL7yPXkDAgTGzkZU9w6FNzPUUegnXfX9zhb16y6SEtMMCBdkoJffu9vuME" + "burn": { + "quantity": 9 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "0941a01a7a5e7b2b107b7750690d0d2726c33205266725342d82943c6f3f580b", + "index": 0 } }, { + "asset_name": "546f6b656e45", "operation": { - "burn": { - "quantity": 2 + "mint": { + "quantity": 25, + "receiving_address": "FHnt4NL7yPY7VYzad3bUkZTtDhGd4n9XmNbYYJc38wA71tuK7T2RXKqKCnUwm7U" } }, "policy_script_template": { @@ -4426,14 +5201,19 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, { + "asset_name": "546f6b656e4f", "operation": { - "burn": { - "quantity": 22 + "mint": { + "quantity": 6, + "receiving_address": "FHnt4NL7yPXgTFpzV7s1QxbTgHQeFiRYA29zBWvakCK2Yt45xN6KpfRPMb14jy1" } }, "policy_script_template": { @@ -4441,30 +5221,31 @@ "cosigner#0", { "active_from": 100 + }, + { + "active_until": 150 } ] } }, { + "asset_name": "546f6b656e49", "operation": { - "burn": { - "quantity": 4 + "mint": { + "quantity": 11, + "receiving_address": "addr_test1wzgjg8fl600txkk9ymheq248mhg65kw7pdu4e7l9c54n59gzkv94a" } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "2b387191360e5b943875484f5c28766a34614e323e3e430a1b4461767513623f", + "index": 1 } }, { "operation": { "mint": { - "quantity": 24, - "receiving_address": "FHnt4NL7yPXhhYm4oyxXXshsLQudXxmQeoHZ6BXcUVVQWjsiTmHg9FURjCC55NA" + "quantity": 0, + "receiving_address": "FHnt4NL7yPYGakxtCHhqByiPpuRNfqM8kgJzr3P2k8r86RdGn7P3kPC46Tj2qkS" } }, "policy_script_template": { @@ -4478,19 +5259,34 @@ } ] } - }, + } + ], + "withdrawal": "self" + }, + { + "encoding": "base64", + "metadata": { + "15": { + "string": "跾" + } + }, + "mint_burn": [ { "operation": { "burn": { - "quantity": 30 + "quantity": 13 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "8f178a6029e2121a0e2b5824012075765b1a4238a00b6c58784c7f603470316a", + "index": 1 + } }, { + "asset_name": "546f6b656e4f", "operation": { "burn": { - "quantity": 23 + "quantity": 1 } }, "policy_script_template": { @@ -4503,9 +5299,21 @@ } }, { + "asset_name": "546f6b656e59", "operation": { "burn": { - "quantity": 4 + "quantity": 14 + } + }, + "reference_input": { + "id": "4d3854653370cc00566209360572645f270a550b3ba41e456077f6737f77103e", + "index": 0 + } + }, + { + "operation": { + "burn": { + "quantity": 1 } }, "policy_script_template": { @@ -4521,30 +5329,20 @@ } }, { - "asset_name": "546f6b656e4f", "operation": { "mint": { - "quantity": 2, - "receiving_address": "FHnt4NL7yPYJFHaSC9XGVcXys1DT5F1u33kcNQnCfo8X1jCTedqtca1H8m3cYZX" + "quantity": 1 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "100475d6143a275001222c793b6b1c4415cf16a010e73f72492fe14a21231129", + "index": 1 + } }, { - "asset_name": "546f6b656e57", "operation": { "burn": { - "quantity": 6 - } - }, - "policy_script_template": "cosigner#0" - }, - { - "asset_name": "546f6b656e47", - "operation": { - "mint": { - "quantity": 11, - "receiving_address": "FHnt4NL7yPXsbUA6eQqcBycs93tBCsuupLNeFLB9ghXzefFa7GhcKe8ZasAygDs" + "quantity": 29 } }, "policy_script_template": { @@ -4557,116 +5355,118 @@ } }, { - "asset_name": "546f6b656e49", "operation": { "burn": { - "quantity": 8 + "quantity": 23 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "343d38520d6d18463e543463000870a43d017f1d6f5b2e2dca362656590f0c3e", + "index": 1 } }, { + "asset_name": "546f6b656e42", "operation": { - "mint": { - "quantity": 15, - "receiving_address": "FHnt4NL7yPXpaLktyvMtMqmQ183gMTJg5yJePdMiY4exwDC4PBLpnoeLxmz7o1s" + "burn": { + "quantity": 26 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "0b60ec1817504c2e5e71471a165b5f2c215928437b5c51482e0c0a2f53444119", + "index": 1 + } }, { - "asset_name": "546f6b656e5a", + "asset_name": "546f6b656e45", "operation": { "burn": { - "quantity": 18 + "quantity": 26 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "74635e553c60142461f3640179e7436e76302c5a72ef206c646d550418464e73", + "index": 1 + } + }, + { + "asset_name": "546f6b656e43", + "operation": { + "mint": { + "quantity": 27, + "receiving_address": "FHnt4NL7yPXzetDFA1vSXzHEdpZFyhBEmHd3L3m5UCuotGqReeyZbTknw75Agqd" + } + }, + "reference_input": { + "id": "1f0842612e70b15b383a66b31a76793850250d106f1a1208d84b2276105b4d77", + "index": 1 } }, { "asset_name": "546f6b656e4b", "operation": { "burn": { - "quantity": 29 + "quantity": 25 } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - }, - { - "active_until": 150 - } - ] + "reference_input": { + "id": "2d263c3c2e06640c5a18dd50257b354a490113236d41203302673c887c0e362b", + "index": 1 } }, { - "asset_name": "546f6b656e4b", "operation": { "mint": { - "quantity": 9 + "quantity": 25 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "6752207935554601ed70550d974a59987040ad08141d58434cfb0f482549543d", + "index": 1 + } }, { - "asset_name": "546f6b656e52", + "asset_name": "546f6b656e42", "operation": { - "burn": { - "quantity": 29 + "mint": { + "quantity": 12, + "receiving_address": "addr_test1yz236dsfdhwwj82kwph508fk725y7vwrg45zrl8n7ex59dw7ny5jwzv2hk42akrfdqeuueku2gxrwnhhljzzw3e6y2rq8kupnm" } }, - "policy_script_template": { - "all": [ - "cosigner#0", - { - "active_from": 100 - } - ] + "reference_input": { + "id": "03537e653739411e5270275c181171687d74dd397e7552b6733427371b6b1c52", + "index": 0 } }, { + "asset_name": "546f6b656e51", "operation": { - "mint": { - "quantity": 18, - "receiving_address": "FHnt4NL7yPYHeptdEciPrJ9PBRBM3r1hh7Kan8xE2a7ZAW2Ur7xwvZ8i26Uadmo" + "burn": { + "quantity": 30 } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "8d1e3a30695a9d08324662097e6fe617dbc97e171a5e34076856346d0846ca46", + "index": 0 + } }, { + "asset_name": "546f6b656e4e", "operation": { "mint": { - "quantity": 16, - "receiving_address": "FHnt4NL7yPYK4K2ZGxP9aicPp2fJV733GMCcxo7hjFoYcwX5hkobj6MGjoAP4et" + "quantity": 8, + "receiving_address": "FHnt4NL7yPXzbeXrEUm3wCGXY6WzSxoiHRL9ayvnEWs7DhwnerBHNjSfiCFk3aR" } }, - "policy_script_template": "cosigner#0" + "reference_input": { + "id": "03607c3d376a2e5f564e51bd5b49364e6116776248f1432430446bcc25e27d69", + "index": 1 + } }, { - "asset_name": "546f6b656e4b", "operation": { - "mint": { - "quantity": 27 + "burn": { + "quantity": 11 } }, "policy_script_template": { @@ -4674,18 +5474,16 @@ "cosigner#0", { "active_from": 100 - }, - { - "active_until": 150 } ] } }, { - "asset_name": "546f6b656e49", + "asset_name": "546f6b656e53", "operation": { "mint": { - "quantity": 25 + "quantity": 25, + "receiving_address": "FHnt4NL7yPY5yf382E8vcJLrUZtE6ZUNQXAWWQmzZ544BYP9ktTbgi5uCF4E1C8" } }, "policy_script_template": { @@ -4701,9 +5499,10 @@ } }, { + "asset_name": "546f6b656e59", "operation": { "burn": { - "quantity": 17 + "quantity": 28 } }, "policy_script_template": { @@ -4721,8 +5520,17 @@ { "operation": { "mint": { - "quantity": 15, - "receiving_address": "FHnt4NL7yPY1q2sFX1CbtZi2KHwKBFbcohWXLs6b4tkqPVwSRW4AMqoSLacbo7C" + "quantity": 14, + "receiving_address": "addr_test1xpz29adjeduqszw2jdm8p9mxeazfve5m9qrrycxpll265lwz0ema5fmfmmkj84nrkg58lqyhpr2wug8r8w7tn5aw0zxq0ps04u" + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e4c", + "operation": { + "burn": { + "quantity": 22 } }, "policy_script_template": { @@ -4735,535 +5543,348 @@ } }, { - "asset_name": "546f6b656e57", + "asset_name": "546f6b656e50", "operation": { - "mint": { - "quantity": 28, - "receiving_address": "FHnt4NL7yPXrfRZMG1E7kQnjrxXLanJik5fyh1ShG1bHVMN6tPQyd1txCr9q1Lo" + "burn": { + "quantity": 12 } }, - "policy_script_template": "cosigner#0" - } - ], - "payments": [ - { - "address": "FHnt4NL7yPY2cBYVYYC4jti615HQmT3MBrvvUSNAmL3odqB5ZVoCLFbb9hStwTG", - "amount": { - "quantity": 0, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 25 - } - ] + "reference_input": { + "id": "735c140c4c1b394011063e254f35e535160157042271b667c81e43793e0e4bf4", + "index": 0 + } }, { - "address": "FHnt4NL7yPY8dTT9o2Bdf96BCwKCcgiXucCZPZfnxfTTwegV4NZw5jKVG8iU9WP", - "amount": { - "quantity": 90, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 17 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 14 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 17 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 27 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 4 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 38 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 30 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 24 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", + "operation": { + "burn": { "quantity": 18 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 9 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 20 } - ] - }, - { - "address": "FHnt4NL7yPY5VCNYAeHQJmSD5aaxaMLfWiSoNNJWR8ST8DNiTVfcXN1YDydy8wy", - "amount": { - "quantity": 13, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 12 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 8 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 9 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 11 - } - ] + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } }, { - "address": "FHnt4NL7yPXnJv8MXTneAZSzfaNoPhGttLPLkvgi4cY11da34GWjNHsm9Z1wZ4y", - "amount": { - "quantity": 229, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 21 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 39 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 17 + "operation": { + "burn": { + "quantity": 13 } - ] - }, - { - "address": "FHnt4NL7yPYJwpugU7EWrZW3pdFUcxBNFwAm9BKstToddQUXsJPU7RhYGrnBXTU", - "amount": { - "quantity": 87, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPY5GYCDerh2XGjcGezArG54UWU7n4GTqLdMfxWwKmeu3ZZY9VjjjWk", - "amount": { - "quantity": 56, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPY2q8hmJpX1kohYMSRHZ3Xp4UxWdGfRPCxoPfr7GNBsGdVRZEgkTB6", - "amount": { - "quantity": 92, - "unit": "lovelace" - }, - "assets": [] - }, - { - "address": "FHnt4NL7yPXqQLtjmSSaiqhaySQDTG8bxV1HjBsbGc9fNNHtsQJjxJTqncGpCmD", - "amount": { - "quantity": 57, - "unit": "lovelace" }, - "assets": [] + "reference_input": { + "id": "94625815027a3f39336d5edf0416822569799c49e93b5b4b06051a39253ca228", + "index": 1 + } }, { - "address": "FHnt4NL7yPXnrza5VpTdJ6r6m7jeHJsgnCfEd9HZRoSi4b2gLcguhnxWa2khqQf", - "amount": { - "quantity": 47, - "unit": "lovelace" - }, - "assets": [ - { - "asset_name": "546f6b656e41", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 2 + "asset_name": "546f6b656e55", + "operation": { + "burn": { + "quantity": 8 } - ] - }, - { - "address": "FHnt4NL7yPYARTGtrj46rqjyfkHDJPXR8g1Dc5vYotro1K5vvfCRPWsXj9obuyG", - "amount": { - "quantity": 4, - "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e43", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 36 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 17 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 74 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 16 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 25 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 16 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 11 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 35 + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e49", + "operation": { + "mint": { + "quantity": 14, + "receiving_address": "FHnt4NL7yPYFbTLj2B1qpVbRuh6xXSFVhojMzKasjHNHU7wuBbCVzmfhqqDjU3r" } - ] + }, + "reference_input": { + "id": "5006c223c6355d7a6f674b280d7e742b6774303f5e6f524e010d452e1f0d565f", + "index": 0 + } + }, + { + "asset_name": "546f6b656e51", + "operation": { + "mint": { + "quantity": 16, + "receiving_address": "addr_test1wrk3rmp03w4x4vsuw8svt0dekyg67lukgykedemkxt93l0cefmkps" + } + }, + "policy_script_template": "cosigner#0" }, { - "address": "FHnt4NL7yPXo2vwLVZDTFNzng853GgRcoa9M6XkziWn1DuVRiEVhbg7TdpRVPpE", + "asset_name": "546f6b656e4e", + "operation": { + "mint": { + "quantity": 17, + "receiving_address": "addr_test1vq3hsgn747w0vwenxt6wp8qqzvn5d8u2vfufp6yttz6xthgns4564" + } + }, + "reference_input": { + "id": "b4344961307a6e73d53227647d1c1756585f2910a078210e5a3d752e472b505e", + "index": 0 + } + } + ], + "payments": [ + { + "address": "addr_test1vpt3gsp7jfn0kt4xa3t88k3ac955x0ve875rh0wrkggcrmqyxxyxf", "amount": { - "quantity": 241, + "quantity": 208, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 22 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 24 - }, - { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e43", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 14 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 24 + "quantity": 29 } ] }, { - "address": "FHnt4NL7yPXj2vbw2tLXeK7Yyucvwr9NnhJFarH6z7gvd8PVz5FnDMj3CJFR5zY", + "address": "FHnt4NL7yPY86CEER3sjgohE1jCMCBnn1baN5uhLBLMMzsHtyb785a8NX8w4vQJ", "amount": { - "quantity": 192, + "quantity": 146, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "FHnt4NL7yPXkx4aJsHi89hkRqFTsNQPHqJwBsKbNi1uCtRu28ABT43x2CRHb7hz", + "amount": { + "quantity": 153, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 20 + "quantity": 27 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e41", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 + "quantity": 53 }, { - "asset_name": "546f6b656e42", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 12 + "asset_name": "546f6b656e44", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 8 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 10 + "quantity": 6 }, { "asset_name": "546f6b656e44", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 20 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 2 + "quantity": 25 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 3 + "quantity": 23 }, { "asset_name": "546f6b656e44", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 2 + "quantity": 17 }, { "asset_name": "546f6b656e45", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 14 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 21 + "quantity": 5 }, { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e45", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 18 + "quantity": 9 } ] }, { - "address": "FHnt4NL7yPXnSARryJCpQRKkGBjvt1eFLTiwASVzfBD2AVtWZAoGmpoxPoFy3R1", + "address": "addr_test1qqqkqa2ncwnfca00cp2d9z3a3cpaxz6lu8v33ndhxfy74gf89a465ywmzg63uks604nj2c7hgeumyfk3kfffylu2jjksr942tg", "amount": { - "quantity": 87, + "quantity": 153, + "unit": "lovelace" + }, + "assets": [] + }, + { + "address": "addr_test1qzlj6uml949g8ncxws58l7q8sev8anjnprc7cgev5xm8raj9mdyz9eu2z0jxdrhngahqn4typrm5kzqhuz9cureqxplqx65kxy", + "amount": { + "quantity": 2, "unit": "lovelace" }, "assets": [ { "asset_name": "546f6b656e41", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 20 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 6 + "quantity": 7 }, { - "asset_name": "546f6b656e43", + "asset_name": "546f6b656e44", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 29 - }, - { - "asset_name": "546f6b656e41", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 2 + "quantity": 15 }, { "asset_name": "546f6b656e42", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 30 + "quantity": 18 }, { "asset_name": "546f6b656e44", "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 23 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 3 + "quantity": 30 }, { - "asset_name": "546f6b656e45", + "asset_name": "546f6b656e41", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 17 + "quantity": 4 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 6 + "quantity": 5 }, { "asset_name": "546f6b656e42", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 43 + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 12 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e43", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 4 + "quantity": 31 } ] }, { - "address": "FHnt4NL7yPXyNjmdUSJSFbAmbJb4zjiXNF7atTN6NHeHSpMxRWscrGGxVbz8XqE", + "address": "addr_test1zq6npny6ulegj5g34xdh5qscfhtupn48gf83vvkh89gmr4aklhew6hyf3hzegds922t4vmj8s5azp0xmk4td7zmkepuqueukre", "amount": { - "quantity": 2, + "quantity": 237, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e44", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 22 - } - ] + "assets": [] }, { - "address": "FHnt4NL7yPXxseGb8o5P2jKe29oE4A1YsbjhSZBHrs9AYnZEWaBJSUyUZNpFz3i", + "address": "addr_test1vzad7ua3tpv87k6hmtzhceehp6g9v22j3he0v88wpzn66ms6khyf4", "amount": { - "quantity": 216, + "quantity": 215, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", + "asset_name": "546f6b656e42", "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 19 + "quantity": 30 }, { - "asset_name": "546f6b656e41", + "asset_name": "546f6b656e42", "policy_id": "22222222222222222222222222222222222222222222222222222222", - "quantity": 8 + "quantity": 1 }, { - "asset_name": "546f6b656e41", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 19 + "asset_name": "546f6b656e43", + "policy_id": "22222222222222222222222222222222222222222222222222222222", + "quantity": 17 }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 16 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "33333333333333333333333333333333333333333333333333333333", - "quantity": 46 + "quantity": 11 }, { "asset_name": "546f6b656e42", "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 6 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 22 + "quantity": 5 } ] }, { - "address": "FHnt4NL7yPXwPKMdN8yJkHh6wSnhHUWMztcgYni5VAsp63e72VAkw7nuf377TBT", + "address": "FHnt4NL7yPY4tSvbCmUSLuvQxQseRbvRk7Mg8GhXtHdAscdSrvBgxw3qMCo4wGJ", "amount": { - "quantity": 104, + "quantity": 86, "unit": "lovelace" }, - "assets": [ - { - "asset_name": "546f6b656e42", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 16 - }, - { - "asset_name": "546f6b656e43", - "policy_id": "00000000000000000000000000000000000000000000000000000000", - "quantity": 22 - }, - { - "asset_name": "546f6b656e45", - "policy_id": "11111111111111111111111111111111111111111111111111111111", - "quantity": 24 - }, - { - "asset_name": "546f6b656e42", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 2 - }, - { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 10 - } - ] + "assets": [] }, { - "address": "FHnt4NL7yPXzwU6TdhBS8RoGGGAUQhqZj7gFowg3BRMMkDCLwZk4XxvYarVRceF", + "address": "FHnt4NL7yPXnqQ23Gxq4qbJLeR23hbQfmKwjeykHj8P89cptBduqPrEwkALBbzV", "amount": { - "quantity": 255, + "quantity": 130, "unit": "lovelace" }, "assets": [ { - "asset_name": "546f6b656e44", - "policy_id": "44444444444444444444444444444444444444444444444444444444", - "quantity": 18 + "asset_name": "546f6b656e43", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 17 } ] }, { - "address": "FHnt4NL7yPXsvM4piuxRcdz7J9yn4U8rLMFMdz4wWSwhk6B9QMxK7LgdwfS8eTG", + "address": "addr_test1xr6ft60wym5lxlk2pweevdauwalrasz3mt63zh07kfhax9rtydakpugrfz7xuxzs2gtyeus2glgnshu8lf2l7kvhufrskfgvlt", "amount": { - "quantity": 35, + "quantity": 157, "unit": "lovelace" }, "assets": [] }, { - "address": "FHnt4NL7yPY5KziQWTp99t1PUjNKkMsuq8kzBYGXmSUHARCKZRrza5UL4SE4Qqk", + "address": "FHnt4NL7yPYJ7QqhrsotDVed4MSyKTkYuSgqB3HbMvDwwVYn5KHTA1tRPvE5eoo", "amount": { - "quantity": 231, + "quantity": 186, "unit": "lovelace" }, "assets": [ + { + "asset_name": "546f6b656e43", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 28 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "00000000000000000000000000000000000000000000000000000000", + "quantity": 8 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 7 + }, + { + "asset_name": "546f6b656e45", + "policy_id": "11111111111111111111111111111111111111111111111111111111", + "quantity": 12 + }, { "asset_name": "546f6b656e42", "policy_id": "33333333333333333333333333333333333333333333333333333333", "quantity": 28 + }, + { + "asset_name": "546f6b656e44", + "policy_id": "33333333333333333333333333333333333333333333333333333333", + "quantity": 4 + }, + { + "asset_name": "546f6b656e41", + "policy_id": "44444444444444444444444444444444444444444444444444444444", + "quantity": 29 } ] } ] } ], - "seed": -305973261 + "seed": 1553526325 } \ No newline at end of file diff --git a/lib/wallet/test/data/Cardano/Wallet/Api/ApiMintBurnDataTestnet0.json b/lib/wallet/test/data/Cardano/Wallet/Api/ApiMintBurnDataTestnet0.json new file mode 100644 index 00000000000..d505078fccd --- /dev/null +++ b/lib/wallet/test/data/Cardano/Wallet/Api/ApiMintBurnDataTestnet0.json @@ -0,0 +1,139 @@ +{ + "samples": [ + { + "asset_name": "546f6b656e4d", + "operation": { + "burn": { + "quantity": 7 + } + }, + "reference_input": { + "id": "0f7a6c100d41352e416b2549520120d52a483539ed22315591108752085d425c", + "index": 0 + } + }, + { + "operation": { + "mint": { + "quantity": 7 + } + }, + "reference_input": { + "id": "655a22276642634d474639793134467121032e1903264c1b38491272554d07a8", + "index": 0 + } + }, + { + "operation": { + "mint": { + "quantity": 26, + "receiving_address": "FHnt4NL7yPXtKMNKWpYBDKfarp5eFKr6JPdUZh8JnBXqd6V2vm7kbQBNzxfeKru" + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + }, + { + "operation": { + "burn": { + "quantity": 13 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + } + ] + } + }, + { + "asset_name": "546f6b656e42", + "operation": { + "burn": { + "quantity": 17 + } + }, + "reference_input": { + "id": "cf3350f420027389226b48ce4e1dd72859054756694b0b6c4573755a1e077552", + "index": 1 + } + }, + { + "operation": { + "mint": { + "quantity": 17, + "receiving_address": "addr_test1wqw2xldvx8wfj78gjenwumx2xv3m74n6qgdsr2fhsjxm8wcxs9rxv" + } + }, + "reference_input": { + "id": "047c1a694929823f754926b7734d595215317d7b0f62007266485e32357308ee", + "index": 0 + } + }, + { + "operation": { + "mint": { + "quantity": 19, + "receiving_address": "FHnt4NL7yPY9cDvFzoXWntoM4SfuP1GNeNBp52cuNaF6GH9LVrqTgR1x63zGWUv" + } + }, + "reference_input": { + "id": "20617129573a23071e171d1f431e9a2b0b593da60ec76b4342da56845d4c047a", + "index": 0 + } + }, + { + "asset_name": "546f6b656e53", + "operation": { + "burn": { + "quantity": 27 + } + }, + "policy_script_template": "cosigner#0" + }, + { + "asset_name": "546f6b656e48", + "operation": { + "mint": { + "quantity": 0, + "receiving_address": "addr_test1vzkhfr5w6xhkqyp5kyp8nkw7dpzqxs2fadrx5w55ngy4mecgn4r82" + } + }, + "reference_input": { + "id": "3f69ea785425165e705d213414056f1b6b6163384a991a794bb63f0c50146461", + "index": 0 + } + }, + { + "asset_name": "546f6b656e4c", + "operation": { + "mint": { + "quantity": 21 + } + }, + "policy_script_template": { + "all": [ + "cosigner#0", + { + "active_from": 100 + }, + { + "active_until": 150 + } + ] + } + } + ], + "seed": -1584764791 +} \ No newline at end of file diff --git a/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs b/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs index fef60073718..0217fc5e9d0 100644 --- a/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs +++ b/lib/wallet/test/unit/Cardano/Wallet/Api/TypesSpec.hs @@ -143,6 +143,8 @@ import Cardano.Wallet.Api.Types , ApiMaintenanceAction (..) , ApiMaintenanceActionPostData (..) , ApiMintBurnData (..) + , ApiMintBurnDataFromInput (..) + , ApiMintBurnDataFromScript (..) , ApiMintBurnOperation (..) , ApiMintData (..) , ApiMnemonicT (..) @@ -631,6 +633,7 @@ spec = do jsonTest @ApiIncompleteSharedWallet jsonTest @ApiMaintenanceAction jsonTest @ApiMaintenanceActionPostData + jsonTest @(ApiMintBurnData T0) jsonTest @ApiMultiDelegationAction jsonTest @ApiNetworkClock jsonTest @ApiNetworkInformation @@ -1842,6 +1845,7 @@ instance HasSNetworkId n => Arbitrary (ApiConstructTransactionData n) where <*> arbitrary <*> arbitrary <*> pure Nothing + <*> pure Nothing <*> elements [Just HexEncoded, Just Base64Encoded, Nothing] instance HasSNetworkId n => Arbitrary (ApiExternalInput n) where @@ -2052,6 +2056,13 @@ instance ToSchema ApiPostPolicyIdData where instance HasSNetworkId n => Arbitrary (ApiMintBurnData n) where arbitrary = ApiMintBurnData + <$> oneof + [ Left <$> arbitrary @(ApiMintBurnDataFromScript n) + , Right <$> arbitrary @(ApiMintBurnDataFromInput n) + ] + +instance HasSNetworkId n => Arbitrary (ApiMintBurnDataFromScript n) where + arbitrary = ApiMintBurnDataFromScript <$> elements [ ApiT $ RequireSignatureOf (Cosigner 0) , ApiT $ RequireAllOf @@ -2070,6 +2081,15 @@ instance HasSNetworkId n => Arbitrary (ApiMintBurnData n) where ] <*> arbitrary +instance HasSNetworkId n => Arbitrary (ApiMintBurnDataFromInput n) where + arbitrary = ApiMintBurnDataFromInput + <$> (ReferenceInput <$> arbitrary) + <*> oneof + [ Just . ApiT <$> genTokenName + , pure Nothing + ] + <*> arbitrary + instance Arbitrary ApiStakeKeyIndex where arbitrary = ApiStakeKeyIndex <$> arbitrary @@ -2832,6 +2852,9 @@ instance Typeable n => ToSchema (ApiConstructTransactionData n) where addDefinition =<< declareSchemaForDefinition "ScriptTemplateValue" declareSchemaForDefinition "ApiConstructTransactionData" +instance Typeable n => ToSchema (ApiMintBurnData n) where + declareNamedSchema _ = declareSchemaForDefinition "ApiMintBurnData" + instance Typeable n => ToSchema (ApiConstructTransaction n) where declareNamedSchema _ = declareSchemaForDefinition "ApiConstructTransaction" diff --git a/specifications/api/mint-burn.md b/specifications/api/mint-burn.md new file mode 100644 index 00000000000..d2b4b8fd742 --- /dev/null +++ b/specifications/api/mint-burn.md @@ -0,0 +1,84 @@ +# Specification: Minting and Burning + +This document specifies those aspects of the "Transactions New > Construct" HTTP endpoint that relate to minting and burning native assets. + +## Reference inputs for minting scripts + +[Reference inputs][ref] are inputs of a transaction that are not spent; instead, the outputs they reference are made available to, say, Plutus validator scripts for inspection. + + [ref]: https://cips.cardano.org/cips/cip31/#referenceinputs + +In particular, with reference inputs, we can define a minting script in one transaction and reference the script in subsequent transaction(s). In other words, we can save space on the blockchain by defining a script once and referencing it later, instead of including a full copy of the script with every transaction. + +The "Transactions New > Construct" HTTP endpoint allows the creation and use of reference inputs. + +Specifically: + +1. Creation of a transaction output that contains a minting script and is suitable for use as reference input. + + In the `reference_policy_script_template` field, you can optionally add a script template. The HTTP endpoint will map this script template into a script using the wallet's policy public key, and this script will be included in the first transaction output (i.e. at index `0`) of the transaction. + + Example `POST` data for the endpoint: + + ``` + { + ... + "reference_policy_script_template": + { "all": + [ "cosigner#0", + { "active_from": 120 } + ] + }, + ... + } + ``` + +2. Using a refence input that contains a minting script. + + In the `mint_burn` field, the array element contains `reference_input`. This field specifies a transaction input (pair of transaction ID and output index) which will be added as a reference input and is assumed to contain the minting script. (If the corresponding output was created using the method above, the appropriate output index is `0`). + + Example `POST` data for the endpoint with reference input: + + ``` + { + ... + "mint_burn": [{ + "reference_input": + { "id": "464917d2bac71df96269c2d7c34dcb83183b8a3a3253c06e9d6a8bd0681422c9", + "index": 0 + }, + "asset_name": "ab12", + "operation": + { "mint" : + { "receiving_address": #{destination}, + "quantity": 10000 + } + } + }] + ... + } + ``` + + For contrast: Example `POST` data for the endpoint with script template: + + ``` + { + ... + "mint_burn": [{ + "policy_script_template": + { "all": + [ "cosigner#0", + { "active_from": 120 } + ] + }, + "asset_name": "ab12", + "operation": + { "mint" : + { "receiving_address": #{destination}, + "quantity": 10000 + } + } + }] + ... + } + ``` diff --git a/specifications/api/swagger.yaml b/specifications/api/swagger.yaml index 558167a5ee9..68701b95427 100644 --- a/specifications/api/swagger.yaml +++ b/specifications/api/swagger.yaml @@ -3649,14 +3649,25 @@ components: burn: *ApiBurnData ApiMintBurnData: &ApiMintBurnData - type: object - required: - - operation - - policy_script_template - properties: - policy_script_template: *ScriptTemplateValue - asset_name: *assetName - operation: *ApiMintBurnOperation + oneOf: + - type: object + title: minting via script template + required: + - operation + - policy_script_template + properties: + policy_script_template: *ScriptTemplateValue + asset_name: *assetName + operation: *ApiMintBurnOperation + - type: object + title: minting via script reference + required: + - operation + - reference_input + properties: + reference_input: *referenceInput + asset_name: *assetName + operation: *ApiMintBurnOperation ApiConstructTransactionData: &ApiConstructTransactionData description: At least one field needs to be chosen @@ -3674,6 +3685,18 @@ components: containing helpful information. delegations: *transactionDelegations validity_interval: *ApiValidityInterval + reference_policy_script_template: + <<: *ScriptTemplateValue + description: | + Optional policy script template that could be used as a script reference + in another transaction. + In the current transaction, the script will be included as + the first output (`index = 0`). + The script is constructed by replacing the cosigner + with the policy public key of the wallet. + In future transactions, the reference script can be used + by any wallet multiple times + by referencing the current transaction `id` and `index = 0`. encoding: type: string enum: ["base16", "base64"] @@ -7624,7 +7647,7 @@ paths: tags: ["Shared Wallets"] summary: Create description: | -

status: ⚠ under development

+

status: stable

Create a shared wallet from either an account public key and script templates or mnemonic and script templates. @@ -7640,7 +7663,7 @@ paths: tags: ["Shared Wallets"] summary: List description: | -

status: ⚠ under development

+

status: stable

Return a list of known shared wallets, ordered from oldest to newest. responses: *responsesListSharedWallets @@ -7651,7 +7674,7 @@ paths: tags: ["Shared Wallets"] summary: Get description: | -

status: ⚠ under development

+

status: stable

Get a shared wallet for a given wallet id. parameters: @@ -7715,7 +7738,7 @@ paths: tags: ["Shared Wallets"] summary: Update Payment description: | -

status: ⚠ under development

+

status: stable

Update payment script template for a given shared wallet by updating/adding account public key for cosigner. Updating the shared wallet account key results in an error. Also updating is @@ -7737,7 +7760,7 @@ paths: tags: ["Shared Wallets"] summary: Update Delegation description: | -

status: ⚠ under development

+

status: stable

Update delegation script template for a given shared wallet by updating/adding account public key for cosigner. Updating the shared wallet account key results in an error. Also updating is @@ -7759,7 +7782,7 @@ paths: tags: ["Shared Transactions"] summary: Construct description: | -

status: under development

+

status: stable

Create a transaction to be signed from the shared wallet. @@ -7782,7 +7805,7 @@ paths: tags: ["Shared Transactions"] summary: Decode description: | -

status: under development

+

status: stable

Decode a serialized transaction, either freshly constructed, partially signed or fully-signed. @@ -7801,7 +7824,7 @@ paths: tags: ["Shared Transactions"] summary: Sign description: | -

status: under development

+

status: stable

Signs a serialised transaction, returning the modified transaction. @@ -7824,7 +7847,7 @@ paths: tags: ["Shared Transactions"] summary: Submit description: | -

status: under development

+

status: stable

Submit a transaction that was already created and fully signed. Fails for foreign transactions that is transactions which lack the wallet's inputs and withdrawals.