Skip to content

Commit

Permalink
Beacon genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
cavanmflynn committed Oct 1, 2020
1 parent 1feb239 commit 52f9289
Show file tree
Hide file tree
Showing 8 changed files with 937 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/pages/network-view/network-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
size="small"
type="link"
>
Mint or Redeem tBTC
Mint/Redeem tBTC
</a-button>
<a-button
v-if="isStarted"
@click="openKeepDashboard"
class="page/network-view__extra__app-button"
size="small"
type="link"
>View KEEP Dashboard</a-button
>KEEP Dashboard</a-button
>
<a-button
:type="button.type"
Expand Down
5 changes: 4 additions & 1 deletion src/components/pages/new-network/new-network.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
v-decorator="[
'name',
{
rules: [{ required: true, message: $lang.translate('NETWORK_NAME_REQUIRED') }],
rules: [
{ required: true, message: $lang.translate('NETWORK_NAME_REQUIRED') },
{ max: 16, message: $lang.translate('NETWORK_NAME_MAX_LENGTH') },
],
},
]"
/>
Expand Down
1 change: 1 addition & 0 deletions src/lib/abis/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './keep-random-beacon-operator.abi';
Loading

0 comments on commit 52f9289

Please sign in to comment.