lib/cardano_wallet/byron.rb in cardano_wallet-0.3.8 vs lib/cardano_wallet/byron.rb in cardano_wallet-0.3.9
- old
+ new
@@ -115,9 +115,14 @@
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/getByronUTxOsStatistics
def utxo(wid)
self.class.get("/byron-wallets/#{wid}/statistics/utxos")
end
+ # @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/getByronWalletUtxoSnapshot
+ def utxo_snapshot(wid)
+ self.class.get("/byron-wallets/#{wid}/utxo")
+ end
+
# Update Byron wallet's passphrase.
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/putByronWalletPassphrase
#
# @example
# update_passphrase(wid, {old_passphrase: "Secure Passphrase", new_passphrase: "Securer Passphrase"})