Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEVSVCS-1213: remove esmify #83

Merged
merged 3 commits into from
Feb 12, 2025
Merged
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
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Makefile

# Define the default target
.PHONY: all
all: install

# Install Foundry and npm packages
.PHONY: install
install:
@echo "Installing Foundry..."
curl -L https://foundry.paradigm.xyz | bash
@echo "Installing npm packages..."
npm install

# Clean up the project
.PHONY: clean
clean:
@echo "Cleaning up..."
rm -rf node_modules
rm -rf dist
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ Up-to-date documentation on Chainlink Functions can be found [here](https://docs

Install Node.js version `18.18.0` or higher _and_ Deno version `1.36.0` or higher.

Starting from ABOVE 0.3.2, Anvil is required to run local tests. A `Makefile` is included to automate the installation and build process. Simply run `make install` to install Anvil and all npm packages.

Chainlink Functions requires signing a terms of service agreement before creating a billing subscription. See this [getting started](https://docs.chain.link/chainlink-functions/getting-started) section in the docs.

## Functions Billing Subscription Management
Expand Down Expand Up @@ -593,14 +595,16 @@ return Functions.encodeString(escape("$hello*world?"));

### Local Functions Testnet

> **Note**
> Starting from above 0.3.2, Anvil is REQUIRED to use `localFunctionsTestnet`. Please run `make install` to install Anvil and all the necessary dependencies.

For debugging smart contracts and the end-to-end request flow on your local machine, you can use the `localFunctionsTestnet` function. This creates a local testnet RPC node with a mock Chainlink Functions contracts. You can then deploy your own Functions consumer contract to this local network, create and manage subscriptions, and send requests. Request processing will simulate the behavior of an actual DON where the request is executed 4 times and the discrete median response is transmitted back to the consumer contract. (Note that Chainlink Functions uses the following calculation to select the discrete median response: `const medianResponse = responses[responses.length - 1) / 2]`).

The `localFunctionsTestnet` function takes the following values as arguments.

```
const localFunctionsTestnet = await startLocalFunctionsTestnet(
simulationConfigPath?: string // Absolute path to config file which exports simulation config parameters
options?: ServerOptions, // Ganache server options
port?: number, // Defaults to 8545
)
```
Expand All @@ -623,10 +627,10 @@ export const maxQueryResponseBytes = 2097152 // Maximum size of incoming HTTP re

```
{
server: Server // Ganache server
anvil: Anvil // Anvil instance
adminWallet: { address: string, privateKey: string } // Funded admin wallet
getFunds: (address: string, { weiAmount, juelsAmount }: { weiAmount?: BigInt | string; juelsAmount?: BigInt | string }) => Promise<void> // Method which can be called to send funds to any address
close: () => Promise<void> // Method to close the server
close: () => Promise<void> // Method to stop the Anvil instance
donId: string // DON ID for simulated DON
// The following values are all Ethers.js contract types: https://docs.ethers.org/v5/api/contract/contract/
linkTokenContract: Contract // Mock LINK token contract
Expand Down
Loading