Created
March 4, 2020 11:58
-
-
Save jimmychu0807/8543fbc56b595fb4dcc69ac8eeadfc35 to your computer and use it in GitHub Desktop.
Markdium-用 Polkadot-JS API 輕鬆搭建 Substrate 前端
This file contains hidden or 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 { Keyring } from '@polkadot/api'; | |
// 初始化 api | |
// const api = await ...; | |
// api 完成初始化後,再創建 keyring 對象。 | |
const keyring = new Keyring({ type: 'sr25519' }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment