Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
germartinez committed Dec 15, 2021
2 parents 1a39ce2 + 4989ac6 commit c5e7fc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/safe-core-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gnosis.pm/safe-core-sdk",
"version": "1.0.0",
"version": "1.1.1",
"description": "Safe Core SDK",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/safe-core-sdk/src/managers/contractManager.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SafeVersion, SAFE_BASE_VERSION } from '../contracts/config'
import { SafeVersion, SAFE_LAST_VERSION } from '../contracts/config'
import GnosisSafeContract from '../contracts/GnosisSafe/GnosisSafeContract'
import MultiSendContract from '../contracts/MultiSend/MultiSendContract'
import { SafeConfig } from '../Safe'
Expand Down Expand Up @@ -29,7 +29,7 @@ class ContractManager {
}: SafeConfig): Promise<void> {
const chainId = await ethAdapter.getChainId()
const temporarySafeContract = ethAdapter.getSafeContract({
safeVersion: SAFE_BASE_VERSION,
safeVersion: SAFE_LAST_VERSION,
chainId,
isL1SafeMasterCopy,
customContractAddress: safeAddress
Expand Down

0 comments on commit c5e7fc2

Please sign in to comment.