Skip to content

Commit

Permalink
Update new imports
Browse files Browse the repository at this point in the history
  • Loading branch information
schnetzlerjoe committed Nov 8, 2023
1 parent 7c5a5a4 commit 5d4d14e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions contract/src/contract.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
// @ts-check
/* global harden */
import '@agoric/zoe/exported.js';
import { Far } from '@endo/marshal/src/make-far.js';
import '@agoric/network/exported.js';
import { Far } from '@endo/marshal';
import { ICS27ICAProtocol } from './ica.js';

/**
*
* @type {ContractStartFn}
*/
const start = async () => {
const start = () => {
const creatorFacet = Far('creatorFacet', {
// The creator of the instance can be called by the creator
});
Expand Down
2 changes: 1 addition & 1 deletion contract/src/ica.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-check
import { Far } from '@endo/marshal/src/make-far.js';
import { Far } from '@endo/marshal';
import { assert, details as X } from '@agoric/assert';
import { TxBody } from 'cosmjs-types/cosmos/tx/v1beta1/tx.js';
import { Any } from 'cosmjs-types/google/protobuf/any.js';
Expand Down

0 comments on commit 5d4d14e

Please sign in to comment.