We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49e3ea1 + 2d51487 commit c70d766Copy full SHA for c70d766
modules/statics/src/coins/botTokens.ts
@@ -1 +1,19 @@
1
-export const botTokens = [];
+import { UnderlyingAsset } from '../base';
2
+import { networkFeatureMapForTokens } from '../networkFeatureMapForTokens';
3
+import { Networks } from '../networks';
4
+import * as AccountCtors from '../account';
5
+
6
+export const botTokens = [
7
+ AccountCtors.terc20(
8
+ '6430cc83-077f-4927-b7cf-222db880bb58',
9
+ 'hteth:ams',
10
+ 'AMS Token v2',
11
+ 1,
12
+ '0x8c7a17ef8e00f2f31cff598206d7fc5a8cb41111',
13
+ 'hteth:ams' as unknown as UnderlyingAsset,
14
+ networkFeatureMapForTokens['eth'],
15
+ undefined,
16
17
+ Networks.test.hoodi
18
+ ),
19
+];
0 commit comments