@@ -25,6 +25,7 @@ const balance = computed(() => fromNano(tvmConnectState.value.balance));
2525 <NavbarItem path =" /deserializer" >Deserializer</NavbarItem >
2626 <NavbarItem path =" /signer" >Signer</NavbarItem >
2727 <NavbarItem path =" /debugger" >Debugger</NavbarItem >
28+ <NavbarItem path =" /disasm" >Disasm</NavbarItem >
2829 <NavbarItem path =" /microwave" >Microwave</NavbarItem >
2930 <NavbarItem path =" /tip3" >TIP3</NavbarItem >
3031 <NavbarItem path =" /tip6" >TIP6</NavbarItem >
@@ -33,28 +34,20 @@ const balance = computed(() => fromNano(tvmConnectState.value.balance));
3334 <div class =" navbar-end" >
3435 <div class =" navbar-item" >
3536 <div class =" wallet" >
36- <button
37- v-if =" !tvmConnectState.isReady"
37+ <button v-if =" !tvmConnectState.isReady"
3838 :class =" ['button is-primary', { 'is-loading': tvmConnectState.isLoading }]"
39- @click =" () => tvmConnect.connect()"
40- >
39+ @click =" () => tvmConnect.connect()" >
4140 <strong >Connect wallet</strong >
4241 </button >
4342 <template v-else >
4443 <div class =" tag is-white is-medium" >
4544 Network ID: {{ tvmConnectState.networkId }}
4645 </div >
47- <button
48- class =" button is-white"
49- @click =" () => tvmConnect.connect()"
50- >
46+ <button class =" button is-white" @click =" () => tvmConnect.connect()" >
5147 {{ tvmConnectState.providerId }}
5248 </button >
53- <button
54- v-if =" tvmConnectState.balance != null"
55- class =" button is-white"
56- v-clipboard =" tvmConnectState.balance"
57- >
49+ <button v-if =" tvmConnectState.balance != null" class =" button is-white"
50+ v-clipboard =" tvmConnectState.balance" >
5851 {{ balance }} {{ CURRENCY }}
5952 </button >
6053 <div class =" field has-addons" >
@@ -64,12 +57,14 @@ const balance = computed(() => fromNano(tvmConnectState.value.balance));
6457 </button >
6558 </div >
6659 <div class =" control" >
67- <button :class =" ['button', { 'is-loading': tvmConnectState.isLoading }]" @click =" tvmConnect.changeAccount" >
60+ <button :class =" ['button', { 'is-loading': tvmConnectState.isLoading }]"
61+ @click =" tvmConnect.changeAccount" >
6862 <span class =" icon" ><i class =" fas fa-sync-alt" /></span >
6963 </button >
7064 </div >
7165 <div class =" control" >
72- <button :class =" ['button', { 'is-loading': tvmConnectState.isLoading }]" @click =" tvmConnect.disconnect" >
66+ <button :class =" ['button', { 'is-loading': tvmConnectState.isLoading }]"
67+ @click =" tvmConnect.disconnect" >
7368 <span class =" icon" ><i class =" fas fa-sign-out-alt" /></span >
7469 </button >
7570 </div >
@@ -83,8 +78,8 @@ const balance = computed(() => fromNano(tvmConnectState.value.balance));
8378</template >
8479
8580<style scoped>
86- .wallet {
87- display : flex ;
88- align-items : center ;
89- }
81+ .wallet {
82+ display : flex ;
83+ align-items : center ;
84+ }
9085 </style >
0 commit comments