Copy .env file in deploy, remove test timelock.

This commit is contained in:
jacque006
2024-04-08 01:33:47 -04:00
parent 672177dc1a
commit b8160d9ef0
2 changed files with 3 additions and 2 deletions

View File

@@ -44,6 +44,8 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Copy .env.base-sepolia
run: cp .env.base-sepolia .env
- name: Build
env:
VITE_WALLET_CONNECT_PROJECT_ID: ${{ secrets.VITE_WALLET_CONNECT_PROJECT_ID }}

View File

@@ -23,7 +23,6 @@ export function PerformRecovery() {
// abi: simpleWalletAbi,
// functionName: 'timelock',
// });
const timelock = -1
const { data: recoveryRouterAddr } = useReadContract({
abi: recoveryPluginAbi,
@@ -86,7 +85,7 @@ export function PerformRecovery() {
<Button onClick={requestRecovery}>
3. Request Recovery
</Button>
<div>{`TEST timelock: ${timelock}`}</div>
{/* <div>{`TEST timelock: ${timelock}`}</div> */}
<Button onClick={completeRecovery}>
TEST Complete Recovery (Switch to polling)
</Button>