Skip to content

Commit 2613505

Browse files
committed
feat(statics): add TestingLinearTokenOnboarding (eth:tlto) token
Add TLTO (TestingLinearTokenOnboarding) ERC-20 token on Ethereum to the @bitgo/statics package. This is a test-only token used to validate the Linear-ticket execution route of the token-onboarding plugin. Three additions are made: - UnderlyingAsset enum in base.ts: 'eth:tlto' - On-chain ERC-20 entry in erc20Coins.ts (terc20, test network, UUID 97753436-903b-4131-82b2-6deea76a5e17, contract 0x1234567890abcdef1234567890abcdef12345678) - OFC entry in ofcErc20Coins.ts (ofcerc20 in tOfcErc20Coins, UUID d38204a7-b670-414e-9f58-e2df4798070c, 6 decimals) No mainnet or staging entries — test environment only. Ticket: SCAAS-10489 Session-Id: eb0ebe05-2a10-4af2-9f14-fe5557407105 Task-Id: 8c34e3b0-23ce-4aad-8ded-54926accd613
1 parent 42beac9 commit 2613505

3 files changed

Lines changed: 16 additions & 0 deletions

File tree

modules/statics/src/base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2625,6 +2625,7 @@ export enum UnderlyingAsset {
26252625
'eth:nowon' = 'eth:nowon',
26262626
'eth:iwmon' = 'eth:iwmon',
26272627
'eth:melion' = 'eth:melion',
2628+
'eth:tlto' = 'eth:tlto',
26282629
'eth:tlton' = 'eth:tlton',
26292630
'eth:grndon' = 'eth:grndon',
26302631
'eth:figon' = 'eth:figon',

modules/statics/src/coins/erc20Coins.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15019,4 +15019,12 @@ export const erc20Coins = [
1501915019
undefined,
1502015020
Networks.test.hoodi
1502115021
),
15022+
terc20(
15023+
'97753436-903b-4131-82b2-6deea76a5e17',
15024+
'eth:tlto',
15025+
'TestingLinearTokenOnboarding',
15026+
6,
15027+
'0x1234567890abcdef1234567890abcdef12345678',
15028+
UnderlyingAsset['eth:tlto'],
15029+
),
1502215030
];

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7219,6 +7219,13 @@ export const tOfcErc20Coins = [
72197219
undefined,
72207220
'tbaseeth'
72217221
),
7222+
ofcerc20(
7223+
'd38204a7-b670-414e-9f58-e2df4798070c',
7224+
'ofceth:tlto',
7225+
'TestingLinearTokenOnboarding',
7226+
6,
7227+
UnderlyingAsset['eth:tlto'],
7228+
),
72227229
];
72237230

72247231
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

0 commit comments

Comments
 (0)