four-flap-meme-sdk 1.5.11 → 1.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -89,6 +89,7 @@ export declare const ADDRESSES: {
|
|
|
89
89
|
readonly PotatoSwapV3Factory: "0xa1415fAe79c4B196d087F02b8aD5a622B8A827E5";
|
|
90
90
|
readonly USDT: "0x1e4a5963abfd975d8c9021ce480b42188849d41d";
|
|
91
91
|
readonly USDC: "0x74b7f16337b8972027f6196a17a631ac6de26d22";
|
|
92
|
+
readonly USDT0: "0x779ded0c9e1022225f8e0630b35a9b54be713736";
|
|
92
93
|
};
|
|
93
94
|
readonly MORPH: {
|
|
94
95
|
readonly FlapPortal: "0x6aB823408672c0Db1DE1a18F1750d62E5F995A58";
|
package/dist/utils/constants.js
CHANGED
|
@@ -94,8 +94,10 @@ export const ADDRESSES = {
|
|
|
94
94
|
PotatoSwapV3Router: '0xBB069e9465BcabC4F488d21e793BDEf0F2d41D41', // V3 Router
|
|
95
95
|
PotatoSwapV3Factory: '0xa1415fAe79c4B196d087F02b8aD5a622B8A827E5', // V3 Factory
|
|
96
96
|
// 稳定币
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
// 注意:Flap xLayer 发币/内盘计价支持的是 USD₮0(USDT0),不是原生桥接 USDT/USDC
|
|
98
|
+
USDT: '0x1e4a5963abfd975d8c9021ce480b42188849d41d', // 6位精度(不一定被 Flap 内盘支持)
|
|
99
|
+
USDC: '0x74b7f16337b8972027f6196a17a631ac6de26d22', // 6位精度(不一定被 Flap 内盘支持)
|
|
100
|
+
USDT0: '0x779ded0c9e1022225f8e0630b35a9b54be713736', // 6位精度(USD₮0)
|
|
99
101
|
},
|
|
100
102
|
MORPH: {
|
|
101
103
|
// Flap Portal
|
|
@@ -38,6 +38,8 @@ export declare const POTATOSWAP_V3_FACTORY = "0xa1415fAe79c4B196d087F02b8aD5a622
|
|
|
38
38
|
export declare const USDT = "0x1e4a5963abfd975d8c9021ce480b42188849d41d";
|
|
39
39
|
/** USDC (6位精度) */
|
|
40
40
|
export declare const USDC = "0x74b7f16337b8972027f6196a17a631ac6de26d22";
|
|
41
|
+
/** USD₮0 / USDT0 (6位精度) - Flap xLayer 支持的稳定币计价 */
|
|
42
|
+
export declare const USDT0 = "0x779ded0c9e1022225f8e0630b35a9b54be713736";
|
|
41
43
|
/** 零地址(表示原生代币 OKB) */
|
|
42
44
|
export declare const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|
|
43
45
|
/** 默认 Gas Price 兜底值(0.1 gwei) */
|
package/dist/xlayer/constants.js
CHANGED
|
@@ -53,6 +53,8 @@ export const POTATOSWAP_V3_FACTORY = '0xa1415fAe79c4B196d087F02b8aD5a622B8A827E5
|
|
|
53
53
|
export const USDT = '0x1e4a5963abfd975d8c9021ce480b42188849d41d';
|
|
54
54
|
/** USDC (6位精度) */
|
|
55
55
|
export const USDC = '0x74b7f16337b8972027f6196a17a631ac6de26d22';
|
|
56
|
+
/** USD₮0 / USDT0 (6位精度) - Flap xLayer 支持的稳定币计价 */
|
|
57
|
+
export const USDT0 = '0x779ded0c9e1022225f8e0630b35a9b54be713736';
|
|
56
58
|
// ============================================================================
|
|
57
59
|
// 零地址
|
|
58
60
|
// ============================================================================
|