near-safe 0.9.11 → 0.9.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/dist/cjs/lib/bundler.js
CHANGED
@@ -17,7 +17,6 @@ class Erc4337Bundler {
|
|
17
17
|
async getPaymasterData(rawUserOp, sponsorshipPolicy) {
|
18
18
|
const userOp = { ...rawUserOp, signature: util_1.PLACEHOLDER_SIG };
|
19
19
|
if (sponsorshipPolicy) {
|
20
|
-
console.log("Requesting paymaster data...");
|
21
20
|
return this.pimlico.handleRequest(() => this.client.request({
|
22
21
|
method: "pm_sponsorUserOperation",
|
23
22
|
params: [
|
@@ -27,7 +26,6 @@ class Erc4337Bundler {
|
|
27
26
|
],
|
28
27
|
}));
|
29
28
|
}
|
30
|
-
console.log("Estimating user operation gas...");
|
31
29
|
return this.pimlico.handleRequest(() => this.client.request({
|
32
30
|
method: "eth_estimateUserOperationGas",
|
33
31
|
params: [userOp, this.entryPointAddress],
|
package/dist/cjs/near-safe.js
CHANGED
@@ -24,12 +24,6 @@ class NearSafe {
|
|
24
24
|
const safePack = new safe_1.SafeContractSuite(setupRpc);
|
25
25
|
const setup = safePack.getSetup([nearAdapter.address]);
|
26
26
|
const safeAddress = await safePack.addressForSetup(setup, safeSaltNonce);
|
27
|
-
console.log(`
|
28
|
-
Near Adapter:
|
29
|
-
Near Account ID: ${nearAdapter.nearAccountId()}
|
30
|
-
MPC EOA: ${nearAdapter.address}
|
31
|
-
Safe: ${safeAddress}
|
32
|
-
`);
|
33
27
|
return new NearSafe(nearAdapter, safePack, pimlicoKey, setup, safeAddress, safeSaltNonce);
|
34
28
|
}
|
35
29
|
/**
|
package/dist/esm/lib/bundler.js
CHANGED
@@ -18,7 +18,6 @@ export class Erc4337Bundler {
|
|
18
18
|
async getPaymasterData(rawUserOp, sponsorshipPolicy) {
|
19
19
|
const userOp = { ...rawUserOp, signature: PLACEHOLDER_SIG };
|
20
20
|
if (sponsorshipPolicy) {
|
21
|
-
console.log("Requesting paymaster data...");
|
22
21
|
return this.pimlico.handleRequest(() => this.client.request({
|
23
22
|
method: "pm_sponsorUserOperation",
|
24
23
|
params: [
|
@@ -28,7 +27,6 @@ export class Erc4337Bundler {
|
|
28
27
|
],
|
29
28
|
}));
|
30
29
|
}
|
31
|
-
console.log("Estimating user operation gas...");
|
32
30
|
return this.pimlico.handleRequest(() => this.client.request({
|
33
31
|
method: "eth_estimateUserOperationGas",
|
34
32
|
params: [userOp, this.entryPointAddress],
|
package/dist/esm/near-safe.js
CHANGED
@@ -27,12 +27,6 @@ export class NearSafe {
|
|
27
27
|
const safePack = new SafeContractSuite(setupRpc);
|
28
28
|
const setup = safePack.getSetup([nearAdapter.address]);
|
29
29
|
const safeAddress = await safePack.addressForSetup(setup, safeSaltNonce);
|
30
|
-
console.log(`
|
31
|
-
Near Adapter:
|
32
|
-
Near Account ID: ${nearAdapter.nearAccountId()}
|
33
|
-
MPC EOA: ${nearAdapter.address}
|
34
|
-
Safe: ${safeAddress}
|
35
|
-
`);
|
36
30
|
return new NearSafe(nearAdapter, safePack, pimlicoKey, setup, safeAddress, safeSaltNonce);
|
37
31
|
}
|
38
32
|
/**
|