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

Feat/transmission param script #390

Merged
merged 5 commits into from
Jul 1, 2024
Merged
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
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ RELAYER_URL_DEV=""
RELAYER_URL_SURGE=""
RELAYER_URL_PROD=""

# dl api
DL_API_DEV_URL=""
DL_API_PROD_URL=""

# etherscan verification
ETHERSCAN_API_KEY=xxx
POLYGONSCAN_API_KEY=xxx
Expand Down
202 changes: 28 additions & 174 deletions scripts/deploy/helpers/send-msg/allPathTest.ts
Original file line number Diff line number Diff line change
@@ -1,40 +1,15 @@
import { config as dotenvConfig } from "dotenv";
import axios from "axios";

dotenvConfig();
import {
ChainSlug,
TestnetIds,
MainnetIds,
isTestnet,
TestnetIds,
isMainnet,
CORE_CONTRACTS,
DeploymentMode,
isTestnet,
} from "../../../../src";
import { getAddresses, getRelayUrl, getRelayAPIKEY } from "../../utils";
import { BigNumber, Contract, ethers } from "ethers";
import Counter from "../../../../out/Counter.sol/Counter.json";
import Socket from "../../../../out/Socket.sol/Socket.json";
import { sendCounterBridgeMsg } from "./utils";

import { getProviderFromChainSlug } from "../../../constants/networks";
import { formatEther } from "ethers/lib/utils";
import { chains, mode, overrides } from "../../config/config";

interface RequestObj {
to: string;
data: string;
chainSlug: number;
value?: string | BigNumber;
gasPrice?: string | BigNumber | undefined;
gasLimit: string | number | undefined;
}

const API_BASE_URL =
mode == DeploymentMode.DEV
? process.env.DL_API_DEV_URL
: process.env.DL_API_PROD_URL;
const getSiblingSlugs = (chainSlug: ChainSlug): ChainSlug[] => {
console.log(chainSlug, isMainnet(chainSlug));
if (isTestnet(chainSlug))
return TestnetIds.filter(
(siblingChainSlug) => chainSlug !== siblingChainSlug
Expand All @@ -46,68 +21,21 @@ const getSiblingSlugs = (chainSlug: ChainSlug): ChainSlug[] => {
return [];
};

const axiosPost = async (url: string, data: object, config = {}) => {
try {
let response = await axios.post(url, data, config);
// console.log("txStatus : ", response.status, response.data);
return { success: true, ...response?.data };
} catch (error) {
//@ts-ignore
console.log("status : ", error?.response?.status);
console.log(
"error occurred, url : ",
url,
"data : ",
data,
config,
"\n error : ",
//@ts-ignore
error?.message,
//@ts-ignore
error?.response.data
);
//@ts-ignore
return { success: false, ...error?.response?.data };
}
};

const relayTx = async (params: RequestObj, provider: any) => {
try {
let { to, data, chainSlug, gasPrice, value, gasLimit } = params;
let url = await getRelayUrl(mode);
let config = {
headers: {
"x-api-key": getRelayAPIKEY(mode),
},
};
// console.log({url})
let body = {
to,
data,
value,
chainId: (await provider.getNetwork()).chainId,
gasLimit,
gasPrice,
sequential: false,
source: "LoadTester",
};
let response = await axiosPost(url!, body, config);
if (response?.success) return response?.data;
else return { hash: "" };
} catch (error) {
console.log("uncaught error");
}
const config = {
msgGasLimit: "200000",
payloadSize: 100, // for counter add operation
executionParams:
"0x0000000000000000000000000000000000000000000000000000000000000000",
transmissionParams:
"0x0000000000000000000000000000000000000000000000000000000000000000",
};

export const sendMessagesToAllPaths = async (params: {
senderChains: ChainSlug[];
receiverChains: ChainSlug[];
count: number;
}) => {
const amount = 100;
const msgGasLimit = "200000"; // update this when add fee logic for dst gas limit
try {
let { senderChains, receiverChains, count } = params;
let { senderChains, receiverChains } = params;

console.log("================= checking for : ", params);
let activeChainSlugs =
Expand All @@ -117,105 +45,32 @@ export const sendMessagesToAllPaths = async (params: {
await Promise.all(
activeChainSlugs.map(async (chainSlug) => {
const siblingSlugs = getSiblingSlugs(chainSlug);
const addresses = await getAddresses(chainSlug, mode);

console.log({ chainSlug, siblingSlugs });

if (!addresses) {
console.log("addresses not found for ", chainSlug, addresses);
return;
}

// console.log(" 2 ");

const counterAddress = addresses["Counter"];
if (!counterAddress) {
console.log(chainSlug, "counter address not present: ", chainSlug);
return;
}
// console.log(" 3 ");

const provider = await getProviderFromChainSlug(chainSlug);
const socket: Contract = new ethers.Contract(
addresses[CORE_CONTRACTS.Socket],
Socket.abi,
provider
);

const counter: Contract = new ethers.Contract(
counterAddress,
Counter.abi
);

await Promise.all(
siblingSlugs.map(async (siblingSlug) => {
if (
receiverChains.length > 0 &&
!receiverChains.includes(siblingSlug)
)
return;

// value = 100
let executionParams =
"0x0000000000000000000000000000000000000000000000000000000000000000";
let transmissionParams =
"0x0101000000010000000000000000000000000000000000000000000000000000";
let data = counter.interface.encodeFunctionData(
"remoteAddOperation",
[
siblingSlug,
amount,
msgGasLimit,
executionParams,
// ethers.constants.HashZero,
transmissionParams,
]
console.log(
"sending message from ",
chainSlug,
" to ",
siblingSlug
);
let to = counter.address;
let value = await socket.getMinFees(
const {
payloadSize,
msgGasLimit,
Math.ceil(data.length / 2), // payload size
executionParams,
transmissionParams,
} = config;
await sendCounterBridgeMsg(
chainSlug,
siblingSlug,
to
);

console.log(
`fees for path ${chainSlug}-${siblingSlug} is ${formatEther(
value
)}`
);

const gasLimit: number | string | undefined =
chainSlug === ChainSlug.ARBITRUM ||
chainSlug === ChainSlug.ARBITRUM_SEPOLIA
? 2000000
: overrides(chainSlug)?.gasLimit
? overrides(chainSlug).gasLimit.toString()
: undefined;

let tempArray = new Array(count).fill(1);
await Promise.all(
tempArray.map(async (c) => {
// console.log(c)
console.log(to, data, value);
let response = await relayTx(
{
to,
data,
value,
gasLimit,
gasPrice:
overrides(chainSlug)?.gasPrice?.toString() || undefined,
chainSlug,
},
provider
);
console.log(
`Track message here: ${API_BASE_URL}/messages-from-tx?srcChainSlug=${chainSlug}&srcTxHash=${response?.hash}`
);
})
msgGasLimit,
payloadSize,
executionParams,
transmissionParams
);
})
);
Expand All @@ -227,10 +82,9 @@ export const sendMessagesToAllPaths = async (params: {
};

const main = async () => {
let senderChains = chains;
let receiverChains = chains;
let count = 1;
await sendMessagesToAllPaths({ senderChains, receiverChains, count });
let senderChains = [ChainSlug.OPTIMISM_SEPOLIA];
let receiverChains = [ChainSlug.ARBITRUM_SEPOLIA];
await sendMessagesToAllPaths({ senderChains, receiverChains });
};

main()
Expand Down
Loading
Loading