Skip to content

Commit 769f396

Browse files
committed
fix: correct clone URL, remove stale ngrok reference, and align explorer URL
- README: update clone URL from akelani-circle/fintech-starter to circlefin/arc-fintech and remove dangling ngrok instruction that referenced a non-existent step - gateway-sdk.ts: replace unreachable explorer.arc.testnet.circle.com with testnet.arcscan.app to match block-explorers.ts
1 parent 98cc4cb commit 769f396

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Modern multi-chain treasury management system. This sample application uses Next
2424
1. Clone the repository and install dependencies:
2525

2626
```bash
27-
git clone git@github.com:akelani-circle/fintech-starter.git
28-
cd fintech-starter
27+
git clone git@github.com:circlefin/arc-fintech.git
28+
cd arc-fintech
2929
npm install
3030
```
3131

@@ -34,7 +34,6 @@ Modern multi-chain treasury management system. This sample application uses Next
3434
```bash
3535
cp .env.example .env.local
3636
```
37-
Replace `your-ngrok-url` with your actual ngrok forwarding URL from step 4.
3837

3938
Then edit `.env.local` and fill in all required values (see [Environment Variables](#environment-variables) section below).
4039

lib/circle/gateway-sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const arcTestnet = {
4949
default: { http: [`https://rpc.testnet.arc.network/${arcRpcKey}`] },
5050
},
5151
blockExplorers: {
52-
default: { name: 'Explorer', url: 'https://explorer.arc.testnet.circle.com' },
52+
default: { name: 'Explorer', url: 'https://testnet.arcscan.app' },
5353
},
5454
testnet: true,
5555
} as const satisfies Chain;

0 commit comments

Comments
 (0)