Skip to content

Commit

Permalink
Merge pull request #48 from OpenZeppelin/v2.6.0
Browse files Browse the repository at this point in the history
v2.6.0
  • Loading branch information
tirumerla authored Mar 8, 2024
2 parents 5a87070 + 962afdc commit 60860cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openzeppelin/defender-as-code",
"version": "2.5.0",
"version": "2.6.0",
"description": "Configure your Defender environment via code",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ export default class DefenderDeploy {
async (forkedNetwork: ForkedNetworkRequest, stackResourceId: string) => {
const createdForkedNetwork = await client.createForkedNetwork({
name: forkedNetwork.name,
supportedNetwork: forkedNetwork['supported-network'],
supportedNetwork: forkedNetwork['supported-network'] as any, // cast to prevent typing errors in deploy when networks in SDK are not aligned,
rpcUrl: forkedNetwork['rpc-url'],
blockExplorerUrl: forkedNetwork['block-explorer-url'] ?? undefined,
apiKey: forkedNetwork['api-key'] ?? undefined,
Expand Down

0 comments on commit 60860cf

Please sign in to comment.