Skip to content

Anmol/chain template app dir #172

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

Open
wants to merge 63 commits into
base: anmol/chain-template-2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
4a34d70
feat: create authz example layout
marslavish Jan 24, 2024
15533fe
feat: add wallet section
marslavish Jan 25, 2024
45e53b2
feat: add create grant modal
marslavish Jan 27, 2024
2b07ce0
feat: add GrantCard component
marslavish Jan 28, 2024
945af95
Merge branch 'main' into feat/authz-ui
marslavish Jan 29, 2024
d07f863
fix: chain dropdown doesn't show chain names
marslavish Jan 29, 2024
6a860e1
feat: add GrantDetailsModal
marslavish Jan 29, 2024
4fb7310
fix: optimize permissions dropdown
marslavish Jan 29, 2024
29b4d65
fix: add onClick to SelectButton
marslavish Jan 29, 2024
7147c7d
Merge branch 'main' into feat/authz-ui
marslavish Feb 1, 2024
1e289dd
feat(authz): query and display grants data
marslavish Feb 5, 2024
00de6a9
feat(authz): revoke grants
marslavish Feb 5, 2024
4269f7d
feat: exec stake grants
marslavish Feb 16, 2024
44431e4
feat: exec claim rewards grants
marslavish Feb 16, 2024
f2fca96
feat: exec vote grants
marslavish Feb 19, 2024
d280360
feat: exec send grants
marslavish Feb 20, 2024
bc3b161
upgrade starhsip to 0.1.47
Anmol1696 Feb 21, 2024
242e26a
Add rollkit example
twhy Feb 7, 2024
5d22efd
feat: optimize
marslavish Feb 22, 2024
25a2d38
fix: cleanup
marslavish Feb 22, 2024
22b17be
Merge branch 'main' into feat/authz-ui
marslavish Feb 22, 2024
743cae4
Merge pull request #155 from cosmology-tech/feat/authz-ui
marslavish Feb 22, 2024
b4aa654
Merge branch 'main' into anmol/upgrade-starship
Anmol1696 Feb 23, 2024
09ca2c5
Merge pull request #168 from cosmology-tech/anmol/upgrade-starship
Anmol1696 Feb 28, 2024
dcc548a
Use yarn 4
twhy Mar 4, 2024
30a2454
Website template
twhy Mar 18, 2024
cdae0ff
Use next.js link
twhy Mar 18, 2024
9dcdbff
Update yarn.lock
twhy Mar 20, 2024
fa3d9bd
Update yarn.lock
twhy Mar 20, 2024
71b3218
Update yarn.lock
twhy Mar 20, 2024
3d04a30
Update templates yarn.lock
twhy Mar 20, 2024
de13521
Update yarn.lock
twhy Mar 20, 2024
b8e8b0e
fix: update yarn.lock
marslavish Mar 20, 2024
fe6f38d
remove test code
Zetazzz Mar 21, 2024
dc71b9d
fix: add missing dep in authz
marslavish Mar 21, 2024
e30689d
fix: rename telescope-authz to authz
marslavish Mar 21, 2024
7acab8d
feat: update readme
marslavish Mar 21, 2024
7f3a4f9
Update yarn.lock
twhy Mar 26, 2024
3a04471
osmo-query -> interchain-query
pyramation Apr 5, 2024
98c84b7
workflow
pyramation Apr 5, 2024
b4947a6
workflow
pyramation Apr 5, 2024
0e04513
fixed types for vote-proposal
pyramation Apr 5, 2024
29d5f63
locks
pyramation Apr 5, 2024
51dc211
SSR type error
pyramation Apr 5, 2024
0df9bf7
SSR type error
pyramation Apr 5, 2024
805ea68
stake-tokens
pyramation Apr 5, 2024
09b4a88
remove-send
pyramation Apr 5, 2024
30c110c
asset-list
pyramation Apr 5, 2024
ebac53c
ibc-transfer
pyramation Apr 5, 2024
1fa4063
swap
pyramation Apr 5, 2024
6d9c156
remove-send
pyramation Apr 5, 2024
f7b5f98
liquidity
pyramation Apr 5, 2024
ef39ee5
nft
pyramation Apr 5, 2024
5dc7fc9
no-ssr
pyramation Apr 5, 2024
55052cc
Component
pyramation Apr 5, 2024
e8d3b46
connect-chain
pyramation Apr 5, 2024
c8f4ed8
baseUrl
pyramation Apr 5, 2024
8c9ea1c
website
pyramation Apr 5, 2024
3c546d5
types
pyramation Apr 5, 2024
7a27d2d
cleanup
pyramation Apr 5, 2024
18d757c
grpc
pyramation Apr 5, 2024
7e6015c
moved to app dir
pyramation Apr 6, 2024
ac94508
upstream
pyramation Apr 6, 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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
84 changes: 84 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: Run Tests

on:
push:
pull_request:
types: [opened, synchronized, reopened]
workflow_dispatch:

jobs:
run-tests:
runs-on: ubuntu-latest

steps:
# TODO: build global from the repo itself
# - name: Checkout Repository 🛎️
# uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install Dependencies
run: npm install -g create-cosmos-app

- name: vote-proposal
run: |
cca --example vote-proposal --name vote-proposal
cd vote-proposal
yarn build

- name: asset-list
run: |
cca --example asset-list --name asset-list
cd asset-list
yarn build

- name: ibc-transfer
run: |
cca --example ibc-transfer --name ibc-transfer
cd ibc-transfer
yarn build

- name: swap-tokens
run: |
cca --example swap-tokens --name swap-tokens
cd swap-tokens
yarn build

- name: provide-liquidity
run: |
cca --example provide-liquidity --name provide-liquidity
cd provide-liquidity
yarn build

- name: nft
run: |
cca --example nft --name nft
cd nft
yarn build

- name: authz
run: |
cca --example authz --name authz
cd authz
yarn build

- name: connect-chain
run: |
cca --template connect-chain --name connect-chain
cd connect-chain
yarn build

- name: connect-multi-chain
run: |
cca --template connect-multi-chain --name connect-multi-chain
cd connect-multi-chain
yarn build

- name: website
run: |
cca --template website --name website
cd website
yarn build
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.yarn
.yarn/*
.DS_Store
.eslintcache
*.log
Expand Down
Loading