Skip to content

Commit

Permalink
Merge branch 'master' into rise-hubblenet
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmnthn authored Mar 10, 2024
2 parents b506d77 + a393bd3 commit 6b47d7b
Show file tree
Hide file tree
Showing 7 changed files with 123 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run prettier
name: Run prettier check

on:
push:
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/prettier_write.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run prettier write

on:
pull_request:

jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- uses: actions/cache@v2
name: Configure npm caching
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/workflows/prettier.yml') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Run prettier
run: |-
npx prettier --write '_data/*/*.json'
- uses: stefanzweifel/git-auto-commit-action@v5
name: commit
with:
commit_message: Formatting files
status_options: '--untracked-files=no'
skip_dirty_check: true
skip_fetch: true
skip_checkout: true
24 changes: 24 additions & 0 deletions _data/chains/eip155-4157.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "CrossFi Testnet",
"title": "CrossFi Testnet",
"chain": "XFI",
"rpc": ["https://rpc.testnet.ms"],
"faucets": [],
"nativeCurrency": {
"name": "XFI",
"symbol": "XFI",
"decimals": 18
},
"infoURL": "https://crossfi.org/",
"shortName": "crossfi-testnet",
"chainId": 4157,
"networkId": 4157,
"slip44": 1,
"explorers": [
{
"name": "CrossFi Testnet Scan",
"url": "https://scan.testnet.ms",
"standard": "EIP3091"
}
]
}
30 changes: 30 additions & 0 deletions _data/chains/eip155-810180.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "zkLink Nova Mainnet",
"chain": "ETH",
"rpc": ["https://rpc.zklink.io", "wss://rpc.zklink.io"],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zklink.io",
"shortName": "zklink-nova",
"chainId": 810180,
"networkId": 810180,
"slip44": 1,
"icon": "zklink-nova",
"explorers": [
{
"name": "zkLink Nova Block Explorer",
"url": "https://explorer.zklink.io",
"icon": "zklink-nova",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-59144",
"bridges": [{ "url": "https://portal.zklink.io" }]
}
}
30 changes: 30 additions & 0 deletions _data/chains/eip155-810182.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "zkLink Nova Goerli Testnet",
"chain": "ETH",
"rpc": ["https://goerli.rpc.zklink.io", "wss://goerli.rpc.zklink.io"],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zklink.io",
"shortName": "zklink-nova-goerli",
"chainId": 810182,
"networkId": 810182,
"slip44": 1,
"icon": "zklink-nova",
"explorers": [
{
"name": "zkLink Nova Block Explorer",
"url": "https://goerli.explorer.zklink.io",
"icon": "zklink-nova",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-59140",
"bridges": [{ "url": "https://goerli.portal.zklink.io" }]
}
}
8 changes: 8 additions & 0 deletions _data/icons/zklink-nova.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"url": "ipfs://bafkreiaj7b6pdekv3rjuta5wsdvmfdcsat2jftjgozape7wvmyj6d3vjcm",
"width": 512,
"height": 512,
"format": "png"
}
]
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
KOTLIN_VERSION = "1.9.22"
KOTLIN_VERSION = "1.9.23"
KETHEREUM_VERSION = "0.86.0"
}

Expand Down

0 comments on commit 6b47d7b

Please sign in to comment.