pandora-cli-skills 1.1.11 → 1.1.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.
package/SKILL.md
CHANGED
|
@@ -217,7 +217,7 @@ pandora clone-bet \
|
|
|
217
217
|
--sources "https://www.premierleague.com" "https://www.bbc.com/sport/football" \
|
|
218
218
|
--target-timestamp 1772323200 \
|
|
219
219
|
--target-timestamp-offset-hours 1 \
|
|
220
|
-
--arbiter
|
|
220
|
+
--arbiter 0x0D7B957C47Da86c2968dc52111D633D42cb7a5F7 \
|
|
221
221
|
--category 3 \
|
|
222
222
|
--liquidity 10 \
|
|
223
223
|
--curve-flattener 7 \
|
|
@@ -229,7 +229,7 @@ pandora clone-bet \
|
|
|
229
229
|
For live execution, replace `--dry-run` with `--execute`.
|
|
230
230
|
If `pandora` is not linked yet, use `node cli/pandora.cjs clone-bet ...`.
|
|
231
231
|
|
|
232
|
-
Default arbiter (whitelisted): `
|
|
232
|
+
Default arbiter (whitelisted): `0x0D7B957C47Da86c2968dc52111D633D42cb7a5F7`
|
|
233
233
|
|
|
234
234
|
## Launch AMM/Parimutuel (market launcher)
|
|
235
235
|
```bash
|
|
@@ -209,7 +209,7 @@ function buildDeploymentArgs(options = {}) {
|
|
|
209
209
|
distributionNo,
|
|
210
210
|
feeTier,
|
|
211
211
|
maxImbalance,
|
|
212
|
-
arbiter: String(options.arbiter || '
|
|
212
|
+
arbiter: String(options.arbiter || '0x0D7B957C47Da86c2968dc52111D633D42cb7a5F7').toLowerCase(),
|
|
213
213
|
category,
|
|
214
214
|
};
|
|
215
215
|
}
|
package/package.json
CHANGED
|
@@ -47,7 +47,7 @@ pandora launch \
|
|
|
47
47
|
--sources "https://coinmarketcap.com/currencies/bitcoin/" "https://www.coingecko.com/en/coins/bitcoin" \
|
|
48
48
|
--target-timestamp 1798675200 \
|
|
49
49
|
--target-timestamp-offset-hours 1 \
|
|
50
|
-
--arbiter
|
|
50
|
+
--arbiter 0x0D7B957C47Da86c2968dc52111D633D42cb7a5F7 \
|
|
51
51
|
--category 3 \
|
|
52
52
|
--market-type amm \
|
|
53
53
|
--liquidity 100 \
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
} from 'viem';
|
|
12
12
|
import { privateKeyToAccount } from 'viem/accounts';
|
|
13
13
|
|
|
14
|
-
const DEFAULT_ARBITER = '
|
|
14
|
+
const DEFAULT_ARBITER = '0x0D7B957C47Da86c2968dc52111D633D42cb7a5F7';
|
|
15
15
|
const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000';
|
|
16
16
|
const MIN_SOURCE_COUNT = 2;
|
|
17
17
|
const MIN_DEADLINE_WINDOW_SECONDS = 12 * 60 * 60;
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
} from 'viem';
|
|
12
12
|
import { privateKeyToAccount } from 'viem/accounts';
|
|
13
13
|
|
|
14
|
-
const DEFAULT_ARBITER = '
|
|
14
|
+
const DEFAULT_ARBITER = '0x0D7B957C47Da86c2968dc52111D633D42cb7a5F7';
|
|
15
15
|
const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000';
|
|
16
16
|
const MIN_SOURCE_COUNT = 2;
|
|
17
17
|
const MIN_DEADLINE_WINDOW_SECONDS = 12 * 60 * 60;
|