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

Escrowed EXA #1240

Merged
merged 38 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1b03d24
✨ add vesting page
JuampiRombola Sep 21, 2023
ba53cd2
🌐 add vesting translations
JuampiRombola Sep 21, 2023
fc78513
🚧 vesting input
franm91 Sep 22, 2023
edcfec3
🤡 add mock active streams
JuampiRombola Sep 25, 2023
7a5d8b8
🔧 add esEXA contract
franm91 Sep 28, 2023
1d5a0c8
🔧 add sablier subgraph
franm91 Sep 28, 2023
0f2551d
🚧 esEXA: stream progress
franm91 Sep 28, 2023
1ca1bce
🧪 e2e: add skeleton tests
jgalat Oct 3, 2023
e5e3e03
✨vesting: claim and claim all
franm91 Oct 3, 2023
f11bfc6
♻️ vesting: minor calcs
jgalat Oct 4, 2023
baa0caa
✨vesting: add reserver ratio
jgalat Oct 4, 2023
7e8ebe4
✨ vesting: add submit
jgalat Oct 4, 2023
ac4fedc
✅ vesting: add e2e
jgalat Oct 4, 2023
71f310b
✨ vesting: add contract flow
jgalat Oct 5, 2023
853b92b
✨ vesting: add tx modal
jgalat Oct 5, 2023
c99a6f5
✅vesting: update test for loading tx
jgalat Oct 5, 2023
4f9b6fe
♻️ vesting: add refetch on tx finish
jgalat Oct 5, 2023
6939de9
✨ vesting: add rewards claim
jgalat Oct 5, 2023
dfaf7e8
💄vesting: add mobile and withdraw reserve
franm91 Oct 5, 2023
3568197
💄vesting: style updates
franm91 Oct 9, 2023
d26469e
💄vesting: add NFT modal
franm91 Oct 9, 2023
4302bdf
💄 fix styles
franm91 Oct 11, 2023
a2e52f0
💄vesting: add skeleton
franm91 Oct 11, 2023
4959277
💄update esEXA image
franm91 Oct 17, 2023
c018f26
🚸 vesting: add vesting period
franm91 Oct 17, 2023
bde393f
⬆️ protocol deploy branch
franm91 Oct 17, 2023
4976f64
✅ e2e: add cancel test
jgalat Oct 17, 2023
e44e01d
🌐 vesting: add translations
jgalat Oct 18, 2023
59b4d94
💄 vesting: fix styles
franm91 Oct 18, 2023
b08273b
📈vesting: add analytics
franm91 Oct 18, 2023
28a0daf
🚸 vesting: add max button
franm91 Oct 18, 2023
24c3e4e
💄vesting: update styles
franm91 Oct 18, 2023
fc1fcc7
💬 vesting: change vesting text
franm91 Oct 18, 2023
59c9835
🎨vesting: improve code
franm91 Oct 19, 2023
e834bf0
💬vesting: fix reserve value
franm91 Oct 19, 2023
afc640f
💬 update security hub
franm91 Oct 20, 2023
ad2b154
⬆️ chore: upgrade @exactly/protocol 0.2.17
jgalat Oct 20, 2023
43f98da
✅ e2e: fix vesting tests
jgalat Oct 20, 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
533 changes: 533 additions & 0 deletions components/ActiveStream/index.tsx

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion components/OperationsModal/ModalInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { NumericFormat } from 'react-number-format';
type CustomProps = {
decimals: number;
onValueChange: (value: string) => void;
'data-testid'?: string;
};

const NumberFormatCustom = React.forwardRef<HTMLInputElement, InputBaseComponentProps & CustomProps>(
Expand Down Expand Up @@ -32,7 +33,7 @@ const NumberFormatCustom = React.forwardRef<HTMLInputElement, InputBaseComponent
defaultValue={0.0}
thousandSeparator=","
valueIsNumericString
data-testid="modal-input"
data-testid={props['data-testid']}
/>
);
},
Expand All @@ -57,6 +58,7 @@ function ModalInput({
maxWidth,
align = 'right',
disabled = false,
'data-testid': testId = 'modal-input',
...props
}: Props) {
return (
Expand All @@ -70,6 +72,7 @@ function ModalInput({
style: { padding: 0, textAlign: align },
onValueChange: onValueChange,
decimals: decimals,
'data-testid': testId,
}}
disabled={disabled}
value={value}
Expand Down
Loading