From 90c24aa770ddedad93419d3a4d4bbefe8c3dd348 Mon Sep 17 00:00:00 2001 From: hungtorus <146692085+hungtorus@users.noreply.github.com> Date: Thu, 23 Apr 2026 17:23:59 +0700 Subject: [PATCH 1/2] feat(seedless-onboarding): Add Telegram to AuthConnection enum --- packages/seedless-onboarding-controller/src/constants.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/seedless-onboarding-controller/src/constants.ts b/packages/seedless-onboarding-controller/src/constants.ts index e4e877cd3ee..e89287ef7cd 100644 --- a/packages/seedless-onboarding-controller/src/constants.ts +++ b/packages/seedless-onboarding-controller/src/constants.ts @@ -13,6 +13,7 @@ export enum Web3AuthNetwork { export enum AuthConnection { Google = 'google', Apple = 'apple', + Telegram = 'telegram', } export enum SecretType { From 7a471e191ebb818f73cea3733071b3884263fb31 Mon Sep 17 00:00:00 2001 From: hungtorus <146692085+hungtorus@users.noreply.github.com> Date: Thu, 23 Apr 2026 18:31:35 +0700 Subject: [PATCH 2/2] chore: update changelog --- packages/seedless-onboarding-controller/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/seedless-onboarding-controller/CHANGELOG.md b/packages/seedless-onboarding-controller/CHANGELOG.md index 6454e07a420..fc0613e60a4 100644 --- a/packages/seedless-onboarding-controller/CHANGELOG.md +++ b/packages/seedless-onboarding-controller/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add `SecretMetadata.matchesType` static method for checking if metadata matches a given type ([#7284](https://github.com/MetaMask/core/pull/7284)) - Re-export `EncAccountDataType` from `@metamask/toprf-secure-backup` ([#7284](https://github.com/MetaMask/core/pull/7284)) - Add third generic type parameter `EncryptionResult` to `SeedlessOnboardingController` and `SeedlessOnboardingControllerOptions`, constrained by `EncryptionResultConstraint` and defaulting to `DefaultEncryptionResult`, so the vault `encryptor` matches the full `Encryptor` typing from `@metamask/keyring-controller` ([#8411](https://github.com/MetaMask/core/pull/8411)) +- Add Telegram to AuthConnection enum ([#8562](https://github.com/MetaMask/core/pull/8562)) ### Changed