From fb669b6f5de5f400640e6a6cc58c3f0bc1dc55d1 Mon Sep 17 00:00:00 2001 From: Rohan Agarwal Date: Wed, 27 Nov 2024 14:45:56 -0500 Subject: [PATCH] Fix --- cdp/wallet_address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdp/wallet_address.py b/cdp/wallet_address.py index e8d801d..1f9a3f9 100644 --- a/cdp/wallet_address.py +++ b/cdp/wallet_address.py @@ -361,7 +361,7 @@ def quote_fund(self, amount: Number | Decimal | str, asset_id: str) -> FundQuote return FundQuote.create( address_id=self.address_id, - amount=str(normalized_amount), + amount=normalized_amount, asset_id=asset_id, network_id=self.network_id, wallet_id=self.wallet_id,