Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
d4fa6cc
revamp bridging tutorial
krofax Sep 18, 2024
9c84aea
update some more codes
krofax Sep 18, 2024
65352f9
updated meta tags
krofax Sep 18, 2024
e3f407a
remove comments
krofax Sep 18, 2024
a06ed1f
update text
krofax Sep 18, 2024
3409081
fix lint issues
krofax Sep 18, 2024
62f9888
resolved comments
krofax Sep 24, 2024
5b33b41
updated the codebase
krofax Sep 24, 2024
dbf93e8
updated full codebase
krofax Sep 24, 2024
4b884a3
fix coderabbot warnings
krofax Sep 25, 2024
0879dc7
Update pages/builders/app-developers/tutorials/cross-dom-bridge-eth.mdx
krofax Sep 25, 2024
8d10886
Update public/tutorials/cross-dom-bridge-eth.js
krofax Sep 25, 2024
1d69758
updated the urls
krofax Sep 26, 2024
e1968a9
fix lint issues
krofax Sep 26, 2024
27d7848
updated codebase
krofax Sep 26, 2024
5dec40d
updated tutorial to support CLI approach
krofax Oct 2, 2024
f9da7ef
updated codebase
krofax Oct 2, 2024
846ef7e
updated codebase
krofax Oct 2, 2024
92314e9
updated address
krofax Oct 2, 2024
c02ab8f
updated the codebase
krofax Oct 2, 2024
7c27591
fix liniting issues
krofax Oct 2, 2024
87741c3
adjusted codebase
krofax Oct 2, 2024
1b8716a
updated the codebase
krofax Oct 2, 2024
b165bc9
updated fullcode base
krofax Oct 2, 2024
99c70b7
Used file imports for the code snippets
krofax Oct 3, 2024
cc1c272
remove emphasis
krofax Oct 3, 2024
6719644
updated workflow
krofax Oct 4, 2024
d07ebfe
added viem
krofax Oct 4, 2024
490990a
updated codebase
krofax Oct 8, 2024
08ebdd5
update file imports
krofax Oct 9, 2024
0a9f6bb
update variable name
krofax Oct 9, 2024
311993b
updated file import
krofax Oct 9, 2024
adf599c
fix conflict
krofax Oct 9, 2024
b2e4368
stage changes
krofax Oct 9, 2024
5841509
updated the codebase
krofax Oct 21, 2024
aefcd6a
Update pages/builders/app-developers/tutorials/cross-dom-bridge-eth.mdx
krofax Oct 25, 2024
590d528
Update pages/builders/app-developers/tutorials/cross-dom-bridge-eth.mdx
krofax Oct 25, 2024
d8b5d31
Update pages/builders/app-developers/tutorials/cross-dom-bridge-eth.mdx
krofax Oct 25, 2024
4e4e645
Update pages/builders/app-developers/tutorials/cross-dom-bridge-eth.mdx
krofax Oct 25, 2024
19b6e6d
Update public/tutorials/cross-dom-bridge-eth.js
krofax Oct 25, 2024
4d42dec
Update pages/builders/app-developers/tutorials/cross-dom-bridge-eth.mdx
krofax Oct 25, 2024
5036478
Update pages/builders/app-developers/tutorials/cross-dom-bridge-eth.mdx
krofax Oct 25, 2024
f09a018
updated the content
krofax Oct 25, 2024
0aabb75
fix merge conflict
krofax Oct 25, 2024
3473fec
fix merge conflixt
krofax Oct 25, 2024
4b20803
updated file imports
krofax Oct 25, 2024
8f0e82f
fixed merge conflict
krofax Oct 30, 2024
5c07df4
updated pnpm package
krofax Oct 30, 2024
42a4289
fixed lint issues
krofax Oct 30, 2024
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
38 changes: 0 additions & 38 deletions .github/workflows/tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,7 @@ concurrency:
cancel-in-progress: false

jobs:
cross-dom-bridge-erc20:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: pnpm install

- name: Run tutorial
env:
TUTORIAL_PRIVATE_KEY: ${{ secrets.TUTORIAL_PRIVATE_KEY }}
run:
node ./public/tutorials/cross-dom-bridge-erc20.js

- name: Notify Slack on failure
uses: ravsamhq/notify-slack-action@v2
if: always()
with:
status: ${{ job.status }}
notify_when: "failure"
notification_title: "{workflow} has {status_message} (<{run_url}|view errors>)"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}>"
footer: "<{run_url}|View Run>"
mention_users_when: "failure,warnings"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

cross-dom-bridge-eth:
needs: cross-dom-bridge-erc20
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"nextra-theme-docs": "2.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"search-insights": "^2.15.0"
"search-insights": "^2.15.0",
"viem": "^2.21.18"
},
"devDependencies": {
"@double-great/remark-lint-alt-text": "^1.0.0",
Expand Down
Loading
Loading