This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 171
Cosmos JS #1746
Merged
Merged
Cosmos JS #1746
Changes from 61 commits
Commits
Show all changes
62 commits
Select commit
Hold shift + click to select a range
9ff6edc
increase gas amplifier
alexalouit bb1888b
fix payload construction
alexalouit 92f4d59
More accurate gas amplifier
alexalouit f29a4ae
increase gas amplifier
alexalouit 957a48f
use same node for calculation and broadcast
alexalouit b120a76
fix amount payload
alexalouit dd45d6d
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit aaa9494
fix fees/gas calculation
alexalouit 67a4414
fix signature
alexalouit 510c1e9
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 0594ce0
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 75bd779
fix fees regression
alexalouit fff173f
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 014b551
More accurate pubkey selection
alexalouit bed90f0
don't use extra.tx_bytes
alexalouit 4faf89d
fix pubkey selection
alexalouit a49d4ff
simplify hex serialization
alexalouit e8ad8f3
update transaction: more strict types
alexalouit a03fd8f
many things
alexalouit 27947b3
accuracy
alexalouit 1ea1afe
remove useless isPreValidation
alexalouit f941d07
fix strange edge effect of ledger live desktop
alexalouit cda9bc1
Update xpub during sync
alexalouit d65266d
temporary enable log for bot
alexalouit 1c62e0c
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 8df4111
LL-9159 cosmos node
alexalouit 804fccd
Update js-signOperation.ts
alexalouit 35ecf59
fix signature
alexalouit f45276e
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 99dc488
fix redelegate payload
alexalouit 1800f02
fix payload send transaction when sendmax
alexalouit 3aca833
fix optimistic operation type
alexalouit e22a144
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit e7fd38b
fix typo
alexalouit c7a0e69
bugfix
alexalouit b64368e
fix regression
alexalouit 523f73f
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 992193f
update optimistic operation
alexalouit e81b5d3
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 71ea6f8
fix prettier
alexalouit e0f4fce
more deterministic transaction parsing
alexalouit 96591a7
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 0d409ca
clarify code readable
alexalouit 2823fcd
adjust sender and recipient
alexalouit fd3f0aa
fix fees when is ibc transaction
alexalouit 6685baa
fix redelegations data mapping
alexalouit 892148b
fix mixed styles
alexalouit 7446337
fix array cast type
alexalouit d0819d0
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 890c0d4
fix more determinist operation data
alexalouit 289ef6d
fix could not find optimisticOperation in redelegate transaction
alexalouit 6121e72
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit c113968
restore getStargateRewardsState methode
alexalouit 6c72c62
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit c3e6853
amount of the operation more close
alexalouit 6631073
return transaction in prepareTransaction
alexalouit a4b0c61
keep immutable paradigm for prepareTransaction
alexalouit b5e6e7f
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 8780fb4
fix amount update in prepareTransaction
alexalouit e6637dd
fix amount control to be more specific
alexalouit c0b2f6b
Merge remote-tracking branch 'upstream/cosmos-js' into cosmos-js
alexalouit 774230a
fix BigNumber compare
alexalouit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct me if i'm wrong but I think amount is a big number so the
!==
should be! .eq()
no?