Skip to content

Commit

Permalink
fix: Rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Oct 27, 2024
1 parent 7893502 commit 8f8fff0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/config/wagmi.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { createConfig, http } from '@wagmi/vue';
import { base, baseSepolia } from '@wagmi/vue/chains';
import { walletConnect } from '@wagmi/vue/connectors';
import env from 'src/config/env';

export const config = createConfig({
chains: [base, baseSepolia],
connectors: [
walletConnect({
projectId: process.env.WALLET_CONNECT_PROJECT_ID!,
projectId: env.WALLET_CONNECT_PROJECT_ID,
metadata: {
name: 'LibertAI',
description: 'Discover the Freedom of Decentralized AI',
Expand Down
3 changes: 2 additions & 1 deletion src/utils/aleph-persistent-storage.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { Account, Chain, Client, Transport } from 'viem';

import { AuthenticatedAlephHttpClient } from '@aleph-sdk/client';
import {
BaseAccount,
Expand All @@ -8,7 +10,6 @@ import { ItemType } from '@aleph-sdk/message';
import { PrivateKey } from 'eciesjs';
import { type Config, getConnectorClient, signMessage as signWagmiMessage } from '@wagmi/core';
import { config } from 'src/config/wagmi';
import type { Account, Chain, Client, Transport } from 'viem';
import {
KnowledgeBase,
KnowledgeBaseIdentifier,
Expand Down

0 comments on commit 8f8fff0

Please sign in to comment.