@flarenetwork/flare-tx-verifier
v1.4.0
Published
A CLI tool for verifying Flare C-chain and P-chain transactions.
Keywords
Readme
Flare: Transaction verification tool
The repository contains a command line interface tool for verification of transactions on Flare and Songbird networks, as well as on Coston and Coston2 test networks, prior to their signing.
This tool mitigates the main challenges encountered during transaction signing:
- Unauthorized alterations to the transaction without user's knowledge before sending it to the wallet.
- The absence of visibility into the transaction's content or parameters during the signing process (i.e., blind signing).
- Uncertainty regarding the origin of the called contract, specifically whether it was published by Flare.
Installation
This tool requires node.js and npm to be installed. You can then verify transactions either by using npx (see below) or by cloning this repository and running scripts via npm (see below). If you cloned the repository, first run:
npm installVerification process
First, the site/dApp needs to show the user a (zipped) unsigned transaction that was sent to the wallet (in base64 or hex encoding).
The unsigned transaction (input) can then be checked with the verification tool by running:
npx @flarenetwork/flare-tx-verifier inputor (if you cloned the repository)
npm run verify inputAlternatively, the above commands can be used without input. The input is then being continuously read from the clipboard.
The output will include the following parameters (depending on the type of transaction):
| Output parameter | Description |
| :----: | ----- |
| network | Network name, e.g. Flare Mainnet. For non-flare networks, chainID is returned. |
| type | Possible transaction types are "transferC", "contractCallC", "exportC", "importC", "exportP", "importP", "transferP", "addDelegatorP", "addValidatorP" |
| description | Description of the transaction type: "Funds transfer on C-chain", "Contract call on C-chain", "Export from C-chain", "Import to C-chain", "Export from P-chain", "Import to P-chain", "Funds transfer on P-chain", "Stake on P-chain", "Add validator on P-chain". |
| recipients | Recipient(s) of funds or the address of the contract called. |
| values | Amount of funds transferred or staked. |
| fee | Transfer fee stated (if specified in transaction before sending it to the wallet). |
| contractName | When calling a C-chain contract, its name will be returned (if it exists). |
| contractMethod | When calling a C-chain contract, the method called will be returned (if it can be decoded). |
| contractMethodABI | When calling a C-chain contract, the ABI specification of the method called will be returned in JSON string format. |
| contractData | When calling a C-chain contract, the data field is returned (in hex format). |
| isFlareNetworkContract | When calling a C-chain contract, it returns true/false, depending if the contract was deployed by Flare. |
| parameters | When calling a C-chain contract, the method's parameters are returned. For types "addDelegatorP" and "addValidatorP", additional staking parameters are returned. |
| safeTxData | When calling a C-chain contract to execute a safe transaction (i.e., a transaction that is initiated from a Safe smart account), an object containing the decoded data of the safe transaction is returned. If the safe transaction is a contract call, the object contains the following properties (described above): contractName, contractMethod, contractMethodABI, isFlareNetworkContract, parameters. |
| warnings | Warnings are returned for suspicious data (e.g., "Funds will be locked after transfer."). |
| messageToSign | Hash sent to the wallet to sign. Useful for confirming P-chain transactions. |
When staking, the returned staking parameters are the following: | Parameters | Description | | :----: | ----- | | nodeId | Identifier of the validator node that you want to stake to. | | startTime | Proposed starting time of the stake (in local time). | | endTime | Proposed ending time of the stake (in local time). | | delegationFee | Proposed node fee in % (if you want to initialize staking on a validator node). |
[!IMPORTANT] TO VERIFY A TRANSACTION PLEASE CHECK THE FOLLOWING:
- If the output parameters represent the transaction that you want to sign (i.e., the network, recipients, value, contract or staking parameters etc. are correct).
- For C-chain transactions (transferring funds and contract calls) check if the wallet shows the same network, recipients, value and contractData as the verification tool.
- For P-chain transactions (importing/exporting funds and staking) check if the hash you are signing matches the
messageToSignvalue (note that some hashes do not include the starting0x; this is OK).
