웹 수익 창출로의 여정 - 3일차
9677 단어 webmonetizationgftwhackathon
내가 한 일은 다음과 같습니다.
npx moneyd local
를 실행하여 로컬 테스트넷으로 moneyd 인스턴스를 시작합니다.다음으로 간단한 노드 프로젝트를 설정합니다.
npm init -y
npm i -S ilp-protocol-stream ilp-plugin @interledger/connection-tag-utils
mkdir src
touch src/index.js
// src/index.js
const { randomBytes } = require("crypto");
const { createServer, createConnection } = require("ilp-protocol-stream");
const { encode, decode } = require("@interledger/connection-tag-utils");
const createPlugin = require("ilp-plugin");
// Used for encoding and decoding connectionTag
const SECRET_KEY = randomBytes(32);
async function createStreamServer() {
const server = await createServer({ plugin: createPlugin() });
server.on("connection", (connection) => {
// connectionTag contains encrypted data, in this case about the user account
const { account } = JSON.parse(
decode(SECRET_KEY, connection.connectionTag)
);
connection.on("stream", (stream) => {
stream.setReceiveMax(10000);
stream.on("money", (amount) => {
console.log(`Received payment from ${account} for: ${amount}`);
});
});
});
return server;
}
async function sendMoney({ amount, destinationAccount, sharedSecret }) {
const connection = await createConnection({
plugin: createPlugin(),
destinationAccount,
sharedSecret,
});
const stream = connection.createStream();
await stream.sendTotal(amount);
await connection.end();
}
async function run() {
const server = await createStreamServer();
// Encode the user account here so we can use when we receive money
const data = encode(SECRET_KEY, JSON.stringify({ account: "userAccountId" }));
const { destinationAccount, sharedSecret } = server.generateAddressAndSecret(
data
);
const amount = 10000;
await sendMoney({ amount, destinationAccount, sharedSecret });
await server.close();
}
run().catch((err) => console.log(err));
마지막으로 실행하십시오.
npx nodemon src/index.js
Received payment from userAccountId for: 10000
ilp-plugin
와 같은 플러그인은 서버가 연결되는 위치를 결정합니다. env 변수ILP_BTP_SERVER
를 찾고 찾지 못하면 기본값은 btp+ws://localhost:7768
입니다. 이것은 현지 돈을 받는 인스턴스입니다. destinationAccount
및 sharedSecret
가 필요합니다. 가능한 다음 단계
sendMoney
에 있는 기능을 처리하는 브라우저 확장을 빌드합니다.Reference
이 문제에 관하여(웹 수익 창출로의 여정 - 3일차), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlbarrdahl/journey-into-web-monetization-day-3-7e4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)