@chipi-stack/types 13.0.0 → 13.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +11 -6
- package/dist/index.d.ts +11 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -121,12 +121,17 @@ interface GetTokenBalanceResponse {
|
|
|
121
121
|
}
|
|
122
122
|
interface GetWalletResponse {
|
|
123
123
|
id: string;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
124
|
+
externalUserId: string;
|
|
125
|
+
organizationId: string | null;
|
|
126
|
+
apiPublicKey: string;
|
|
127
|
+
publicKey: string;
|
|
128
|
+
normalizedPublicKey: string;
|
|
129
|
+
encryptedPrivateKey: string;
|
|
130
|
+
isDeployed: boolean;
|
|
131
|
+
createdAt: string;
|
|
132
|
+
updatedAt: string;
|
|
133
|
+
walletType: WalletType;
|
|
134
|
+
chain: Chain;
|
|
130
135
|
}
|
|
131
136
|
interface PrepareWalletCreationParams {
|
|
132
137
|
encryptKey: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -121,12 +121,17 @@ interface GetTokenBalanceResponse {
|
|
|
121
121
|
}
|
|
122
122
|
interface GetWalletResponse {
|
|
123
123
|
id: string;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
124
|
+
externalUserId: string;
|
|
125
|
+
organizationId: string | null;
|
|
126
|
+
apiPublicKey: string;
|
|
127
|
+
publicKey: string;
|
|
128
|
+
normalizedPublicKey: string;
|
|
129
|
+
encryptedPrivateKey: string;
|
|
130
|
+
isDeployed: boolean;
|
|
131
|
+
createdAt: string;
|
|
132
|
+
updatedAt: string;
|
|
133
|
+
walletType: WalletType;
|
|
134
|
+
chain: Chain;
|
|
130
135
|
}
|
|
131
136
|
interface PrepareWalletCreationParams {
|
|
132
137
|
encryptKey: string;
|