Skip to content

Commit

Permalink
Merge branch 'injective' of github.com:hyperlane-xyz/hyperlane-warp-u…
Browse files Browse the repository at this point in the history
…i-template into injective
  • Loading branch information
jmrossy committed Jan 29, 2024
2 parents b588ebe + fe780a6 commit d0209ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/consts/app.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export const APP_NAME = 'Injective Token Bridge';
export const APP_DESCRIPTION = 'A token bridge for Injective powered by Hyperlane';
export const APP_URL = 'https://inevmbridge.com';
export const APP_BRAND_COLOR = '#0082FA';
1 change: 1 addition & 0 deletions src/consts/igpQuotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const DEFAULT_IGP_QUOTES: Partial<
> = {
[ProtocolType.Sealevel]: '10000',
[ProtocolType.Cosmos]: {
celestia: '270000', // 0.27 TIA
'neutron-1': '270000', // 0.27 TIA
'injective-1': '30000000000000000', // 0.03 INJ
},
Expand Down
1 change: 0 additions & 1 deletion src/features/tokens/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ interface BaseTokenMetadata extends MinimalTokenMetadata {
tokenCaip19Id: TokenCaip19Id;
routerAddress: Address; // Shared name for hypCollateralAddr or hypNativeAddr
igpTokenAddressOrDenom?: Address;
gasDenom?: string;
logoURI?: string;
}

Expand Down
4 changes: 2 additions & 2 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Head, Html, Main, NextScript } from 'next/document';

import { APP_DESCRIPTION, APP_NAME, APP_URL } from '../consts/app';
import { APP_BRAND_COLOR, APP_DESCRIPTION, APP_NAME, APP_URL } from '../consts/app';

export default function Document() {
return (
Expand All @@ -12,7 +12,7 @@ export default function Document() {
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color={APP_BRAND_COLOR} />
<link rel="shortcut icon" href="/favicon.ico" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
Expand Down

0 comments on commit d0209ec

Please sign in to comment.