Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion modules/statics/src/coins/botTokens.ts
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
export const botTokens = [];
import { UnderlyingAsset } from '../base';
import { networkFeatureMapForTokens } from '../networkFeatureMapForTokens';
import { Networks } from '../networks';
import * as AccountCtors from '../account';

export const botTokens = [
AccountCtors.terc20(
'6430cc83-077f-4927-b7cf-222db880bb58',
'hteth:ams',
'AMS Token v2',
1,
'0x8c7a17ef8e00f2f31cff598206d7fc5a8cb41111',
'hteth:ams' as unknown as UnderlyingAsset,
networkFeatureMapForTokens['eth'],
undefined,
undefined,
Networks.test.hoodi
),
AccountCtors.terc20(
'4e471a53-63f3-4e6a-8ccd-249436ec03b8',
'hteth:amslocal',
'AMS local test',
18,
'0x8c7a17ef8e00f2f31cff598206d7fc5a8cb41122',
'hteth:amslocal' as unknown as UnderlyingAsset,
networkFeatureMapForTokens['eth'],
undefined,
undefined,
Networks.test.hoodi
),
];