mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 15:14:29 +01:00
4f66dc948f
The controllers package has been updated to v33. The only breaking change in this release was to rename the term "collectible" to "NFT" wherever it appeared in the API. Changes in this PR have been kept minimal; additional renaming can be done in separate PRs. This PR only updates the controller names, controller state, controller methods, and any direct references to these things. NFTs are still called "collectibles" in most places.
164 lines
4.3 KiB
JavaScript
164 lines
4.3 KiB
JavaScript
import { ethers } from 'ethers';
|
|
import { GAS_LIMITS } from '../../../shared/constants/gas';
|
|
import {
|
|
ASSET_TYPES,
|
|
TOKEN_STANDARDS,
|
|
TRANSACTION_ENVELOPE_TYPES,
|
|
} 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: ASSET_TYPES.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 a collectible transfer', () => {
|
|
const txParams = generateTransactionParams(
|
|
getInitialSendStateWithExistingTxState({
|
|
fromAccount: {
|
|
address: '0x00',
|
|
},
|
|
amount: {
|
|
value: '0x1',
|
|
},
|
|
asset: {
|
|
type: ASSET_TYPES.NFT,
|
|
balance: '0xaf',
|
|
details: {
|
|
address: '0xToken',
|
|
standard: TOKEN_STANDARDS.ERC721,
|
|
tokenId: ethers.BigNumber.from(15000).toString(),
|
|
},
|
|
},
|
|
recipient: {
|
|
address: BURN_ADDRESS,
|
|
},
|
|
}),
|
|
);
|
|
expect(txParams).toStrictEqual({
|
|
from: '0x00',
|
|
data: generateERC721TransferData({
|
|
toAddress: BURN_ADDRESS,
|
|
fromAddress: '0x00',
|
|
tokenId: ethers.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: ASSET_TYPES.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: ASSET_TYPES.NATIVE,
|
|
balance: '0xaf',
|
|
details: null,
|
|
},
|
|
recipient: {
|
|
address: BURN_ADDRESS,
|
|
},
|
|
gas: {
|
|
maxFeePerGas: '0x2',
|
|
maxPriorityFeePerGas: '0x1',
|
|
gasLimit: GAS_LIMITS.SIMPLE,
|
|
},
|
|
transactionType: TRANSACTION_ENVELOPE_TYPES.FEE_MARKET,
|
|
}),
|
|
eip1559support: true,
|
|
});
|
|
expect(txParams).toStrictEqual({
|
|
from: '0x00',
|
|
data: undefined,
|
|
to: BURN_ADDRESS,
|
|
type: '0x2',
|
|
value: '0x1',
|
|
gas: GAS_LIMITS.SIMPLE,
|
|
maxFeePerGas: '0x2',
|
|
maxPriorityFeePerGas: '0x1',
|
|
});
|
|
});
|
|
});
|
|
});
|