Skip to content

Commit

Permalink
removed console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Bacis committed Feb 5, 2024
1 parent 1e80b06 commit e21f28e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion advanced/wallets/react-wallet-v2/src/data/EIP155Data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const EIP155_TEST_CHAINS: Record<string,EIP155Chain> = {
name: 'Ethereum Sepolia',
logo: '/chain-logos/eip155-1.png',
rgb: '99, 125, 234',
rpc: 'https://gateway.tenderly.co/public/sepolia ',
rpc: 'https://gateway.tenderly.co/public/sepolia',
namespace: 'eip155',
smartAccountEnabled: true,
},
Expand Down
1 change: 0 additions & 1 deletion advanced/wallets/react-wallet-v2/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export default function HomePage() {
Testnets
</Text>
{Object.entries(EIP155_TEST_CHAINS).map(([caip10, { name, logo, rgb, chainId, smartAccountEnabled }]) => {
console.log(name)
if (smartAccountEnabled) {
return (
<SmartAccountCard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@ export default function SessionProposalModal() {
optional.push(chains)
}
console.log('requestedChains', [...new Set([...required.flat(), ...optional.flat()])])
//const [reqChain] = [...new Set([...required.flat(), ...optional.flat()])]
//SettingsStore.setActiveChainId(reqChain?.replace('eip155:', '') as string)

return [...new Set([...required.flat(), ...optional.flat()])]
}, [proposal])
Expand Down Expand Up @@ -263,9 +261,7 @@ export default function SessionProposalModal() {

console.log('approving namespaces:', namespaces)

try {
console.log(proposal.id, namespaces, "TESTING")

try {
await web3wallet.approveSession({
id: proposal.id,
namespaces
Expand Down

0 comments on commit e21f28e

Please sign in to comment.