Skip to content

Commit

Permalink
Merge pull request #21 from deso-protocol/jackson/token-order-fixes
Browse files Browse the repository at this point in the history
update deso token types
  • Loading branch information
jackson-dean authored Oct 13, 2023
2 parents ef0cdf7 + cc6022f commit 4543f4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend-types/deso-types-custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export interface DAOCoinLimitOrderRequest {
FillType: string;
OperationType: string;
MinFeeRateNanosPerKB?: number;
TransactionFees: TransactionFee[] | null;
TransactionFees?: TransactionFee[] | null;
}

export type DAOCoinMarketOrderRequest = Omit<DAOCoinLimitOrderRequest, 'Price'>;
Expand Down
1 change: 1 addition & 0 deletions src/backend-types/deso-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4573,6 +4573,7 @@ export interface DAOCoinOrderResponse {
Transaction: MsgDeSoTxn;
TransactionHex: string;
TxnHashHex: string;
SimulatedExecutionResult?: DAOCoinLimitOrderSimulatedExecutionResult;
}

// struct2ts:types/generated/types.DAOCoinLimitOrderWithCancelOrderIDRequest
Expand Down

0 comments on commit 4543f4f

Please sign in to comment.