uniswap 程序集的 create2 函数是如何工作的?
How is uniswap assembly create2 function working?
我正在研究 uniswap 代码,试图理解代码,大部分代码都非常清楚,但我确实有几个问题。
在此函数中:
function createPair(address tokenA, address tokenB) external returns (address pair) {
require(tokenA != tokenB, 'UniswapV2: IDENTICAL_ADDRESSES');
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
require(getPair[token0][token1] == address(0), 'UniswapV2: PAIR_EXISTS'); // single check is sufficient
bytes memory bytecode = type(UniswapV2Pair).creationCode;
bytes32 salt = keccak256(abi.encodePacked(token0, token1));
assembly {
pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
}
IUniswapV2Pair(pair).initialize(token0, token1);
getPair[token0][token1] = pair;
getPair[token1][token0] = pair; // populate mapping in the reverse direction
allPairs.push(pair);
emit PairCreated(token0, token1, pair, allPairs.length);
有流水线。根据 solidity 文档,这部署了一个新合约,我不明白它是如何工作的,从哪里获取代码等等。
那么是否有可能以某种方式将其“转化”为可靠性?非常感谢!
它利用 create2
操作码,允许您将合约部署到可由其字节码和盐确定的地址。
Uniswap V2 是用 Solidity 0.5 编写的,无法直接从该语言生成 create2
操作码。所以你必须使用 low-lewel 汇编来实际使用这个操作码。
当前版本 0.8 允许传递 salt
参数生成 create2
(而不是常规的 create
)操作码。
pragma solidity ^0.8;
contract UniswapV2Pair {
}
contract MyContract {
function createPair() external {
bytes32 salt = 0x1234567890123456789012345678901234567890123456789012345678901234;
address pair = address(
new UniswapV2Pair{salt: salt}()
);
}
}
Uniswap 使用成对代币地址的组合作为盐,字节码始终相同。这实际上允许为每个独特的货币对组合部署一个合约。
示例:
- 代币
0x123
和 0x456
总是会产生 UniswapV2Pair
合约地址 0xabc
.
- 但是一旦你改变盐,它就会改变部署的合约地址。所以代币
0x123
和 0x789
总是会导致 UniswapV2Pair
合约地址 0xdef
.
我正在研究 uniswap 代码,试图理解代码,大部分代码都非常清楚,但我确实有几个问题。
在此函数中:
function createPair(address tokenA, address tokenB) external returns (address pair) {
require(tokenA != tokenB, 'UniswapV2: IDENTICAL_ADDRESSES');
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
require(getPair[token0][token1] == address(0), 'UniswapV2: PAIR_EXISTS'); // single check is sufficient
bytes memory bytecode = type(UniswapV2Pair).creationCode;
bytes32 salt = keccak256(abi.encodePacked(token0, token1));
assembly {
pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
}
IUniswapV2Pair(pair).initialize(token0, token1);
getPair[token0][token1] = pair;
getPair[token1][token0] = pair; // populate mapping in the reverse direction
allPairs.push(pair);
emit PairCreated(token0, token1, pair, allPairs.length);
有流水线。根据 solidity 文档,这部署了一个新合约,我不明白它是如何工作的,从哪里获取代码等等。
那么是否有可能以某种方式将其“转化”为可靠性?非常感谢!
它利用 create2
操作码,允许您将合约部署到可由其字节码和盐确定的地址。
Uniswap V2 是用 Solidity 0.5 编写的,无法直接从该语言生成 create2
操作码。所以你必须使用 low-lewel 汇编来实际使用这个操作码。
当前版本 0.8 允许传递 salt
参数生成 create2
(而不是常规的 create
)操作码。
pragma solidity ^0.8;
contract UniswapV2Pair {
}
contract MyContract {
function createPair() external {
bytes32 salt = 0x1234567890123456789012345678901234567890123456789012345678901234;
address pair = address(
new UniswapV2Pair{salt: salt}()
);
}
}
Uniswap 使用成对代币地址的组合作为盐,字节码始终相同。这实际上允许为每个独特的货币对组合部署一个合约。
示例:
- 代币
0x123
和0x456
总是会产生UniswapV2Pair
合约地址0xabc
. - 但是一旦你改变盐,它就会改变部署的合约地址。所以代币
0x123
和0x789
总是会导致UniswapV2Pair
合约地址0xdef
.