@dev.sail.money/sailor 1.3.0-209 → 1.3.0-210

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev.sail.money/sailor",
3
- "version": "1.3.0-209",
3
+ "version": "1.3.0-210",
4
4
  "description": "Operator toolkit for Sail Protocol",
5
5
  "bin": {
6
6
  "sailor": "packages/cli/dist/index.cjs"
@@ -42200,9 +42200,12 @@ var CLONE_TEMPLATES = {
42200
42200
  ]
42201
42201
  }
42202
42202
  };
42203
- function predictCloneAddress(impl, factory, submitter, salt) {
42203
+ function predictCloneAddress(impl, factory, submitter, account2, salt) {
42204
42204
  const namespacedSalt = keccak256(
42205
- encodeAbiParameters([{ type: "address" }, { type: "bytes32" }], [submitter, salt])
42205
+ encodeAbiParameters(
42206
+ [{ type: "address" }, { type: "address" }, { type: "bytes32" }],
42207
+ [submitter, account2, salt]
42208
+ )
42206
42209
  );
42207
42210
  const initCode = concatHex([CLONE_INIT_PREFIX, impl, CLONE_INIT_SUFFIX]);
42208
42211
  return getCreate2Address({
@@ -42299,7 +42302,7 @@ async function runDeployClone(project, channel, options) {
42299
42302
  [sma, impl, BigInt(Math.floor(Date.now() / 1e3))]
42300
42303
  )
42301
42304
  );
42302
- const clone = predictCloneAddress(impl, project.contracts.mandateFactory, submitter, salt);
42305
+ const clone = predictCloneAddress(impl, project.contracts.mandateFactory, submitter, sma, salt);
42303
42306
  say(() => {
42304
42307
  console.log(`
42305
42308
  ${spec.label} clone (${options.template})`);
@@ -5,7 +5,7 @@
5
5
  * Do not edit manually — run `pnpm build` to regenerate.
6
6
  *
7
7
  * Spec version : 1.2.0
8
- * Generated at : 2026-06-25T13:35:39.182Z
8
+ * Generated at : 2026-06-25T14:29:20.609Z
9
9
  */
10
10
  export declare const SAIL_INTELLIGENCE_BASE_URL = "https://api.sail.money";
11
11
  export declare const SAIL_INTELLIGENCE_DOCS_URL = "https://api.sail.money/docs";
@@ -5,7 +5,7 @@
5
5
  * Do not edit manually — run `pnpm build` to regenerate.
6
6
  *
7
7
  * Spec version : 1.2.0
8
- * Generated at : 2026-06-25T13:35:39.182Z
8
+ * Generated at : 2026-06-25T14:29:20.609Z
9
9
  */
10
10
  export const SAIL_INTELLIGENCE_BASE_URL = "https://api.sail.money";
11
11
  export const SAIL_INTELLIGENCE_DOCS_URL = "https://api.sail.money/docs";