Skip to content
Open
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: 2 additions & 2 deletions public/samples/APIRequests/APIConsumerForwarder.sol
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ contract APIConsumerForwarder is ChainlinkClient, ConfirmedOwner {

// Set the path to find the desired data in the API response, where the response format is:
// [{
// "id": "bitcoin",
// "symbol": btc",
// "id": "bitcoin",
// "symbol": "btc",
// ...
// },
//{
Expand Down
4 changes: 2 additions & 2 deletions public/samples/APIRequests/FetchFromArray.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ contract FetchFromArray is ChainlinkClient, ConfirmedOwner {

// Set the path to find the desired data in the API response, where the response format is:
// [{
// "id": "bitcoin",
// "symbol": btc",
// "id": "bitcoin",
// "symbol": "btc",
// ...
// },
//{
Expand Down
2 changes: 1 addition & 1 deletion public/samples/CCIP/TokenTransferor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ contract TokenTransferor is OwnerIsCreator {
returns (bytes32 messageId)
{
// Create an EVM2AnyMessage struct in memory with necessary information for sending a cross-chain message
// address(linkToken) means fees are paid in LINK
// address(linkToken) means fees are paid in LINK
Client.EVM2AnyMessage memory evm2AnyMessage = _buildCCIPMessage(_receiver, _token, _amount, address(s_linkToken));

// Get the fee required to send the message
Expand Down
4 changes: 2 additions & 2 deletions public/samples/DataStreams/ClientReportsVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ using SafeERC20 for IERC20;
*/

// ────────────────────────────────────────────────────────────────────────────
// Interfaces
// Interfaces
// ────────────────────────────────────────────────────────────────────────────

interface IVerifierProxy {
Expand Down Expand Up @@ -68,7 +68,7 @@ interface IFeeManager {
}

// ────────────────────────────────────────────────────────────────────────────
// Contract
// Contract
// ────────────────────────────────────────────────────────────────────────────

/**
Expand Down
2 changes: 1 addition & 1 deletion src/components/CCIP/ChainHero/LaneDetailsHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function LaneDetailsHero({
explorer,
inOutbound,
}: LaneDetailsHeroProps) {
// Map boolean values to display strings
// Map Out-of-Order flag to display text
const getOutOfOrderText = (value?: boolean) => {
if (value === true) return "Required"
if (value === false) return "Optional"
Expand Down
6 changes: 3 additions & 3 deletions src/scripts/link-check/linkcheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ declare global {
}

// ================================
// CONFIGURABLE CONSTANTS
// CONFIGURABLE CONSTANTS
// ================================
const BASE_URL = "http://localhost:4321"
const TEMP_DIR = `${cwd()}/temp`
Expand All @@ -17,7 +17,7 @@ const LOG_FILE = `${TEMP_DIR}/link-checker.log`
const LINK_CHUNK_SIZE = 150

// ================================
// HELPER FUNCTIONS
// HELPER FUNCTIONS
// ================================

/**
Expand Down Expand Up @@ -267,7 +267,7 @@ function checkChunkFile(linksFile: string, mode: "internal" | "external"): Promi
}

// ================================
// MAIN LOGIC
// MAIN LOGIC
// ================================

async function main() {
Expand Down