Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 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
87 changes: 24 additions & 63 deletions contracts/ccip/ccip/Move.lock
Original file line number Diff line number Diff line change
@@ -1,68 +1,29 @@
# @generated by Move, please check-in and do not edit manually.
# Generated by move; do not edit
# This file should be checked in.

[move]
version = 3
manifest_digest = "900D9643E79866AA06ECB351246E58B53497B55977754457AD028BF34C1EE7A9"
deps_digest = "397E6A9F7A624706DBDFEE056CE88391A15876868FD18A88504DA74EB458D697"
dependencies = [
{ id = "Bridge", name = "Bridge" },
{ id = "ChainlinkManyChainMultisig", name = "ChainlinkManyChainMultisig" },
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]
version = 4

[[move.package]]
id = "Bridge"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/bridge" }
[pinned.testnet.ChainlinkCCIP]
source = { root = true }
use_environment = "testnet"
manifest_digest = "84B36231F9B4C76143B3894C4A078FD5F03DBF4F5717C1D43B1EE1C903556574"
deps = { ChainlinkManyChainMultisig = "ChainlinkManyChainMultisig", std = "MoveStdlib", sui = "Sui" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]

[[move.package]]
id = "ChainlinkManyChainMultisig"
[pinned.testnet.ChainlinkManyChainMultisig]
source = { local = "../../mcms/mcms" }

dependencies = [
{ id = "Bridge", name = "Bridge" },
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]

[[move.package]]
id = "MoveStdlib"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/move-stdlib" }

[[move.package]]
id = "Sui"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/sui-framework" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
]

[[move.package]]
id = "SuiSystem"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/sui-system" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
]

[move.toolchain-version]
compiler-version = "1.61.2"
edition = "2024"
flavor = "sui"

[env]

[env.testnet]
chain-id = "4c78adac"
original-published-id = "0x5ef4b483da6644c84aa78eae4f51a9bfb1fb4554d5134ac98892e931fcbdd6bf"
latest-published-id = "0x5ef4b483da6644c84aa78eae4f51a9bfb1fb4554d5134ac98892e931fcbdd6bf"
published-version = "1"
use_environment = "testnet"
manifest_digest = "5745706258F61D6CE210904B3E6AE87A73CE9D31A6F93BE4718C442529332A87"
deps = { std = "MoveStdlib", sui = "Sui" }

[pinned.testnet.MoveStdlib]
source = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/move-stdlib", rev = "22f9fc9781732d651e18384c9a8eb1dabddf73a6" }
use_environment = "testnet"
manifest_digest = "C4FE4C91DE74CBF223B2E380AE40F592177D21870DC2D7EB6227D2D694E05363"
deps = {}

[pinned.testnet.Sui]
source = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "22f9fc9781732d651e18384c9a8eb1dabddf73a6" }
use_environment = "testnet"
manifest_digest = "7AFB66695545775FBFBB2D3078ADFD084244D5002392E837FDE21D9EA1C6D01C"
deps = { MoveStdlib = "MoveStdlib" }
12 changes: 6 additions & 6 deletions contracts/ccip/ccip/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ edition = "2024"

[addresses]
ccip = "0x0"
mcms = "_"
mcms_owner = "_"
# mcms = "_"
# mcms_owner = "_"

[dev-addresses]
ccip = "0x1000"
mcms = "0x4000"
mcms_owner = "0x4010"
# [dev-addresses]
# ccip = "0x1000"
# mcms = "0x4000"
# mcms_owner = "0x4010"

[dependencies]
ChainlinkManyChainMultisig = { local = "../../mcms/mcms" }
9 changes: 9 additions & 0 deletions contracts/ccip/ccip/Published.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Generated by Move
# This file contains metadata about published versions of this package in different environments
# This file SHOULD be committed to source control

[published.testnet]
chain-id = "4c78adac"
published-at = "0x5ef4b483da6644c84aa78eae4f51a9bfb1fb4554d5134ac98892e931fcbdd6bf"
original-id = "0x5ef4b483da6644c84aa78eae4f51a9bfb1fb4554d5134ac98892e931fcbdd6bf"
version = 1
10 changes: 2 additions & 8 deletions contracts/ccip/ccip/tests/token_admin_registry_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -494,13 +494,10 @@ public fun test_register() {
@0x0,
);

