Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove @bosonprotocol/common dependency #418

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ build/**
dist/**
.next/**
generated
*.log

# yarn
.pnp.*
Expand Down
12 changes: 10 additions & 2 deletions contracts/accounts.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ const ACCOUNT_12 = {
privateKey: "35253a0b89df66fa7c4fb98e46925f6e8804b55a80e2e1c3f22cb1b90a11567b"
};

const ACCOUNT_13 = {
address: "0xC448891cE3d85d141C43E9D95236B7C735bd74BB",
privateKey:
"0x23b745a17fdcdfcc13a8d5af456898700cd798b25ef5ef3767ae859cc8114df1"
};

const ACCOUNTS = [
ACCOUNT_1,
ACCOUNT_2,
Expand All @@ -81,7 +87,8 @@ const ACCOUNTS = [
ACCOUNT_9,
ACCOUNT_10,
ACCOUNT_11,
ACCOUNT_12
ACCOUNT_12,
ACCOUNT_13
];

module.exports = {
Expand All @@ -97,5 +104,6 @@ module.exports = {
ACCOUNT_9,
ACCOUNT_10,
ACCOUNT_11,
ACCOUNT_12
ACCOUNT_12,
ACCOUNT_13
};
13 changes: 12 additions & 1 deletion contracts/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,18 @@ const accountsFromEnv = process.env.DEPLOYER_PK
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: "0.8.9",
solidity: {
version: "0.8.9",
settings: {
optimizer: {
enabled: true,
runs: 200,
details: {
yul: true
}
}
}
},
networks: {
hardhat: {
allowUnlimitedContractSize: true,
Expand Down
2 changes: 1 addition & 1 deletion contracts/protocol-contracts
Loading