We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeeb1d3 commit 2164c2cCopy full SHA for 2164c2c
examples/exchange_client/explorer_rpc/1_GetTxByHash.py
@@ -7,10 +7,10 @@
7
8
async def main() -> None:
9
# select network: local, testnet, mainnet
10
- network = Network.mainnet()
+ network = Network.testnet()
11
client = AsyncClient(network, insecure=False)
12
composer = Composer(network=network.string())
13
- tx_hash = "50DD80270052D85835939A393127B5626917007E71A7ABD5205F1A094B976C1B"
+ tx_hash = "0F3EBEC1882E1EEAC5B7BDD836E976250F1CD072B79485877CEACCB92ACDDF52"
14
transaction_response = await client.get_tx_by_hash(tx_hash=tx_hash)
15
print(transaction_response)
16
0 commit comments