Skip to content

Commit

Permalink
Merge pull request #218 from lukso-network/default-sc-version
Browse files Browse the repository at this point in the history
fix: use default SC version
  • Loading branch information
CallumGrindle authored Sep 12, 2023
2 parents 147f168 + ed4a1a2 commit a7bd03b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/helpers/config.helper.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Permissions } from '@erc725/erc725.js/build/main/src/types/Method';
import { keccak256 } from '@ethersproject/keccak256';
import { toUtf8Bytes } from '@ethersproject/strings';
import { version as lspSmartContractsVersion } from '@lukso/lsp-smart-contracts/package.json';
import { Options } from 'ipfs-http-client';

import { UploadOptions } from '../interfaces/profile-upload-options';
Expand Down Expand Up @@ -59,7 +60,7 @@ export const DEFAULT_PERMISSIONS: Permissions = {
REENTRANCY: true,
};

export const DEFAULT_CONTRACT_VERSION = '0.10.3';
export const DEFAULT_CONTRACT_VERSION = lspSmartContractsVersion;

export const GAS_PRICE = 10_000_000_000;
export const GAS_BUFFER = 100_000;

0 comments on commit a7bd03b

Please sign in to comment.