Skip to content

Commit eaa636a

Browse files
committed
'bump'
1 parent fa35dfa commit eaa636a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dequanto",
3-
"version": "0.1.42",
3+
"version": "0.1.43",
44
"author": {
55
"name": "Alex Kit",
66
"email": "alex.kit@atmajs.com"

src/clients/Web3ClientFactory.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import di from 'a-di';
2-
import alot from 'alot';
32
import { TPlatform } from '@dequanto/models/TPlatform';
43
import { IWeb3EndpointOptions } from './interfaces/IWeb3EndpointOptions';
54
import { HardhatProvider } from '@dequanto/hardhat/HardhatProvider';
65
import { Config } from '@dequanto/config/Config';
76
import { EvmWeb3Client } from './EvmWeb3Client';
87
import { $require } from '@dequanto/utils/$require';
98
import { $config } from '@dequanto/utils/$config';
10-
import { IConfigData } from '@dequanto/config/interface/IConfigData';
119

1210
export namespace Web3ClientFactory {
1311

@@ -20,7 +18,6 @@ export namespace Web3ClientFactory {
2018
return client;
2119
}
2220

23-
2421
let options = $config.getWeb3Options(platform);
2522
$require.notNull(options, `Unsupported platform ${platform} for web3 client`)
2623
return new EvmWeb3Client({

src/models/TChain.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ import { TExplorer } from './TExplorer'
55

66
export interface TChain {
77
name?: string
8+
icon?: string
9+
wwww?: string
810

911
platform: TEth.Platform
1012
aliases?: string[]
1113

1214
chainId?: number
1315
chainToken?: string
1416

15-
1617
endpoints: IRpcConfig[]
1718

1819
explorers: TExplorer[]
@@ -49,4 +50,7 @@ export interface TChain {
4950
spotPriceAggregator?: {
5051
aggregator: TEth.Address
5152
};
53+
ens?: {
54+
registry: TEth.Address
55+
}
5256
}

0 commit comments

Comments
 (0)