@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) • 392 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PTxOutRef = void 0;
var pstruct_1 = require("../../../PTypes/PStruct/pstruct.js");
var types_1 = require("../../../type_system/types.js");
var PTxId_1 = require("./PTxId.js");
exports.PTxOutRef = (0, pstruct_1.pstruct)({
PTxOutRef: {
id: PTxId_1.PTxId.type,
index: types_1.int
}
});