我正在尝试访问 SOLANA API,特别是从这个 GitHub: https ://github.com/solana-labs/solana-web3.js 使用所有这些操作: https ://solana-labs.github.io/solana- web3.js/ 并在此处阅读 Solana 文档: https ://docs.solana.com/developing/clients/jsonrpc-api我也成功安装了 Solana CLI,如下所示:https ://docs.solana.com/ cli/install-solana-cli-tools 这是我在 Linux 环境中的代码:
sudo apt update
git clone https://github.com/solana-labs/solana-web3.js.git
cd solana-web3.js
yarn add @solana/web3.js
我没有收到任何错误,一切正常,所有依赖项和模块都已安装。我像这样创建javascript文件:
const solanaWeb3 = require('@solana/web3.js');
console.log(solanaWeb3);
我的问题是我如何最终连接到 API 并使用所有这些方法: https ://solana-labs.github.io/solana-web3.js/ 。
我需要使用 curl 还是如何连接到 API?