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 ffcf106 commit 81fda98Copy full SHA for 81fda98
src/aleph_client/commands/instance/__init__.py
@@ -158,10 +158,13 @@ async def create(
158
159
# Force-switches if NFT payment-type
160
if payment_type == "nft":
161
- payment_chain = Chain.AVAX
162
payment_type = PaymentType.hold
163
- console.print(
164
- "[yellow]NFT[/yellow] payment-type selected: Auto-switch to [cyan]AVAX[/cyan] with [red]HOLD[/red]"
+ payment_chain = Chain(
+ Prompt.ask(
+ "On which chain did you claim your NFT voucher?",
165
+ choices=[Chain.AVAX.value, Chain.BASE.value, Chain.SOL.value],
166
+ default=Chain.AVAX.value,
167
+ )
168
)
169
elif payment_type in [ptype.value for ptype in PaymentType]:
170
payment_type = PaymentType(payment_type)
0 commit comments