Skip to content

Commit

Permalink
skip chain check
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs committed Nov 5, 2024
1 parent bd25c2d commit b5f0cc9
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions scripts/localDeployer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: ENTRY_POINT_V07_CREATECALL,
gas: 15_000_000n,
Expand All @@ -85,7 +85,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: SIMPLE_ACCOUNT_FACTORY_V07_CREATECALL,
gas: 15_000_000n,
Expand All @@ -95,7 +95,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: ENTRY_POINT_SIMULATIONS_CREATECALL,
gas: 15_000_000n,
Expand All @@ -108,7 +108,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: ENTRY_POINT_V06_CREATECALL,
gas: 15_000_000n,
Expand All @@ -118,7 +118,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: SIMPLE_ACCOUNT_FACTORY_V06_CREATECALL,
gas: 15_000_000n,
Expand All @@ -131,7 +131,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: SAFE_V06_MODULE_SETUP_CREATECALL,
gas: 15_000_000n,
Expand All @@ -141,7 +141,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: SAFE_V06_MODULE_CREATECALL,
gas: 15_000_000n,
Expand All @@ -151,7 +151,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: SAFE_V07_MODULE_SETUP_CREATECALL,
gas: 15_000_000n,
Expand All @@ -161,7 +161,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: SAFE_V07_MODULE_CREATECALL,
gas: 15_000_000n,
Expand All @@ -171,7 +171,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: SAFE_SINGLETON_FACTORY,
data: SAFE_PROXY_FACTORY_CREATECALL,
gas: 15_000_000n,
Expand All @@ -181,7 +181,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: SAFE_SINGLETON_FACTORY,
data: SAFE_SINGLETON_CREATECALL,
gas: 15_000_000n,
Expand All @@ -191,7 +191,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: SAFE_SINGLETON_FACTORY,
data: SAFE_MULTI_SEND_CREATECALL,
gas: 15_000_000n,
Expand All @@ -201,7 +201,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: SAFE_SINGLETON_FACTORY,
data: SAFE_MULTI_SEND_CALL_ONLY_CREATECALL,
gas: 15_000_000n,
Expand All @@ -214,7 +214,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: BICONOMY_SINGLETON_FACTORY,
data: BICONOMY_ECDSA_OWNERSHIP_REGISTRY_MOUDULE_CREATECALL,
gas: 15_000_000n,
Expand All @@ -224,7 +224,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: BICONOMY_SINGLETON_FACTORY,
data: BICONOMY_ACCOUNT_V2_LOGIC_CREATECALL,
gas: 15_000_000n,
Expand All @@ -234,7 +234,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: BICONOMY_SINGLETON_FACTORY,
data: BICONOMY_FACTORY_CREATECALL,
gas: 15_000_000n,
Expand All @@ -244,7 +244,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: BICONOMY_SINGLETON_FACTORY,
data: BICONOMY_DEFAULT_FALLBACK_HANDLER_CREATECALL,
gas: 15_000_000n,
Expand All @@ -257,7 +257,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: KERNEL_ECDSA_VALIDATOR_CREATECALL,
gas: 15_000_000n,
Expand All @@ -267,7 +267,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: KERNEL_ACCOUNT_V2_2_LOGIC_CREATECALL,
gas: 15_000_000n,
Expand All @@ -277,7 +277,7 @@ const main = async () => {

txs.push(
await walletClient.sendTransaction({
chain: undefined,
chain: null,
to: DETERMINISTIC_DEPLOYER,
data: KERNEL_FACTORY_CREATECALL,
gas: 15_000_000n,
Expand Down

0 comments on commit b5f0cc9

Please sign in to comment.