Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update deps #41

Merged
merged 7 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

bunx --no-install commitlint --edit "$1"
3 changes: 1 addition & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

bun lint-staged
2 changes: 1 addition & 1 deletion .lintstagedrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- prettier --list-different
- eslint
'*.md':
- cspell lint --file
- markdownlint-cli2
- cspell lint --quiet --no-must-find-files --files
'*.{json,yml}':
- prettier --list-different
Binary file modified bun.lockb
Binary file not shown.
275 changes: 198 additions & 77 deletions components/IconOrbit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,7 @@

<script setup lang="ts"></script>

<style scoped lang="scss">
$orbitItemSize: 1.6em;
$map: (
ring-0: 4,
ring-1: 3,
ring-2: 8,
ring-3: 3,
);
$lastRing: 3;

<style scoped>
* {
box-sizing: border-box;
}
Expand All @@ -165,9 +156,9 @@ html {
}

.orbit-icon {
width: $orbitItemSize;
height: $orbitItemSize;
line-height: $orbitItemSize;
width: 1.6em;
height: 1.6em;
line-height: 1.6em;
font-size: 1.2em;
border-radius: 50%;
background: #ccc;
Expand All @@ -176,85 +167,215 @@ html {
display: block;
}

$orbit-ring-left: 50%;
$orbit-ring-top: 18%;

.orbit-wrap {
height: 40em;
list-style: none;
font-size: 1.3em;

> li {
position: absolute;
left: $orbit-ring-left;
top: $orbit-ring-top;
transform: translate(-50%, -50%);
}
}
.orbit-wrap > li {
position: absolute;
left: 50%;
top: 18%;
transform: translate(-50%, -50%);
}

ul[class^='ring'] {
@extend %ring;
transition: all 300ms ease-in-out;
box-shadow: none !important;
}
ul[class^='ring'] li:not(.black-hole) {
transition: all 300ms ease-in-out;
}

li:not(.black-hole) {
@extend %orbiting-object;
transition: all 300ms ease-in-out;
}
.light img {
background: rgb(215, 241, 251) !important;
}

@mixin orbit-item($numItems, $numRing) {
@for $s from 1 through $numItems + 1 {
// Spread items over the ring
$deg: calc(380deg / $numItems);
.ring-0 {
width: 42em;
height: 42em;
animation: clockwiseRotate 75s linear infinite;
}
.ring-0 i,
.ring-0 img {
animation: counterClockwiseRotate 75s linear infinite;
width: 60px;
height: 35px;
background: rgba(148, 148, 148, 0.826);
}
.ring-0 .black-hole {
transform: none !important;
position: absolute;
width: 41.8em;
height: 41.8em;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
box-sizing: content-box;
}

.ring-#{$numRing} > *:nth-of-type(#{$s}) {
transform: rotate($s * $deg) translate(21em - ($numRing * 4)) rotate(-$s * $deg);
}
}
.ring-0 > *:nth-of-type(1) {
transform: rotate(95deg) translate(21em) rotate(-95deg);
}

.light img {
background: rgb(215, 241, 251) !important;
.ring-0 > *:nth-of-type(2) {
transform: rotate(190deg) translate(21em) rotate(-190deg);
}

// Render rings
@for $i from 0 through $lastRing {
.ring-#{$i} {
$size: 42em - ($i * 8);
$randomized: random(15);
// decrease each ring in size
width: $size;
height: $size;
animation: clockwiseRotate (75s - ($i * $randomized)) linear infinite;

i,
img {
animation: counterClockwiseRotate (75s - ($i * $randomized)) linear infinite;
width: 60px;
height: 35px;
background: rgba(148, 148, 148, 0.826);
}

.black-hole {
transform: none !important;
position: absolute;
// background: black;
width: $size - 0.2em;
height: $size - 0.2em;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
box-sizing: content-box;
}
}
.ring-0 > *:nth-of-type(3) {
transform: rotate(285deg) translate(21em) rotate(-285deg);
}

.ring-0 > *:nth-of-type(4) {
transform: rotate(380deg) translate(21em) rotate(-380deg);
}

.ring-0 > *:nth-of-type(5) {
transform: rotate(475deg) translate(21em) rotate(-475deg);
}

.ring-1 {
width: 34em;
height: 34em;
animation: clockwiseRotate 63s linear infinite;
}
.ring-1 i,
.ring-1 img {
animation: counterClockwiseRotate 63s linear infinite;
width: 60px;
height: 35px;
background: rgba(148, 148, 148, 0.826);
}
.ring-1 .black-hole {
transform: none !important;
position: absolute;
width: 33.8em;
height: 33.8em;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
box-sizing: content-box;
}

.ring-1 > *:nth-of-type(1) {
transform: rotate(126.6666666667deg) translate(17em) rotate(-126.6666666667deg);
}

.ring-1 > *:nth-of-type(2) {
transform: rotate(253.3333333333deg) translate(17em) rotate(-253.3333333333deg);
}

.ring-1 > *:nth-of-type(3) {
transform: rotate(380deg) translate(17em) rotate(-380deg);
}

.ring-1 > *:nth-of-type(4) {
transform: rotate(506.6666666667deg) translate(17em) rotate(-506.6666666667deg);
}

.ring-2 {
width: 26em;
height: 26em;
animation: clockwiseRotate 63s linear infinite;
}
.ring-2 i,
.ring-2 img {
animation: counterClockwiseRotate 63s linear infinite;
width: 60px;
height: 35px;
background: rgba(148, 148, 148, 0.826);
}
.ring-2 .black-hole {
transform: none !important;
position: absolute;
width: 25.8em;
height: 25.8em;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
box-sizing: content-box;
}

.ring-2 > *:nth-of-type(1) {
transform: rotate(47.5deg) translate(13em) rotate(-47.5deg);
}

.ring-2 > *:nth-of-type(2) {
transform: rotate(95deg) translate(13em) rotate(-95deg);
}

.ring-2 > *:nth-of-type(3) {
transform: rotate(142.5deg) translate(13em) rotate(-142.5deg);
}

.ring-2 > *:nth-of-type(4) {
transform: rotate(190deg) translate(13em) rotate(-190deg);
}

.ring-2 > *:nth-of-type(5) {
transform: rotate(237.5deg) translate(13em) rotate(-237.5deg);
}

.ring-2 > *:nth-of-type(6) {
transform: rotate(285deg) translate(13em) rotate(-285deg);
}

.ring-2 > *:nth-of-type(7) {
transform: rotate(332.5deg) translate(13em) rotate(-332.5deg);
}

.ring-2 > *:nth-of-type(8) {
transform: rotate(380deg) translate(13em) rotate(-380deg);
}

.ring-2 > *:nth-of-type(9) {
transform: rotate(427.5deg) translate(13em) rotate(-427.5deg);
}

.ring-3 {
width: 18em;
height: 18em;
animation: clockwiseRotate 60s linear infinite;
}
.ring-3 i,
.ring-3 img {
animation: counterClockwiseRotate 60s linear infinite;
width: 60px;
height: 35px;
background: rgba(148, 148, 148, 0.826);
}
.ring-3 .black-hole {
transform: none !important;
position: absolute;
width: 17.8em;
height: 17.8em;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
box-sizing: content-box;
}

.ring-3 > *:nth-of-type(1) {
transform: rotate(126.6666666667deg) translate(9em) rotate(-126.6666666667deg);
}

.ring-3 > *:nth-of-type(2) {
transform: rotate(253.3333333333deg) translate(9em) rotate(-253.3333333333deg);
}

@include orbit-item(map-get($map, ring-#{$i}), $i);
.ring-3 > *:nth-of-type(3) {
transform: rotate(380deg) translate(9em) rotate(-380deg);
}

%ring {
// border: solid 1px rgb(125 116 153 / 60%);
.ring-3 > *:nth-of-type(4) {
transform: rotate(506.6666666667deg) translate(9em) rotate(-506.6666666667deg);
}

ul[class^='ring'] {
background: linear-gradient(
to bottom right,
rgba(184, 39, 252, 0.5) 0%,
Expand All @@ -270,14 +391,14 @@ ul[class^='ring'] {
box-sizing: content-box;
}

%orbiting-object {
ul[class^='ring'] li:not(.black-hole) {
display: block;
position: absolute;
top: 50%;
left: 50%;
width: $orbitItemSize;
height: $orbitItemSize;
margin: calc(-1 * $orbitItemSize / 2);
width: 1.6em;
height: 1.6em;
margin: -0.8em;
}

/*
Expand All @@ -293,6 +414,7 @@ ul[class^='ring'] {
background: transparent;
border-radius: 50%;
}

.orbit-center__icon {
transform: rotateZ(-360deg);
transition: all 300ms ease-in-out;
Expand All @@ -309,7 +431,6 @@ animations
transform: rotate(360deg);
}
}

@keyframes counterClockwiseRotate {
0% {
transform: rotate(0deg);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ touch .env
Add the `WALLET_PRIVATE_KEY` environment variable with the private key of the rich wallet we've been using
so that we can deploy using a pre-funded address:

```env
```bash
WALLET_PRIVATE_KEY=0x7726827caac94a7f9e1b160f7ea819f172f7b6f9d2a97f992c38edeab82d4110
```

Expand Down
6 changes: 4 additions & 2 deletions content/tutorials/guide-viem/10.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,14 @@ const client = createPublicClient({
});
```

:::info
<!-- /*spellchecker: disable*/ -->
::callout{icon="i-heroicons-information-circle" color="blue"}

- To use the %%zk_testnet_name%%, specify `zkSyncSepoliaTestnet` as the chain.
- For %%zk_mainnet_name%%, replace `zkSyncSepoliaTestnet` with `zkSync`.

:::
::
<!-- /*spellchecker: enable*/ -->

### Reading Data

Expand Down
2 changes: 2 additions & 0 deletions content/tutorials/guide-web3js/10.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,12 @@ from the `zks_` namespace of the [JSON-RPC API](https://docs.zksync.io/build/api

#### Fetch the Main Contract Address

<!-- /*spellchecker: disable*/ -->
```javascript
const mainContract = await web3.zkSync.rpc.getMainContract();
console.log(`Main contract: ${mainContract}`);
```
<!-- /*spellchecker: enable*/ -->

### Wallet Configuration

Expand Down
Loading
Loading