Skip to content

Commit

Permalink
use type aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornkihlberg committed Oct 19, 2023
1 parent 4890be9 commit 92988ba
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
AddressBech32,
AddressesAndCollaterals,
Metadata,
Tags,
TagsGuard,
TextEnvelopeGuard,
TxId,
Expand Down Expand Up @@ -137,11 +138,11 @@ export type ApplyInputsToContractRequest = {
changeAddress: AddressBech32;
usedAddresses?: AddressBech32[];
collateralUTxOs?: TxOutRef[];
invalidBefore?: string;
invalidHereafter?: string;
version?: "v1";
metadata?: { [label: string | number]: any };
tags?: { [tag: string]: any };
invalidBefore?: ISO8601;
invalidHereafter?: ISO8601;
version?: MarloweVersion;
metadata?: Metadata;
tags?: Tags;
inputs: Input[];
};

Expand Down

0 comments on commit 92988ba

Please sign in to comment.