Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
856ac1a
chore: updated ccip evm getting started page
Genesis3800 Jan 6, 2026
737bc06
chore: split sections as requested, tentatively ready for review. Fin…
Genesis3800 Jan 6, 2026
e362d03
fix: fixed erroneous code sample to work out of the box
Genesis3800 Jan 6, 2026
b919ed2
Merge branch 'main' into priyank-ccip-getting-started-1
Genesis3800 Jan 6, 2026
a0021eb
chore: worked on draft further after Grace's input
Genesis3800 Jan 6, 2026
83d8848
Merge branch 'priyank-ccip-getting-started-1' of https://github.com/s…
Genesis3800 Jan 6, 2026
6199466
chore: minor copy change
Genesis3800 Jan 6, 2026
c1e87e8
chore: updated Hardhat section to use in-built keystore
Genesis3800 Jan 7, 2026
7a1de42
fix: restore package-lock.json to compile build
Genesis3800 Jan 7, 2026
37c2bcf
chore: restored Remix section to current working draft
Genesis3800 Jan 7, 2026
11d6068
chore: updated Foundry section to use in-built keystore
Genesis3800 Jan 7, 2026
f144beb
chore: some feedback addressed. Removed showbutton only component, re…
Genesis3800 Jan 13, 2026
138509a
chore: addressed most of Zubin's feedback
Genesis3800 Jan 13, 2026
33016c0
chore: minor aside note addition
Genesis3800 Jan 13, 2026
088e7ba
chore: removed IERC20 entirely and brought instructions to set Hardha…
Genesis3800 Jan 13, 2026
3338526
fix: tried to repair broken aside syntax
Genesis3800 Jan 13, 2026
351e58b
fix: tried to repair broken aside syntax 2
Genesis3800 Jan 13, 2026
7e1777c
fix: tried to repair broken aside syntax 3
Genesis3800 Jan 13, 2026
37ffad1
fix: tried to repair broken aside syntax 4
Genesis3800 Jan 13, 2026
66998f2
fix: tried to repair broken aside syntax 5
Genesis3800 Jan 13, 2026
f64043a
chore: minor copy tweak
Genesis3800 Jan 13, 2026
902965a
fix: Made fixes to ensure smooth dev experience
Genesis3800 Jan 16, 2026
4c96923
Merge branch 'main' into priyank-ccip-getting-started-1
Genesis3800 Jan 16, 2026
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions public/samples/CCIP/Sender.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pragma solidity 0.8.24;
import {IRouterClient} from "@chainlink/contracts-ccip/contracts/interfaces/IRouterClient.sol";

import {Client} from "@chainlink/contracts-ccip/contracts/libraries/Client.sol";
import {OwnerIsCreator} from "@chainlink/contracts@1.4.0/src/v0.8/shared/access/OwnerIsCreator.sol";
import {LinkTokenInterface} from "@chainlink/contracts@1.4.0/src/v0.8/shared/interfaces/LinkTokenInterface.sol";
import {OwnerIsCreator} from "@chainlink/contracts/src/v0.8/shared/access/OwnerIsCreator.sol";
import {LinkTokenInterface} from "@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.sol";

/**
* THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY.
Expand Down
Loading
Loading