diff --git a/cobo_custody/client/mpc_client.py b/cobo_custody/client/mpc_client.py index ec70c4d..46fa177 100644 --- a/cobo_custody/client/mpc_client.py +++ b/cobo_custody/client/mpc_client.py @@ -315,3 +315,11 @@ def unlock_spendable(self, coin: str, tx_hash: str, vout_n: int): def get_rare_satoshis(self, coin: str, tx_hash: str, vout_n: int): params = {"coin": coin, "tx_hash": tx_hash, "vout_n": vout_n} return self.request("GET", "/v1/custody/mpc/get_rare_satoshis/", params) + + def get_utxo_assets(self, coin: str, tx_hash: str, vout_n: int): + params = {"coin": coin, "tx_hash": tx_hash, "vout_n": vout_n} + return self.request("GET", "/v1/custody/mpc/get_utxo_assets/", params) + + def get_ordinals_inscription(self, inscription_id: str): + params = {"inscription_id": inscription_id} + return self.request("GET", "/v1/custody/mpc/get_ordinals_inscription/", params)