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

Version Packages #14

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
18991b1
feat: add `x/post` and `x/tokenfactory` modules msg types [web-desmos…
MonikaCat Sep 2, 2023
584138b
feat: add archway [web-archway] (#1296)
rachelhox Sep 4, 2023
13f98a9
Version Packages (#1299)
github-actions[bot] Sep 4, 2023
2aa110c
feat: accounts transaction loading fix [web-osmosis] (#1300)
rachelhox Sep 6, 2023
dff3cd6
feat: add stride [web-stride] (#1297)
rachelhox Sep 7, 2023
61b3c8e
fix: accounts transaction loading [web-archway] (#1306)
MonikaCat Oct 6, 2023
457c92e
fix: updated mergify conditions (#1307)
MonikaCat Oct 6, 2023
4037aca
feat: neutron big dipper [web-neutron] (#1309)
MonikaCat Oct 10, 2023
3b7f63b
fix: update desmos proposals type display [web-desmos] (#1310)
MonikaCat Nov 1, 2023
e749a3b
fix: display suggested proposal params changes [web-desmos] (#1311)
MonikaCat Nov 2, 2023
c6ec239
fix: token and params display [web-nym] (#1312)
MonikaCat Nov 28, 2023
13e3ff8
fix: disable profile [web-nym] (#1313)
MonikaCat Nov 28, 2023
31003c3
fix: validator moniker display [web] (#1314)
MonikaCat Dec 6, 2023
cb67b41
fix: account page stuck on loading (#1315)
MonikaCat Dec 7, 2023
8789ccb
fix: validator details page loading (#1316)
MonikaCat Dec 7, 2023
6f53ac8
feat: update osmosis proposal and params page to display v1 [web-osmo…
MonikaCat Jan 10, 2024
c5aaebc
fix: fix voting power display [web-kyve] (#1318)
MonikaCat Jan 10, 2024
15a4f08
fix: update tokenomics component and color scheme [web-neutron] (#1319)
MonikaCat Jan 12, 2024
f464068
feat: update neutron [web-neutron] (#1320)
MonikaCat Jan 22, 2024
0055fda
Merge remote-tracking branch 'origin/main'
Xiong-stratos Jan 22, 2024
ea1316f
Version Packages
github-actions[bot] Jan 22, 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
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
env:
PROJECT_NAME: ${{ matrix.project }}
NEXT_PUBLIC_CHAIN_TYPE: ${{ github.event.inputs.chain_type }}
- name: Insall Vercel CLI
- name: Install Vercel CLI
run: npm i -g vercel
- name: Generate vercel.json
run: |
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ queue_rules:
pull_request_rules:
- name: Automerge with label automerge and branch protection passing
conditions:
- "#approved-reviews-by>1"
- "#approved-reviews-by>0"
- label=automerge
actions:
queue:
Expand Down
298 changes: 284 additions & 14 deletions .pnp.cjs

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions apps/web-agoric/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Unreleased

## 2.17.4

### Patch Changes

- Updated dependencies [[`c6ec239b`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/c6ec239b634bca5789e4ae7dc7c43b91b424b85a), [`61b3c8eb`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/61b3c8ebe308a3d64844f6a01ab11b0461a27c33), [`2aa110c9`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/2aa110c9c7c7965bfa468c07797a820387094834), [`8789ccbd`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/8789ccbd72b8a6267bc2e9704e44632fa89a2870), [`e749a3b0`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/e749a3b0317efb1f659447d336e8dec081aed64d), [`cb67b417`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/cb67b4175dac3958f936472e8fa8d0ff378adb89), [`4037aca2`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/4037aca22239ff1696e3ffb6a655d34bcb651458)]:
- [email protected]
- [email protected]

## 2.17.3

### Patch Changes

- Updated dependencies [[`584138bbb`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/584138bbb2443b74d437546ad04327fa2f0dd003), [`18991b16b`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/18991b16bda5af4b993868ee85a280e8b39271ca)]:
- [email protected]
- [email protected]

## 2.17.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web-agoric/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-agoric",
"version": "2.17.2",
"version": "2.17.4",
"license": "Apache-2.0",
"private": true,
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
query ValidatorsAddressList {
validator {
validatorInfo: validator_info {
operatorAddress: operator_address
selfDelegateAddress: self_delegate_address
consensusAddress: consensus_address
}
validatorDescriptions: validator_descriptions(limit: 1, order_by: {height: desc}) {
moniker
identity
avatarUrl: avatar_url
}
}
}

query ValidatorAddresses {
validator(where: {validator_info: {operator_address: {_is_null: false}, consensus_address: {_is_null: false}, self_delegate_address: {_is_null: false}}}) {
validatorInfo: validator_info {
Expand Down
46 changes: 0 additions & 46 deletions apps/web-agoric/src/graphql/types/general_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13663,52 +13663,6 @@ export function useValidatorsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions
export type ValidatorsQueryHookResult = ReturnType<typeof useValidatorsQuery>;
export type ValidatorsLazyQueryHookResult = ReturnType<typeof useValidatorsLazyQuery>;
export type ValidatorsQueryResult = Apollo.QueryResult<ValidatorsQuery, ValidatorsQueryVariables>;
export const ValidatorsAddressListDocument = gql`
query ValidatorsAddressList {
validator {
validatorInfo: validator_info {
operatorAddress: operator_address
selfDelegateAddress: self_delegate_address
consensusAddress: consensus_address
}
validatorDescriptions: validator_descriptions(
limit: 1
order_by: {height: desc}
) {
moniker
identity
avatarUrl: avatar_url
}
}
}
`;

/**
* __useValidatorsAddressListQuery__
*
* To run a query within a React component, call `useValidatorsAddressListQuery` and pass it any options that fit your needs.
* When your component renders, `useValidatorsAddressListQuery` returns an object from Apollo Client that contains loading, error, and data properties
* you can use to render your UI.
*
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
*
* @example
* const { data, loading, error } = useValidatorsAddressListQuery({
* variables: {
* },
* });
*/
export function useValidatorsAddressListQuery(baseOptions?: Apollo.QueryHookOptions<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useQuery<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>(ValidatorsAddressListDocument, options);
}
export function useValidatorsAddressListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useLazyQuery<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>(ValidatorsAddressListDocument, options);
}
export type ValidatorsAddressListQueryHookResult = ReturnType<typeof useValidatorsAddressListQuery>;
export type ValidatorsAddressListLazyQueryHookResult = ReturnType<typeof useValidatorsAddressListLazyQuery>;
export type ValidatorsAddressListQueryResult = Apollo.QueryResult<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>;
export const ValidatorAddressesDocument = gql`
query ValidatorAddresses {
validator(
Expand Down
16 changes: 16 additions & 0 deletions apps/web-akash/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Unreleased

## 2.19.4

### Patch Changes

- Updated dependencies [[`c6ec239b`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/c6ec239b634bca5789e4ae7dc7c43b91b424b85a), [`61b3c8eb`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/61b3c8ebe308a3d64844f6a01ab11b0461a27c33), [`2aa110c9`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/2aa110c9c7c7965bfa468c07797a820387094834), [`8789ccbd`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/8789ccbd72b8a6267bc2e9704e44632fa89a2870), [`e749a3b0`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/e749a3b0317efb1f659447d336e8dec081aed64d), [`cb67b417`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/cb67b4175dac3958f936472e8fa8d0ff378adb89), [`4037aca2`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/4037aca22239ff1696e3ffb6a655d34bcb651458)]:
- [email protected]
- [email protected]

## 2.19.3

### Patch Changes

- Updated dependencies [[`584138bbb`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/584138bbb2443b74d437546ad04327fa2f0dd003), [`18991b16b`](https://github.com/forbole/big-dipper-2.0-cosmos/commit/18991b16bda5af4b993868ee85a280e8b39271ca)]:
- [email protected]
- [email protected]

## 2.19.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web-akash/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-akash",
"version": "2.19.2",
"version": "2.19.4",
"license": "Apache-2.0",
"private": true,
"scripts": {
Expand Down
15 changes: 0 additions & 15 deletions apps/web-akash/src/graphql/general/validators_address_list.graphql
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
query ValidatorsAddressList {
validator {
validatorInfo: validator_info {
operatorAddress: operator_address
selfDelegateAddress: self_delegate_address
consensusAddress: consensus_address
}
validatorDescriptions: validator_descriptions(limit: 1, order_by: {height: desc}) {
moniker
identity
avatarUrl: avatar_url
}
}
}

query ValidatorAddresses {
validator(where: {validator_info: {operator_address: {_is_null: false}, consensus_address: {_is_null: false}, self_delegate_address: {_is_null: false}}}) {
validatorInfo: validator_info {
Expand Down
46 changes: 0 additions & 46 deletions apps/web-akash/src/graphql/types/general_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14930,52 +14930,6 @@ export function useValidatorsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions
export type ValidatorsQueryHookResult = ReturnType<typeof useValidatorsQuery>;
export type ValidatorsLazyQueryHookResult = ReturnType<typeof useValidatorsLazyQuery>;
export type ValidatorsQueryResult = Apollo.QueryResult<ValidatorsQuery, ValidatorsQueryVariables>;
export const ValidatorsAddressListDocument = gql`
query ValidatorsAddressList {
validator {
validatorInfo: validator_info {
operatorAddress: operator_address
selfDelegateAddress: self_delegate_address
consensusAddress: consensus_address
}
validatorDescriptions: validator_descriptions(
limit: 1
order_by: {height: desc}
) {
moniker
identity
avatarUrl: avatar_url
}
}
}
`;

/**
* __useValidatorsAddressListQuery__
*
* To run a query within a React component, call `useValidatorsAddressListQuery` and pass it any options that fit your needs.
* When your component renders, `useValidatorsAddressListQuery` returns an object from Apollo Client that contains loading, error, and data properties
* you can use to render your UI.
*
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
*
* @example
* const { data, loading, error } = useValidatorsAddressListQuery({
* variables: {
* },
* });
*/
export function useValidatorsAddressListQuery(baseOptions?: Apollo.QueryHookOptions<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useQuery<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>(ValidatorsAddressListDocument, options);
}
export function useValidatorsAddressListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useLazyQuery<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>(ValidatorsAddressListDocument, options);
}
export type ValidatorsAddressListQueryHookResult = ReturnType<typeof useValidatorsAddressListQuery>;
export type ValidatorsAddressListLazyQueryHookResult = ReturnType<typeof useValidatorsAddressListLazyQuery>;
export type ValidatorsAddressListQueryResult = Apollo.QueryResult<ValidatorsAddressListQuery, ValidatorsAddressListQueryVariables>;
export const ValidatorAddressesDocument = gql`
query ValidatorAddresses {
validator(
Expand Down
17 changes: 17 additions & 0 deletions apps/web-archway/.codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# https://docs.codecov.io/docs/commit-status
coverage:
status:
project:
default:
# basic
target: 0
threshold: 0%
base: 0%
# advanced
branches: []
if_no_uploads: error
if_not_found: success
if_ci_failed: error
only_pulls: false
flags: []
paths: []
9 changes: 9 additions & 0 deletions apps/web-archway/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root: true
extends:
- custom
ignorePatterns:
- '**/node_modules/*'
- '**/out/*'
- '**/.next/*'
- '**/dist/*'
- '**/src/graphql/*'
Loading