-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(zoe): implement metering of contracts
- Loading branch information
1 parent
ce077a3
commit 9138801
Showing
4 changed files
with
95 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
packages/zoe/test/swingsetTests/zoe-metering/testBuiltins.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import harden from '@agoric/harden'; | ||
|
||
export const makeContract = (zoe, terms) => { | ||
const seat = harden({}); | ||
const { invite } = zoe.makeInvite(seat, { | ||
seatDesc: 'tester', | ||
}); | ||
return harden({ | ||
publicAPI: { | ||
doTest: () => { | ||
new Array(1e7).map(Object.create); | ||
}, | ||
}, | ||
invite, | ||
terms, | ||
}); | ||
} |