-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/live 9560 polkadot reorg (#5882)
* feat: move type into specific folder Signed-off-by: Stéphane Prohaszka <[email protected]> * feat: move js files to bridge dir Signed-off-by: Stéphane Prohaszka <[email protected]> * feat: create dedicated dir for e2e and integ tests Signed-off-by: Stéphane Prohaszka <[email protected]> * feat: move last files to dedicated dir Signed-off-by: Stéphane Prohaszka <[email protected]> * feat: choose export function from polkadot Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: error in import Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: restore import for polkadot Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: missing generated import Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: lighten polkadot test import Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: missing correct test import Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: unimported Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: still missing correct test import Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: remove extra path for errors access Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: rename api directory to network Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: separate logic from bridge specific WIP Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: separate formatting from serialization file Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: missing export Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: return early in serialization OperationExtra Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: remove platform-sdk file from polkadot module Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: some clean Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: format code Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: unecessary import Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: remove unused types in mobile Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: unimported Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: unimported Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: remove unused dependency Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: cosmos type error Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: review feedbacks Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: rename bridge.integration.test.ts Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: undo wrongly updated snapshot Signed-off-by: Stéphane Prohaszka <[email protected]> * chore: feedbacks Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: revert use of inferFamilyFromAccountId Signed-off-by: Stéphane Prohaszka <[email protected]> * fix: add missing export asked by ui Signed-off-by: Stéphane Prohaszka <[email protected]> --------- Signed-off-by: Stéphane Prohaszka <[email protected]>
- Loading branch information
1 parent
94d5bd0
commit ad7f8f4
Showing
99 changed files
with
1,152 additions
and
1,749 deletions.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
{ | ||
"entry": [ | ||
"src/account.ts", | ||
"src/bridge/js.ts", | ||
"src/cli-transaction.ts", | ||
"src/deviceTransactionConfig.ts", | ||
"src/errors.ts", | ||
"src/hw-getAddress.ts", | ||
"src/logic.ts", | ||
"src/platformAdapter.ts", | ||
"src/preload.ts", | ||
"src/serialization.ts", | ||
"src/specs.ts", | ||
"src/transaction.ts" | ||
"src/bridge/index.ts", | ||
"src/bridge/deviceTransactionConfig.ts", | ||
"src/bridge/formatters.ts", | ||
"src/signer/index.ts", | ||
"src/test/cli.ts", | ||
"src/test/index.ts", | ||
"src/test/specs.ts", | ||
"src/types/errors.ts", | ||
"src/index.ts" | ||
], | ||
"ignoreUnimported": ["src/api/subscan.ts", "src/api/websocket.ts"], | ||
"ignoreUnresolved": [] | ||
} |
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
Oops, something went wrong.