Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial v9 beta support #6

Merged
merged 4 commits into from
May 17, 2022
Merged

Initial v9 beta support #6

merged 4 commits into from
May 17, 2022

Conversation

jbargu
Copy link
Member

@jbargu jbargu commented May 17, 2022

  1. Adds support for utility pallet:
  // Setup transfer extrinsic
  const RECEIPENT_ADDRESS = "addr";
  const SINGLE_REEF = BigNumber.from("1000000000000000000");
  const TRANSFER_AMOUNT = SINGLE_REEF.mul(100);
  const transfer = provider.api.tx.balances.transfer(
    RECEIPENT_ADDRESS,
    TRANSFER_AMOUNT.toString()
  );

  const transfer1 = provider.api.tx.balances.transfer(
    RECEIPENT_ADDRESS,
    SINGLE_REEF.mul(100).toString()
  );

  const batch = provider.api.tx.utility.batch([transfer, transfer1]);

  const hash = await batch.signAndSend(signer);
  console.log("Hash:", hash.toHex());
  1. Adds support for multisig pallet in console.reefscan.com
    image

  2. EVM contracts that create another contracts will emit a Evm.Created event or a self destruct event as part of the tracing PR.

@jbargu jbargu merged commit e4176ca into master May 17, 2022
@jbargu jbargu deleted the jg_v9_compatibility branch May 17, 2022 10:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant