From 3f24662a11ed5ccb20b26ab7df2f26318c416e30 Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Wed, 23 Aug 2023 14:29:54 +0200 Subject: [PATCH] Update derivation paths used by snaps (#20558) * Update derivation paths used by snaps * Update testnets --- shared/constants/snaps.ts | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/shared/constants/snaps.ts b/shared/constants/snaps.ts index f3f43e557..7af5217af 100644 --- a/shared/constants/snaps.ts +++ b/shared/constants/snaps.ts @@ -58,7 +58,7 @@ export const SNAPS_DERIVATION_PATHS: SnapsDerivationPath[] = [ { path: ['m', `44'`, `1'`], curve: 'secp256k1', - name: 'Test BIP-32 Path (secp256k1)', + name: 'Testnet', }, { path: ['m', `44'`, `0'`], @@ -148,7 +148,27 @@ export const SNAPS_DERIVATION_PATHS: SnapsDerivationPath[] = [ { path: ['m', `44'`, `1'`, `0'`], curve: 'ed25519', - name: 'NEAR Protocol Testnet', + name: 'Testnet', + }, + { + path: ['m', `44'`, `472'`], + curve: 'ed25519', + name: 'Arweave', + }, + { + path: ['m', `44'`, `12586'`], + curve: 'secp256k1', + name: 'Mina', + }, + { + path: ['m', `44'`, `1729'`, `0'`, `0'`], + curve: 'ed25519', + name: 'Tezos', + }, + { + path: ['m', `1789'`, `0'`], + curve: 'ed25519', + name: 'Vega', }, ]; ///: END:ONLY_INCLUDE_IN