Skip to content

Commit e2eece6

Browse files
authored
fix: update fallback rpcs in ovault example (#1668)
1 parent 80998c3 commit e2eece6

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.changeset/lovely-waves-invite.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@layerzerolabs/ovault-evm-example": patch
3+
---
4+
5+
Update RPCs to testnet and add feature flag to README

examples/ovault-evm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ OVault makes it extremely easy to move assets and shares between any supported c
5555
## Scaffold this Example
5656

5757
```bash
58-
npx create-lz-oapp@latest --example ovault-evm
58+
LZ_ENABLE_OVAULT_EXAMPLE=1 npx create-lz-oapp@latest --example ovault-evm
5959
```
6060

6161
## Helper Tasks

examples/ovault-evm/hardhat.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,17 @@ const config: HardhatUserConfig = {
5757
networks: {
5858
optimism: {
5959
eid: EndpointId.OPTSEP_V2_TESTNET,
60-
url: process.env.RPC_URL_OPTIMISM_TESTNET || 'https://optimism.gateway.tenderly.co',
60+
url: process.env.RPC_URL_OPTIMISM_TESTNET || 'https://optimism-sepolia.gateway.tenderly.co',
6161
accounts,
6262
},
6363
base: {
6464
eid: EndpointId.BASESEP_V2_TESTNET,
65-
url: process.env.RPC_URL_BASE_TESTNET || 'https://base.gateway.tenderly.co',
65+
url: process.env.RPC_URL_BASE_TESTNET || 'https://base-sepolia.gateway.tenderly.co',
6666
accounts,
6767
},
6868
arbitrum: {
6969
eid: EndpointId.ARBSEP_V2_TESTNET,
70-
url: process.env.RPC_URL_ARBITRUM_TESTNET || 'https://arbitrum.gateway.tenderly.co',
70+
url: process.env.RPC_URL_ARBITRUM_TESTNET || 'https://arbitrum-sepolia.gateway.tenderly.co',
7171
accounts,
7272
},
7373
hardhat: {

0 commit comments

Comments
 (0)