Skip to content

Commit 1db6d01

Browse files
committed
fix conflicts issue
1 parent a301f19 commit 1db6d01

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

apps/remix-ide/src/blockchain/blockchain.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ export class Blockchain extends Plugin {
734734
(_) => this.executionContext.currentblockGasLimit()
735735
)
736736

737-
web3Runner.event.register('transactionBroadcasted', (txhash) => {
737+
web3Runner.event.register('transactionBroadcasted', (txhash, isUserOp) => {
738738
this.executionContext.detectNetwork(async (error, network) => {
739739
if (error || !network) return
740740
if (network.name === 'VM') return
@@ -762,7 +762,6 @@ export class Blockchain extends Plugin {
762762
<a href={userOpLink} target="_blank">
763763
view on Jiffyscan
764764
</a>
765-
</span>
766765
)
767766
} else {
768767
this.call(

libs/remix-lib/src/execution/txRunnerWeb3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export class TxRunnerWeb3 {
205205
async sendUserOp (tx) {
206206
const localStorageKey = 'smartAccounts'
207207
const PUBLIC_NODE_URL = "https://rpc.ankr.com/eth_sepolia"
208-
const PIMLICO_API_KEY ='pim_J9aaTrRySixhbf3eh3T7dw'
208+
const PIMLICO_API_KEY =''
209209
const BUNDLER_URL = `https://api.pimlico.io/v2/sepolia/rpc?apikey=${PIMLICO_API_KEY}`
210210
const network = 'sepolia'
211211
const chain = chains[network]

libs/remix-ui/run-tab/src/lib/actions/account.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const createNewBlockchainAccount = async (plugin: RunTab, dispatch: React
104104
export const createSmartAccount = async (plugin: RunTab, dispatch: React.Dispatch<any>) => {
105105
const localStorageKey = 'smartAccounts'
106106
const PUBLIC_NODE_URL = "https://rpc.ankr.com/eth_sepolia"
107-
const PIMLICO_API_KEY ='pim_J9aaTrRySixhbf3eh3T7dw'
107+
const PIMLICO_API_KEY =''
108108
const BUNDLER_URL = `https://api.pimlico.io/v2/sepolia/rpc?apikey=${PIMLICO_API_KEY}`
109109
const safeAddresses: string[] = Object.keys(plugin.REACT_API.smartAccounts)
110110
let salt

0 commit comments

Comments
 (0)