-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
30 additions
and
61 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
4 changes: 2 additions & 2 deletions
4
packages/circle-demo-webapp/app/components/WalletSetDetails/WalletSetDetails.tsx
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,33 +1,19 @@ | ||
/** | ||
* Request types | ||
*/ | ||
import type { | ||
Blockchain, | ||
Token, | ||
TransactionType, | ||
} from '@circle-fin/developer-controlled-wallets'; | ||
import type { Token } from '@circle-fin/developer-controlled-wallets'; | ||
import type { | ||
Transaction, | ||
Wallet as SdkWallet, | ||
WalletSet as SdkWalletSet, | ||
Wallet, | ||
WalletSet, | ||
} from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets'; | ||
|
||
import { TestnetBlockchain } from '~/lib/constants'; | ||
|
||
export type TypeBlockchain = (typeof Blockchain)[keyof typeof Blockchain]; | ||
export type TypeTestnetBlockchain = | ||
(typeof TestnetBlockchain)[keyof typeof TestnetBlockchain]; | ||
export type TypeTransactionType = (typeof TransactionType)[keyof typeof TransactionType]; | ||
|
||
export interface TransactionWithToken extends Transaction { | ||
token?: Token; | ||
} | ||
|
||
export interface WalletSet extends SdkWalletSet { | ||
export interface ElementsWalletSet extends WalletSet { | ||
name?: string; | ||
custodyType?: string; | ||
} | ||
|
||
export interface Wallet extends SdkWallet { | ||
export interface ElementsWallet extends Wallet { | ||
accountType?: string; | ||
} |
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