Skip to content

Commit

Permalink
fix: incorrect account type (#237)
Browse files Browse the repository at this point in the history
Should be "ed25519", as the default keyring type was used.
  • Loading branch information
tien committed Jul 1, 2024
1 parent a62dba2 commit ae02ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter/src/extension/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function transformAccounts(accounts: string[]): InjectedAccount[] {
return accounts.map((address, i) => ({
address,
name: `Polkadot Snap #${i}`,
type: 'ethereum'
type: 'ed25519'
}));
}

Expand Down

0 comments on commit ae02ce9

Please sign in to comment.