Skip to content

Commit

Permalink
bunDev (#992)
Browse files Browse the repository at this point in the history
* update deploy workflow

* update deploy workflow conditions

* update homepage url to match pages deployment

* update deploy workflow to export proper directory

* update img urls

* complete portfolio section(queries)

* add prod and dev env's for queries

* - make prod ready
- ibc transactions

* add https endpoints for prod

* add qToken deposit & withdraw modals

* Assets Page WIP

* DEFI Page WIP

* Begin Airdrop page

* Update Airdrop page

* Add more testnet endpoints

* - Add osmosis testnet, - Add validaotr logos to stkaing box

* add missed blocks counter query

* remove missed blocks from validator table

* rough dev mode

* add else if switcher for APR chain-id in staking box

* rename dev deploy file | prep for prod deploy file

* fix dev deploy file environment

* semi working testnet tx's

* begin test net addition to intent query

* recent changes

* fix memo buffer

* fix all query errors, fix val logo errors, fix font errors

* add defi query, swap index page for staking, fix bad balance query

* fix dom nesting errors

* finish defi box

* readme updates, add validator name(s) to staking modal confirm section

* re add interchain css for modal popup

* begin custom wallet modal theme

* install chain registry fork, update some endpoints, add more wallet modal customization

* add better error/success handling for unstake tx, fix step handling in stakingProcessModal

* fix wallet error, add empty export to bypass error for staking url page

* add filler to allow build

* add more mobile resisizng

* update todo, misc ui updates

* make unbonding table header sticky

* working cosmoshub testnet (no keplr)

* update to-do

* change osmosistestnet

* test new images, add input validation to unstaking section

* fix tm37 client issue, change staking to useTx hook, input validation, memo fixes

* begin LSM options

* update LSM styles

* fix input validation on stkaing boxes, add final side header logos, add construction message for airdrop page, get .env's ready for prod

* rough rewards claim section, fix unbonding query, finish unbonding table

* start getting ready for prod

* fix unbonding styles

* finish LSM flow

* add about page, add privacy page, finish side header

* lsm validator state tracking update, intent query update, modal size update, etc

* fix ibc transactions in asset grid

* fix gov voted query

* fix governance page filters

* fix more filters for goc page, hardcode staking apy in lieu of query

* add more input validation to staking box

* recenter portfolio items

* fix airdrop side-header highlight

* allows > 8 validator selection in intent setter

* finish validator specific route

* add IBC denoms, add fee percentage

* linted

* buildable

* add mix-panel for future use

---------

Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Joe Bowman <[email protected]>
  • Loading branch information
3 people authored Jan 11, 2024
1 parent 7d394dd commit 6d610b5
Show file tree
Hide file tree
Showing 88 changed files with 5,365 additions and 1,295 deletions.
10 changes: 10 additions & 0 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ func (app *Quicksilver) setUpgradeStoreLoaders() {
var storeUpgrades *storetypes.StoreUpgrades

switch upgradeInfo.Name { // nolint:gocritic
case upgrades.V010402rc3UpgradeName:

storeUpgrades = &storetypes.StoreUpgrades{
Added: []string{packetforwardtypes.ModuleName},
}

case upgrades.V010405rc0UpgradeName:
storeUpgrades = &storetypes.StoreUpgrades{
Added: []string{supplytypes.ModuleName},
}

case upgrades.V010405UpgradeName:
storeUpgrades = &storetypes.StoreUpgrades{
Expand Down
40 changes: 32 additions & 8 deletions app/upgrades/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,43 @@ import (

// upgrade name consts: vMMmmppUpgradeName (M=Major, m=minor, p=patch).
const (
ProductionChainID = "quicksilver-2"
RhyeChainID = "rhye-2"
DevnetChainID = "magic-2"
TestChainID = "testnet1"
ProductionChainID = "quicksilver-2"
RhyeChainID = "rhye-2"
DevnetChainID = "magic-2"
TestChainID = "testchain1"
OsmosisTestnetChainID = "osmo-test-5"
JunoTestnetChainID = "uni-6"
StargazeTestnetChainID = "elgafar-1"
SommelierChainID = "sommelier-3"

// testnet upgrades
V010405rc6UpgradeName = "v1.4.5-rc6"
V010405rc7UpgradeName = "v1.4.5-rc7"
V010402rc1UpgradeName = "v1.4.2-rc1"
V010402rc2UpgradeName = "v1.4.2-rc2"
V010402rc3UpgradeName = "v1.4.2-rc3"
V010402rc4UpgradeName = "v1.4.2-rc4"
V010402rc5UpgradeName = "v1.4.2-rc5"
V010402rc6UpgradeName = "v1.4.2-rc6"
V010402rc7UpgradeName = "v1.4.2-rc7"
V010403rc0UpgradeName = "v1.4.3-rc0"
V010404beta0UpgradeName = "v1.4.4-beta.0"
V010404beta1UpgradeName = "v1.4.4-beta.1"
V010404beta5UpgradeName = "v1.4.4-beta.5"
V010404beta7UpgradeName = "v1.4.4-beta.7"
V010404rc0UpgradeName = "v1.4.4-rc.0"
V010404beta8UpgradeName = "v1.4.4-beta.8"
V010404rc1UpgradeName = "v1.4.4-rc.1"
V010404beta9UpgradeName = "v1.4.4-beta.9"
V010404beta10UpgradeName = "v1.4.4-beta.10"
V010404rc2UpgradeName = "v1.4.4-rc.2"
V010404rc3UpgradeName = "v1.4.4-rc.3"
V010404rc4UpgradeName = "v1.4.4-rc.4"
V010405rc0UpgradeName = "v1.4.5-rc0"
V010405rc2UpgradeName = "v1.4.5-rc2"
V010405rc3UpgradeName = "v1.4.5-rc3"
V010405rc4UpgradeName = "v1.4.5-rc4"

// mainnet upgrades
V010217UpgradeName = "v1.2.17"
V010405UpgradeName = "v1.4.5"
V010406UpgradeName = "v1.4.6"
)

// Upgrade defines a struct containing necessary fields that a SoftwareUpgradeProposal
Expand Down
Loading

0 comments on commit 6d610b5

Please sign in to comment.