Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { E } from '@endo/eventual-send';
import { makeDefaultExo } from '@metamask/kernel-utils/exo';
/**
* A consumer vat that obtains an ephemeral exo reference from the provider
* during bootstrap and calls it on demand.
*
* @returns The root object.
*/
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
export function buildRootObject() {
let ephemeralRef: unknown;
return makeDefaultExo('root', {
async bootstrap(vats: { provider: unknown }) {
ephemeralRef = await E(vats.provider).getEphemeral();
},
async useEphemeral() {
return E(ephemeralRef).increment();
},
});
}
|