mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
a28256ace4
* Change api used for opensea validation * fix build
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
import getFetchWithTimeout from '../../../shared/modules/fetch-with-timeout';
|
|
import { MESSAGE_TYPE } from '../../../shared/constants/app';
|
|
|
|
const fetchWithTimeout = getFetchWithTimeout();
|
|
|
|
export async function securityProviderCheck(
|
|
requestData,
|
|
methodName,
|
|
chainId,
|
|
currentLocale,
|
|
) {
|
|
let dataToValidate;
|
|
|
|
if (methodName === MESSAGE_TYPE.ETH_SIGN_TYPED_DATA) {
|
|
dataToValidate = {
|
|
host_name: requestData.msgParams.origin,
|
|
rpc_method_name: methodName,
|
|
chain_id: chainId,
|
|
data: requestData.msgParams.data,
|
|
currentLocale,
|
|
};
|
|
} else if (
|
|
methodName === MESSAGE_TYPE.ETH_SIGN ||
|
|
methodName === MESSAGE_TYPE.PERSONAL_SIGN
|
|
) {
|
|
dataToValidate = {
|
|
host_name: requestData.msgParams.origin,
|
|
rpc_method_name: methodName,
|
|
chain_id: chainId,
|
|
data: {
|
|
signer_address: requestData.msgParams.from,
|
|
msg_to_sign: requestData.msgParams.data,
|
|
},
|
|
currentLocale,
|
|
};
|
|
} else {
|
|
dataToValidate = {
|
|
host_name: requestData.origin,
|
|
rpc_method_name: methodName,
|
|
chain_id: chainId,
|
|
data: {
|
|
from_address: requestData?.txParams?.from,
|
|
to_address: requestData?.txParams?.to,
|
|
gas: requestData?.txParams?.gas,
|
|
gasPrice: requestData?.txParams?.gasPrice,
|
|
value: requestData?.txParams?.value,
|
|
data: requestData?.txParams?.data,
|
|
},
|
|
currentLocale,
|
|
};
|
|
}
|
|
|
|
const response = await fetchWithTimeout(
|
|
'https://proxy.metafi.codefi.network/opensea/security/v1/validate',
|
|
{
|
|
method: 'POST',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify(dataToValidate),
|
|
},
|
|
);
|
|
return await response.json();
|
|
}
|