We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03df61c commit cd6de2cCopy full SHA for cd6de2c
src/types/models/account.ts
@@ -1,4 +1,4 @@
1
-import { Asset } from '@meshsdk/core';
+import { Asset } from '../requests';
2
3
export type AccountBalance = {
4
asset: string;
src/types/responses/index.ts
@@ -87,7 +87,7 @@ export type BuildTransferalTransactionResponse = {
87
};
88
89
export type BuildTransferalRequestTransactionResponse = {
90
- signed_tx: string;
+ tx_hex: string;
91
92
93
export type SubmitDepositTransactionResponse = {
@@ -158,5 +158,5 @@ export type GetTransferalRecordsResponse = {
158
159
160
export type GetTransferalRecordByTxHashResponse = {
161
- transferal_record: TransferalRecord[];
+ transferal_record: TransferalRecord;
162
0 commit comments