@@ -351,6 +351,19 @@ Once you have your token, you can deploy your iApp.
351351 />
352352</template >
353353
354+ <template v-else-if =" selectedChain === 421614 " >
355+ <CLIDemo
356+ initialCommand="iapp deploy --chain arbitrum-sepolia-testnet"
357+ asciiText="Deploy"
358+ : steps ="arbitrumSepoliaSteps"
359+ : completionStep ="15"
360+ : completionMessage ="'Deployment of your iApp completed successfully:'"
361+ : completionItems ="arbitrumSepoliaCompletionItems"
362+ : successMessage ="'Run iapp run 0x1f80DCebc2EAAff0Db7156413C43B7e88D189923 to execute your iApp on an iExec TEE worker'"
363+ : autoRestart ="true"
364+ />
365+ </template >
366+
354367<template v-else >
355368 <CLIDemo
356369 initialCommand="iapp deploy"
@@ -594,4 +607,90 @@ const bellecourCompletionItems = [
594607 ' └ Docker image: bob/hello-world:0.0.1-tee-scone-5.9.1-v16-ce3a01d9c5d7' ,
595608 ' └ iApp address: 0x1f80DCebc2EAAff0Db7156413C43B7e88D189923'
596609];
610+
611+ const arbitrumSepoliaSteps = [
612+ {
613+ showAt: 2 ,
614+ question: ' Using chain arbitrum-sepolia' ,
615+ answer: ' ' ,
616+ showTyping: false ,
617+ isComplete: true
618+ },
619+ {
620+ showAt: 3 ,
621+ question: ' This method requires sending blockchain transactions, transaction fees will be applied. Would you like to continue?' ,
622+ answer: ' Yes' ,
623+ options: [
624+ { label: ' Yes' , selected: true },
625+ { label: ' no' , selected: false }
626+ ],
627+ highlighted: false ,
628+ showTyping: false ,
629+ isComplete: false
630+ },
631+ {
632+ showAt: 4 ,
633+ question: ' Using saved walletPrivateKey (from iapp.config.json)' ,
634+ answer: ' ' ,
635+ showTyping: false ,
636+ isComplete: true
637+ },
638+ {
639+ showAt: 5 ,
640+ completeAt: 7 ,
641+ question: ' What is your username on DockerHub? (It will be used to properly tag the Docker image)' ,
642+ answer: ' bob' ,
643+ showTyping: true ,
644+ isComplete: false
645+ },
646+ {
647+ showAt: 7 ,
648+ completeAt: 9 ,
649+ question: ' What is your DockerHub access token?' ,
650+ answer: ' **********************' ,
651+ showTyping: true ,
652+ isComplete: false
653+ },
654+ {
655+ showAt: 9 ,
656+ completeAt: 11 ,
657+ question: ' What is the version of your iApp?' ,
658+ answer: ' 0.0.1' ,
659+ showTyping: true ,
660+ isComplete: false
661+ },
662+ {
663+ showAt: 11 ,
664+ question: ' Docker image built (sha256:a53fc4c480f482c384a13266ea2cb6cc5572733c866c44a5f604f4bfab3a744a) and tagged bob/hello-world:0.0.1' ,
665+ answer: ' ' ,
666+ showTyping: false ,
667+ isComplete: true
668+ },
669+ {
670+ showAt: 12 ,
671+ question: ' Pushed image bob/hello-world:0.0.1 on dockerhub' ,
672+ answer: ' ' ,
673+ showTyping: false ,
674+ isComplete: true
675+ },
676+ {
677+ showAt: 13 ,
678+ question: ' Pushed TEE image bob/hello-world:0.0.1-tee-scone-5.9.1-v16-ce3a01d9c5d7 on dockerhub' ,
679+ answer: ' ' ,
680+ showTyping: false ,
681+ isComplete: true
682+ },
683+ {
684+ showAt: 14 ,
685+ question: ' TEE app deployed' ,
686+ answer: ' ' ,
687+ showTyping: false ,
688+ isComplete: true
689+ }
690+ ];
691+
692+ const arbitrumSepoliaCompletionItems = [
693+ ' └ Docker image: bob/hello-world:0.0.1-tee-scone-5.9.1-v16-ce3a01d9c5d7' ,
694+ ' └ iApp address: 0x1f80DCebc2EAAff0Db7156413C43B7e88D189923'
695+ ];
597696</script >
0 commit comments