Skip to content

Commit cd6de2c

Browse files
committed
chore: fix naming
1 parent 03df61c commit cd6de2c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/types/models/account.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Asset } from '@meshsdk/core';
1+
import { Asset } from '../requests';
22

33
export type AccountBalance = {
44
asset: string;

src/types/responses/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export type BuildTransferalTransactionResponse = {
8787
};
8888

8989
export type BuildTransferalRequestTransactionResponse = {
90-
signed_tx: string;
90+
tx_hex: string;
9191
};
9292

9393
export type SubmitDepositTransactionResponse = {
@@ -158,5 +158,5 @@ export type GetTransferalRecordsResponse = {
158158
};
159159

160160
export type GetTransferalRecordByTxHashResponse = {
161-
transferal_record: TransferalRecord[];
161+
transferal_record: TransferalRecord;
162162
};

0 commit comments

Comments
 (0)