Skip to content

Commit

Permalink
More deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
derekchiang committed May 15, 2023
1 parent 6a590fc commit 0582185
Show file tree
Hide file tree
Showing 18 changed files with 1,895 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deploy/deploy-all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ const deployKernel: DeployFunction = async function (hre: HardhatRuntimeEnvironm
from: deployerAddress,
args: [entrypoint],
log: true,
deterministicDeployment: true
deterministicDeployment: true,
});

await deploy('ZeroDevSessionKeyPlugin', {
from: deployerAddress,
log: true,
deterministicDeployment: true
deterministicDeployment: true,
});
}

Expand Down
1 change: 1 addition & 0 deletions deployments/arbitrumGoerli/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
421613
124 changes: 124 additions & 0 deletions deployments/arbitrumGoerli/KernelFactory.json

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions deployments/arbitrumGoerli/ZeroDevSessionKeyPlugin.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions deployments/baseGoerli/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
84531
140 changes: 140 additions & 0 deletions deployments/baseGoerli/KernelFactory.json

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions deployments/baseGoerli/ZeroDevSessionKeyPlugin.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions deployments/bsc/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
56
140 changes: 140 additions & 0 deletions deployments/bsc/KernelFactory.json

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions deployments/bsc/ZeroDevSessionKeyPlugin.json

Large diffs are not rendered by default.

129 changes: 129 additions & 0 deletions deployments/bsc/solcInputs/b4f7aa20796f803709c4f0ee7de51b7f.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions deployments/bscTestnet/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
97
140 changes: 140 additions & 0 deletions deployments/bscTestnet/KernelFactory.json

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions deployments/bscTestnet/ZeroDevSessionKeyPlugin.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

26 changes: 25 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,31 @@ const config: HardhatUserConfig = {
url: `https://arbitrum-mainnet.infura.io/v3/${process.env.INFURA_ID}`,
accounts: getAccounts(),
},
arbitrumGoerli: {
url: `https://arbitrum-goerli.infura.io/v3/${process.env.INFURA_ID}`,
accounts: getAccounts(),
},
optimism: {
url: `https://optimism-mainnet.infura.io/v3/${process.env.INFURA_ID}`,
accounts: getAccounts(),
},
optimismGoerli: {
url: `https://optimism-goerli.infura.io/v3/${process.env.INFURA_ID}`,
accounts: getAccounts(),
},
bscTestnet: {
url: `https://sly-indulgent-paper.bsc-testnet.discover.quiknode.pro/ab7e00c229f5967334160958e40fd6a4d893fb93`,
accounts: getAccounts(),
},
bsc: {
url: `https://wandering-quaint-reel.bsc.quiknode.pro/508c3d245c14adb8689ed4073d29aa5795dfa24e`,
accounts: getAccounts(),
},
baseGoerli: {
url: `https://icy-long-mountain.base-goerli.quiknode.pro/5b80d93e97cc9412a63c10a30841869abbef9596`,
accounts: getAccounts(),
},
}
};

export default config;
export default config;

0 comments on commit 0582185

Please sign in to comment.