Skip to content
View wisthsb1519's full-sized avatar

Block or report wisthsb1519

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. sendTransaction.jsx sendTransaction.jsx
    1
    // define the recoveredAccount and being the logic to send a transaction
    2
        sendTransaction = () => {
    3
            let mnemonic = this.props.mnemonic;
    4
            let recoveredAccount = algosdk.mnemonicToSecretKey(mnemonic);
    5
      
  2. startTransaction.jsx startTransaction.jsx
    1
    // starting transaction here with the account from mnemonic
    2
      startTransaction = async recoveredAccount => {
    3
        //Get the relevant params from the algod
    4
        try {
    5
          let params = await AlgorandClient.getTransactionParams();