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

New chain-template #204

Merged
merged 26 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e420c63
feat: initial commit for new chain-template
marslavish Sep 2, 2024
c904729
feat: add My Contracts, Query and Execute tabs
marslavish Sep 12, 2024
ef87061
feat: add create new contract button
marslavish Sep 14, 2024
43867de
feat: add upload contract UI
marslavish Sep 15, 2024
f86cf5f
feat: add Stepper component
marslavish Sep 16, 2024
3be345b
feat: add instantiate contract UI
marslavish Sep 16, 2024
4f2c118
feat: upload to instantiate contract flow
marslavish Sep 16, 2024
0d02e31
feat: create contract from code ID
marslavish Sep 16, 2024
336edd3
feat: search my contracts
marslavish Sep 17, 2024
b2db706
fix: create contract popover style
marslavish Sep 17, 2024
7c859c0
fix: contract tab width
marslavish Sep 17, 2024
029d260
feat: add contract address input field
marslavish Sep 19, 2024
a543199
feat: add query contract UI
marslavish Sep 19, 2024
d158fa4
feat: add execute contract UI
marslavish Sep 19, 2024
1964562
feat: switch tabs after instantiate
marslavish Sep 20, 2024
e318bf7
chore: clean up unused code
marslavish Sep 20, 2024
62a25f8
fix(style): decrease max width
marslavish Sep 20, 2024
8088abc
feat: autofill admin address
marslavish Sep 20, 2024
40df1d9
feat: add mobile styles
marslavish Sep 22, 2024
56bd0cb
feat: add dark theme styles
marslavish Sep 22, 2024
c6f0af8
feat: add tab and contract address to URL params
marslavish Sep 23, 2024
2ba4281
chore: change some copy
marslavish Sep 23, 2024
4a7b16c
feat: add chain-template-spawn
marslavish Sep 23, 2024
06e716d
fix: remove duplicate exports
marslavish Sep 23, 2024
803661d
doc: add "connect to starship chains" guide
marslavish Sep 23, 2024
67df6e2
doc: add "connect to spawn chains" guide
marslavish Sep 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions examples/chain-template-spawn/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "next/core-web-vitals",
"rules": {
"react-hooks/exhaustive-deps": "off"
}
}
36 changes: 36 additions & 0 deletions examples/chain-template-spawn/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
Loading
Loading