Тестовый коммит после удаления husky

This commit is contained in:
2025-03-05 01:02:09 +03:00
parent b0f7a64a96
commit d90e1b93a9
120 changed files with 8191 additions and 8530 deletions

View File

@@ -0,0 +1,23 @@
import { ref } from 'vue';
export function useEthereum() {
const address = ref('');
const isConnected = ref(true);
async function connect() {
console.log('Имитация подключения к кошельку');
return { success: true };
}
async function getContract() {
console.log('Имитация получения контракта');
return {};
}
return {
address,
isConnected,
connect,
getContract,
};
}