UniversalRouter

해당 컨트랙트는 V2 및 V3 풀을 사용하는 KLAYswap 라우터입니다. 이 계약은 V2 및 V3 풀에서 거래를 집계하여 사용자가 매우 유연하고 개인화된 거래에 액세스할 수 있도록 합니다.

Code

Github Link: (Will be updated after official launch)

Address

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

Parameter Structs

SwapParams

struct SwapParams {
    address to;
    address[] path;
    address[] pool;
    uint deadline;
}

Parameters:

NameTypeDescription

to

address

교환 후 토큰을 받게 될 주소

path

address[]

스왑 경로(토큰 주소 목록)

pool

address[]

스왑의 풀 경로(풀 주소 목록) v2 pool 사용 시 : address(0) v3 pool 사용 시 : v3 풀 주소

deadline

uint256

deadline

Last updated