Skip to content

Commit

Permalink
chore: updated changelog for fusion changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Feb 10, 2025
1 parent 768598b commit 2bb4dce
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,20 @@

### Patch Changes

- Fusion support
- Added Fusion support
- BREAKING: `createSmartAccountClient` now requires an explicit account instance instead of account parameters
- BREAKING: Removed `executeSignedFusionQuote` helper
- BREAKING: `toMultichainNexusAccount` now requires an explicit `transports` parameter, to encourate the use of paid RPCs
- Made `createSmartAccountClient` an alias of `createBicoBundlerClient`
- Added / modified MEE client methods:
- getFusionQuote
- executeFusionQuote
- signFusionQuote
- Additional transaction types:
- Transfer
- TransferFrom
- Approve
- Withdrawal

## 0.0.37

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ const quote = await meeClient.getQuote({
calls: [{ to: "0x...", value: 1n, gasLimit: 100000n }],
chainId: base.id
}],
feeToken: toFeeToken({
mcToken: mcUSDC,
feeToken: {
address: mcUSDC.addressOn(base.id),
chainId: base.id
})
}
})

// Execute the quote and get back a transaction hash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe("modules.smartSessions.decorators", async () => {
signer: sessionKeyAccount
})

const smartSessionNexusClient = await createSmartAccountClient({
const smartSessionNexusClient = createSmartAccountClient({
account: await toNexusAccount({
chain,
signer: sessionKeyAccount,
Expand Down

0 comments on commit 2bb4dce

Please sign in to comment.