Skip to content

Commit

Permalink
fix: property name in base config typing (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlinaric authored Sep 21, 2023
1 parent 97eadc5 commit 17ff329
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/sdk/src/localConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const localConfig: RawConfig = {
},
],
nativeTokenSymbol: 'eth',
nativeTokenName: 'ether',
nativeTokenFullName: 'ether',
nativeTokenDecimals: BigInt(18),
blockConfirmations: 1,
startBlock: BigInt(3054823),
Expand Down Expand Up @@ -91,7 +91,7 @@ export const localConfig: RawConfig = {
},
],
nativeTokenSymbol: 'eth',
nativeTokenName: 'ether',
nativeTokenFullName: 'ether',
nativeTokenDecimals: BigInt(18),
blockConfirmations: 1,
startBlock: BigInt(425),
Expand Down Expand Up @@ -136,7 +136,7 @@ export const localConfig: RawConfig = {
name: 'Substrate',
type: Network.SUBSTRATE,
nativeTokenSymbol: 'pha',
nativeTokenName: 'pha',
nativeTokenFullName: 'pha',
nativeTokenDecimals: BigInt(18),
blockConfirmations: 1,
bridge: '0x',
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface BaseConfig<T> {
type: T;
bridge: string;
nativeTokenSymbol: string;
nativeTokenName: string;
nativeTokenFullName: string;
nativeTokenDecimals: BigInt;
startBlock: BigInt;
blockConfirmations: number;
Expand Down

0 comments on commit 17ff329

Please sign in to comment.