@harmoniclabs/plu-ts-onchain
Version:
An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript
13 lines (12 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PTxInInfo = void 0;
var pstruct_1 = require("../../../PTypes/PStruct/pstruct.js");
var PTxOut_1 = require("./PTxOut.js");
var PTxOutRef_1 = require("./PTxOutRef.js");
exports.PTxInInfo = (0, pstruct_1.pstruct)({
PTxInInfo: {
utxoRef: PTxOutRef_1.PTxOutRef.type,
resolved: PTxOut_1.PTxOut.type
}
});