Gathering detailed insights and metrics for aelf-smartcontract-viewer
Gathering detailed insights and metrics for aelf-smartcontract-viewer
Gathering detailed insights and metrics for aelf-smartcontract-viewer
Gathering detailed insights and metrics for aelf-smartcontract-viewer
npm install aelf-smartcontract-viewer
Typescript
Module System
Node Version
NPM Version
Cumulative downloads
Total Downloads
Last Day
0%
26
Compared to previous day
Last Week
123.1%
29
Compared to previous week
Last Month
208.7%
71
Compared to previous month
Last Year
0%
1,220
Compared to previous year
13
The aelf-smartcontract-viewer is a React component that provides an easy interface to view and interact with smart contracts on the Aelf blockchain. You can use this component to input contract details and view available read and write methods. This tool is useful for developers building applications around Aelf smart contracts, allowing easy testing and interaction with deployed contracts.
You can install the package using npm:
1npm install aelf-smartcontract-viewer
1import React from "react"; 2import { ContractView } from "aelf-smartcontract-viewer"; 3 4const App = () => { 5 return ( 6 <div> 7 <ContractView 8 address="your_smart_contract_address" 9 rpcUrl="rpc_url" // i.e = https://explorer-test-side02.aelf.io/chain 10 contractName="Smart Contract Name" 11 /> 12 </div> 13 ); 14}; 15 16export default App;
Prop | Type | Default | Description |
---|---|---|---|
wallet | IWalletInfo | undefined | Optional wallet info. If not provided, a new wallet is generated. |
headerTitle | string | "Aelf Contract View" | Title for the contract view header. |
headerShown | boolean | true | Whether the header should be shown or not. |
address | string | undefined | Address of the contract. If not provided, a default contract address is fetched from the Aelf blockchain. |
contractName | string | "Contract" | The name of the contract to be displayed. |
rpcUrl | string | "https://explorer-test-side02.aelf.io/chain" | The RPC URL to connect to the Aelf blockchain. |
theme | light or dark | "light" | Theme of contract view component |
The above example demonstrates how to use the ContractView
component. You only need to pass in the contract's address, RPC URL, and optionally the contract name.
The ContractView
component displays the available read and write methods from the given smart contract. Once loaded, the methods are grouped as follows:
If you want to specify your own wallet, you can pass the wallet
prop. If you don’t provide a wallet, the component will create a new wallet for you and interact with the blockchain using that.
1import React from "react"; 2import { ContractView } from "aelf-smartcontract-viewer"; 3import AElf from "aelf-sdk"; 4 5const App = () => { 6 const wallet = AElf.wallet.getWalletByPrivateKey("YOUR_PRIVATE_KEY"); 7 8 return ( 9 <div> 10 <ContractView 11 wallet={wallet} 12 address="your_smart_contract_address" 13 rpcUrl="rpc_url" // i.e = https://explorer-test-side02.aelf.io/chain 14 contractName="Smart Contract Name" 15 /> 16 </div> 17 ); 18} 19 20export default App;
We welcome contributions to this project. If you find any bugs or want to add new features, feel free to submit a pull request or open an issue on the GitHub repository.
No vulnerabilities found.
No security vulnerabilities found.