Beta release v.1.03
Bring Your Ideas to Life with Rive
Download
v1.0.1 | macOS 12+ | Windows v1.3
1
Learn more
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Import { ethers } from "hardhat";
async function main() {
const owner = "0x7306aC7A32eb690232De81a9FFB44Bb346026faB";
const entryPointAddress =
process.env.ENTRY_POINT_ADDRESS ||
"0x0576a174D229E3cFA37253523E645A78A0C91B57";
const SmartWallet = await ethers.getContractFactory("SmartAccount");
const baseImpl = await SmartWallet.deploy(entryPointAddress);Ariel
await baseImpl.deployed();
console.log("base wallet impl deployed at: ", baseImpl.address);
const WalletFactory = await ethers.getContractFactory("SmartAccountFactory");
const walletFactory = await WalletFactory.deploy(baseImpl.address);
await walletFactory.deployed();
console.log("smart account factory deployed at: ", walletFactory.address);
Beta release v1.0.2
Download
© 2024 Rive, Inc. All rights reserved.
All trademarks, logos, and brand names are the
property of their respective owners.