-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate Aptos blockchain --------- Co-authored-by: Vladyslav Belyokhin <[email protected]> Co-authored-by: Vladyslav Belyokhin <[email protected]> Co-authored-by: Vladyslav Makarian <[email protected]> Co-authored-by: João Martins <[email protected]> Co-authored-by: Oleksii <[email protected]> Co-authored-by: João Martins <[email protected]> Co-authored-by: João Guimarães <[email protected]> Co-authored-by: Pedro Semeano <[email protected]> Co-authored-by: Victor <[email protected]> Co-authored-by: João Guimarães <[email protected]> Co-authored-by: Samy RABAH-MONTAROU <[email protected]>
- Loading branch information
1 parent
77105fd
commit d98a964
Showing
91 changed files
with
6,423 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
"@ledgerhq/types-cryptoassets": minor | ||
"@ledgerhq/cryptoassets": minor | ||
"@ledgerhq/hw-app-aptos": minor | ||
"@ledgerhq/types-live": minor | ||
"@ledgerhq/crypto-icons-ui": minor | ||
"@actions/turbo-affected": minor | ||
"ledger-live-desktop": minor | ||
"live-mobile": minor | ||
"@ledgerhq/live-common": minor | ||
"@ledgerhq/coin-framework": minor | ||
"@ledgerhq/live-cli": minor | ||
"@ledgerhq/live-env": minor | ||
--- | ||
|
||
Support for Aptos blockchain |
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
5 changes: 5 additions & 0 deletions
5
apps/ledger-live-desktop/src/renderer/families/aptos/index.ts
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { AptosFamily } from "./types"; | ||
|
||
const family: AptosFamily = {}; | ||
|
||
export default family; |
14 changes: 14 additions & 0 deletions
14
apps/ledger-live-desktop/src/renderer/families/aptos/types.ts
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { | ||
AptosAccount, | ||
Transaction, | ||
TransactionStatus, | ||
} from "@ledgerhq/live-common/families/aptos/types"; | ||
import { Operation } from "@ledgerhq/types-live"; | ||
import { FieldComponentProps, LLDCoinFamily } from "../types"; | ||
|
||
export type AptosFamily = LLDCoinFamily<AptosAccount, Transaction, TransactionStatus, Operation>; | ||
export type AptosFieldComponentProps = FieldComponentProps< | ||
AptosAccount, | ||
Transaction, | ||
TransactionStatus | ||
>; |
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
Oops, something went wrong.