Skip to content

Instantly share code, notes, and snippets.

@charlietilt
Created May 26, 2022 15:43
Show Gist options
  • Save charlietilt/7cf959e08c5ee13e719b84c1831ab42b to your computer and use it in GitHub Desktop.
Save charlietilt/7cf959e08c5ee13e719b84c1831ab42b to your computer and use it in GitHub Desktop.
require('@shardlabs/starknet-hardhat-plugin');
module.exports = {
mocha: {
bail: true,
timeout: 600_000
},
networks: {
dockerStark: {
url: 'http://localhost:9000'
},
dockerEth: {
url: 'http://ethereum:8545'
}
},
paths: {
cairoPaths: [ './lib' ]
},
solidity: '0.7.6',
starknet: {
network: 'alpha',
dockerizedVersion: '0.8.2-arm',
wallets: {
MyWallet: {
accountName: 'OpenZeppelin',
modulePath: 'starkware.starknet.wallets.open_zeppelin.OpenZeppelinAccount',
accountPath: '~/.starknet_accounts'
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment