This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir ui-tutorial | |
cd ui-tutorial | |
# -- 安裝 Rust 及 Substrate | |
# 更詳細的安裝指引可參考: | |
# https://substrate.dev/docs/en/overview/getting-started | |
curl https://getsubstrate.io -sSf | bash | |
# -- 下載 Substrate Node Template,編譯並運行起來 | |
git clone https://github.com/substrate-developer-hub/substrate-node-template node-template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let unsubscribe; | |
api.query.templateModule.something(function(val) { | |
// 回調函數 | |
// 在這裡設置 UI 里使用的變量。 | |
}).then(unsub => { | |
//取消訂閱函數 | |
unsubscribe = unsub; | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useSubstrate } from './substrate-lib'; | |
import { TxButton } from './substrate-lib/components'; | |
//... | |
function main (props) { | |
//... | |
return ( | |
<Grid.Column> | |
<h1>Template Module</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
//外部交易函數 | |
// 這個參看回 `pallet/template/src/lib.rs` 的名字 | |
tx: api.tx.<模塊名字>.<extrinsic 名字> | |
//外部交易函數的輸入參數數組 | |
params: [...] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
useEffect(() => { | |
let unsubscribe; | |
api.query.templateModule.something(newValue => { | |
// The storage value is an Option<u32> | |
// So we have to check whether it is None first | |
// There is also unwrapOr | |
if (newValue.isNone) { | |
setCurrentValue('<None>'); | |
} else { | |
setCurrentValue(newValue.unwrap().toNumber()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"PROVIDER_SOCKET": "ws://<你的 ws/wss 地址>" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
api.tx.my_pallet.dispatch_call(params).signAndSend(accountPair, 回調函數) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const val = await api.query.templateModule.something(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
..., | |
"CUSTOM_TYPES": { | |
"Price": { | |
"dollars": "u32", | |
"cents": "u32", | |
"currency": "Vec" | |
}, | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This module's storage items. | |
decl_storage! { | |
trait Store for Module as TemplateModule { | |
Something get(fn something): Option; | |
} | |
} |