Skip to content

Commit

Permalink
fix: dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee committed Aug 7, 2024
1 parent b736746 commit 6734439
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"typescript": "~5.2.2"
},
"dependencies": {
"@agoric/vat-data": "^0.5.3-u14.0",
"@agoric/zone": "^0.2.3-u14.0",
"@agoric/ertp": "^0.16.3-u12.0",
"@agoric/zoe": "^0.26.3-u12.0",
Expand Down
10 changes: 3 additions & 7 deletions contract/src/offer-up.contract.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,10 @@ import { M, getCopyBagEntries } from '@endo/patterns';
import { AssetKind } from '@agoric/ertp/src/amountMath.js';
import { AmountShape } from '@agoric/ertp/src/typeGuards.js';
import { atomicRearrange } from '@agoric/zoe/src/contractSupport/atomicTransfer.js';
import '@agoric/zoe/exported.js';
const { Fail, quote: q } = assert;
import { makeScalarBigMapStore } from '@agoric/vat-data';
import { makeDurableZone } from '@agoric/zone/durable.js';
import '@agoric/zoe/exported.js';

/**
* @import { Baggage } from '@agoric/swingset-liveslots';
*/
const { Fail, quote: q } = assert;


// #region bag utilities
Expand Down Expand Up @@ -74,7 +70,7 @@ export const customTermsShape = meta.customTermsShape;
*
* @param {ZCF<OfferUpTerms>} zcf
* @param {*} _privateArgs
* @param {Baggage} baggage
* @param {import('@agoric/ertp').Baggage} baggage
*/
export const start = async (zcf, _privateArgs, baggage) => {
const { tradePrice, maxItems = 3n } = zcf.getTerms();
Expand Down

0 comments on commit 6734439

Please sign in to comment.