-
Hi Thanks for creating this awesome package! Can you give any guidance on how to connect to the new preprod environment instead of testnet as its no longer supported? https://book.world.dev.cardano.org/environments.html Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
cffls
Sep 4, 2022
Replies: 1 comment 4 replies
-
Hi there, You can use Blockfrost context to connect to preprod or preview. from pycardano import BlockFrostChainContext, Network
chain_context = BlockFrostChainContext(
project_id="YOUR_BLOCKFROST_PROJECT_ID",
network=Network.TESTNET,
base_url="https://cardano-preview.blockfrost.io/api",
) APIs url of different networks could be found here. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
rpabani
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there,
You can use Blockfrost context to connect to preprod or preview.
Example:
APIs url of different networks could be found here.