Skip to content
Snippets Groups Projects
Verified Commit 4d39b0f4 authored by Mateusz Tyszczak's avatar Mateusz Tyszczak :scroll:
Browse files

Allow signing transactions for a custom chain id

parent 0fb4ea95
No related branches found
No related tags found
No related merge requests found
Pipeline #117643 canceled
{ {
"name": "@hiveio/metamask-snap", "name": "@hiveio/metamask-snap",
"version": "1.2.1", "version": "1.3.0",
"description": "Hive wallet extension allowing you to sign transactions using keys derived from your Metamask wallet", "description": "Hive wallet extension allowing you to sign transactions using keys derived from your Metamask wallet",
"main": "./dist/bundle.js", "main": "./dist/bundle.js",
"files": [ "files": [
......
{ {
"version": "1.2.1", "version": "1.3.0",
"description": "Hive wallet extension allowing you to sign transactions using keys derived from your Metamask wallet", "description": "Hive wallet extension allowing you to sign transactions using keys derived from your Metamask wallet",
"proposedName": "Hive Wallet", "proposedName": "Hive Wallet",
"repository": { "repository": {
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
"url": "git+https://gitlab.syncad.com/hive/metamask-snap.git" "url": "git+https://gitlab.syncad.com/hive/metamask-snap.git"
}, },
"source": { "source": {
"shasum": "VxtYK0n+vdiIHkFdTswCQng05NPFRb1wZ78mBBP5dbk=", "shasum": "Qn3MhblQGIyqmEaAKxChWSC9ALvWQW/iOxk8Xxp74Js=",
"location": { "location": {
"npm": { "npm": {
"filePath": "dist/bundle.js", "filePath": "dist/bundle.js",
......
import { createWaxFoundation, type IWaxBaseInterface } from "@hiveio/wax"; import { createWaxFoundation, DEFAULT_WAX_OPTIONS, type IWaxBaseInterface } from "@hiveio/wax";
let _wax: undefined | IWaxBaseInterface; const waxInstances: Record<string, IWaxBaseInterface> = {};
export const getWax = async (): Promise<IWaxBaseInterface> => { export const getWax = async (chainId: string = DEFAULT_WAX_OPTIONS.chainId): Promise<IWaxBaseInterface> => {
if (!_wax) if (!waxInstances[chainId])
_wax = await createWaxFoundation(); waxInstances[chainId] = await createWaxFoundation(chainId !== undefined ? { chainId } : undefined);
return _wax; return waxInstances[chainId];
}; };
...@@ -27,7 +27,7 @@ export const onRpcRequest = async ({ ...@@ -27,7 +27,7 @@ export const onRpcRequest = async ({
case 'hive_signTransaction': case 'hive_signTransaction':
return { return {
signatures: await signTransaction(origin, request.params.transaction, request.params.keys) signatures: await signTransaction(origin, request.params.transaction, request.params.keys, request.params.chainId)
}; };
case 'hive_decrypt': case 'hive_decrypt':
......
...@@ -20,6 +20,7 @@ export type SignTransactionRequest = { ...@@ -20,6 +20,7 @@ export type SignTransactionRequest = {
method: 'hive_signTransaction'; method: 'hive_signTransaction';
params: { params: {
transaction: string; transaction: string;
chainId?: string;
keys: KeyIndex[]; keys: KeyIndex[];
}; };
} }
......
import { Bold, Copyable, Text, Box } from "@metamask/snaps-sdk/jsx"; import { Bold, Copyable, Text, Box, Banner, Italic } from "@metamask/snaps-sdk/jsx";
import { KeyIndex } from "../../rpc"; import { KeyIndex } from "../../rpc";
import { KeyTypeNotice } from "./components/KeyTypeNotice"; import { KeyTypeNotice } from "./components/KeyTypeNotice";
import { DEFAULT_WAX_OPTIONS } from "@hiveio/wax";
export const ConfirmTransactionSign = (origin: string, transaction: string, keys: KeyIndex[]) => snap.request({ export const ConfirmTransactionSign = (origin: string, transaction: string, keys: KeyIndex[], chainId?: string) => snap.request({
method: 'snap_dialog', method: 'snap_dialog',
params: { params: {
type: 'confirmation', type: 'confirmation',
content: ( content: (
<Box> <Box>
<Text> <Text>
<Bold>{ origin }</Bold> asked to sign a transaction: <Bold>{origin}</Bold> asked to sign a transaction:
</Text> </Text>
<Copyable value={ transaction } /> <Copyable value={transaction} />
{chainId && chainId !== DEFAULT_WAX_OPTIONS.chainId && <Banner title="Custom chain signing" severity="warning">
<Text>
<Bold>Warning:</Bold> You are signing this transaction for a custom chain. Make sure you trust this chain: <Italic>{chainId}</Italic>
</Text>
</Banner>}
<Text> <Text>
Confirm if you want to sign it using your: Confirm if you want to sign it using your:
</Text> </Text>
......
...@@ -8,7 +8,7 @@ export const encodeBuffer = async (origin: string, buffer: string, firstKey: Key ...@@ -8,7 +8,7 @@ export const encodeBuffer = async (origin: string, buffer: string, firstKey: Key
const confirmDecode = await ConfirmBufferSign(origin, buffer, firstKey, secondKey); const confirmDecode = await ConfirmBufferSign(origin, buffer, firstKey, secondKey);
if(!confirmDecode) if(!confirmDecode)
throw new Error('User denied the buffer decode'); throw new Error('User denied the buffer encode');
// The order is important: First create wax, then create wallet // The order is important: First create wax, then create wallet
const wax = await getWax(); const wax = await getWax();
......
...@@ -5,17 +5,17 @@ import { getTempWallet } from "../hive/beekeeper"; ...@@ -5,17 +5,17 @@ import { getTempWallet } from "../hive/beekeeper";
import { ConfirmTransactionSign } from "./dialogs/ConfirmTransactionSign"; import { ConfirmTransactionSign } from "./dialogs/ConfirmTransactionSign";
import type { THexString } from "@hiveio/wax"; import type { THexString } from "@hiveio/wax";
export const signTransaction = async (origin: string, transaction: string, keys: KeyIndex[]): Promise<THexString[]> => { export const signTransaction = async (origin: string, transaction: string, keys: KeyIndex[], chainId?: string): Promise<THexString[]> => {
if (keys.length < 1) if (keys.length < 1)
throw new Error('No keys provided'); throw new Error('No keys provided');
const confirmSign = await ConfirmTransactionSign(origin, transaction, keys); const confirmSign = await ConfirmTransactionSign(origin, transaction, keys, chainId);
if(!confirmSign) if(!confirmSign)
throw new Error('User denied the transaction'); throw new Error('User denied the transaction signing');
// The order is important: First create wax, then transaction and if all success then create wallet // The order is important: First create wax, then transaction and if all success then create wallet
const wax = await getWax(); const wax = await getWax(chainId);
const tx = wax.createTransactionFromJson(transaction); const tx = wax.createTransactionFromJson(transaction);
const wallet = await getTempWallet(); const wallet = await getTempWallet();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment