@PaxosGlobal · Post #34 · 23.10.2019 г., 15:46
We just minted our 8th PAX Gold bar! There's now 3,212.268 PAXG in circulation making a market cap of $4,736,392.80! #digitalgold $PAXG! https://www.paxos.com/paxgold/
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #397 · 12 ное.
Использование Pydantic сегодня стало нормой, и это правильно. Но иногда на ревью вижу, что используют его не всегда корректно. Например, метод BaseModel.model_dump() по умолчанию не преобразует стандартные типы, такие как datetime, UUID или Decimal, в простой сериализуемый для JSON вид. Тогда пишут кастмоный сериализатор для этих типов чтобы функция json.dump() не падала с ошибкой. import uuid from datetime import datetime from decimal import Decimal from uuid import UUID from pydantic import BaseModel class MyModel(BaseModel): id: UUID date: datetime value: Decimal obj = MyModel( id=uuid.uuid4(), date=datetime.now(), value='1.23' ) print(obj.model_dump()) # не подходит для json.dump # { # 'id': UUID('4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1'), # 'date': datetime.datetime(2025, 12, 12, 12, 12, 12, 111111), # 'value': Decimal('1.23') # } # добавляем свой кастомный сериализатор json.dumps(obj.model_dump(), cls=MySerializer) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2025-12-12T12:12:12.111111', # 'value': '1.23' # } В данном случае класс MySerializer обрабатывает datetime, UUID и Decimal. Например так: class MySerializer(json.JSONEncoder): def default(self, o): if isinstance(o, Decimal): return str(o) elif isinstance(o, datetime): return o.isoformat() elif isinstance(o, UUID): return str(o) return super().default(o) Специально для тех, кто всё еще так делает - в этом нет необходимости! Pydantic может это сделать сам, просто нужно добавить параметр mode="json". json.dumps(obj.model_dump(mode="json")) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2012-12-12T12:12:12.111111', # 'value': '1.23' # } #pydantic#libs
Пребарај: #digitalgold
@PaxosGlobal · Post #34 · 23.10.2019 г., 15:46
We just minted our 8th PAX Gold bar! There's now 3,212.268 PAXG in circulation making a market cap of $4,736,392.80! #digitalgold $PAXG! https://www.paxos.com/paxgold/
Hashtags
@ethereumglobalnews · Post #1231 · 28.10.2025 г., 04:58
📊 Volatility Compression #BTC#DigitalGold#CryptoMarkets Bitcoin 季度波動率 與黃金差距已縮至 僅 0.2% ➡️ 「數位黃金」敘事 正從故事 → 被數據驗證。 👍@EthereumGlobalNews 🥲 🥲Follow for more Web3 News 🤣
Hashtags
@ethereumglobalnews · Post #1161 · 22.10.2025 г., 11:45
🖼 Trending now: #BTC#Crypto#DigitalGold - Market share vs gold sits at 6%, with potential upside to $170K if it hits 10%. 據 CEO CQ 表示,#比特幣 作為「數位黃金」仍處於早期階段,目前市值僅約為黃金的 6%,從未超過 10%。 若市佔率達到 10%,比特幣價格有望觸及 17 萬美元,顯示長線潛力仍受市場關注。 #Insight @EthereumGlobalNews Follow for more global Web3 & DeFi updates!
@venturevillagewall · Post #4290 · 02.03.2025 г., 22:00
Peter Schiff Admits Bitcoin's Value Notable investor Peter Schiff declares Bitcoin as "digital gold," acknowledging its significance in the market. In related news, $160 million in Bitcoin shorts have been liquidated in the last 4 hours, hinting at major market movements. Read more from Watcher Guru. #Bitcoin#DigitalGold#MarketMovements#Crypto#Trading#Liquidation#Finance#Investment#Schiff
@venturevillagewall · Post #3672 · 21.12.2024 г., 18:50
Sheldon Schiff Proposes USAcoin Peter Schiff advocates replacing Bitcoin as a strategic US reserve with a new crypto asset, USAcoin, featuring a limited supply of 21 million coins and an improved blockchain for better payment capability. He highlights this shift as a pathway to wealth, contrasting his views on Bitcoin, which he refers to as digital gold. Schiff also generated an image with Elon Musk and Donald Trump against a Bitcoin backdrop, criticizing ChatGPT for its content restrictions. _"HODL to the Moon, America!"_ #PeterSchiff#USAcoin#Crypto#Bitcoin#Blockchain#Investment#DigitalGold#Wealth#PaymentSystems#Grok
@venturevillagewall · Post #3757 · 31.12.2024 г., 04:00
2025 Crypto Outlook Highlights Regulatory Impact Franklin Templeton forecasts a favorable regulatory environment led by US regulators like the SEC, supporting more crypto ETFs and tokenized securities. This trend is expected to reposition the US as a global hub for cryptocurrency innovation. Additionally, in noteworthy transactions: 58 million #XLM was transferred between unknown wallets, and CleanSpark withdrew 3,158 Bitcoins from Coinbase, totaling $293.39M. Former CFTC Chairman Chris Giancarlo praised Bitcoin as 'digital gold'. Read more hereTransaction detailsCleanSpark details #Crypto#US#ETFs#Regulation#Bitcoin#DigitalGold#Innovation#Blockchain#CFTC#XLM#WhaleAlert#CleanSpark#Mining#TokenizedSecurities#Finance#Investment#MarketTrends#2025Outlook#DigitalAssets#CryptoNews