Skip to content

Commit

Permalink
chore: remove repetitive words (#1868)
Browse files Browse the repository at this point in the history
Signed-off-by: verytrap <wangqiuyue@outlook.com>
  • Loading branch information
verytrap authored Apr 11, 2024
1 parent 6f81ef1 commit dec7abc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Chainlink Functions is available on [Arbitrum Mainnet](/chainlink-functions/supp
See the [supported networks](/chainlink-functions/supported-networks) page for more information.

- New features:
- You must accept the Chainlink Functions Terms of Service (ToS) before using Chainlink Functions. The ToS must be accepted by subscriptions owners. Once accepted, the ToS is transitive to all contracts belong the the subscription, so your end-users don't have to accept the ToS to interact with your contracts. Read this [guide](/chainlink-functions/resources/subscriptions#create-a-subscription) to learn more.
- You must accept the Chainlink Functions Terms of Service (ToS) before using Chainlink Functions. The ToS must be accepted by subscriptions owners. Once accepted, the ToS is transitive to all contracts belong the subscription, so your end-users don't have to accept the ToS to interact with your contracts. Read this [guide](/chainlink-functions/resources/subscriptions#create-a-subscription) to learn more.
- The Chainlink Functions Subscription Manager is available at [functions.chain.link](https://functions.chain.link/). The Functions Subscription Manager lets you manage your subscriptions.
- Chainlink Functions uses threshold encryption to handle users' encrypted secrets. Read the [secrets conceptual page](/chainlink-functions/resources/secrets) to learn more.
- Users can host their encrypted secrets within the DON. This hosting method is called DON-hosted. Read the [secrets conceptual page](/chainlink-functions/resources/secrets) to learn more.
Expand Down
2 changes: 1 addition & 1 deletion src/content/chainlink-nodes/node-versions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ To disable connectivity checking completely, set `BLOCK_HISTORY_ESTIMATOR_CHECK_

For backward compatibility, you can bypass this check at your own risk by setting `SKIP_DATABASE_PASSWORD_COMPLEXITY_CHECK=true`.

- The following environment variables are deprecated and will be removed in a future release. They are are replaced by the following command line arguments:
- The following environment variables are deprecated and will be removed in a future release. They are replaced by the following command line arguments:

- `INSECURE_SKIP_VERIFY`: Replaced by the `--insecure-skip-verify` CLI argument
- `CLIENT_NODE_URL`: Replaced by the `--remote-node-url URL` CLI argument
Expand Down
2 changes: 1 addition & 1 deletion src/content/quickstarts/circuit-breaker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ To set up this example, clone the source and install the required packages.

1. Click **Deploy** and confirm the transaction in your wallet.

Next, deploy the the `CircuitBreaker.sol` contract:
Next, deploy the `CircuitBreaker.sol` contract:

1. Open the `CircuitBreaker.sol` contract in Remix:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Complete the following tasks to test your VRF v2 consumer locally:
1. Deploy the [VRFV2Wrapper](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/VRFV2Wrapper.sol) contract.
1. Call the VRFV2Wrapper [setConfig function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/VRFV2Wrapper.sol#L119) to set wrapper specific parameters.
1. Fund the VRFv2Wrapper subscription.
1. Call the the VRFCoordinatorV2Mock [addConsumer function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2Mock.sol#L230) to add the wrapper contract to your subscription.
1. Call the VRFCoordinatorV2Mock [addConsumer function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2Mock.sol#L230) to add the wrapper contract to your subscription.
1. Deploy your VRF consumer contract.
1. Fund your consumer contract with LINK tokens.
1. Request random words from your consumer contract.
Expand Down
2 changes: 1 addition & 1 deletion src/content/vrf/v2/subscription/examples/test-locally.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Complete the following tasks to test your VRF v2 consumer locally:
1. Call the VRFCoordinatorV2Mock [createSubscription function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2Mock.sol#L194) to create a new subscription.
1. Call the VRFCoordinatorV2Mock [fundSubscription function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2Mock.sol#L156) to fund your newly created subscription. **Note**: You can fund with an arbitrary amount.
1. Deploy your VRF consumer contract.
1. Call the the VRFCoordinatorV2Mock [addConsumer function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2Mock.sol#L230) to add your consumer contract to your subscription.
1. Call the VRFCoordinatorV2Mock [addConsumer function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2Mock.sol#L230) to add your consumer contract to your subscription.
1. Request random words from your consumer contract.
1. Call the VRFCoordinatorV2Mock [fulfillRandomWords function](https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2Mock.sol#L108) to fulfill your consumer contract request.

Expand Down

0 comments on commit dec7abc

Please sign in to comment.