Skip to content

Commit

Permalink
adjust link contract path in gauntlet
Browse files Browse the repository at this point in the history
  • Loading branch information
augustbleeds committed Oct 18, 2024
1 parent 61460c1 commit 4918194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/test/ocr2/aggregator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe('Aggregator', function () {

// Declares and deploys the LINK token contract
const ddToken = await owner.declareAndDeploy({
...getStarknetContractArtifacts('LinkToken'),
...getStarknetContractArtifacts('chainlink_token_v1_link_token_LinkToken'),
constructorCalldata: CallData.compile({
minter: owner.address,
owner: owner.address,
Expand Down
2 changes: 1 addition & 1 deletion packages-ts/starknet-gauntlet-token/src/lib/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export enum CONTRACT_LIST {
TOKEN = 'token',
}

export const tokenContractLoader = () => loadContract('LinkToken')
export const tokenContractLoader = () => loadContract('chainlink_token_v1_link_token_LinkToken')

0 comments on commit 4918194

Please sign in to comment.