mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
33cc8d587a
* replaced all the instances of collectibles with nfts * updated actions * updated e2e seeder * updated confirm Approve test * updated test dapp change * updated test dapp change * nit fix * nit fix * updated casing and snapshots * updated casinG * added migrations * updated ,igration * updated 078.test * updated tests for 078 migration * updated migration * updated 078 index.js
164 lines
4.3 KiB
JavaScript
164 lines
4.3 KiB
JavaScript
import { BigNumber } from '@ethersproject/bignumber';
|
|
import { GAS_LIMITS } from '../../../shared/constants/gas';
|
|
import {
|
|
AssetType,
|
|
TokenStandard,
|
|
TransactionEnvelopeType,
|
|
} from '../../../shared/constants/transaction';
|
|
import { BURN_ADDRESS } from '../../../shared/modules/hexstring-utils';
|
|
import { getInitialSendStateWithExistingTxState } from '../../../test/jest/mocks';
|
|
import {
|
|
generateERC20TransferData,
|
|
generateERC721TransferData,
|
|
} from '../../pages/send/send.utils';
|
|
import { generateTransactionParams } from './helpers';
|
|
|
|
describe('Send Slice Helpers', () => {
|
|
describe('generateTransactionParams', () => {
|
|
it('should generate a txParams for a token transfer', () => {
|
|
const tokenDetails = {
|
|
address: '0xToken',
|
|
symbol: 'SYMB',
|
|
decimals: 18,
|
|
};
|
|
const txParams = generateTransactionParams(
|
|
getInitialSendStateWithExistingTxState({
|
|
fromAccount: {
|
|
address: '0x00',
|
|
},
|
|
amount: {
|
|
value: '0x1',
|
|
},
|
|
asset: {
|
|
type: AssetType.token,
|
|
balance: '0xaf',
|
|
details: tokenDetails,
|
|
},
|
|
recipient: {
|
|
address: BURN_ADDRESS,
|
|
},
|
|
}),
|
|
);
|
|
expect(txParams).toStrictEqual({
|
|
from: '0x00',
|
|
data: generateERC20TransferData({
|
|
toAddress: BURN_ADDRESS,
|
|
amount: '0x1',
|
|
sendToken: tokenDetails,
|
|
}),
|
|
to: '0xToken',
|
|
type: '0x0',
|
|
value: '0x0',
|
|
gas: '0x0',
|
|
gasPrice: '0x0',
|
|
});
|
|
});
|
|
|
|
it('should generate a txParams for an NFT transfer', () => {
|
|
const txParams = generateTransactionParams(
|
|
getInitialSendStateWithExistingTxState({
|
|
fromAccount: {
|
|
address: '0x00',
|
|
},
|
|
amount: {
|
|
value: '0x1',
|
|
},
|
|
asset: {
|
|
type: AssetType.NFT,
|
|
balance: '0xaf',
|
|
details: {
|
|
address: '0xToken',
|
|
standard: TokenStandard.ERC721,
|
|
tokenId: BigNumber.from(15000).toString(),
|
|
},
|
|
},
|
|
recipient: {
|
|
address: BURN_ADDRESS,
|
|
},
|
|
}),
|
|
);
|
|
expect(txParams).toStrictEqual({
|
|
from: '0x00',
|
|
data: generateERC721TransferData({
|
|
toAddress: BURN_ADDRESS,
|
|
fromAddress: '0x00',
|
|
tokenId: BigNumber.from(15000).toString(),
|
|
}),
|
|
to: '0xToken',
|
|
type: '0x0',
|
|
value: '0x0',
|
|
gas: '0x0',
|
|
gasPrice: '0x0',
|
|
});
|
|
});
|
|
|
|
it('should generate a txParams for a native legacy transaction', () => {
|
|
const txParams = generateTransactionParams(
|
|
getInitialSendStateWithExistingTxState({
|
|
fromAccount: {
|
|
address: '0x00',
|
|
},
|
|
amount: {
|
|
value: '0x1',
|
|
},
|
|
asset: {
|
|
type: AssetType.native,
|
|
balance: '0xaf',
|
|
details: null,
|
|
},
|
|
recipient: {
|
|
address: BURN_ADDRESS,
|
|
},
|
|
}),
|
|
);
|
|
expect(txParams).toStrictEqual({
|
|
from: '0x00',
|
|
data: undefined,
|
|
to: BURN_ADDRESS,
|
|
type: '0x0',
|
|
value: '0x1',
|
|
gas: '0x0',
|
|
gasPrice: '0x0',
|
|
});
|
|
});
|
|
|
|
it('should generate a txParams for a native fee market transaction', () => {
|
|
const txParams = generateTransactionParams({
|
|
...getInitialSendStateWithExistingTxState({
|
|
fromAccount: {
|
|
address: '0x00',
|
|
},
|
|
amount: {
|
|
value: '0x1',
|
|
},
|
|
asset: {
|
|
type: AssetType.native,
|
|
balance: '0xaf',
|
|
details: null,
|
|
},
|
|
recipient: {
|
|
address: BURN_ADDRESS,
|
|
},
|
|
gas: {
|
|
maxFeePerGas: '0x2',
|
|
maxPriorityFeePerGas: '0x1',
|
|
gasLimit: GAS_LIMITS.SIMPLE,
|
|
},
|
|
transactionType: TransactionEnvelopeType.feeMarket,
|
|
}),
|
|
eip1559support: true,
|
|
});
|
|
expect(txParams).toStrictEqual({
|
|
from: '0x00',
|
|
data: undefined,
|
|
to: BURN_ADDRESS,
|
|
type: '0x2',
|
|
value: '0x1',
|
|
gas: GAS_LIMITS.SIMPLE,
|
|
maxFeePerGas: '0x2',
|
|
maxPriorityFeePerGas: '0x1',
|
|
});
|
|
});
|
|
});
|
|
});
|