let (_, _, token_type, _, _, type_proof, _, _) = registry::get_token_config_data(
let (_, _, _, _, _, type_proof, _, _) = registry::get_token_config_data(
&ref,
local_token,
);
assert!(
token_type == ascii::string(b"0000000000000000000000000000000000000000000000000000000000001000::token_admin_registry_tests::TOKEN_ADMIN_REGISTRY_TESTS"),
);
assert!(type_proof == type_name::into_string(type_name::with_defining_ids<TypeProof>()));

let ctx = scenario.ctx();
Expand Down Expand Up @@ -532,13 +529,10 @@ public fun test_register() {
TOKEN_ADMIN_ADDRESS_2,
);

let (_, _, token_type, _, _, type_proof, _, _) = registry::get_token_config_data(
let (_, _, _, _, _, type_proof, _, _) = registry::get_token_config_data(
&ref,
local_token,
);
assert!(
token_type == ascii::string(b"0000000000000000000000000000000000000000000000000000000000001000::token_admin_registry_tests::TOKEN_ADMIN_REGISTRY_TESTS"),
);
// Since TypeProof and TypeProof2 have the same package ID, the type proof should remain as TypeProof
assert!(type_proof == type_name::into_string(type_name::with_defining_ids<TypeProof>()));

Expand Down
67 changes: 21 additions & 46 deletions contracts/ccip/ccip_burn_mint_token/Move.lock
Original file line number Diff line number Diff line change
@@ -1,48 +1,23 @@
# @generated by Move, please check-in and do not edit manually.
# Generated by move; do not edit
# This file should be checked in.

[move]
version = 3
manifest_digest = "4DC3326595FABE494E783774185CE31BC6774421E3F52C403324FE448AF7964C"
deps_digest = "F9B494B64F0615AED0E98FC12A85B85ECD2BC5185C22D30E7F67786BB52E507C"
dependencies = [
{ id = "Bridge", name = "Bridge" },
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]

[[move.package]]
id = "Bridge"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "209f0da8e316", subdir = "crates/sui-framework/packages/bridge" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]

[[move.package]]
id = "MoveStdlib"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "209f0da8e316", subdir = "crates/sui-framework/packages/move-stdlib" }

[[move.package]]
id = "Sui"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "209f0da8e316", subdir = "crates/sui-framework/packages/sui-framework" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
]

[[move.package]]
id = "SuiSystem"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "209f0da8e316", subdir = "crates/sui-framework/packages/sui-system" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
]

[move.toolchain-version]
compiler-version = "1.54.1"
edition = "2024"
flavor = "sui"
version = 4

[pinned.testnet.MoveStdlib]
source = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/move-stdlib", rev = "22f9fc9781732d651e18384c9a8eb1dabddf73a6" }
use_environment = "testnet"
manifest_digest = "C4FE4C91DE74CBF223B2E380AE40F592177D21870DC2D7EB6227D2D694E05363"
deps = {}

[pinned.testnet.Sui]
source = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "22f9fc9781732d651e18384c9a8eb1dabddf73a6" }
use_environment = "testnet"
manifest_digest = "7AFB66695545775FBFBB2D3078ADFD084244D5002392E837FDE21D9EA1C6D01C"
deps = { MoveStdlib = "MoveStdlib" }

[pinned.testnet.ccip_burn_mint_token]
source = { root = true }
use_environment = "testnet"
manifest_digest = "5745706258F61D6CE210904B3E6AE87A73CE9D31A6F93BE4718C442529332A87"
deps = { std = "MoveStdlib", sui = "Sui" }
101 changes: 28 additions & 73 deletions contracts/ccip/ccip_dummy_receiver/Move.lock
Original file line number Diff line number Diff line change
@@ -1,80 +1,35 @@
# @generated by Move, please check-in and do not edit manually.
# Generated by move; do not edit
# This file should be checked in.

[move]
version = 3
manifest_digest = "55A17C07FF1C2AEA1C159B33184B1E5CB40333982C995EA441CAB37E2C9E9905"
deps_digest = "397E6A9F7A624706DBDFEE056CE88391A15876868FD18A88504DA74EB458D697"
dependencies = [
{ id = "Bridge", name = "Bridge" },
{ id = "ChainlinkCCIP", name = "ChainlinkCCIP" },
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]
version = 4

[[move.package]]
id = "Bridge"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/bridge" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]

