File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/thirdweb/src/tokens Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import {
2323} from "./constants.js" ;
2424
2525export async function getDeployedEntrypointERC20 ( options : ClientAndChain ) {
26- const cacheKey = `${ options . chain . id } -${ ENTRYPOINT_DEPLOY_URL } ` ;
26+ const cacheKey = `${ options . chain . id } -${ ENTRYPOINT_DEPLOY_URL } - ${ JSON . stringify ( options . client ) } ` ;
2727
2828 return withCache (
2929 async ( ) => {
@@ -94,7 +94,7 @@ export async function getDeployedEntrypointERC20(options: ClientAndChain) {
9494}
9595
9696async function getDeployedContractFactory ( options : ClientAndChain ) {
97- const cacheKey = `${ options . chain . id } -${ CONTRACT_FACTORY_DEPLOY_URL } ` ;
97+ const cacheKey = `${ options . chain . id } -${ CONTRACT_FACTORY_DEPLOY_URL } - ${ JSON . stringify ( options . client ) } ` ;
9898 return withCache (
9999 async ( ) => {
100100 const contractMetadata = await fetchDeployMetadata ( {
You can’t perform that action at this time.
0 commit comments