V3Factory

해당 컨트랙트는 V3 풀을 배포하고 풀 프로토콜 수수료에 대한 소유권 및 제어를 관리합니다.

Code

Github Link: (Will be updated after official launch)

Address

Events, Read-Only Functions, and State-Changing Functions

Events

PoolCreated

event PoolCreated(
    address indexed token0,
    address indexed token1,
    uint24 indexed fee,
    int24 tickSpacing,
    address pool,
    uint256 exid
)

풀이 생성될 때 발생

Parameters:

NameTypeDescription

token0

address

주소 정렬 순서에 따른 풀의 첫 번째 토큰

token1

address

주소 정렬 순서에 따른 풀의 두 번째 토큰

fee

uint24

풀의 모든 스왑에 대해 징수되는 수수료는 1/100 BIP 단위로 표시됩니다.

tickSpacing

int24

초기화된 틱 사이의 최소 틱 수

pool

address

생성된 풀의 주소

FeeAmountEnabled

event FeeAmountEnabled(
    uint24 fee,
    int24 tickSpacing
)

풀 생성에 대해 새로운 수수료 금액이 활성화되면 발생합니다.

Parameters:

NameTypeDescription

fee

uint24

1/100 BIP 단위로 표시되는 활성화된 수수료

tickSpacing

int24

주어진 수수료로 생성된 풀의 초기화된 틱 사이의 최소 틱 수

Last updated