Skip to content

Commit

Permalink
Merge pull request #12 from etherspot/fix/fuse-bundler-config
Browse files Browse the repository at this point in the history
Add Fuse and ArbitrumGoerli bundler url and fix transfer example
  • Loading branch information
arddluma authored Jul 11, 2023
2 parents 45e0009 + c1062dc commit 38a0fa5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [1.0.3] - 2023-07-10
### Fixed
- Fuse and ArbitrumGoerli bundler url and native transfer funds example

## [1.0.2] - 2023-07-07
### New
Expand Down
3 changes: 3 additions & 0 deletions examples/02-transfer-funds.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { ethers } from 'ethers';
import { PrimeSdk } from '../src';
import { printOp } from '../src/sdk/common/OperationUtils';
import * as dotenv from 'dotenv';

dotenv.config();

const recipient: string = '0x80a1874E1046B1cc5deFdf4D3153838B72fF94Ac'; // recipient wallet address
const value: string = '0.01'; // transfer value
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@etherspot/prime-sdk",
"version": "1.0.2",
"version": "1.0.3",
"description": "Etherspot Prime (Account Abstraction) SDK",
"keywords": [
"ether",
Expand Down
4 changes: 2 additions & 2 deletions src/sdk/network/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export const Networks: {
},
[421613]: {
chainId: 421613,
bundler: '',
bundler: 'https://arbitrumgoerli-bundler.etherspot.io',
contracts: {
entryPoint: '0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789',
walletFactory: '0x2f771DCa6Ffa3879e48355E8A4aF5b81d82A6164',
Expand All @@ -169,7 +169,7 @@ export const Networks: {
},
[122]: {
chainId: 122,
bundler: '',
bundler: 'https://fuse-bundler.etherspot.io',
contracts: {
entryPoint: '0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789',
walletFactory: '0x2f771DCa6Ffa3879e48355E8A4aF5b81d82A6164',
Expand Down

0 comments on commit 38a0fa5

Please sign in to comment.