dactyclaw 1.3.1 ā 1.3.3
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.
- package/bin/dacty-launch.js +20 -17
- package/err.json +1177 -0
- package/error.log +0 -0
- package/package.json +1 -1
package/bin/dacty-launch.js
CHANGED
|
@@ -7,6 +7,7 @@ const { createPublicClient, createWalletClient, http, formatEther } = require('v
|
|
|
7
7
|
const { privateKeyToAccount } = require('viem/accounts');
|
|
8
8
|
const { base } = require('viem/chains');
|
|
9
9
|
const { Clanker } = require('clanker-sdk/v4');
|
|
10
|
+
const { POOL_POSITIONS } = require('clanker-sdk');
|
|
10
11
|
|
|
11
12
|
program
|
|
12
13
|
.version('1.0.0')
|
|
@@ -80,6 +81,7 @@ program
|
|
|
80
81
|
const tokenConfig = {
|
|
81
82
|
name: config.name,
|
|
82
83
|
symbol: config.ticker,
|
|
84
|
+
tokenAdmin: account.address,
|
|
83
85
|
image: "ipfs://bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi", // Placeholder Clanker/Agent image
|
|
84
86
|
metadata: {
|
|
85
87
|
description: `Autonomous agent token for ${config.name} created via Dactyclaw CLI. DNA: ${config.dna}`,
|
|
@@ -95,37 +97,38 @@ program
|
|
|
95
97
|
pool: {
|
|
96
98
|
quoteToken: "0x4200000000000000000000000000000000000006", // WETH
|
|
97
99
|
initialMarketCap: "0.2", // 0.2 ETH (Base) minimal initial
|
|
100
|
+
positions: POOL_POSITIONS.Standard
|
|
98
101
|
},
|
|
99
|
-
vault: { percentage: 0,
|
|
100
|
-
devBuy: { ethAmount: 0 },
|
|
101
|
-
rewardsConfig: {
|
|
102
|
-
creatorReward: 75,
|
|
103
|
-
creatorAdmin: account.address,
|
|
104
|
-
creatorRewardRecipient: account.address,
|
|
105
|
-
interfaceAdmin: "0x1eaf444ebDf6495C57aD52A04C61521bBf564ace", // Assuming default interface addr from docs
|
|
106
|
-
interfaceRewardRecipient: devAddress,
|
|
107
|
-
}
|
|
102
|
+
vault: { percentage: 0, lockupDuration: 604800 }
|
|
108
103
|
};
|
|
109
104
|
|
|
110
|
-
//
|
|
111
|
-
console.log(`[2/3] Calling SDK
|
|
105
|
+
// Execute the deployment using clanker-sdk v4
|
|
106
|
+
console.log(`[2/3] Calling SDK deploy... (This will spend Base ETH gas)`);
|
|
107
|
+
const deployResult = await clanker.deploy(tokenConfig);
|
|
112
108
|
|
|
113
|
-
|
|
114
|
-
|
|
109
|
+
if (deployResult.error) {
|
|
110
|
+
console.error(`\nā Deployment Reverted: ${deployResult.error.shortMessage || deployResult.error.message || 'Unknown Contract Error'}`);
|
|
111
|
+
if (deployResult.error.cause) console.error(` Cause: ${deployResult.error.cause.message || deployResult.error.cause}`);
|
|
112
|
+
process.exit(1);
|
|
113
|
+
}
|
|
115
114
|
|
|
116
115
|
console.log(`[3/3] Broadcasting transaction to Base network...`);
|
|
116
|
+
console.log(`Transaction Hash: ${deployResult.txHash}`);
|
|
117
|
+
|
|
118
|
+
console.log(`Waiting for confirmation...`);
|
|
119
|
+
const result = await deployResult.waitForTransaction();
|
|
117
120
|
|
|
118
121
|
console.log(`\nš SUCCESS! Token deployed autonomously on-chain.`);
|
|
119
|
-
if (
|
|
120
|
-
console.log(`Token Contract: ${
|
|
121
|
-
console.log(`Explorer: https://basescan.org/token/${
|
|
122
|
+
if (result && result.address) {
|
|
123
|
+
console.log(`Token Contract: ${result.address}`);
|
|
124
|
+
console.log(`Explorer: https://basescan.org/token/${result.address}`);
|
|
122
125
|
}
|
|
123
126
|
console.log(`\nTrading will be live on Clanker shortly.`);
|
|
124
127
|
|
|
125
128
|
} catch (error) {
|
|
126
129
|
console.error(`\nā Network Error: Failed to interact with Base network or Clanker SDK.`);
|
|
127
130
|
console.error(error.message);
|
|
128
|
-
|
|
131
|
+
console.error(error); // debug raw error
|
|
129
132
|
return;
|
|
130
133
|
}
|
|
131
134
|
});
|
package/err.json
ADDED
|
@@ -0,0 +1,1177 @@
|
|
|
1
|
+
{
|
|
2
|
+
"error": {
|
|
3
|
+
"cause": {
|
|
4
|
+
"cause": {
|
|
5
|
+
"details": "insufficient funds for transfer",
|
|
6
|
+
"metaMessages": [
|
|
7
|
+
"This error could arise when the account does not have enough funds to:",
|
|
8
|
+
" - pay for the total gas fee,",
|
|
9
|
+
" - pay for the value to send.",
|
|
10
|
+
" ",
|
|
11
|
+
"The cost of the transaction is calculated as `gas * gas fee + value`, where:",
|
|
12
|
+
" - `gas` is the amount of gas needed for transaction to execute,",
|
|
13
|
+
" - `gas fee` is the gas fee,",
|
|
14
|
+
" - `value` is the amount of ether to send to the recipient."
|
|
15
|
+
],
|
|
16
|
+
"shortMessage": "The total cost (gas * gas fee + value) of executing this transaction exceeds the balance of the account.",
|
|
17
|
+
"version": "2.46.3",
|
|
18
|
+
"name": "InsufficientFundsError"
|
|
19
|
+
},
|
|
20
|
+
"details": "insufficient funds for transfer",
|
|
21
|
+
"metaMessages": [
|
|
22
|
+
"This error could arise when the account does not have enough funds to:",
|
|
23
|
+
" - pay for the total gas fee,",
|
|
24
|
+
" - pay for the value to send.",
|
|
25
|
+
" ",
|
|
26
|
+
"The cost of the transaction is calculated as `gas * gas fee + value`, where:",
|
|
27
|
+
" - `gas` is the amount of gas needed for transaction to execute,",
|
|
28
|
+
" - `gas fee` is the gas fee,",
|
|
29
|
+
" - `value` is the amount of ether to send to the recipient.",
|
|
30
|
+
" ",
|
|
31
|
+
"Estimate Gas Arguments:",
|
|
32
|
+
" from: 0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138\n to: 0xE85A59c628F7d27878ACeB4bf3b35733630083a9\n value: 0.0001 ETH\n data: 0xdf40224a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000860000000000000000000000000000000000000000000000000000000000000092000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000210500000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354535400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f62616679626569676479727a74357366703775646d37687537367568377932366e6633656675796c71616266336f636c67747179353566627a6469000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a7b226465736372697074696f6e223a2274657374222c22736f6369616c4d6564696155726c73223a5b5d2c22617564697455726c73223a5b5d7d00000000000000000000000000000000000000000000000000000000000000000000000000457b22696e74657266616365223a2254657374222c22706c6174666f726d223a2254657374222c226d6573736167654964223a2254657374222c226964223a2254657374227d000000000000000000000000000000000000000000000000000000000000000000000000000000b429d62f8f3bffb98cdb9569533ea23bf0ba28cc0000000000000000000000004200000000000000000000000000000000000006fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc7c0000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000271000000000000000000000000063d2dfea64b3433f4071a98665bcd7ca14d9349600000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000100000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000000100000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc7c000000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe2b400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ebb25bb797d82cb78e1bc70406b13233c08544130000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000a2c99000000000000000000000000000000000000000000000000000000000000a2c9000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000008e845ead15737bf71904a30bddd3aee76d6adf6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000006000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f41380000000000000000000000000000000000000000000000000000000000093a8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001331f0788f9c08c8f38d52c7a1152250a9de00be00000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138"
|
|
33
|
+
],
|
|
34
|
+
"shortMessage": "The total cost (gas * gas fee + value) of executing this transaction exceeds the balance of the account.",
|
|
35
|
+
"version": "2.46.3",
|
|
36
|
+
"name": "EstimateGasExecutionError"
|
|
37
|
+
},
|
|
38
|
+
"details": "The total cost (gas * gas fee + value) of executing this transaction exceeds the balance of the account.\n\nThis error could arise when the account does not have enough funds to:\n - pay for the total gas fee,\n - pay for the value to send.\n \nThe cost of the transaction is calculated as `gas * gas fee + value`, where:\n - `gas` is the amount of gas needed for transaction to execute,\n - `gas fee` is the gas fee,\n - `value` is the amount of ether to send to the recipient.\n \nEstimate Gas Arguments:\n from: 0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138\n to: 0xE85A59c628F7d27878ACeB4bf3b35733630083a9\n value: 0.0001 ETH\n data: 0xdf40224a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000860000000000000000000000000000000000000000000000000000000000000092000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000210500000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354535400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f62616679626569676479727a74357366703775646d37687537367568377932366e6633656675796c71616266336f636c67747179353566627a6469000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a7b226465736372697074696f6e223a2274657374222c22736f6369616c4d6564696155726c73223a5b5d2c22617564697455726c73223a5b5d7d00000000000000000000000000000000000000000000000000000000000000000000000000457b22696e74657266616365223a2254657374222c22706c6174666f726d223a2254657374222c226d6573736167654964223a2254657374222c226964223a2254657374227d000000000000000000000000000000000000000000000000000000000000000000000000000000b429d62f8f3bffb98cdb9569533ea23bf0ba28cc0000000000000000000000004200000000000000000000000000000000000006fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc7c0000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000271000000000000000000000000063d2dfea64b3433f4071a98665bcd7ca14d9349600000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000100000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000000100000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc7c000000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe2b400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ebb25bb797d82cb78e1bc70406b13233c08544130000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000a2c99000000000000000000000000000000000000000000000000000000000000a2c9000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000008e845ead15737bf71904a30bddd3aee76d6adf6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000006000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f41380000000000000000000000000000000000000000000000000000000000093a8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001331f0788f9c08c8f38d52c7a1152250a9de00be00000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138\n\nDetails: insufficient funds for transfer\nVersion: viem@2.46.3",
|
|
39
|
+
"docsPath": "/docs/contract/estimateContractGas",
|
|
40
|
+
"metaMessages": [
|
|
41
|
+
"This error could arise when the account does not have enough funds to:",
|
|
42
|
+
" - pay for the total gas fee,",
|
|
43
|
+
" - pay for the value to send.",
|
|
44
|
+
" ",
|
|
45
|
+
"The cost of the transaction is calculated as `gas * gas fee + value`, where:",
|
|
46
|
+
" - `gas` is the amount of gas needed for transaction to execute,",
|
|
47
|
+
" - `gas fee` is the gas fee,",
|
|
48
|
+
" - `value` is the amount of ether to send to the recipient.",
|
|
49
|
+
" ",
|
|
50
|
+
"Estimate Gas Arguments:",
|
|
51
|
+
" from: 0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138\n to: 0xE85A59c628F7d27878ACeB4bf3b35733630083a9\n value: 0.0001 ETH\n data: 0xdf40224a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000860000000000000000000000000000000000000000000000000000000000000092000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000210500000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354535400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f62616679626569676479727a74357366703775646d37687537367568377932366e6633656675796c71616266336f636c67747179353566627a6469000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a7b226465736372697074696f6e223a2274657374222c22736f6369616c4d6564696155726c73223a5b5d2c22617564697455726c73223a5b5d7d00000000000000000000000000000000000000000000000000000000000000000000000000457b22696e74657266616365223a2254657374222c22706c6174666f726d223a2254657374222c226d6573736167654964223a2254657374222c226964223a2254657374227d000000000000000000000000000000000000000000000000000000000000000000000000000000b429d62f8f3bffb98cdb9569533ea23bf0ba28cc0000000000000000000000004200000000000000000000000000000000000006fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc7c0000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000271000000000000000000000000063d2dfea64b3433f4071a98665bcd7ca14d9349600000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000100000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000000100000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc7c000000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe2b400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ebb25bb797d82cb78e1bc70406b13233c08544130000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000a2c99000000000000000000000000000000000000000000000000000000000000a2c9000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000008e845ead15737bf71904a30bddd3aee76d6adf6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000006000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f41380000000000000000000000000000000000000000000000000000000000093a8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001331f0788f9c08c8f38d52c7a1152250a9de00be00000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138",
|
|
52
|
+
" ",
|
|
53
|
+
"Contract Call:",
|
|
54
|
+
" address: 0xE85A59c628F7d27878ACeB4bf3b35733630083a9\n function: deployToken(((address tokenAdmin, string name, string symbol, bytes32 salt, string image, string metadata, string context, uint256 originatingChainId), (address hook, address pairedToken, int24 tickIfToken0IsClanker, int24 tickSpacing, bytes poolData), (address locker, address[] rewardAdmins, address[] rewardRecipients, uint16[] rewardBps, int24[] tickLower, int24[] tickUpper, uint16[] positionBps, bytes lockerData), (address mevModule, bytes mevModuleData), (address extension, uint256 msgValue, uint16 extensionBps, bytes extensionData)[]))\n args: ({\"tokenConfig\":{\"tokenAdmin\":\"0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138\",\"name\":\"Test\",\"symbol\":\"TST\",\"salt\":\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"image\":\"ipfs://bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi\",\"metadata\":\"{\\\"description\\\":\\\"test\\\",\\\"socialMediaUrls\\\":[],\\\"auditUrls\\\":[]}\",\"context\":\"{\\\"interface\\\":\\\"Test\\\",\\\"platform\\\":\\\"Test\\\",\\\"messageId\\\":\\\"Test\\\",\\\"id\\\":\\\"Test\\\"}\",\"originatingChainId\":\"8453\"},\"lockerConfig\":{\"locker\":\"0x63D2DfEA64b3433F4071A98665bcD7Ca14d93496\",\"lockerData\":\"0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000\",\"rewardAdmins\":[\"0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138\"],\"rewardRecipients\":[\"0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138\"],\"rewardBps\":[10000],\"tickLower\":[-230400],\"tickUpper\":[-120000],\"positionBps\":[10000]},\"poolConfig\":{\"pairedToken\":\"0x4200000000000000000000000000000000000006\",\"tickIfToken0IsClanker\":-230400,\"tickSpacing\":200,\"hook\":\"0xb429d62f8f3bFFb98CdB9569533eA23bF0Ba28CC\",\"poolData\":\"0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000002710\"},\"mevModuleConfig\":{\"mevModule\":\"0xebB25BB797D82CB78E1bc70406b13233c0854413\",\"mevModuleData\":\"0x00000000000000000000000000000000000000000000000000000000000a2c99000000000000000000000000000000000000000000000000000000000000a2c9000000000000000000000000000000000000000000000000000000000000000f\"},\"extensionConfigs\":[{\"extension\":\"0x8E845EAd15737bF71904A30BdDD3aEE76d6ADF6C\",\"msgValue\":\"0\",\"extensionBps\":0,\"extensionData\":\"0x00000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f41380000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000000\"},{\"extension\":\"0x1331f0788F9c08C8F38D52c7a1152250A9dE00be\",\"msgValue\":\"100000000000000\",\"extensionBps\":0,\"extensionData\":\"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138\"}]})\n sender: 0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138"
|
|
55
|
+
],
|
|
56
|
+
"shortMessage": "The total cost (gas * gas fee + value) of executing this transaction exceeds the balance of the account.",
|
|
57
|
+
"version": "2.46.3",
|
|
58
|
+
"name": "ContractFunctionExecutionError",
|
|
59
|
+
"abi": [
|
|
60
|
+
{
|
|
61
|
+
"inputs": [
|
|
62
|
+
{
|
|
63
|
+
"internalType": "address",
|
|
64
|
+
"name": "owner_",
|
|
65
|
+
"type": "address"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"stateMutability": "nonpayable",
|
|
69
|
+
"type": "constructor"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"inputs": [],
|
|
73
|
+
"name": "Deprecated",
|
|
74
|
+
"type": "error"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"inputs": [],
|
|
78
|
+
"name": "ExtensionMsgValueMismatch",
|
|
79
|
+
"type": "error"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"inputs": [],
|
|
83
|
+
"name": "ExtensionNotEnabled",
|
|
84
|
+
"type": "error"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"inputs": [],
|
|
88
|
+
"name": "HookNotEnabled",
|
|
89
|
+
"type": "error"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"inputs": [],
|
|
93
|
+
"name": "InvalidExtension",
|
|
94
|
+
"type": "error"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"inputs": [],
|
|
98
|
+
"name": "InvalidHook",
|
|
99
|
+
"type": "error"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"inputs": [],
|
|
103
|
+
"name": "InvalidLocker",
|
|
104
|
+
"type": "error"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"inputs": [],
|
|
108
|
+
"name": "InvalidMevModule",
|
|
109
|
+
"type": "error"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"inputs": [],
|
|
113
|
+
"name": "LockerNotEnabled",
|
|
114
|
+
"type": "error"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"inputs": [],
|
|
118
|
+
"name": "MaxExtensionBpsExceeded",
|
|
119
|
+
"type": "error"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"inputs": [],
|
|
123
|
+
"name": "MaxExtensionsExceeded",
|
|
124
|
+
"type": "error"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"inputs": [],
|
|
128
|
+
"name": "MevModuleNotEnabled",
|
|
129
|
+
"type": "error"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"inputs": [],
|
|
133
|
+
"name": "NotFound",
|
|
134
|
+
"type": "error"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"inputs": [],
|
|
138
|
+
"name": "OnlyNonOriginatingChains",
|
|
139
|
+
"type": "error"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"inputs": [],
|
|
143
|
+
"name": "OnlyOriginatingChain",
|
|
144
|
+
"type": "error"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"inputs": [
|
|
148
|
+
{
|
|
149
|
+
"internalType": "address",
|
|
150
|
+
"name": "owner",
|
|
151
|
+
"type": "address"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"name": "OwnableInvalidOwner",
|
|
155
|
+
"type": "error"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"inputs": [
|
|
159
|
+
{
|
|
160
|
+
"internalType": "address",
|
|
161
|
+
"name": "account",
|
|
162
|
+
"type": "address"
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"name": "OwnableUnauthorizedAccount",
|
|
166
|
+
"type": "error"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"inputs": [],
|
|
170
|
+
"name": "ReentrancyGuardReentrantCall",
|
|
171
|
+
"type": "error"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"inputs": [],
|
|
175
|
+
"name": "Unauthorized",
|
|
176
|
+
"type": "error"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"anonymous": false,
|
|
180
|
+
"inputs": [
|
|
181
|
+
{
|
|
182
|
+
"indexed": true,
|
|
183
|
+
"internalType": "address",
|
|
184
|
+
"name": "token",
|
|
185
|
+
"type": "address"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"indexed": true,
|
|
189
|
+
"internalType": "address",
|
|
190
|
+
"name": "recipient",
|
|
191
|
+
"type": "address"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"indexed": false,
|
|
195
|
+
"internalType": "uint256",
|
|
196
|
+
"name": "amount",
|
|
197
|
+
"type": "uint256"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"name": "ClaimTeamFees",
|
|
201
|
+
"type": "event"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"anonymous": false,
|
|
205
|
+
"inputs": [
|
|
206
|
+
{
|
|
207
|
+
"indexed": false,
|
|
208
|
+
"internalType": "address",
|
|
209
|
+
"name": "extension",
|
|
210
|
+
"type": "address"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"indexed": false,
|
|
214
|
+
"internalType": "uint256",
|
|
215
|
+
"name": "extensionSupply",
|
|
216
|
+
"type": "uint256"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"indexed": false,
|
|
220
|
+
"internalType": "uint256",
|
|
221
|
+
"name": "msgValue",
|
|
222
|
+
"type": "uint256"
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"name": "ExtensionTriggered",
|
|
226
|
+
"type": "event"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"anonymous": false,
|
|
230
|
+
"inputs": [
|
|
231
|
+
{
|
|
232
|
+
"indexed": true,
|
|
233
|
+
"internalType": "address",
|
|
234
|
+
"name": "previousOwner",
|
|
235
|
+
"type": "address"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"indexed": true,
|
|
239
|
+
"internalType": "address",
|
|
240
|
+
"name": "newOwner",
|
|
241
|
+
"type": "address"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"name": "OwnershipTransferred",
|
|
245
|
+
"type": "event"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"anonymous": false,
|
|
249
|
+
"inputs": [
|
|
250
|
+
{
|
|
251
|
+
"indexed": true,
|
|
252
|
+
"internalType": "address",
|
|
253
|
+
"name": "admin",
|
|
254
|
+
"type": "address"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"indexed": false,
|
|
258
|
+
"internalType": "bool",
|
|
259
|
+
"name": "enabled",
|
|
260
|
+
"type": "bool"
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
"name": "SetAdmin",
|
|
264
|
+
"type": "event"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"anonymous": false,
|
|
268
|
+
"inputs": [
|
|
269
|
+
{
|
|
270
|
+
"indexed": false,
|
|
271
|
+
"internalType": "bool",
|
|
272
|
+
"name": "deprecated",
|
|
273
|
+
"type": "bool"
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
"name": "SetDeprecated",
|
|
277
|
+
"type": "event"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"anonymous": false,
|
|
281
|
+
"inputs": [
|
|
282
|
+
{
|
|
283
|
+
"indexed": false,
|
|
284
|
+
"internalType": "address",
|
|
285
|
+
"name": "extension",
|
|
286
|
+
"type": "address"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"indexed": false,
|
|
290
|
+
"internalType": "bool",
|
|
291
|
+
"name": "enabled",
|
|
292
|
+
"type": "bool"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"name": "SetExtension",
|
|
296
|
+
"type": "event"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"anonymous": false,
|
|
300
|
+
"inputs": [
|
|
301
|
+
{
|
|
302
|
+
"indexed": false,
|
|
303
|
+
"internalType": "address",
|
|
304
|
+
"name": "hook",
|
|
305
|
+
"type": "address"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"indexed": false,
|
|
309
|
+
"internalType": "bool",
|
|
310
|
+
"name": "enabled",
|
|
311
|
+
"type": "bool"
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"name": "SetHook",
|
|
315
|
+
"type": "event"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"anonymous": false,
|
|
319
|
+
"inputs": [
|
|
320
|
+
{
|
|
321
|
+
"indexed": false,
|
|
322
|
+
"internalType": "address",
|
|
323
|
+
"name": "locker",
|
|
324
|
+
"type": "address"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"indexed": false,
|
|
328
|
+
"internalType": "address",
|
|
329
|
+
"name": "pool",
|
|
330
|
+
"type": "address"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"indexed": false,
|
|
334
|
+
"internalType": "bool",
|
|
335
|
+
"name": "enabled",
|
|
336
|
+
"type": "bool"
|
|
337
|
+
}
|
|
338
|
+
],
|
|
339
|
+
"name": "SetLocker",
|
|
340
|
+
"type": "event"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"anonymous": false,
|
|
344
|
+
"inputs": [
|
|
345
|
+
{
|
|
346
|
+
"indexed": false,
|
|
347
|
+
"internalType": "address",
|
|
348
|
+
"name": "mevModule",
|
|
349
|
+
"type": "address"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"indexed": false,
|
|
353
|
+
"internalType": "bool",
|
|
354
|
+
"name": "enabled",
|
|
355
|
+
"type": "bool"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"name": "SetMevModule",
|
|
359
|
+
"type": "event"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"anonymous": false,
|
|
363
|
+
"inputs": [
|
|
364
|
+
{
|
|
365
|
+
"indexed": false,
|
|
366
|
+
"internalType": "address",
|
|
367
|
+
"name": "oldTeamFeeRecipient",
|
|
368
|
+
"type": "address"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"indexed": false,
|
|
372
|
+
"internalType": "address",
|
|
373
|
+
"name": "newTeamFeeRecipient",
|
|
374
|
+
"type": "address"
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
"name": "SetTeamFeeRecipient",
|
|
378
|
+
"type": "event"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"anonymous": false,
|
|
382
|
+
"inputs": [
|
|
383
|
+
{
|
|
384
|
+
"indexed": false,
|
|
385
|
+
"internalType": "address",
|
|
386
|
+
"name": "msgSender",
|
|
387
|
+
"type": "address"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"indexed": true,
|
|
391
|
+
"internalType": "address",
|
|
392
|
+
"name": "tokenAddress",
|
|
393
|
+
"type": "address"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"indexed": true,
|
|
397
|
+
"internalType": "address",
|
|
398
|
+
"name": "tokenAdmin",
|
|
399
|
+
"type": "address"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"indexed": false,
|
|
403
|
+
"internalType": "string",
|
|
404
|
+
"name": "tokenImage",
|
|
405
|
+
"type": "string"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"indexed": false,
|
|
409
|
+
"internalType": "string",
|
|
410
|
+
"name": "tokenName",
|
|
411
|
+
"type": "string"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"indexed": false,
|
|
415
|
+
"internalType": "string",
|
|
416
|
+
"name": "tokenSymbol",
|
|
417
|
+
"type": "string"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"indexed": false,
|
|
421
|
+
"internalType": "string",
|
|
422
|
+
"name": "tokenMetadata",
|
|
423
|
+
"type": "string"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"indexed": false,
|
|
427
|
+
"internalType": "string",
|
|
428
|
+
"name": "tokenContext",
|
|
429
|
+
"type": "string"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"indexed": false,
|
|
433
|
+
"internalType": "int24",
|
|
434
|
+
"name": "startingTick",
|
|
435
|
+
"type": "int24"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"indexed": false,
|
|
439
|
+
"internalType": "address",
|
|
440
|
+
"name": "poolHook",
|
|
441
|
+
"type": "address"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"indexed": false,
|
|
445
|
+
"internalType": "PoolId",
|
|
446
|
+
"name": "poolId",
|
|
447
|
+
"type": "bytes32"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"indexed": false,
|
|
451
|
+
"internalType": "address",
|
|
452
|
+
"name": "pairedToken",
|
|
453
|
+
"type": "address"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"indexed": false,
|
|
457
|
+
"internalType": "address",
|
|
458
|
+
"name": "locker",
|
|
459
|
+
"type": "address"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"indexed": false,
|
|
463
|
+
"internalType": "address",
|
|
464
|
+
"name": "mevModule",
|
|
465
|
+
"type": "address"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"indexed": false,
|
|
469
|
+
"internalType": "uint256",
|
|
470
|
+
"name": "extensionsSupply",
|
|
471
|
+
"type": "uint256"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"indexed": false,
|
|
475
|
+
"internalType": "address[]",
|
|
476
|
+
"name": "extensions",
|
|
477
|
+
"type": "address[]"
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"name": "TokenCreated",
|
|
481
|
+
"type": "event"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"inputs": [],
|
|
485
|
+
"name": "BPS",
|
|
486
|
+
"outputs": [
|
|
487
|
+
{
|
|
488
|
+
"internalType": "uint256",
|
|
489
|
+
"name": "",
|
|
490
|
+
"type": "uint256"
|
|
491
|
+
}
|
|
492
|
+
],
|
|
493
|
+
"stateMutability": "view",
|
|
494
|
+
"type": "function"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"inputs": [],
|
|
498
|
+
"name": "MAX_EXTENSIONS",
|
|
499
|
+
"outputs": [
|
|
500
|
+
{
|
|
501
|
+
"internalType": "uint256",
|
|
502
|
+
"name": "",
|
|
503
|
+
"type": "uint256"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"stateMutability": "view",
|
|
507
|
+
"type": "function"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"inputs": [],
|
|
511
|
+
"name": "MAX_EXTENSION_BPS",
|
|
512
|
+
"outputs": [
|
|
513
|
+
{
|
|
514
|
+
"internalType": "uint16",
|
|
515
|
+
"name": "",
|
|
516
|
+
"type": "uint16"
|
|
517
|
+
}
|
|
518
|
+
],
|
|
519
|
+
"stateMutability": "view",
|
|
520
|
+
"type": "function"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"inputs": [],
|
|
524
|
+
"name": "TOKEN_SUPPLY",
|
|
525
|
+
"outputs": [
|
|
526
|
+
{
|
|
527
|
+
"internalType": "uint256",
|
|
528
|
+
"name": "",
|
|
529
|
+
"type": "uint256"
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
"stateMutability": "view",
|
|
533
|
+
"type": "function"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"inputs": [
|
|
537
|
+
{
|
|
538
|
+
"internalType": "address",
|
|
539
|
+
"name": "",
|
|
540
|
+
"type": "address"
|
|
541
|
+
}
|
|
542
|
+
],
|
|
543
|
+
"name": "admins",
|
|
544
|
+
"outputs": [
|
|
545
|
+
{
|
|
546
|
+
"internalType": "bool",
|
|
547
|
+
"name": "",
|
|
548
|
+
"type": "bool"
|
|
549
|
+
}
|
|
550
|
+
],
|
|
551
|
+
"stateMutability": "view",
|
|
552
|
+
"type": "function"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"inputs": [
|
|
556
|
+
{
|
|
557
|
+
"internalType": "address",
|
|
558
|
+
"name": "token",
|
|
559
|
+
"type": "address"
|
|
560
|
+
}
|
|
561
|
+
],
|
|
562
|
+
"name": "claimTeamFees",
|
|
563
|
+
"outputs": [],
|
|
564
|
+
"stateMutability": "nonpayable",
|
|
565
|
+
"type": "function"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"inputs": [
|
|
569
|
+
{
|
|
570
|
+
"components": [
|
|
571
|
+
{
|
|
572
|
+
"components": [
|
|
573
|
+
{
|
|
574
|
+
"internalType": "address",
|
|
575
|
+
"name": "tokenAdmin",
|
|
576
|
+
"type": "address"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"internalType": "string",
|
|
580
|
+
"name": "name",
|
|
581
|
+
"type": "string"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"internalType": "string",
|
|
585
|
+
"name": "symbol",
|
|
586
|
+
"type": "string"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"internalType": "bytes32",
|
|
590
|
+
"name": "salt",
|
|
591
|
+
"type": "bytes32"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"internalType": "string",
|
|
595
|
+
"name": "image",
|
|
596
|
+
"type": "string"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"internalType": "string",
|
|
600
|
+
"name": "metadata",
|
|
601
|
+
"type": "string"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"internalType": "string",
|
|
605
|
+
"name": "context",
|
|
606
|
+
"type": "string"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"internalType": "uint256",
|
|
610
|
+
"name": "originatingChainId",
|
|
611
|
+
"type": "uint256"
|
|
612
|
+
}
|
|
613
|
+
],
|
|
614
|
+
"internalType": "struct IClanker.TokenConfig",
|
|
615
|
+
"name": "tokenConfig",
|
|
616
|
+
"type": "tuple"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"components": [
|
|
620
|
+
{
|
|
621
|
+
"internalType": "address",
|
|
622
|
+
"name": "hook",
|
|
623
|
+
"type": "address"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"internalType": "address",
|
|
627
|
+
"name": "pairedToken",
|
|
628
|
+
"type": "address"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"internalType": "int24",
|
|
632
|
+
"name": "tickIfToken0IsClanker",
|
|
633
|
+
"type": "int24"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"internalType": "int24",
|
|
637
|
+
"name": "tickSpacing",
|
|
638
|
+
"type": "int24"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"internalType": "bytes",
|
|
642
|
+
"name": "poolData",
|
|
643
|
+
"type": "bytes"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"internalType": "struct IClanker.PoolConfig",
|
|
647
|
+
"name": "poolConfig",
|
|
648
|
+
"type": "tuple"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"components": [
|
|
652
|
+
{
|
|
653
|
+
"internalType": "address",
|
|
654
|
+
"name": "locker",
|
|
655
|
+
"type": "address"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"internalType": "address[]",
|
|
659
|
+
"name": "rewardAdmins",
|
|
660
|
+
"type": "address[]"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"internalType": "address[]",
|
|
664
|
+
"name": "rewardRecipients",
|
|
665
|
+
"type": "address[]"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"internalType": "uint16[]",
|
|
669
|
+
"name": "rewardBps",
|
|
670
|
+
"type": "uint16[]"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"internalType": "int24[]",
|
|
674
|
+
"name": "tickLower",
|
|
675
|
+
"type": "int24[]"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"internalType": "int24[]",
|
|
679
|
+
"name": "tickUpper",
|
|
680
|
+
"type": "int24[]"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"internalType": "uint16[]",
|
|
684
|
+
"name": "positionBps",
|
|
685
|
+
"type": "uint16[]"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"internalType": "bytes",
|
|
689
|
+
"name": "lockerData",
|
|
690
|
+
"type": "bytes"
|
|
691
|
+
}
|
|
692
|
+
],
|
|
693
|
+
"internalType": "struct IClanker.LockerConfig",
|
|
694
|
+
"name": "lockerConfig",
|
|
695
|
+
"type": "tuple"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"components": [
|
|
699
|
+
{
|
|
700
|
+
"internalType": "address",
|
|
701
|
+
"name": "mevModule",
|
|
702
|
+
"type": "address"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"internalType": "bytes",
|
|
706
|
+
"name": "mevModuleData",
|
|
707
|
+
"type": "bytes"
|
|
708
|
+
}
|
|
709
|
+
],
|
|
710
|
+
"internalType": "struct IClanker.MevModuleConfig",
|
|
711
|
+
"name": "mevModuleConfig",
|
|
712
|
+
"type": "tuple"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"components": [
|
|
716
|
+
{
|
|
717
|
+
"internalType": "address",
|
|
718
|
+
"name": "extension",
|
|
719
|
+
"type": "address"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"internalType": "uint256",
|
|
723
|
+
"name": "msgValue",
|
|
724
|
+
"type": "uint256"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"internalType": "uint16",
|
|
728
|
+
"name": "extensionBps",
|
|
729
|
+
"type": "uint16"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"internalType": "bytes",
|
|
733
|
+
"name": "extensionData",
|
|
734
|
+
"type": "bytes"
|
|
735
|
+
}
|
|
736
|
+
],
|
|
737
|
+
"internalType": "struct IClanker.ExtensionConfig[]",
|
|
738
|
+
"name": "extensionConfigs",
|
|
739
|
+
"type": "tuple[]"
|
|
740
|
+
}
|
|
741
|
+
],
|
|
742
|
+
"internalType": "struct IClanker.DeploymentConfig",
|
|
743
|
+
"name": "deploymentConfig",
|
|
744
|
+
"type": "tuple"
|
|
745
|
+
}
|
|
746
|
+
],
|
|
747
|
+
"name": "deployToken",
|
|
748
|
+
"outputs": [
|
|
749
|
+
{
|
|
750
|
+
"internalType": "address",
|
|
751
|
+
"name": "tokenAddress",
|
|
752
|
+
"type": "address"
|
|
753
|
+
}
|
|
754
|
+
],
|
|
755
|
+
"stateMutability": "payable",
|
|
756
|
+
"type": "function"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"inputs": [
|
|
760
|
+
{
|
|
761
|
+
"components": [
|
|
762
|
+
{
|
|
763
|
+
"internalType": "address",
|
|
764
|
+
"name": "tokenAdmin",
|
|
765
|
+
"type": "address"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"internalType": "string",
|
|
769
|
+
"name": "name",
|
|
770
|
+
"type": "string"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"internalType": "string",
|
|
774
|
+
"name": "symbol",
|
|
775
|
+
"type": "string"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"internalType": "bytes32",
|
|
779
|
+
"name": "salt",
|
|
780
|
+
"type": "bytes32"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"internalType": "string",
|
|
784
|
+
"name": "image",
|
|
785
|
+
"type": "string"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"internalType": "string",
|
|
789
|
+
"name": "metadata",
|
|
790
|
+
"type": "string"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"internalType": "string",
|
|
794
|
+
"name": "context",
|
|
795
|
+
"type": "string"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"internalType": "uint256",
|
|
799
|
+
"name": "originatingChainId",
|
|
800
|
+
"type": "uint256"
|
|
801
|
+
}
|
|
802
|
+
],
|
|
803
|
+
"internalType": "struct IClanker.TokenConfig",
|
|
804
|
+
"name": "tokenConfig",
|
|
805
|
+
"type": "tuple"
|
|
806
|
+
}
|
|
807
|
+
],
|
|
808
|
+
"name": "deployTokenZeroSupply",
|
|
809
|
+
"outputs": [
|
|
810
|
+
{
|
|
811
|
+
"internalType": "address",
|
|
812
|
+
"name": "tokenAddress",
|
|
813
|
+
"type": "address"
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"stateMutability": "nonpayable",
|
|
817
|
+
"type": "function"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"inputs": [
|
|
821
|
+
{
|
|
822
|
+
"internalType": "address",
|
|
823
|
+
"name": "token",
|
|
824
|
+
"type": "address"
|
|
825
|
+
}
|
|
826
|
+
],
|
|
827
|
+
"name": "deploymentInfoForToken",
|
|
828
|
+
"outputs": [
|
|
829
|
+
{
|
|
830
|
+
"internalType": "address",
|
|
831
|
+
"name": "token",
|
|
832
|
+
"type": "address"
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"internalType": "address",
|
|
836
|
+
"name": "hook",
|
|
837
|
+
"type": "address"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"internalType": "address",
|
|
841
|
+
"name": "locker",
|
|
842
|
+
"type": "address"
|
|
843
|
+
}
|
|
844
|
+
],
|
|
845
|
+
"stateMutability": "view",
|
|
846
|
+
"type": "function"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"inputs": [],
|
|
850
|
+
"name": "deprecated",
|
|
851
|
+
"outputs": [
|
|
852
|
+
{
|
|
853
|
+
"internalType": "bool",
|
|
854
|
+
"name": "",
|
|
855
|
+
"type": "bool"
|
|
856
|
+
}
|
|
857
|
+
],
|
|
858
|
+
"stateMutability": "view",
|
|
859
|
+
"type": "function"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"inputs": [
|
|
863
|
+
{
|
|
864
|
+
"internalType": "address",
|
|
865
|
+
"name": "locker",
|
|
866
|
+
"type": "address"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"internalType": "address",
|
|
870
|
+
"name": "pool",
|
|
871
|
+
"type": "address"
|
|
872
|
+
}
|
|
873
|
+
],
|
|
874
|
+
"name": "enabledLockers",
|
|
875
|
+
"outputs": [
|
|
876
|
+
{
|
|
877
|
+
"internalType": "bool",
|
|
878
|
+
"name": "enabled",
|
|
879
|
+
"type": "bool"
|
|
880
|
+
}
|
|
881
|
+
],
|
|
882
|
+
"stateMutability": "view",
|
|
883
|
+
"type": "function"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"inputs": [
|
|
887
|
+
{
|
|
888
|
+
"internalType": "address",
|
|
889
|
+
"name": "teamFeeRecipient_",
|
|
890
|
+
"type": "address"
|
|
891
|
+
}
|
|
892
|
+
],
|
|
893
|
+
"name": "initialize",
|
|
894
|
+
"outputs": [],
|
|
895
|
+
"stateMutability": "nonpayable",
|
|
896
|
+
"type": "function"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"inputs": [],
|
|
900
|
+
"name": "owner",
|
|
901
|
+
"outputs": [
|
|
902
|
+
{
|
|
903
|
+
"internalType": "address",
|
|
904
|
+
"name": "",
|
|
905
|
+
"type": "address"
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"stateMutability": "view",
|
|
909
|
+
"type": "function"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"inputs": [],
|
|
913
|
+
"name": "renounceOwnership",
|
|
914
|
+
"outputs": [],
|
|
915
|
+
"stateMutability": "nonpayable",
|
|
916
|
+
"type": "function"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"inputs": [
|
|
920
|
+
{
|
|
921
|
+
"internalType": "address",
|
|
922
|
+
"name": "admin",
|
|
923
|
+
"type": "address"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"internalType": "bool",
|
|
927
|
+
"name": "enabled",
|
|
928
|
+
"type": "bool"
|
|
929
|
+
}
|
|
930
|
+
],
|
|
931
|
+
"name": "setAdmin",
|
|
932
|
+
"outputs": [],
|
|
933
|
+
"stateMutability": "nonpayable",
|
|
934
|
+
"type": "function"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"inputs": [
|
|
938
|
+
{
|
|
939
|
+
"internalType": "bool",
|
|
940
|
+
"name": "deprecated_",
|
|
941
|
+
"type": "bool"
|
|
942
|
+
}
|
|
943
|
+
],
|
|
944
|
+
"name": "setDeprecated",
|
|
945
|
+
"outputs": [],
|
|
946
|
+
"stateMutability": "nonpayable",
|
|
947
|
+
"type": "function"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"inputs": [
|
|
951
|
+
{
|
|
952
|
+
"internalType": "address",
|
|
953
|
+
"name": "extension",
|
|
954
|
+
"type": "address"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"internalType": "bool",
|
|
958
|
+
"name": "enabled",
|
|
959
|
+
"type": "bool"
|
|
960
|
+
}
|
|
961
|
+
],
|
|
962
|
+
"name": "setExtension",
|
|
963
|
+
"outputs": [],
|
|
964
|
+
"stateMutability": "nonpayable",
|
|
965
|
+
"type": "function"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"inputs": [
|
|
969
|
+
{
|
|
970
|
+
"internalType": "address",
|
|
971
|
+
"name": "hook",
|
|
972
|
+
"type": "address"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"internalType": "bool",
|
|
976
|
+
"name": "enabled",
|
|
977
|
+
"type": "bool"
|
|
978
|
+
}
|
|
979
|
+
],
|
|
980
|
+
"name": "setHook",
|
|
981
|
+
"outputs": [],
|
|
982
|
+
"stateMutability": "nonpayable",
|
|
983
|
+
"type": "function"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"inputs": [
|
|
987
|
+
{
|
|
988
|
+
"internalType": "address",
|
|
989
|
+
"name": "locker",
|
|
990
|
+
"type": "address"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"internalType": "address",
|
|
994
|
+
"name": "pool",
|
|
995
|
+
"type": "address"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"internalType": "bool",
|
|
999
|
+
"name": "enabled",
|
|
1000
|
+
"type": "bool"
|
|
1001
|
+
}
|
|
1002
|
+
],
|
|
1003
|
+
"name": "setLocker",
|
|
1004
|
+
"outputs": [],
|
|
1005
|
+
"stateMutability": "nonpayable",
|
|
1006
|
+
"type": "function"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"inputs": [
|
|
1010
|
+
{
|
|
1011
|
+
"internalType": "address",
|
|
1012
|
+
"name": "mevModule",
|
|
1013
|
+
"type": "address"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"internalType": "bool",
|
|
1017
|
+
"name": "enabled",
|
|
1018
|
+
"type": "bool"
|
|
1019
|
+
}
|
|
1020
|
+
],
|
|
1021
|
+
"name": "setMevModule",
|
|
1022
|
+
"outputs": [],
|
|
1023
|
+
"stateMutability": "nonpayable",
|
|
1024
|
+
"type": "function"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"inputs": [
|
|
1028
|
+
{
|
|
1029
|
+
"internalType": "address",
|
|
1030
|
+
"name": "teamFeeRecipient_",
|
|
1031
|
+
"type": "address"
|
|
1032
|
+
}
|
|
1033
|
+
],
|
|
1034
|
+
"name": "setTeamFeeRecipient",
|
|
1035
|
+
"outputs": [],
|
|
1036
|
+
"stateMutability": "nonpayable",
|
|
1037
|
+
"type": "function"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"inputs": [],
|
|
1041
|
+
"name": "teamFeeRecipient",
|
|
1042
|
+
"outputs": [
|
|
1043
|
+
{
|
|
1044
|
+
"internalType": "address",
|
|
1045
|
+
"name": "",
|
|
1046
|
+
"type": "address"
|
|
1047
|
+
}
|
|
1048
|
+
],
|
|
1049
|
+
"stateMutability": "view",
|
|
1050
|
+
"type": "function"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"inputs": [
|
|
1054
|
+
{
|
|
1055
|
+
"internalType": "address",
|
|
1056
|
+
"name": "token",
|
|
1057
|
+
"type": "address"
|
|
1058
|
+
}
|
|
1059
|
+
],
|
|
1060
|
+
"name": "tokenDeploymentInfo",
|
|
1061
|
+
"outputs": [
|
|
1062
|
+
{
|
|
1063
|
+
"components": [
|
|
1064
|
+
{
|
|
1065
|
+
"internalType": "address",
|
|
1066
|
+
"name": "token",
|
|
1067
|
+
"type": "address"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"internalType": "address",
|
|
1071
|
+
"name": "hook",
|
|
1072
|
+
"type": "address"
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"internalType": "address",
|
|
1076
|
+
"name": "locker",
|
|
1077
|
+
"type": "address"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"internalType": "address[]",
|
|
1081
|
+
"name": "extensions",
|
|
1082
|
+
"type": "address[]"
|
|
1083
|
+
}
|
|
1084
|
+
],
|
|
1085
|
+
"internalType": "struct IClanker.DeploymentInfo",
|
|
1086
|
+
"name": "",
|
|
1087
|
+
"type": "tuple"
|
|
1088
|
+
}
|
|
1089
|
+
],
|
|
1090
|
+
"stateMutability": "view",
|
|
1091
|
+
"type": "function"
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"inputs": [
|
|
1095
|
+
{
|
|
1096
|
+
"internalType": "address",
|
|
1097
|
+
"name": "newOwner",
|
|
1098
|
+
"type": "address"
|
|
1099
|
+
}
|
|
1100
|
+
],
|
|
1101
|
+
"name": "transferOwnership",
|
|
1102
|
+
"outputs": [],
|
|
1103
|
+
"stateMutability": "nonpayable",
|
|
1104
|
+
"type": "function"
|
|
1105
|
+
}
|
|
1106
|
+
],
|
|
1107
|
+
"args": [
|
|
1108
|
+
{
|
|
1109
|
+
"tokenConfig": {
|
|
1110
|
+
"tokenAdmin": "0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138",
|
|
1111
|
+
"name": "Test",
|
|
1112
|
+
"symbol": "TST",
|
|
1113
|
+
"salt": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
1114
|
+
"image": "ipfs://bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi",
|
|
1115
|
+
"metadata": "{\"description\":\"test\",\"socialMediaUrls\":[],\"auditUrls\":[]}",
|
|
1116
|
+
"context": "{\"interface\":\"Test\",\"platform\":\"Test\",\"messageId\":\"Test\",\"id\":\"Test\"}",
|
|
1117
|
+
"originatingChainId": "8453n"
|
|
1118
|
+
},
|
|
1119
|
+
"lockerConfig": {
|
|
1120
|
+
"locker": "0x63D2DfEA64b3433F4071A98665bcD7Ca14d93496",
|
|
1121
|
+
"lockerData": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000",
|
|
1122
|
+
"rewardAdmins": [
|
|
1123
|
+
"0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138"
|
|
1124
|
+
],
|
|
1125
|
+
"rewardRecipients": [
|
|
1126
|
+
"0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138"
|
|
1127
|
+
],
|
|
1128
|
+
"rewardBps": [
|
|
1129
|
+
10000
|
|
1130
|
+
],
|
|
1131
|
+
"tickLower": [
|
|
1132
|
+
-230400
|
|
1133
|
+
],
|
|
1134
|
+
"tickUpper": [
|
|
1135
|
+
-120000
|
|
1136
|
+
],
|
|
1137
|
+
"positionBps": [
|
|
1138
|
+
10000
|
|
1139
|
+
]
|
|
1140
|
+
},
|
|
1141
|
+
"poolConfig": {
|
|
1142
|
+
"pairedToken": "0x4200000000000000000000000000000000000006",
|
|
1143
|
+
"tickIfToken0IsClanker": -230400,
|
|
1144
|
+
"tickSpacing": 200,
|
|
1145
|
+
"hook": "0xb429d62f8f3bFFb98CdB9569533eA23bF0Ba28CC",
|
|
1146
|
+
"poolData": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000002710"
|
|
1147
|
+
},
|
|
1148
|
+
"mevModuleConfig": {
|
|
1149
|
+
"mevModule": "0xebB25BB797D82CB78E1bc70406b13233c0854413",
|
|
1150
|
+
"mevModuleData": "0x00000000000000000000000000000000000000000000000000000000000a2c99000000000000000000000000000000000000000000000000000000000000a2c9000000000000000000000000000000000000000000000000000000000000000f"
|
|
1151
|
+
},
|
|
1152
|
+
"extensionConfigs": [
|
|
1153
|
+
{
|
|
1154
|
+
"extension": "0x8E845EAd15737bF71904A30BdDD3aEE76d6ADF6C",
|
|
1155
|
+
"msgValue": "0n",
|
|
1156
|
+
"extensionBps": 0,
|
|
1157
|
+
"extensionData": "0x00000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f41380000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000000"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"extension": "0x1331f0788F9c08C8F38D52c7a1152250A9dE00be",
|
|
1161
|
+
"msgValue": "100000000000000n",
|
|
1162
|
+
"extensionBps": 0,
|
|
1163
|
+
"extensionData": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e63d2e3049c13e1f5a38b834d6f6ca9d0f4138"
|
|
1164
|
+
}
|
|
1165
|
+
]
|
|
1166
|
+
}
|
|
1167
|
+
],
|
|
1168
|
+
"contractAddress": "0xE85A59c628F7d27878ACeB4bf3b35733630083a9",
|
|
1169
|
+
"functionName": "deployToken",
|
|
1170
|
+
"sender": "0x60E63D2E3049c13e1F5A38B834d6F6cA9D0f4138"
|
|
1171
|
+
},
|
|
1172
|
+
"data": {
|
|
1173
|
+
"type": "unknown",
|
|
1174
|
+
"label": "Something went wrong",
|
|
1175
|
+
"rawName": "unknown"
|
|
1176
|
+
}
|
|
1177
|
+
}
|
package/error.log
ADDED
|
Binary file
|