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

🪄 [QA] Update stage environments #701

Merged
merged 35 commits into from
Nov 16, 2023
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1eadf1a
Add basic animation for population bubble
Nov 2, 2023
083bb5e
Use a hook to showing population bubble
Nov 2, 2023
ebf2052
Create a displayed population to handle bubbles
Nov 2, 2023
2473f31
Use interval for updating population
Nov 2, 2023
f3c32d8
Merge branch 'main' of github.com:tahowallet/dapp into population-bubble
Nov 3, 2023
3aa7f0f
Generate random intervals for bubbles
Nov 3, 2023
44669d1
Adding bubble to the modal window
Nov 3, 2023
fa2bd1c
Set correct bubble animation
xpaczka Nov 6, 2023
fd12599
Merge branch 'main' into population-bubble
xpaczka Nov 6, 2023
5817612
Animate `RealmBarIcon` component
xpaczka Nov 6, 2023
2fea5a9
Fix `RealmBarIcon` animation
xpaczka Nov 7, 2023
a3065c1
Animate `RealmBarIcon` using `displayedPopulation` property
xpaczka Nov 7, 2023
bd48a4f
Refactor `population` selectors
xpaczka Nov 8, 2023
1980c34
Type-o fixes and commented code removals
xpaczka Nov 8, 2023
b5fbf34
Remove dispatch awaiting
xpaczka Nov 8, 2023
60862e2
`setShowBubble` after dispatching event
xpaczka Nov 9, 2023
5bc5699
Change condition for `setRealmDisplayedPopulation`
xpaczka Nov 9, 2023
3c7df3e
Merge branch 'main' into population-bubble
xpaczka Nov 9, 2023
2ae7563
Merge branch 'main' into population-bubble
jagodarybacka Nov 9, 2023
8421908
Update displayed population if it is `null` in `redux`
xpaczka Nov 10, 2023
c2b2b81
Improve transition on onboarding `PopulationCount`
xpaczka Nov 10, 2023
edbf328
`useInterval` only when `population` and `displayedPopulation` is truthy
xpaczka Nov 10, 2023
a26c5c4
Remove transition from `RealmBar`
xpaczka Nov 10, 2023
396fe76
Create `useDisplayedPopulation` hook
xpaczka Nov 10, 2023
7e4f471
Merge branch 'main' into population-bubble
xpaczka Nov 15, 2023
4851cbe
Reduce interval time in fetching current realms population
xpaczka Nov 15, 2023
0a79f28
Handle bigints in the `TokenAmountInput`
jagodarybacka Nov 15, 2023
665b8ea
Gracefully handle amounts smaller than desired precision
jagodarybacka Nov 15, 2023
4840a78
Handle cases where input precision is not enough
jagodarybacka Nov 15, 2023
ea541f2
Add util to display bigints as strings with max precision
jagodarybacka Nov 15, 2023
64418ac
Get rid of browser tooltip for input
jagodarybacka Nov 15, 2023
28b01f4
Bubble of a growing population (#627)
jagodarybacka Nov 16, 2023
6fb86a2
Handle bigints in the `TokenAmountInput` (#699)
xpaczka Nov 16, 2023
ec665e4
Fix typos
xpaczka Nov 16, 2023
c42630a
Fix typos (#702)
jagodarybacka Nov 16, 2023
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
Prev Previous commit
Next Next commit
Fix typos
xpaczka committed Nov 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit ec665e47fdb0908d5b74eb4d620be50d7bed4a84
2 changes: 1 addition & 1 deletion docs/testing-env.md
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
### Branches

- `main`
- branch `main` is the base branch for current developement
- branch `main` is the base branch for current development
- every feature branch should be merged into `main` via pull request
- `stage-live`
- base for running the staging environment that is running on the live chain
2 changes: 1 addition & 1 deletion src/shared/contracts/game.ts
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ export const getSeasonInfo: ReadTransactionBuilder<null, SeasonInfo> = async (

const season = seasonInfo[0].toNumber()

// Season start data is accessible throught .env
// Season start data is accessible through .env
// Date requires ms, whereas block.timestamp is in s
// const seasonStartTimestamp = seasonInfo[1].toNumber() * 1000