Solidity & Vyper – Truffle
Overview
Truffle is a JavaScript based EVM development environment, testing framework, and asset pipeline.
Resources
Basic Usage
Truffle allows you to configure networks through a networks
object exported
in the truffler-.config.js
file. Here’s an example of adding networks for
Ethereum and Polygon, both mainnet and testnet.
const PORTAL_ID = "<PORTAL-ID>"
module.exports = {
networks: {
mainnet: {
host: `https://eth-mainnet.gateway.pokt.network/v1/lb/${PORTAL_ID}`,
port: 80,
network_id: "1",
},
goerli: {
host: `https://eth-goerli.gateway.pokt.network/v1/lb/${PORTAL_ID}`,
port: 80,
network_id: "5",
},
polygon: {
host: `https://poly-mainnet.gateway.pokt.network/v1/lb/${PORTAL_ID}`,
port: 80,
network_id: "137",
},
mumbai: {
host: `https://poly-mumbai.gateway.pokt.network/v1/lb/${PORTAL_ID}`,
port: 80,
network_id: "80001",
}
}
};
Note, the chainId is not related to the Pocket Relay Chain ID, but rather, the
value returned by eth_chainId
.
From here, you’ll be able to connect your truffle console to Pocket as follows:
truffle console --network mainnet