Skip to content

Commit

Permalink
More moving into chain/
Browse files Browse the repository at this point in the history
  • Loading branch information
wraitii committed Mar 11, 2022
1 parent 43ae803 commit 2a7fce2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/builder/MintProxy.ts → src/chain/MintProxy.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { reactive } from 'vue'
import type MintContract from '../chain/contracts/mint';
import type MintContract from './contracts/mint';

import { ticketing, OutdatedPromiseError } from '../Async';

Expand Down
2 changes: 1 addition & 1 deletion src/builder/StarknetSync.ts → src/chain/StarknetSync.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { store } from "../store/Store";

import { setupMintProxy } from './MintProxy'
import { setupMintProxy } from '@/chain/MintProxy'

import contractStore from '@/chain/Contracts';

Expand Down
2 changes: 1 addition & 1 deletion src/components/builder/Builder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { setsManager, checkForInitialGMSet } from '../../builder/SetsManager';
import contractStore from '@/chain/Contracts';
import { watchEffectAndWait } from '../../Async';
import { setupSync } from '../../builder/StarknetSync';
import { setupSync } from '@/chain/StarknetSync';
import { builderInputFsm } from "../../builder/inputs/BuilderInput"
import { pushMessage, setTooltip } from '../../Messages'
Expand Down
2 changes: 1 addition & 1 deletion src/components/builder/MintProxy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</template>

<script lang="ts">
import { mintProxyStore } from '../../builder/MintProxy'
import { mintProxyStore } from '@/chain/MintProxy'
import { pushModal } from '../Modals.vue';
import MintModalVue from './modals/MintModal.vue';
Expand Down
2 changes: 1 addition & 1 deletion src/components/builder/modals/ExportSet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ import { setsManager } from '../../../builder/SetsManager';
import BriqTable from '../BriqTable.vue';
import RenameSet from '../modals/RenameSet.vue';
import { pushModal } from '../../Modals.vue';
import { mintProxyStore } from '../../../builder/MintProxy';
import { mintProxyStore } from '@/chain/MintProxy';
import { VERSION } from '../../../Meta';
Expand Down
2 changes: 1 addition & 1 deletion src/components/builder/modals/MintModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</template>

<script lang="ts">
import { mintProxyStore } from '../../../builder/MintProxy';
import { mintProxyStore } from '@/chain/MintProxy';
import { Transaction, transactionsManager } from '../../../builder/Transactions';
import type { Provider } from 'starknet';
Expand Down

0 comments on commit 2a7fce2

Please sign in to comment.