Skip to content

Commit

Permalink
ADD: import genesis & setup devnet
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxTheGeeek committed Sep 24, 2024
1 parent 1c7b9cb commit a8b7fb8
Show file tree
Hide file tree
Showing 9 changed files with 389 additions and 296 deletions.
33 changes: 13 additions & 20 deletions launcher/public/output.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");

/*
! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com
! tailwindcss v3.4.6 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -807,10 +807,6 @@ video {
top: -90px;
}

.bottom-0{
bottom: 0px;
}

.bottom-0\.5{
bottom: 0.125rem;
}
Expand Down Expand Up @@ -2391,6 +2387,10 @@ video {
width: 100vw;
}

.w-2\/6{
width: 33.333333%;
}

.min-w-\[100px\]{
min-width: 100px;
}
Expand Down Expand Up @@ -2423,6 +2423,14 @@ video {
max-width: 20rem;
}

.max-w-\[200px\]{
max-width: 200px;
}

.max-w-\[300px\]{
max-width: 300px;
}

.flex-auto{
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
Expand All @@ -2435,11 +2443,6 @@ video {
flex: none;
}

.flex-shrink{
-ms-flex-negative: 1;
flex-shrink: 1;
}

.flex-shrink-0{
-ms-flex-negative: 0;
flex-shrink: 0;
Expand Down Expand Up @@ -2761,11 +2764,6 @@ video {
flex-direction: column;
}

.flex-wrap{
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}

.place-content-center{
place-content: center;
}
Expand Down Expand Up @@ -5463,11 +5461,6 @@ html body {
left: 2px;
}

.after\:top-0::after{
content: var(--tw-content);
top: 0px;
}

.after\:top-0\.5::after{
content: var(--tw-content);
top: 0.125rem;
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/backend/ServiceManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -2386,7 +2386,7 @@ export class ServiceManager {
this.nodeConnection.taskManager.otherTasksHandler(ref, `Writing Config YAML`);
try {
if (!writeConfigData.existDepositContract) {
writeConfigData.configYaml = writeConfigData.configYaml.replace(/^.*DEPOSIT_CONTRACT_ADDRESS.*\n?/gm, "");
writeConfigData.configYaml = writeConfigData.configYaml?.replace(/^.*DEPOSIT_CONTRACT_ADDRESS.*\n?/gm, "");
}

const workingDir = await this.getCurrentPath();
Expand Down
Loading

0 comments on commit a8b7fb8

Please sign in to comment.