[[move.package]]
id = "ChainlinkCCIP"
[pinned.testnet.ChainlinkCCIP]
source = { local = "../ccip" }
use_environment = "testnet"
manifest_digest = "84B36231F9B4C76143B3894C4A078FD5F03DBF4F5717C1D43B1EE1C903556574"
deps = { ChainlinkManyChainMultisig = "ChainlinkManyChainMultisig", std = "MoveStdlib", sui = "Sui" }

dependencies = [
{ id = "Bridge", name = "Bridge" },
{ id = "ChainlinkManyChainMultisig", name = "ChainlinkManyChainMultisig" },
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]
[pinned.testnet.ChainlinkCCIPDummyReceiver]
source = { root = true }
use_environment = "testnet"
manifest_digest = "6E4B7C0B5F9E16D641D4CDB6CD9298B2FA967B1F66313F90DDD6E53479EC7320"
deps = { ChainlinkCCIP = "ChainlinkCCIP", std = "MoveStdlib", sui = "Sui" }

[[move.package]]
id = "ChainlinkManyChainMultisig"
[pinned.testnet.ChainlinkManyChainMultisig]
source = { local = "../../mcms/mcms" }

dependencies = [
{ id = "Bridge", name = "Bridge" },
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
{ id = "SuiSystem", name = "SuiSystem" },
]

[[move.package]]
id = "MoveStdlib"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/move-stdlib" }

[[move.package]]
id = "Sui"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/sui-framework" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
]

[[move.package]]
id = "SuiSystem"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "c1f1ae650fb9f9248b39a569400b4420820868db", subdir = "crates/sui-framework/packages/sui-system" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
{ id = "Sui", name = "Sui" },
]

[move.toolchain-version]
compiler-version = "1.61.2"
edition = "2024"
flavor = "sui"

[env]

[env.testnet]
chain-id = "4c78adac"
original-published-id = "0x89515b65c1794c1665ad2805ebe47543547682e9dbff16b8df82a09f119d1b81"
latest-published-id = "0x89515b65c1794c1665ad2805ebe47543547682e9dbff16b8df82a09f119d1b81"
published-version = "1"
use_environment = "testnet"
manifest_digest = "5745706258F61D6CE210904B3E6AE87A73CE9D31A6F93BE4718C442529332A87"
deps = { std = "MoveStdlib", sui = "Sui" }

[pinned.testnet.MoveStdlib]
source = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/move-stdlib", rev = "22f9fc9781732d651e18384c9a8eb1dabddf73a6" }
use_environment = "testnet"
manifest_digest = "C4FE4C91DE74CBF223B2E380AE40F592177D21870DC2D7EB6227D2D694E05363"
deps = {}

[pinned.testnet.Sui]
source = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "22f9fc9781732d651e18384c9a8eb1dabddf73a6" }
use_environment = "testnet"
manifest_digest = "7AFB66695545775FBFBB2D3078ADFD084244D5002392E837FDE21D9EA1C6D01C"
deps = { MoveStdlib = "MoveStdlib" }
16 changes: 8 additions & 8 deletions contracts/ccip/ccip_dummy_receiver/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name = "ChainlinkCCIPDummyReceiver"
edition = "2024"

[addresses]
ccip = "_"
# ccip = "_"
ccip_dummy_receiver = "0x0"
mcms = "_"
mcms_owner = "_"
# mcms = "_"
# mcms_owner = "_"

[dev-addresses]
ccip = "0x1000"
ccip_dummy_receiver = "0x3010"
mcms = "0x4000"
mcms_owner = "0x4010"
# [dev-addresses]
# ccip = "0x1000"
# ccip_dummy_receiver = "0x3010"
# mcms = "0x4000"
# mcms_owner = "0x4010"

[dependencies]
ChainlinkCCIP = { local = "../ccip" }
9 changes: 9 additions & 0 deletions contracts/ccip/ccip_dummy_receiver/Published.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Generated by Move
# This file contains metadata about published versions of this package in different environments
# This file SHOULD be committed to source control

[published.testnet]
chain-id = "4c78adac"
published-at = "0x89515b65c1794c1665ad2805ebe47543547682e9dbff16b8df82a09f119d1b81"
original-id = "0x89515b65c1794c1665ad2805ebe47543547682e9dbff16b8df82a09f119d1b81"
version = 1
Loading
Loading