Skip to content

Commit 208cbfd

Browse files
authored
chore(entropy) Add callouts for custom fee (#647)
* chore(entropy) Add callouts for custom fee * added hyperevm
1 parent a1775cc commit 208cbfd

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

components/EntropyDeployments.tsx

+13-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
6060
explorer: "https://optimistic.etherscan.io/address/$ADDRESS",
6161
delay: "2 blocks",
6262
gasLimit: "500K",
63-
rpc: "https://rpc.ankr.com/optimism",
63+
rpc: "https://optimism.llamarpc.com",
6464
nativeCurrency: "ETH",
6565
},
6666
mode: {
@@ -216,7 +216,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
216216
rpc: "https://subnets.avax.network/orangetest/testnet/rpc",
217217
nativeCurrency: "JUICE",
218218
},
219-
"sei-evm-mainnet": {
219+
"sei-evm": {
220220
address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
221221
explorer: "https://seitrace.com/address/$ADDRESS?chain=pacific-1",
222222
delay: "1 block",
@@ -306,7 +306,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
306306
rpc: "https://sepolia.b3.fun/http/",
307307
nativeCurrency: "ETH",
308308
},
309-
"b3-mainnet": {
309+
b3: {
310310
address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
311311
explorer: "https://explorer.b3.fun/address/$ADDRESS",
312312
delay: "1 block",
@@ -351,7 +351,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
351351
rpc: "https://sanko-arb-sepolia.rpc.caldera.xyz/http",
352352
nativeCurrency: "DMT",
353353
},
354-
"apechain-mainnet": {
354+
apechain: {
355355
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
356356
explorer: "https://apechain.calderaexplorer.xyz/address/$ADDRESS",
357357
delay: "1 block",
@@ -441,4 +441,13 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
441441
rpc: "https://bepolia.rpc.berachain.com",
442442
nativeCurrency: "BERA",
443443
},
444+
hyperevm: {
445+
address: "0xfA25E653b44586dBbe27eE9d252192F0e4956683",
446+
explorer: "https://hyperliquid.cloud.blockscout.com/address/$ADDRESS",
447+
delay: "",
448+
gasLimit: "500K",
449+
network: "mainnet",
450+
rpc: "https://rpc.hyperliquid.xyz/evm",
451+
nativeCurrency: "HYPE",
452+
},
444453
};

pages/entropy/current-fees.mdx

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
import EntropyFeeTable from "../../components/EntropyFeeTable";
22
import { EntropyDeployments } from "../../components/EntropyDeployments";
3+
import { Callout } from "nextra/components";
34

4-
The following tables shows the total fees payable when using the default provider.
5+
The following tables shows the total fees payable when using the **default provider**.
56
Note that the fees shown below will vary over time with prevailing gas prices on each chain.
67

78
## Mainnet
89

10+
<Callout emoji="⚠️">
11+
The fees for mainnet are dynamically set. Always use the onchain method `entropy.getFee(entropyProvider){:solidity}` to get the current fee.
12+
</Callout>
13+
914
<EntropyFeeTable
1015
deployments={Object.fromEntries(
1116
Object.entries(EntropyDeployments).filter(
@@ -16,6 +21,11 @@ Note that the fees shown below will vary over time with prevailing gas prices on
1621

1722
## Testnet
1823

24+
<Callout type="info" emoji="ℹ️">
25+
The fees for testnets kept deliberately low and different from the mainnet
26+
fees.
27+
</Callout>
28+
1929
<EntropyFeeTable
2030
deployments={Object.fromEntries(
2131
Object.entries(EntropyDeployments).filter(

0 commit comments

Comments
 (0)