feat: add solana send usd example app (#1471)
* feat: add send usd app * fix: cargo tomls * fix: pre-commit * fix: improve code quality * fix: fix names and texts * fix: pre-commit * feat: add send usd example to monorepo * fix: connection endpoint for send usd example * fix: priceUpdateData * fix: packages * fix: remove unused variables * fix: packages * fix: test * fix: tests * fix: test * remove file * fix * go * Try removing test script * Remove npm run test from the text --------- Co-authored-by: Guillermo Bescos <g.bescos@yahoo.com>
This commit is contained in:
parent
b47ee059d7
commit
37ee3b46bd
File diff suppressed because it is too large
Load Diff
|
@ -24,6 +24,7 @@
|
|||
"target_chains/sui/cli",
|
||||
"target_chains/solana/sdk/js/solana_utils",
|
||||
"target_chains/solana/sdk/js/pyth_solana_receiver",
|
||||
"target_chains/solana/examples/send_usd/app",
|
||||
"contract_manager"
|
||||
],
|
||||
"dependencies": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
members = [
|
||||
"programs/pyth-push-oracle",
|
||||
"programs/pyth-solana-receiver",
|
||||
"examples/send_usd",
|
||||
"examples/send_usd/program",
|
||||
]
|
||||
|
||||
[features]
|
||||
|
|
|
@ -5,7 +5,7 @@ members = [
|
|||
"program_simulator/",
|
||||
"pyth_solana_receiver_sdk/",
|
||||
"common_test_utils",
|
||||
"examples/send_usd"
|
||||
"examples/send_usd/program"
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
|
@ -0,0 +1,41 @@
|
|||
# Getting Started with Create React App
|
||||
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
|
||||
### `npm start`
|
||||
|
||||
Runs the app in the development mode.\
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||
|
||||
The page will reload if you make edits.\
|
||||
You will also see any lint errors in the console.
|
||||
|
||||
### `npm run build`
|
||||
|
||||
Builds the app for production to the `build` folder.\
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.\
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `npm run eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
|
||||
|
||||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
|
||||
|
||||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
|
@ -0,0 +1,27 @@
|
|||
module.exports = {
|
||||
webpack: {
|
||||
configure: (config) => {
|
||||
// ...
|
||||
const fileLoaderRule = getFileLoaderRule(config.module.rules);
|
||||
if (!fileLoaderRule) {
|
||||
throw new Error("File loader not found");
|
||||
}
|
||||
fileLoaderRule.exclude.push(/\.cjs$/);
|
||||
// ...
|
||||
return config;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
function getFileLoaderRule(rules) {
|
||||
for (const rule of rules) {
|
||||
if ("oneOf" in rule) {
|
||||
const found = getFileLoaderRule(rule.oneOf);
|
||||
if (found) {
|
||||
return found;
|
||||
}
|
||||
} else if (rule.test === undefined && rule.type === "asset/resource") {
|
||||
return rule;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"name": "send_usd",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@pythnetwork/price-service-client": "^1.8.2",
|
||||
"@pythnetwork/pyth-solana-receiver": "^0.7.0",
|
||||
"@solana/wallet-adapter-base": "^0.9.23",
|
||||
"@solana/wallet-adapter-react": "^0.15.35",
|
||||
"@solana/wallet-adapter-react-ui": "^0.9.35",
|
||||
"@solana/wallet-adapter-wallets": "^0.19.10",
|
||||
"@solana/web3.js": "^1.90.0",
|
||||
"@testing-library/jest-dom": "^5.17.0",
|
||||
"@testing-library/react": "^13.4.0",
|
||||
"@testing-library/user-event": "^13.5.0",
|
||||
"@types/jest": "^27.5.2",
|
||||
"@types/node": "^16.18.82",
|
||||
"@types/react": "^18.2.0",
|
||||
"@types/react-dom": "^18.2.19",
|
||||
"buffer": "^6.0.3",
|
||||
"craco": "^0.0.3",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-scripts": "5.0.1",
|
||||
"typescript": "^4.9.5",
|
||||
"web-vitals": "^2.1.4"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "craco start",
|
||||
"build": "craco build",
|
||||
"eject": "craco eject"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"react-app",
|
||||
"react-app/jest"
|
||||
]
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta
|
||||
name="description"
|
||||
content="Web site created using create-react-app"
|
||||
/>
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"short_name": "React App",
|
||||
"name": "Create React App Sample",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
},
|
||||
{
|
||||
"src": "logo192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "logo512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
|
@ -0,0 +1,38 @@
|
|||
.App {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 40vmin;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
.App-logo {
|
||||
animation: App-logo-spin infinite 20s linear;
|
||||
}
|
||||
}
|
||||
|
||||
.App-header {
|
||||
background-color: #282c34;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: calc(10px + 2vmin);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.App-link {
|
||||
color: #61dafb;
|
||||
}
|
||||
|
||||
@keyframes App-logo-spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,122 @@
|
|||
import logo from "./logo.svg";
|
||||
import "./App.css";
|
||||
import {
|
||||
AnchorWallet,
|
||||
ConnectionProvider,
|
||||
WalletProvider,
|
||||
useAnchorWallet,
|
||||
} from "@solana/wallet-adapter-react";
|
||||
import {
|
||||
WalletDisconnectButton,
|
||||
WalletModalProvider,
|
||||
WalletMultiButton,
|
||||
} from "@solana/wallet-adapter-react-ui";
|
||||
import {
|
||||
PythSolanaReceiver,
|
||||
InstructionWithEphemeralSigners,
|
||||
} from "@pythnetwork/pyth-solana-receiver";
|
||||
import { Connection, PublicKey } from "@solana/web3.js";
|
||||
import * as buffer from "buffer";
|
||||
import { AnchorProvider, BN, Program, Wallet } from "@coral-xyz/anchor";
|
||||
import { SendUSDApp, IDL } from "./idl/send_usd_app";
|
||||
import { PriceServiceConnection } from "@pythnetwork/price-service-client";
|
||||
window.Buffer = buffer.Buffer;
|
||||
|
||||
require("@solana/wallet-adapter-react-ui/styles.css");
|
||||
|
||||
const SOL_PRICE_FEED_ID =
|
||||
"0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d";
|
||||
async function postPriceUpdate(connection: Connection, wallet?: AnchorWallet) {
|
||||
if (wallet === undefined) {
|
||||
return;
|
||||
} else {
|
||||
const priceServiceConnection = new PriceServiceConnection(
|
||||
"https://hermes.pyth.network/",
|
||||
{ priceFeedRequestConfig: { binary: true } }
|
||||
);
|
||||
const pythSolanaReceiver = new PythSolanaReceiver({
|
||||
connection,
|
||||
wallet: wallet as Wallet,
|
||||
});
|
||||
|
||||
const priceUpdateData = await priceServiceConnection.getLatestVaas([
|
||||
SOL_PRICE_FEED_ID,
|
||||
]);
|
||||
|
||||
const sendUsdApp = new Program<SendUSDApp>(
|
||||
IDL as SendUSDApp,
|
||||
new PublicKey("2e5gZD3suxgJgkCg4pkoogxDKszy1SAwokz8mNeZUj4M"),
|
||||
new AnchorProvider(connection, wallet, { commitment: "processed" })
|
||||
);
|
||||
|
||||
const transactionBuilder = pythSolanaReceiver.newTransactionBuilder({
|
||||
closeUpdateAccounts: false,
|
||||
});
|
||||
await transactionBuilder.addPostPriceUpdates([priceUpdateData[0]]);
|
||||
|
||||
await transactionBuilder.addPriceConsumerInstructions(
|
||||
async (
|
||||
getPriceUpdateAccount: (priceFeedId: string) => PublicKey
|
||||
): Promise<InstructionWithEphemeralSigners[]> => {
|
||||
return [
|
||||
{
|
||||
instruction: await sendUsdApp.methods
|
||||
.send(new BN(1))
|
||||
.accounts({
|
||||
destination: new PublicKey(
|
||||
"BTwXQZS3EzfxBkv2A54estmn9YbmcpmRWeFP4f3avLi4"
|
||||
),
|
||||
priceUpdate: getPriceUpdateAccount(SOL_PRICE_FEED_ID),
|
||||
})
|
||||
.instruction(),
|
||||
signers: [],
|
||||
},
|
||||
];
|
||||
}
|
||||
);
|
||||
|
||||
await pythSolanaReceiver.provider.sendAll(
|
||||
await transactionBuilder.buildVersionedTransactions({
|
||||
computeUnitPriceMicroLamports: 50000,
|
||||
}),
|
||||
{ skipPreflight: true }
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function Button() {
|
||||
const connection = new Connection("https://api.devnet.solana.com");
|
||||
const wallet = useAnchorWallet();
|
||||
|
||||
return (
|
||||
<button
|
||||
onClick={async () => {
|
||||
await postPriceUpdate(connection, wallet);
|
||||
}}
|
||||
>
|
||||
Send
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<ConnectionProvider endpoint={"https://api.devnet.solana.com"}>
|
||||
<WalletProvider wallets={[]} autoConnect>
|
||||
<WalletModalProvider>
|
||||
<div className="App">
|
||||
<header className="App-header">
|
||||
<img src={logo} className="App-logo" alt="logo" />
|
||||
<WalletMultiButton />
|
||||
<WalletDisconnectButton />
|
||||
<p>Click to send a 1 usd to the hard-coded account</p>
|
||||
<Button />
|
||||
</header>
|
||||
</div>
|
||||
</WalletModalProvider>
|
||||
</WalletProvider>
|
||||
</ConnectionProvider>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"version": "0.1.0",
|
||||
"name": "send_usd",
|
||||
"instructions": [
|
||||
{
|
||||
"name": "send",
|
||||
"accounts": [
|
||||
{
|
||||
"name": "payer",
|
||||
"isMut": true,
|
||||
"isSigner": true
|
||||
},
|
||||
{
|
||||
"name": "destination",
|
||||
"isMut": true,
|
||||
"isSigner": false,
|
||||
"docs": ["CHECK : Just a destination"]
|
||||
},
|
||||
{
|
||||
"name": "priceUpdate",
|
||||
"isMut": false,
|
||||
"isSigner": false
|
||||
},
|
||||
{
|
||||
"name": "systemProgram",
|
||||
"isMut": false,
|
||||
"isSigner": false
|
||||
}
|
||||
],
|
||||
"args": [
|
||||
{
|
||||
"name": "amountInUsd",
|
||||
"type": "u64"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,77 @@
|
|||
export type SendUSDApp = {
|
||||
version: "0.1.0";
|
||||
name: "send_usd";
|
||||
instructions: [
|
||||
{
|
||||
name: "send";
|
||||
accounts: [
|
||||
{
|
||||
name: "payer";
|
||||
isMut: true;
|
||||
isSigner: true;
|
||||
},
|
||||
{
|
||||
name: "destination";
|
||||
isMut: true;
|
||||
isSigner: false;
|
||||
docs: ["CHECK : Just a destination"];
|
||||
},
|
||||
{
|
||||
name: "priceUpdate";
|
||||
isMut: false;
|
||||
isSigner: false;
|
||||
},
|
||||
{
|
||||
name: "systemProgram";
|
||||
isMut: false;
|
||||
isSigner: false;
|
||||
}
|
||||
];
|
||||
args: [
|
||||
{
|
||||
name: "amountInUsd";
|
||||
type: "u64";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
export const IDL: SendUSDApp = {
|
||||
version: "0.1.0",
|
||||
name: "send_usd",
|
||||
instructions: [
|
||||
{
|
||||
name: "send",
|
||||
accounts: [
|
||||
{
|
||||
name: "payer",
|
||||
isMut: true,
|
||||
isSigner: true,
|
||||
},
|
||||
{
|
||||
name: "destination",
|
||||
isMut: true,
|
||||
isSigner: false,
|
||||
docs: ["CHECK : Just a destination"],
|
||||
},
|
||||
{
|
||||
name: "priceUpdate",
|
||||
isMut: false,
|
||||
isSigner: false,
|
||||
},
|
||||
{
|
||||
name: "systemProgram",
|
||||
isMut: false,
|
||||
isSigner: false,
|
||||
},
|
||||
],
|
||||
args: [
|
||||
{
|
||||
name: "amountInUsd",
|
||||
type: "u64",
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
};
|
|
@ -0,0 +1,13 @@
|
|||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
||||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
||||
monospace;
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import "./index.css";
|
||||
import App from "./App";
|
||||
import reportWebVitals from "./reportWebVitals";
|
||||
|
||||
const root = ReactDOM.createRoot(
|
||||
document.getElementById("root") as HTMLElement
|
||||
);
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
);
|
||||
|
||||
// If you want to start measuring performance in your app, pass a function
|
||||
// to log results (for example: reportWebVitals(console.log))
|
||||
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
||||
reportWebVitals();
|
|
@ -0,0 +1,4 @@
|
|||
<svg width="1176" height="1474" viewBox="0 0 1176 1474" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M734.994 589.59C734.994 670.991 669.173 736.992 587.994 736.992V884.393C750.352 884.393 881.994 752.392 881.994 589.59C881.994 426.789 750.352 294.787 587.994 294.787C534.473 294.787 484.209 309.121 440.994 334.254C353.099 385.188 293.994 480.456 293.994 589.59V1326.6L426.167 1459.13L440.994 1474V589.59C440.994 508.189 506.815 442.189 587.994 442.189C669.173 442.189 734.994 508.189 734.994 589.59Z" fill="#E6DAFE"/>
|
||||
<path d="M588 0C480.891 0 380.498 28.7336 294 78.9342C238.617 111.001 189.019 151.868 147 199.669C55.5156 303.603 0 440.138 0 589.606V1031.81L147 1179.21V589.606C147 458.672 203.779 341.004 294 260.003C336.418 222.002 386.216 192.002 441 172.669C486.942 156.268 536.474 147.402 588 147.402C831.537 147.402 1029 345.404 1029 589.606C1029 833.809 831.537 1031.81 588 1031.81V1179.21C912.783 1179.21 1176 915.21 1176 589.606C1176 264.003 912.783 0 588 0Z" fill="#E6DAFE"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1009 B |
|
@ -0,0 +1 @@
|
|||
/// <reference types="react-scripts" />
|
|
@ -0,0 +1,15 @@
|
|||
import { ReportHandler } from "web-vitals";
|
||||
|
||||
const reportWebVitals = (onPerfEntry?: ReportHandler) => {
|
||||
if (onPerfEntry && onPerfEntry instanceof Function) {
|
||||
import("web-vitals").then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
||||
getCLS(onPerfEntry);
|
||||
getFID(onPerfEntry);
|
||||
getFCP(onPerfEntry);
|
||||
getLCP(onPerfEntry);
|
||||
getTTFB(onPerfEntry);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
export default reportWebVitals;
|
|
@ -0,0 +1,5 @@
|
|||
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||
// allows you to do things like:
|
||||
// expect(element).toHaveTextContent(/react/i)
|
||||
// learn more: https://github.com/testing-library/jest-dom
|
||||
import "@testing-library/jest-dom";
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "react-jsx"
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
Loading…
Reference in New Issue