File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ## [ 0.10.1] - 2024-10-31
6+ - Fix Faucet transaction_link to return the correct transaction link instead of transaction hash.
7+
58## [ 0.10.0] - 2024-10-31
69
710### Changed
Original file line number Diff line number Diff line change 1- __version__ = "0.10.0 "
1+ __version__ = "0.10.1 "
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def transaction_link(self) -> str:
6767 str: The transaction link.
6868
6969 """
70- return self .transaction .transaction_hash
70+ return self .transaction .transaction_link
7171
7272 @property
7373 def status (self ) -> str :
Original file line number Diff line number Diff line change 1414
1515project = 'CDP SDK'
1616author = 'Coinbase Developer Platform'
17- release = '0.10.0 '
17+ release = '0.10.1 '
1818
1919# -- General configuration ---------------------------------------------------
2020# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Original file line number Diff line number Diff line change 11[project ]
22name = " cdp-sdk"
3- version = " 0.10.0 "
3+ version = " 0.10.1 "
44description = " CDP Python SDK"
55readme = " README.md"
66authors = [{name = " John Peterson" , email = " john.peterson@coinbase.com" }]
@@ -141,4 +141,4 @@ line-ending = "auto"
141141known-first-party = [" cdp" ]
142142
143143[tool .coverage .run ]
144- omit = [" cdp/client/*" ]
144+ omit = [" cdp/client/*" ]
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ def test_faucet_tx_initialization(faucet_transaction_factory):
1111
1212 assert isinstance (faucet_transaction , FaucetTransaction )
1313 assert faucet_transaction .transaction_hash == "0xtransactionhash"
14+ assert faucet_transaction .transaction_link == "https://sepolia.basescan.org/tx/0xtransactionlink"
1415 assert faucet_transaction .network_id == "base-sepolia"
1516 assert faucet_transaction .address_id == "0xdestination"
1617 assert faucet_transaction .status .value == "complete"
You can’t perform that action at this time.
0 commit comments