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 {
23
23
} from "./constants.js" ;
24
24
25
25
export 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 ) } ` ;
27
27
28
28
return withCache (
29
29
async ( ) => {
@@ -94,7 +94,7 @@ export async function getDeployedEntrypointERC20(options: ClientAndChain) {
94
94
}
95
95
96
96
async 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 ) } ` ;
98
98
return withCache (
99
99
async ( ) => {
100
100
const contractMetadata = await fetchDeployMetadata ( {
You can’t perform that action at this time.
0 commit comments