damm-sdk 1.1.14 → 1.1.15
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/dist/index.cjs +3 -3
- package/dist/index.cjs.map +3 -3
- package/dist/index.js +1987 -2017
- package/dist/index.js.map +15 -16
- package/package.json +1 -1
- package/src/integrations/gnosis/gnosis.ts +2 -2
package/dist/index.cjs
CHANGED
|
@@ -62455,12 +62455,12 @@ var swapOwner = ({
|
|
|
62455
62455
|
newOwner,
|
|
62456
62456
|
threshold
|
|
62457
62457
|
}) => {
|
|
62458
|
-
const safeL1Singleton = new exports_ethers.
|
|
62458
|
+
const safeL1Singleton = new exports_ethers.utils.Interface(safe_abi_default);
|
|
62459
62459
|
return {
|
|
62460
62460
|
to: safeAddress,
|
|
62461
62461
|
value: 0n,
|
|
62462
62462
|
operation: 0,
|
|
62463
|
-
data: safeL1Singleton.removeOwner
|
|
62463
|
+
data: safeL1Singleton.encodeFunctionData("removeOwner", [prevOwner, newOwner, threshold])
|
|
62464
62464
|
};
|
|
62465
62465
|
};
|
|
62466
62466
|
var gnosisTrx = ({
|
|
@@ -81645,4 +81645,4 @@ var simulateOrThrow = async (env) => {
|
|
|
81645
81645
|
};
|
|
81646
81646
|
};
|
|
81647
81647
|
|
|
81648
|
-
//# debugId=
|
|
81648
|
+
//# debugId=1142D954F9C36B3364756E2164756E21
|