使用测试网 您已经听说过测试网,它是一个独立的网络,用于测试开发人员可能遇到的所有问题。 该机器人会询问您的地址,因此您需要有一个可以测试 TON 币的钱包。你可能熟悉 Tonhub 和 Tonkeeper 等钱包。Tonkeeper 和 Tonhub 都嵌入了测试网功能。你可以同时使用 Tonhub 或 Tonkeeper,但为了方便举例说明,我将使用 TonWhales 团队制作的 Tonhub 钱包。它同时适用于 iOS 和 Android. 请点击其中一个链接,将其下载到您的手机上。 安装好 Tonhub 后,点击底部菜单最后一个标签上的应用程序版本号约 7 次,该标签上有一个名为 "更多 "的齿轮图标。然后,点击网络选择器,将网络切换到测试网(Testnet)。现在,返回 "主页 "选项并复制您的 TON 币钱包地址--使用此地址在以下设备上接收测试网代币 testnet giver Telegram bot. * n2 k9 }. \4 O( G0 Z' x M1 b
部署脚本现在,让我们在我们的 scripts 资料夹 - deploy.ts. 大家都记得,要部署合约,我们需要: 计算合约的未来地址 创建合约的初始状态(代码和初始数据) 编写一条携带初始状态的信息 向区块链上的合约未来地址发送所编写的信息
P- g A1 P. \
下面是我们的部署脚本在实际发送部署信息之前的样子: - import {hex} from "../build/main.compiled.json";9 y7 @) P A* d e4 M
- import {Cell, contractAddress, StateInit} from "ton";1 v0 u! q p: z7 b
9 J7 }; Z; U; w- async function deployScript() {
/ X' U9 N# A/ q; l' w7 c! Q! i - $ O1 Y9 c/ i- d# { h
- const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];
& K/ ?! f6 m# b8 V J% ?. Y1 T- f - const dataCell = new Cell();
8 A$ p2 e6 z. h' n - $ H0 b- N) R' c" n+ y) V2 `
- const stateInit: StateInit = {
# S+ ~0 Z: o2 c" l- F# D* a, s - code: codeCell,& x% r; M* J& g# F! I
- data: dataCell,
- `; F6 i# y- X2 U, R- \ - };3 z, f" k, R3 a% G2 `; v) c' N
5 @! I4 F+ B8 }% d' t- const stateInitBuilder = beginCell();7 k$ D, B* E6 m1 Z* h4 ~: @
- storeStateInit(stateInit)(stateInitBuilder);
V9 {5 I$ h/ n/ A$ J0 B - const stateInitCell = stateInitBuilder.endCell();
3 c3 {1 n4 D0 R- s, }9 m6 L' k! [ - 6 _ `. Q! S0 W4 Q# F1 ?
- const address = contractAddress(0, {4 G( F. v6 S$ g1 v! L! r2 f
- code: codeCell," i0 u& D) j) ]! `1 ]
- data: dataCell,
9 z" e9 X1 i# j# J- W- m C1 ^ - });2 j- _3 _& ]4 S( ^! Q8 A
-
N/ F# i# u! u2 R% a - }
( H" s, n* y: y - ' m; r, x% `9 p/ H5 o0 y' Z
- deployScript();
复制代码我们已经熟悉了所有类型和实体,只有一个除外 - StateInit 类型和 storeStateInit 功能. storeStateInit 是由 @ton/core 库,它可以帮助我们创建一个包含 StateInit 的Cell。 让我来详细介绍一下这些线路的情况: - const stateInit: StateInit = {, i6 e3 G+ z$ n* z, Q" \
- code: codeCell,- y, l' u2 `5 I2 `- v' d ~5 h7 T* c
- data: dataCell," m9 T" `- E- w8 p& V
- };
7 ]( |7 G* ~6 j) J
, q, h5 H) l( [& W, a) ~4 H- const stateInitBuilder = beginCell();3 R: A% ^( q0 I! D/ M4 M2 b
- storeStateInit(stateInit)(stateInitBuilder); M% h5 W: z: N( _1 p
- const stateInitCell = stateInitBuilder.endCell();
复制代码这里使用的一个重要概念是构建器(Builder)。要成功创建 FunC 合约并使用 TypeScript 对其进行操作,您需要了解这一点。正如你在代码中看到的,我们使用 beginCell 函数返回一个 Builder(你可以悬停在 stateInitBuilder 变量上查看它的类型)。 我们将 stateInit 传递到 storeStateInit - 这样就有了一个函数,可以将提供的 StateInit 写入构建器。我们立即执行该函数,并传递上一步创建的构建器。 此时,我们已经有了一个已写入所需 InitState 数据的构建器。我们只需运行其 .endCell() 函数,就能将构建器最终转化为一个包含 StateInit 的单元格。 我们可以通过手动构建这样一个Cell来达到同样的效果。代码如下: - const stateInitCell = beginCell()
5 b8 d, A, f3 L0 g" W4 e b4 U$ y - .storeBit(false) // split_depth - Parameter for the highload contracts, defines behaviour of splitting into multiple instances in different shards. Currently StateInit used without it.
! Q# ]4 V: k; ~. x! s) F, ? - .storeBit(false) // special - Used for invoking smart contracts in every new block of the blockchain. Available only in the masterchain. Regular user's contracts used without it." p, |( ] G1 a
- .storeMaybeRef(codeCell) // code - Contract's serialized code.* W, A7 X3 T7 x3 r3 ?& v" r2 q! j$ ?
- .storeMaybeRef(dataCell) // data - Contract initial data.# _: f3 W" Z3 j: R+ w: D2 |
- .storeUint(0, 1) // library - Currently StateInit is used without libs
复制代码 不过,这需要我们深入了解 InitState 的实体。您可以阅读 here in documentation.
8 }/ v/ V4 Y0 X. i6 v6 k
" e" T" `+ z' h3 o4 F' g使用 StateInit 创建信息为了发送信息,我们需要本课开始时安装的 Tonhub 钱包。Tonhub 有一个很酷的应用程序接口(API),可以实现与钱包的深度链接,这意味着我们可以编写一个链接,其中包含发送消息所需的所有参数,然后在 Tonhub 中打开这个链接,签署发送消息的实际交易。这需要安装一个 qs 库,它将帮助我们编写带有复杂参数的 url。 运行以下命令进行安装: - yarn add qs @types/qs --dev
, [* f6 W7 M+ a" r3 t0 k- {
复制代码因为我们的 Tonhub 钱包在手机上,而链接在桌面上,所以我们只需生成该链接的二维码,然后在终端中显示,用 Tonhub 扫描并发送部署信息。为此,我们将使用 qrcode-terminal 库。 运行以下命令进行安装: - yarn add qrcode-terminal @types/qrcode-terminal --dev6 l& p5 g# w# {: }% F
复制代码有了这两个库的帮助,我们的部署脚本现在看起来就像这样: . {5 N% Y: l: C5 {- X( n
- import { hex } from "../build/main.compiled.json"; P+ `; U- i2 ?1 n
- import { beginCell, Cell, contractAddress, StateInit, storeStateInit, toNano } from "ton";
: x# o+ @# C; d. a% S4 I; B - import qs from "qs";
6 _! h1 V- `( p% o: c) @! M - import qrcode from "qrcode-terminal";- c- e8 } h: ~: C0 x
- " W; F4 p: f$ Y
# `* x5 u/ j7 N j8 }' e* S1 K8 h6 H1 C0 N- async function deployScript() {
( h9 ^9 r; r" C/ W! \ - const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];0 C! m6 {8 e: g4 C
- const dataCell = new Cell();
+ a3 W1 d5 ` u& ^3 C. @( U
' W/ T( q$ h! I- const stateInit: StateInit = {
& w* n6 e5 r& @4 L - code: codeCell,7 y" v, J: O7 X7 } g/ F" |
- data: dataCell,
. {; E5 @8 n. @/ D# Z - };1 m9 Y, |+ f8 x5 M
- " `1 ?) V9 G' r8 D5 O! |4 b
- const stateInitBuilder = beginCell();
, w( T% v8 z; b$ |3 Z' x - storeStateInit(stateInit)(stateInitBuilder); U* ~& O& s" x8 [
- const stateInitCell = stateInitBuilder.endCell();! J7 g ~1 ?( A4 `. v/ p! z9 ?
- * F% W0 P1 J# Y: @: p: l# A
- const address = contractAddress(0, {
- f' f7 T6 }& W1 r& O+ M - code: codeCell,$ L5 \9 W6 R, R( B4 l
- data: dataCell,
# O; D' q- X# \+ `* ~0 D# H - });
3 I4 y p" {/ j! @+ M - ! I# K/ x( v' Y. o0 n
- let link =
6 G3 Q+ l8 e# k/ B0 p$ G b - `https://tonhub.com/transfer/` +
6 K) w X1 B' }) q3 p$ \7 l - address.toString({
5 Y8 H+ L& ^# ?0 d% ^ - testOnly: true,
5 k. h6 K/ S6 U; c& A - }) + "?" +6 i# Y* D7 `0 D% o- Q" @
- qs.stringify({
7 o7 [* e) E- V5 P! o* O# J. x - text: "Deploy contract",
1 d2 u4 O2 s! N, w6 Y1 D9 @" z - amount: toNano(1).toString(10),& i: p: A2 t3 g; [8 g5 l t
- init: stateInitCell.toBoc({ idx: false }).toString("base64")," G( K8 c n( j
- });( f- }# [6 O1 y2 E3 J S' L
- 6 {- A* ~9 A8 V0 k) P+ [
- qrcode.generate(link, { small: true }, (code) => {; `3 B: y) j( H. `4 Z
- console.log(code);+ M2 x' N) ~, Z
- });
5 I' K0 |# P) a7 B- S - }0 H$ `" {# d2 A6 @( d0 P6 s
/ k ?) {# J7 M# s- deployScript();
复制代码正如我们在之前的课程中所做的那样,让我们添加信息丰富的控制台日志,因为你可能想在所有项目中重复使用这些脚本。 现在,我们的代码将如下所示: - import { hex } from "../build/main.compiled.json";: d' K- D) d# H7 b2 G% t
- import {
! q) S% C0 e5 v: i" _4 {/ X/ M5 |6 ? - beginCell, t: ` L4 U# X: Y
- Cell,9 K3 C/ j$ G; Q: H: _
- contractAddress,
0 N" p% B" \) k. l! G1 e5 l - StateInit,. m) D6 E+ ?. c+ y
- storeStateInit,0 d: x5 r6 P, x2 S a+ a5 R% b
- toNano,! E6 j) H( L* J) @3 n
- } from "ton";" V- ?2 {* Y; p& P, s
- import qs from "qs";6 H. @. }. `' c) x" M. w- `
- import qrcode from "qrcode-terminal";
* U+ w0 Q* D; _' d0 t- c- B! K - 8 C/ g) f5 T2 F! }/ w, _8 l
- + G( k0 O( x9 q2 Z* y) E7 y
- async function deployScript() {4 m6 _+ h. D$ G& ~
- console.log(( O' X4 n% q# d0 s. T- B
- "================================================================="
0 l3 l/ q! m4 l+ {" i: \; ~ - );
. j- m3 w6 ]) Y) H# |9 d" N - console.log("Deploy script is running, let's deploy our main.fc contract...");
- s: U5 r- O: N# N7 m5 Q2 Y! w
2 E) C) Q- K8 \. j% f/ |- const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];' n; Q% ^) A( t0 U; u/ Y9 A$ c. S
- const dataCell = new Cell();
9 ^; c" P+ t- k' J' m - 6 }8 U* @/ Z9 D% D; X
- const stateInit: StateInit = {
) ~) p U% L! t! |% R/ a - code: codeCell,
; ?, y; p. I5 ]" I* U1 d - data: dataCell,- S, C$ a' Z! C4 m+ ^
- };
. L9 |% w+ B8 Q) ]1 w: u" V. _
3 D0 I0 _1 {. j5 S% l3 Y- const stateInitBuilder = beginCell();. W8 w" r- Q/ Y
- storeStateInit(stateInit)(stateInitBuilder);4 c+ Z" Q" h& F3 H& D
- const stateInitCell = stateInitBuilder.endCell();
) Q- j8 ^! L8 D* V* p8 j. Z! {8 n
; i- n2 w8 z+ c& x7 l' d- const address = contractAddress(0, {
f X* U0 I# h4 G" I+ Z - code: codeCell,
* C2 V# Z& v+ q& G* N w* e" i6 y- u - data: dataCell,$ t" ^7 t; _0 X% W
- });3 c) \# N3 v6 q
- & e$ c i" r6 [' J
- console.log(" h: Z, d s; {
- `The address of the contract is following: ${address.toString()}`3 U) B8 @' e. b7 b" n1 O3 {) i
- );
3 x$ ], l8 r( V# Q+ P/ v - console.log(`Please scan the QR code below to deploy the contract:`);
( f* _0 Y# T X" z; a. i# A" ?
" a9 u" K8 o: A$ O! y# a+ E+ C( S- let link =! ?; |- b4 ?( p9 D0 F6 h0 ?
- `https://tonhub.com/transfer/` +2 v1 L7 a" K9 }& }
- address.toString({2 u+ v+ W2 z6 w; {- X
- testOnly: true,3 v1 O$ A5 [+ S% {0 z9 Z% \
- }) +
* O9 d, p* x/ X - "?" +8 Z: ^8 A- L6 j
- qs.stringify({. k6 ~5 L' c. Z6 S2 f4 Y/ W$ }
- text: "Deploy contract",
! l* ?; y8 H" a E0 l* q - amount: toNano(1).toString(10),
" B5 @2 b! s: R - init: stateInitCell.toBoc({ idx: false }).toString("base64"),
2 {) ^: z( P& n% ?* ? x m! R - });9 V6 \0 }( V- o
- 0 e1 A* Z" j3 \- ^4 s1 v0 i
- qrcode.generate(link, { small: true }, (code) => {
) t' x8 m) G6 [3 y' ^ - console.log(code);
9 h! c0 k5 z4 _- C G: C2 \& @! P: ^/ S& g - });. |0 g5 Z9 j" t3 A- o
- }
# ^ G8 r1 q( y5 }( q. C - 0 L% R% n/ m, @3 n) Z/ e! Q: H) n
- deployScript();
复制代码 同样,我们将立即在 package.json 文件中创建另一个脚本运行快捷方式。让我们把这个脚本叫做 deploy:testnet,这样以后我们就可以在部署主网时使用 deploy 这个名字了:
' E5 ]. j: y9 \ K# G9 y' n- {
; J) o8 f5 ]" _6 O3 S4 e# h - ... our previous package.json keys
9 S7 H( \' H) I7 T5 }! h - "scripts": {* g9 X+ _$ s! g3 z7 [$ u
- ... previous scripts keys
5 O3 d: Q/ _/ I& E - "deploy:testnet": "yarn compile && ts-node ./scripts/deploy.ts"
, Q0 G" ^6 n3 I" M/ Y& I, z: b - }4 x; U6 V- {, Z: G8 M
- }
复制代码让我们运行部署脚本 (yarn deploy:testnet) 并使用通汇手机应用程序扫描二维码。确保您在 Tonhub 的这个钱包里有您的测试网 TON 代币。 在浏览器中打开测试网版本,并在搜索栏中输入智能合约的地址。这将打开智能合约页面。如果您已经按照我说的一步步完成了所有操作,您将会看到一笔 1 Ton的单笔交易,该交易已经将我们的合约部署到了区块链上。 恭喜您 您的第一份 TON 智能合约已部署完毕! 部署后的链上测试是的,你已经成功了,但还有一件重要的事情需要你认真对待,那就是部署后的链上测试。一旦我们的合约部署完成,我们要确保功能的行为符合我们的预期。为此,我们将编写一个脚本来实际测试我们的功能。 不过,在运行该测试之前,我们需要确保我们的合约已经部署。为此,我们需要访问 TON 区块链的当前状态。有一个很棒的工具可以让我们连接到几乎所有可能类型的 TON 区块链 API - TON Access 由 Orbs team 提供. 首先,创建一个文件 onchaintest.ts 在我们的 scripts 文件夹。 在 package.json 文件中添加脚本运行快捷方式: - {
* }9 z7 f: V' J% L2 H, x - ... our previous package.json keys
7 Z' J" I% h; e# ^4 h - "scripts": {
- K8 S( P% B) l2 Q9 C - ... previous scripts keys! G" W6 u$ h! W( W, d( d
- "onchaintest": "ts-node ./scripts/onchaintest.ts"
5 J" w" y! Z E& u9 K - }
# R( L: x4 S9 A6 | `/ ?& C - }
复制代码要检查合约是否已部署,我们需要它的地址。我们希望我们的设置使用方便,只需最少的手工操作,因此我们不会对部署前看到的地址进行手动编码。我们将独立计算地址,因为我们知道地址可能会根据合约代码及其初始状态数据发生变化。 当我们要获取合约的地址时,我们的初始代码就是这样的: - import { Cell, contractAddress } from "ton";7 Q) q3 [: _+ K$ r
- import { hex } from "../build/main.compiled.json";, O1 S: L" i5 j* [+ _. D
8 H/ [, h T+ W+ X/ ]' B- async function onchainTestScript() {+ [# r/ x4 G7 D$ W. a q
- const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];% s& d, O9 k6 f0 z& N1 L
- const dataCell = new Cell();
9 h' x r) \; ~3 L3 L1 {
! u1 I9 i0 M* ?5 N5 m% J0 x- const address = contractAddress(0, {; q: [; G( f& w \0 O' F& [) K
- code: codeCell,
^% U8 s/ z8 ~: T - data: dataCell,
5 L8 }/ m! X! V6 z: Z( [. k4 x - });9 y+ k5 q( F! U
- }3 I; t% A0 l, ]) U
0 N# Q- Z0 S: I* W" ?/ }- onchainTestScript();
复制代码 首先安装 @orbs-network/ton-access 库:
- |6 E! R. h V0 d6 S [- yarn add @orbs-network/ton-access --save
* c7 J2 e' w/ d& P) b' L1 g
复制代码现在,我们更新代码,加入通过地址检查网络上合约状态的逻辑:
$ s2 ?; O( C7 n% u7 D( V: U) {7 i- import { Cell, contractAddress } from "ton";2 J6 I0 y7 Z, }$ f; Z; T
- import { hex } from "../build/main.compiled.json";
8 x" \- b6 x2 [8 f5 ] - import { getHttpV4Endpoint } from "@orbs-network/ton-access";
j7 ?# P/ U9 ?8 o- G
9 H! L4 ]* n0 H* K' g& r- async function onchainTestScript() {% [4 O# F; z8 D
- const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];
1 o* N" B3 t; {& e9 { - const dataCell = new Cell();$ g0 g3 g0 s' P+ j" e/ w# Z
* ?4 ~ ^8 T+ x) D% M# m; V: q- const address = contractAddress({. W( T. I% N. \3 I, p y* y: P
- workchain: 0,
# I( z# e# q7 c. |/ u - initialCode: codeCell,
% P% A j. A& b. a1 ^ - initialData: dataCell,
+ P+ @* q3 L- l: f - });, f( a; e; S) Z, N1 T5 J' u
-
# E4 Y$ O% k7 L+ s - const endpoint = await getHttpV4Endpoint({
# I v5 O: \+ }) B1 \! ]2 c - network: "testnet",
8 U' T I0 k- A$ m: E7 N8 }0 @) e6 D - }); b7 ~% L; r* ^0 a% G* c5 `7 s
- const client4 = new TonClient4({ endpoint });4 j# [! Z+ L# P5 ]8 l& \/ y
- + B. S- D6 S% j& d9 m; ^ t8 u/ L
- const latestBlock = await client4.getLastBlock();
% v% G" u3 }( R0 G- j - let status = await client4.getAccount(latestBlock.last.seqno, address);
/ B7 w+ P& H- y4 h4 m - 8 U6 c# n& ~7 O( s! A* u) D1 M
- if (status.account.state.type !== "active") {( _6 H- i( r% a" F
- console.log("Contract is not active");. z8 M* j: Q) L8 h4 q, e" H
- return;8 Y* O6 g+ [* ^2 @" N& ^5 R' |0 E
- }
. B7 I; Z; K. f+ L* i
" x+ b7 f$ H4 {# p- }+ t/ G! G1 k/ G( Y
( K! v) z- y9 F$ v9 x- onchainTestScript()
复制代码我们再深入研究一下这段代码。这里有什么? 我们使用 getHttpV4Endpoint 函数连接到 Orbs 团队托管的 API 端点,并获取 v4 协议的客户端对象。您可以了解有关 v4 协议的更多信息 here
3 j& H8 }! X$ ~
到目前为止,我们必须将网络配置参数设置为 testnet。
因此,在合约尚未部署的情况下,我们可以停止脚本。 现在让我们开始实际测试。我们将创建一个简单交易的链接,向合约地址发送 1 Ton。与部署过程中一样,我们将显示该链接的二维码,您可以用 Tonhub 钱包手机应用扫描。 - let link =) Y* ^; U& G" |: M6 Q1 ~7 O
- `https://tonhub.com/transfer/` +
1 |5 O/ y* l) c# S- S4 P, T% [ - address.toString({: t4 ^; o y+ ^4 O0 @. ?
- testOnly: true,. w& _7 Z" a7 }
- }) +
. N0 g. _ m0 `" L - "?" +: H& l) N. u' |6 g/ v2 e
- qs.stringify({
+ R. `7 i: r/ t+ t1 t - text: "Simple test transaction",
: r* L! L2 G4 c+ G' X' V - amount: toNano(1).toString(10),
. z( U+ K$ Z- H+ m0 s - });
, h$ m& D) M' L$ m8 w - 3 ]- Y+ E! N# D6 [* d- F, K
- qrcode.generate(link, { small: true }, (code) => {
5 X2 [* ]. F+ v( l5 w9 L0 ? - console.log(code);' c' H6 ^5 q0 F$ n& }
- });
复制代码我们还必须导入 toNano 从 @ton/core 库. 它可以将Ton币转换为成nanos。一个TON币有 1 000 000 000 nanos 中。在TON币中,TON币的数量总是nanos为单位。为了便于使用,大多数情况下我们会将nanos单位作为一个字符串来使用。 另外,请注意,我们使用 toString 方法,提供指定地址来自测试网的 config 参数。 在显示二维码后,我们的脚本将立即开始调用合约上的 getter 方法,以接收最新的发件人地址。我们将只在最新发件人地址发生变化时在控制台记录日志,以避免在控制台记录相同的结果。 让我们先来看看获取最新发件人地址的逻辑代码,我们将分析其中发生的情况,然后将其集成到我们的脚本中: - let recent_sender_archive: Address;' G6 C. M9 r% }' e b! V, t
- ; @( G( o2 V* d/ h8 S: B
- setInterval(async () => {4 |6 V9 `' f `* g, v! b$ b X9 F$ S0 V6 B
- const latestBlock = await client4.getLastBlock();
9 ^7 D/ t7 G! p9 R - const { exitCode, result } = await client4.runMethod(
5 d) v2 ]: B. @8 F4 \; [ - latestBlock.last.seqno,
6 o: u# q9 X% i$ D - address,! V! S# w3 X/ O2 a* W& |: Y: D
- "get_the_latest_sender"4 x' e' N* v1 Q" E
- );
/ X" b% q1 g6 }, N
; o/ Z! \7 ]' H% V/ m1 B$ S: H- if (exitCode !== 0) {
- z" z* z6 b7 g4 B - console.log("Running getter method failed");
7 J+ E; u2 E* r% R# w0 H( U - return;$ T3 B# U9 c- C4 d3 `
- }/ A! T$ i8 q$ a g: \4 [
- if (result[0].type !== "slice") {
! V8 i l& |1 J; U# x - console.log("Unknown result type");
4 I- D2 n# W5 }3 x5 ]( w# z, m$ F - return;
( t6 R6 u4 T$ S6 ]$ ]' Q - }0 {/ c. K. F4 j( D1 |# S/ T) O
) F& h w; N, U0 q" a5 r- let most_recent_sender = result[0].cell.beginParse().loadAddress();% z! S# ~4 W5 D4 a$ H
5 a$ f, H4 m3 x$ E$ r7 u- if (
: Z' F9 S3 f3 {4 W - most_recent_sender &&9 ?+ a p3 k) C" b3 D7 u4 \
- most_recent_sender.toString() !== recent_sender_archive?.toString()
6 i' u+ _1 _" g* G - ) {: _5 k! }6 ], g1 q6 n: C6 I
- console.log(
7 Q1 Y- s. D! G* X8 f - "New recent sender found: " +
/ S0 }* T) ?( P - most_recent_sender.toString({ testOnly: true })# R. o- J8 v4 p1 p
- );! o+ _7 F2 t/ J- D8 b
- recent_sender_archive = most_recent_sender;+ w8 f' h. O7 v' K& N
- }# e% O% e: [9 n! }: v' p, u, s( X
- }, 2000);
复制代码我们在这段代码中究竟要做什么: 我们将设置该函数每 2 秒重复一次 每次执行检查时,我们需要用 getLastBlock 获取最新区块的序列号 我们使用 runMethod 调用 getter 方法,我们感兴趣的参数是 exitCode 和 result。 如果调用不成功或接收到的数据不属于片段类型(如您所见,TON 中的地址总是一个片段),我们将确保脚本停止运行 我们获取 getter 方法的结果,即它的第一个项目 ( result 是一个数组,因为在其他情况下,getter 方法返回的结果可能不止一个) 我们采取 cell 参数的 result, 打开它进行解析,然后从中读取地址 我们会将地址的字符串版本与之前可能收到的发件人的字符串版本进行比较。如果两者不相等,我们会在控制台记录新的 most recent sender's address.
- y# O! b1 {0 Q, Q% q7 H$ k! b
4 O/ A' R/ h v: m/ _/ m我们看看最终的代码是怎样的:7 m. v% l/ A6 \+ X1 ^' u
7 s# z4 n& @4 a8 J
- import { Address, Cell, contractAddress, toNano } from "ton-core";4 L0 K& L d! k! } f' K
- import { hex } from "../build/main.compiled.json";
: j( Y9 c3 G8 d% j9 w - import { getHttpV4Endpoint } from "@orbs-network/ton-access";% k5 Y8 k! b I
- import { TonClient4 } from "ton";/ _( B K+ m D/ O7 |
- import qs from "qs";* s* ^/ w; H" z) @8 V, ^/ I9 ?
- import qrcode from "qrcode-terminal";2 c; }) k0 D+ l, z) ?+ g
2 d, T2 q7 A+ A, e" O- async function onchainTestScript() {8 O* ~5 j$ |/ y" z3 H) q6 I
- const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];
3 v6 H4 C$ @& f+ y - const dataCell = new Cell();
, R+ p) r# q, ]6 a7 T
& N5 p) A# M, y. F/ n/ m% U- const address = contractAddress(0, {
8 I2 L2 D% G" `" B! y( E: N - code: codeCell,
. L2 K: k1 F+ }1 [) o# { - data: dataCell,) e$ d' d$ V& X* K
- });' [' b# g% S1 j( m* e- A
2 ]- L: a x) {! Z. s$ k- const endpoint = await getHttpV4Endpoint({3 T! A P+ A% Q) j3 J p6 V
- network: "testnet",
' O3 S. b9 c5 ^) K6 M9 Y# t6 F - });1 `, k2 D# Z+ \6 B, U Q
- const client4 = new TonClient4({ endpoint });
& T0 {! D! q" @5 A
7 V- [% x) K4 M- const latestBlock = await client4.getLastBlock();) v$ c3 F- S/ p, T7 v
- let status = await client4.getAccount(latestBlock.last.seqno, address);
. W7 W+ B. i3 S& Y. j - 6 N. ?, {- _" p! O! ?
- if (status.account.state.type !== "active") {" H w$ P3 w+ y4 |
- console.log("Contract is not active");% p5 R: E& O* M* m3 i
- return;
+ N, {/ {+ l/ G - }' L+ ~( ]' N" w
- \( E( C" Y- w3 x; F% f* L! T- let link =
( U0 L- L3 z8 @+ C- R- ?& F - `https://test.tonhub.com/transfer/` +
/ d: I% y. k; U8 U9 h - address.toString({* y. \ n7 R @+ F. b" c3 I
- testOnly: true,% w. j1 R, u, i7 z
- }) +; C5 t" ~% U0 O" i
- "?" +
: t% d# _% `% W - qs.stringify({
" s/ z! w1 q6 k5 u! U - text: "Simple test transaction",9 X, |' V+ Y# w+ Q: a9 i
- amount: toNano(1).toString(10),
s. c& }, v) s, c3 Q - });
0 m0 v: c- k! r9 p8 a+ ~, ]: I; e
2 ~- v; r+ h3 P8 ]4 |/ \/ f4 r& o- qrcode.generate(link, { small: true }, (code) => {
& P0 l3 @( s$ W C* _9 r1 ` - console.log(code);3 L0 ?" L% N* ~( b9 ?) ]
- });: ?/ I6 c% b* T! S, ~0 O; C1 S
$ a9 W: \% y9 K# @6 k- let recent_sender_archive: Address;3 U3 ?/ C) J9 T+ O
- X/ e( c- V j- setInterval(async () => {4 ~' f# ~$ a& s. Z/ \
- const latestBlock = await client4.getLastBlock();
- r, d9 A+ G+ V# |5 s3 | - const { exitCode, result } = await client4.runMethod($ _ v( D4 E' Q/ U, u
- latestBlock.last.seqno,
% E' G$ U! @/ n - address,
2 S. [+ M! t5 G* o6 R - "get_the_latest_sender"* E, [; Y7 h, U
- );
! F6 o3 p J; V6 X" a - + O) o7 a; I: S
- if (exitCode !== 0) {2 X3 u0 c& K$ B. m
- console.log("Running getter method failed");- e1 p9 F9 Z/ E d
- return;
( S3 A4 |4 P6 \- J Q# n2 A7 R - }- D# G+ `, I" W; T
- if (result[0].type !== "slice") {: a$ r( T6 o6 r/ L6 E2 c
- console.log("Unknown result type");
) ^0 ~3 b4 c2 B& v2 Q - return;: h6 N. O+ a* D! j
- }
2 ~# F; [* s) s x, y: K - ' ?$ {/ s, L& s5 I F4 F' i6 _
- let most_recent_sender = result[0].cell.beginParse().loadAddress();: Y! x7 t* y; g" E4 H
X; Q5 s2 S( e( L; I- if (: G& Q: S* R9 m% i( X$ V1 k
- most_recent_sender &&& E4 w! w; V+ t0 K0 }3 b" A9 R
- most_recent_sender.toString() !== recent_sender_archive?.toString()
! c! J+ e4 g: z3 e4 t( |% h F. z* F - ) {% w- [. n( |! Q, H8 U/ o
- console.log(
; P" x" \7 s: d. { - "New recent sender found: " +
0 K' Q! T. R0 v" U - most_recent_sender.toString({ testOnly: true })' |& ?: k8 B: R! w5 d0 c
- );4 x7 @: O3 Q6 F2 q
- recent_sender_archive = most_recent_sender;
6 z5 `/ G" a0 W2 L - }6 g' u; Q9 k' H9 t { J
- }, 2000);" i+ d8 c3 n/ s$ k
- }
* |, e$ Q: h; J% ` - ! K) ^* ]% g- T7 b& Z7 K! }
- onchainTestScript();
复制代码 我们继续运行它!2 h9 [& f- ]3 ]( g3 C
- yarn onchaintest2 V f& J/ u: [5 \" W- Z5 i, c
复制代码如果您的操作正确无误,您将在终端看到一个二维码和最新的发件人地址。它必须等于您的 Tonhub 钱包地址,也就是您用来部署合约的地址。
. J3 f! ?3 F- j& y8 w+ T( U, B, L! r
: S9 T& Z6 i8 B2 f$ S* R! k, d4 H w7 W在部署合约时,我们将代码和初始状态连同 1 TON 一起发送,因此在部署合约后,代码立即被执行,并将发送者保存到 c4 存储中。7 M/ P) l9 n0 |4 ~" |) l
为确保我们的脚本按预期运行,您可以在 Tonhub 上创建另一个钱包,在其中装入 测试网 TON 币,然后再次将其发送到我们的合约中。几秒钟后,你就会在控制台中看到更新,因为最近的发送者地址发生了变化。 1 m! w" `& @6 K, ~, H1 E
! D- [; k" T n6 r* F0 ]7 B) t部署到主网让我们调整一下脚本,以便将合约部署到主网。我们必须更新所有包含测试网/主网差异的地方的代码。 现在我们更新 deploy.ts 文件的代码: - import { hex } from "../build/main.compiled.json";7 O# G$ J8 J# y
- import {
; h0 D2 Q; W; X# Z9 o0 g - beginCell,5 c9 a, y; q& h1 {& Z
- Cell,* o P4 g+ r; S; Z1 J
- contractAddress,+ `1 N1 H+ f, ~6 v
- StateInit,: y/ a4 L' _% F. ]: m$ k
- storeStateInit,
+ j2 s- Q& G9 {! k- j0 ?- t( u* V - toNano,$ F' j; z# G& u4 Z1 Y
- } from "ton";( _: m5 L, }' g& g$ B+ T
- import qs from "qs";
5 n. `- @+ K0 F3 i, x - import qrcode from "qrcode-terminal";6 Z" W. \! o5 w" p7 s( x
0 R- b4 D2 G3 T: k- + p" Q6 t! ]$ i* {, Z% F
- async function deployScript() {
2 h1 {% `: M3 r m* n3 r - console.log( _2 P9 X/ w6 A# L# R+ i. \2 o
- "================================================================="
! B9 W6 Y6 ]7 e( e, ~6 f1 c - );, }. E8 F" B! z+ ~' B- G" P
- console.log("Deploy script is running, let's deploy our main.fc contract...");& d( v1 i Q( [/ f9 l
- ( R( T" @5 ~$ j
- const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];
" R0 Z) c6 B2 Q8 c: T - const dataCell = new Cell();: d! O# l* {* P
& L$ o4 ^* x, j6 t- const stateInit: StateInit = {5 K; i% h g) u/ R
- code: codeCell,1 t) t# J1 e% y3 P. I( |$ \
- data: dataCell,
) h2 Z/ w' l8 P( K( U; \- h0 U1 {6 } - };
* r# P) d+ _7 ?8 l! D5 h) g - . y4 r: `+ _6 f }; Z \) G
- const stateInitBuilder = beginCell();' I' l9 H) e0 v/ d: h
- storeStateInit(stateInit)(stateInitBuilder);$ L; p6 i9 L6 b; [ G- u+ w7 G
- const stateInitCell = stateInitBuilder.endCell();
8 a I6 y4 Y* l3 `. ^6 R8 y# R
3 o; n+ O* x7 z3 O2 l' M/ d7 i- const address = contractAddress(0, {2 M0 O4 S' i8 u( T
- code: codeCell,
, `! M \* ^; S" u5 [3 } - data: dataCell, ^3 G4 k6 B# f8 W$ o( K5 n* F) E
- });
]9 B5 o. J% M/ f4 T/ U( P* h) n
' {+ D+ e/ B# Q* d* l; y) Q' l6 W- console.log(
$ [. F: ~) W2 U Q- ^3 n' V& r - `The address of the contract is following: ${address.toString()}`
2 v( [( m& m5 B3 p) y - );
7 l8 c; `$ V5 }' _/ O x - console.log(`Please scan the QR code below to deploy the contract:`);, B% X( G0 H. i9 W; I
- 1 r! O1 E$ T( b7 R
- let link =
! y J7 V. e' F/ m0 | - `https://tonhub.com/transfer/` +5 L1 `: F( ?& h! i. J. Q5 O/ w
- address.toString({
( T0 U4 O* ?. x0 R+ {8 Y - testOnly: false,
% e* x, ]/ H: q# H, Y7 a - }) +
' o9 V$ S4 q, S- [ - "?" +
9 F b' T* u# ^( B# j - qs.stringify({- r# a" g* D( j, C
- text: "Deploy contract",- ^, ]" q) G+ q2 D! Z+ a' o9 [, i8 b
- amount: toNano(1).toString(10),
3 P9 }1 O7 ~/ `# v* Q2 Z - init: stateInitCell.toBoc({ idx: false }).toString("base64"),
$ d$ A2 H$ k$ t8 N - });( ?& S2 ?. f; j+ S; s/ C
. v' b5 S% W7 M- C. U- qrcode.generate(link, { small: true }, (code) => {9 a; Q6 N' ]1 t- `5 L: S
- console.log(code);
0 l) x2 J2 o" I( P% K - });& U3 z3 b& P- G7 d( X* G
- }/ [0 B5 |- ?5 p/ b% m7 |
' j; ~6 ^& W7 t6 F2 k* o- deployScript();
复制代码我们只需修改一个地方的代码: 现在,让我们用同样的方法更新 onchaintest.ts 脚本: - import { Cell, contractAddress, Address, TonClient4, toNano } from "@ton/ton";$ Q! C/ f7 Z' t" i7 E
- import { hex } from "../build/main.compiled.json";8 B8 i3 M/ D9 P8 \" W4 N4 p
- import { getHttpV4Endpoint } from "@orbs-network/ton-access";
# [1 H, e) d8 d - import qs from "qs"; V1 y9 y. ^: P: r6 z9 N3 E
- import qrcode from "qrcode-terminal";
+ s1 y: r8 V# ]9 s
1 y% C* e8 o- A0 K& u- * b1 U: ?3 Z6 Z i6 O, Z
- async function onchainTestScript() {& H) m. L$ X6 L9 j) n1 ~% n; n$ V
- const codeCell = Cell.fromBoc(Buffer.from(hex, "hex"))[0];
" [, V5 @+ Z0 X) Y' t5 V - const dataCell = new Cell();) ?) G4 k1 K0 I/ W5 r
# ~# s: D8 w$ n0 y, R% ]* ~1 F- m% n0 b& N& X2 L5 l
- const address = contractAddress(0, {* A; L8 c7 e t; }0 n, [% R" ~* c
- code: codeCell,
" R8 Z) y' F: {+ P - data: dataCell,
& e) p& V/ I9 O( H$ C - });
% H- x. A- v5 @9 b - : M5 J- Q0 c8 V) p' a, J0 `
- 2 A' o" q& n. u
7 K. G( s1 t% n3 m( o& e
; P: i# k4 [+ @+ d& W" R- const endpoint = await getHttpV4Endpoint({
5 u" u, c8 B: I, s - network: "mainnet",3 o" y5 a- j U4 ?( p* p# E
- });' @3 Y0 |9 i- {: P' j
- const client4 = new TonClient4({ endpoint });% r4 M3 `& n, Z) n( j1 Y' y' K
- 9 n% r5 v+ P; c3 |
( ~6 k6 m q5 k6 U8 g- const latestBlock = await client4.getLastBlock();+ n2 ?% b! n; q, H( f
- let status = await client4.getAccount(latestBlock.last.seqno, address);; O/ I9 h* |8 w, N/ `2 j
7 E. d) z2 k7 ^) D
5 J [+ G3 H7 d8 f$ F- if (status.account.state.type !== "active") {. S; B. ^! I# O* }
- console.log("Contract is not active");
1 o6 X& G' o5 r# r+ s0 g j - return;
* J5 [6 D& x+ a( y w. p2 y/ U0 n - }. _/ v$ K: s3 b% y- C- l) q. Z3 m" J' y
& T* J7 m0 {3 `0 e+ @! f- * V+ S5 ]5 T% z: t
- let link =
! [) r5 u* Y* `/ S. O& y7 ]# H - `https://tonhub.com/transfer/` +
: ~# _, b' ?3 U! `5 }" k - address.toString({ testOnly: false }) +
8 P& z; ` ]5 W* @6 g* R. g - "?" +
x" e8 z/ `9 t6 J - qs.stringify({
; X, C. r ?7 P - text: "Simple test transaction",! j1 [) j0 ~; L C$ E' U# Z8 J
- amount: toNano(1).toString(10),
( u6 b/ I; ^, }# J _6 q/ w - });6 M* H$ J/ S! e& V8 t: L
- # @$ `4 A7 V- ^* R; O9 w) H* U& C
- ) Z; U! u- F. w; T3 ^$ @. @
- qrcode.generate(link, { small: true }, (code) => {
! ]- J8 C: ` b) X2 x# g( l- X - console.log(code);. k" m' \# G, n, I! J2 K
- });
% {& O7 b$ M1 g( k1 t8 {+ M. g - ! f( l: z/ F, k7 u# r- H6 Z* ^
- * ?, i% }# B" Q J+ C6 O
- let recent_sender_archive: Address;' W8 @0 ?1 y% q4 z3 T/ v5 i. \: W
7 n5 _- w; o6 J) @, u& M+ {" [1 P- : E$ H+ O) }# F/ J
- setInterval(async () => {
/ L3 v7 w3 M% M$ v; t - const latestBlock = await client4.getLastBlock();
& w2 K I( J" P5 k; x, f$ F - const { exitCode, result } = await client4.runMethod(
' e, T# e+ t* v - latestBlock.last.seqno,
- _/ c$ n& j7 | - address,
+ V/ [& o6 c; p - "get_the_latest_sender": {- S2 e) ^: j& V s
- );
2 Y" I- x/ H# V- N, P# h - & g. G9 ~2 A3 g% w
- & Q! N* }3 E% Y, u
- if (exitCode !== 0) {& j S3 U, e! X. H
- console.log("Running getter method failed");
; D$ y! b6 ~9 p- B! @7 P - return;
1 x/ I* v9 P6 \ - }# J% }* b3 t5 U" c& N9 u
- if (result[0].type !== "slice") {$ J0 p9 f" N5 W5 F# I* O8 D- l
- console.log("Unknown result type");3 T, P. o. I3 w" {8 j' k: ?
- return;
8 Y( H5 C+ V: B5 k - }* K& \2 @3 `: H2 A! w6 o% P4 @
- 1 U" u$ G2 U; [7 b1 F
- 0 z8 k5 w" I5 E; C! `7 o
- let most_recent_sender = result[0].cell.beginParse().loadAddress();
* G) ^0 S: G- S& t; X - " Y. {$ N/ r- A9 ?9 S: @* Z
; D' z8 P. T% y0 w' M- if (1 P8 k6 I2 }4 e% x1 u; C
- most_recent_sender &&" S. b/ K; G- }. c
- most_recent_sender.toString() !== recent_sender_archive?.toString()
- M: Z# m/ n \3 r* C - ) {
2 `- i1 c' B8 x" j2 F4 z- S% T" h - console.log(2 ]0 G6 E& |& C! N9 G' y
- "New recent sender found: " +
" D( z! d8 B. `3 D4 c% f - most_recent_sender.toString({6 {# Y5 P3 h) `* h t! s5 e" s
- testOnly: false,
- ^) g" J+ W# K5 z# g$ U - })3 b6 L) J/ w) ?; f. l0 ]
- );! S3 e; O7 V5 T. \# l' [! A; w
- recent_sender_archive = most_recent_sender;( J: c' y1 x8 h( H* j
- }2 y3 v: j3 A# `/ g7 s' k
- }, 2000);, ^* v3 ~, c9 ~+ O
- }+ b( g8 t7 |% P; m5 _
. a! H/ p0 Q% ?6 _) E, _
7 D6 }$ }. t- ]- onchainTestScript()
复制代码同样,我们还需要修改 onchaintest.ts 脚本中的两处内容: 现在,我们可以在测试网和主网上部署和运行链上测试! 务必牢记,进行主网部署,您需要将Tonhub钱包切换回主网. 这适用于 iOS 以及 Android.
你成功了 说真的,我为你感到骄傲!我们已经做了大量的工作,但好在你现在已经了解了开发和部署合约的整个过程。 在下一章中,我们将深入探讨更复杂的 FunC 逻辑,并为其编写本地测试。
+ D" \3 ]( V) E7 c: |
$ G5 C" e; q9 ~$ C) j3 ]3 `. O |