diff --git a/developers/arbitrum-integration.md b/developers/arbitrum-integration.md index fa4ba3a5e3b..61cd015520d 100644 --- a/developers/arbitrum-integration.md +++ b/developers/arbitrum-integration.md @@ -4,7 +4,7 @@ description: An overview of the integration of Arbitrum Orbit and Nitro with Cel # Introduction to Arbitrum rollups with Celestia as DA -![Celestia_Arbitrum](/img/Celestia_Arbitrum.jpeg) +![Celestia_Arbitrum](/img/Celestia-Arbitrum.png) ## Overview @@ -39,9 +39,10 @@ include: ### Blobstream -:::warning DRAFT -The Blobstream section is a draft, the integration with Blobstream -is a work in progress. +:::warning UPCOMING INTEGRATION +The Blobstream section is currently under development. Please note that +the integration with Blobstream is not yet finalized, but it is planned +for implementation in the near future. ::: The Celestia and Arbitrum integration also diff --git a/developers/arbitrum-smart-contract.md b/developers/arbitrum-smart-contract.md index 8a3714d55bf..ecfb8d93714 100644 --- a/developers/arbitrum-smart-contract.md +++ b/developers/arbitrum-smart-contract.md @@ -116,19 +116,19 @@ contract CounterTest is Test { This file performs unit testing on the contract we created in the previous section. Here's what the test is doing: -The contract includes a public "Counter" type variable called "counter". +- The contract includes a public "Counter" type variable called "counter". In the `setUp` function, it initializes a new instance of the "Counter" contract and sets the "number" variable to 0. -There are two test functions in the contract: `testIncrement` and +- There are two test functions in the contract: `testIncrement` and `testSetNumber`. -The `testIncrement` function tests the "increment" function of the +- The `testIncrement` function tests the "increment" function of the "Counter" contract by calling it and then asserting that the "number" in the "Counter" contract is 1. It verifies if the increment operation correctly increases the number by one. -The `testSetNumber` function is more generic. It takes an unsigned integer +- The `testSetNumber` function is more generic. It takes an unsigned integer argument 'x' and tests the "setNumber" function of the "Counter" contract. After calling the "setNumber" function with 'x', it asserts that the "number" in the "Counter" contract is equal to 'x'. This verifies that the diff --git a/developers/deploy-on-bubs.md b/developers/deploy-on-bubs.md index 7e2fafa38d7..c0b71338f24 100644 --- a/developers/deploy-on-bubs.md +++ b/developers/deploy-on-bubs.md @@ -109,19 +109,19 @@ contract CounterTest is Test { This file performs unit testing on the contract we created in the previous section. Here's what the test is doing: -The contract includes a public "Counter" type variable called "counter". +- The contract includes a public "Counter" type variable called "counter". In the `setUp` function, it initializes a new instance of the "Counter" contract and sets the "number" variable to 0. -There are two test functions in the contract: `testIncrement` and +- There are two test functions in the contract: `testIncrement` and `testSetNumber`. -The `testIncrement` function tests the "increment" function of the +- The `testIncrement` function tests the "increment" function of the "Counter" contract by calling it and then asserting that the "number" in the "Counter" contract is 1. It verifies if the increment operation correctly increases the number by one. -The `testSetNumber` function is more generic. It takes an unsigned integer +- The `testSetNumber` function is more generic. It takes an unsigned integer argument 'x' and tests the "setNumber" function of the "Counter" contract. After calling the "setNumber" function with 'x', it asserts that the "number" in the "Counter" contract is equal to 'x'. This verifies that the diff --git a/public/img/Celestia-Arbitrum.png b/public/img/Celestia-Arbitrum.png new file mode 100644 index 00000000000..d66ff56797f Binary files /dev/null and b/public/img/Celestia-Arbitrum.png differ diff --git a/public/img/Celestia_Arbitrum.jpeg b/public/img/Celestia_Arbitrum.jpeg deleted file mode 100644 index 8d0faba3cc3..00000000000 Binary files a/public/img/Celestia_Arbitrum.jpeg and /dev/null differ