From 403ceb20a039ffd3d6500d25775f094e6a50bc17 Mon Sep 17 00:00:00 2001 From: czl1378 Date: Thu, 10 Dec 2020 11:49:38 +0800 Subject: [PATCH] rename --- .gitignore | 2 +- README.md | 4 ++++ {intergration-example => integration-example}/Cargo.lock | 0 {intergration-example => integration-example}/Cargo.toml | 0 {intergration-example => integration-example}/Xargo.toml | 0 {intergration-example => integration-example}/client/demo.ts | 0 {intergration-example => integration-example}/client/main.ts | 0 .../client/util/accountFromMnemonic.ts | 0 .../client/util/new-account-with-lamports.ts | 0 .../src/entrypoint.rs | 0 {intergration-example => integration-example}/src/lib.rs | 0 11 files changed, 5 insertions(+), 1 deletion(-) rename {intergration-example => integration-example}/Cargo.lock (100%) rename {intergration-example => integration-example}/Cargo.toml (100%) rename {intergration-example => integration-example}/Xargo.toml (100%) rename {intergration-example => integration-example}/client/demo.ts (100%) rename {intergration-example => integration-example}/client/main.ts (100%) rename {intergration-example => integration-example}/client/util/accountFromMnemonic.ts (100%) rename {intergration-example => integration-example}/client/util/new-account-with-lamports.ts (100%) rename {intergration-example => integration-example}/src/entrypoint.rs (100%) rename {intergration-example => integration-example}/src/lib.rs (100%) diff --git a/.gitignore b/.gitignore index 517abdc..b808e10 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ /node_modules /program/target -/intergration-example/target +/integration-example/target yarn.lock \ No newline at end of file diff --git a/README.md b/README.md index 084cc38..24ef98f 100644 --- a/README.md +++ b/README.md @@ -95,3 +95,7 @@ yarn solink feed \ --feedAddress AUK9X6QLgauAUvEA3Ajc91fZytb9ccA7qVR72ErDFNg2 \ --oracleAddress 4vH5L2jSNXGfcCx42N4sqPiMzEbp1PaQjQ6XngDBu8zR ``` + +## Program Integration + +Please refer to the integration-example \ No newline at end of file diff --git a/intergration-example/Cargo.lock b/integration-example/Cargo.lock similarity index 100% rename from intergration-example/Cargo.lock rename to integration-example/Cargo.lock diff --git a/intergration-example/Cargo.toml b/integration-example/Cargo.toml similarity index 100% rename from intergration-example/Cargo.toml rename to integration-example/Cargo.toml diff --git a/intergration-example/Xargo.toml b/integration-example/Xargo.toml similarity index 100% rename from intergration-example/Xargo.toml rename to integration-example/Xargo.toml diff --git a/intergration-example/client/demo.ts b/integration-example/client/demo.ts similarity index 100% rename from intergration-example/client/demo.ts rename to integration-example/client/demo.ts diff --git a/intergration-example/client/main.ts b/integration-example/client/main.ts similarity index 100% rename from intergration-example/client/main.ts rename to integration-example/client/main.ts diff --git a/intergration-example/client/util/accountFromMnemonic.ts b/integration-example/client/util/accountFromMnemonic.ts similarity index 100% rename from intergration-example/client/util/accountFromMnemonic.ts rename to integration-example/client/util/accountFromMnemonic.ts diff --git a/intergration-example/client/util/new-account-with-lamports.ts b/integration-example/client/util/new-account-with-lamports.ts similarity index 100% rename from intergration-example/client/util/new-account-with-lamports.ts rename to integration-example/client/util/new-account-with-lamports.ts diff --git a/intergration-example/src/entrypoint.rs b/integration-example/src/entrypoint.rs similarity index 100% rename from intergration-example/src/entrypoint.rs rename to integration-example/src/entrypoint.rs diff --git a/intergration-example/src/lib.rs b/integration-example/src/lib.rs similarity index 100% rename from intergration-example/src/lib.rs rename to integration-example/src/lib.rs