-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
584 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"name": "@alchemy/aa-alchemy", | ||
"version": "0.1.0-alpha.1", | ||
"description": "adapters for @alchemy/aa-core for interacting with alchemy services", | ||
"author": "Alchemy", | ||
"license": "MIT", | ||
"private": false, | ||
"type": "module", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"types": "./dist/types/index.d.ts", | ||
"typings": "./dist/types/index.d.ts", | ||
"sideEffects": false, | ||
"files": [ | ||
"dist", | ||
"src/**/*.ts", | ||
"!dist/**/*.tsbuildinfo", | ||
"!vitest.config.ts", | ||
"!.env", | ||
"!src/**/*.test.ts", | ||
"!src/__tests__/**/*" | ||
], | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.ts", | ||
"import": "./dist/esm/index.js", | ||
"default": "./dist/cjs/index.js" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"scripts": { | ||
"build": "yarn clean && yarn build:cjs && yarn build:esm && yarn build:types", | ||
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && echo > ./dist/cjs/package.json '{\"type\":\"commonjs\"}'", | ||
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir ./dist/esm --removeComments && echo > ./dist/esm/package.json '{\"type\":\"module\"}'", | ||
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", | ||
"clean": "rm -rf ./dist", | ||
"test": "vitest", | ||
"test:run": "vitest run" | ||
}, | ||
"devDependencies": { | ||
"@alchemy/aa-core": "^0.1.0-alpha.1", | ||
"typescript": "^5.0.4", | ||
"typescript-template": "*", | ||
"viem": "^0.3.50", | ||
"vitest": "^0.31.0" | ||
}, | ||
"dependencies": {}, | ||
"peerDependencies": { | ||
"@alchemy/aa-core": "^0.1.0-alpha.1", | ||
"viem": "^0.3.50" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/alchemyplatform/aa-sdk.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/alchemyplatform/aa-sdk/issues" | ||
}, | ||
"homepage": "https://github.com/alchemyplatform/aa-sdk#readme", | ||
"gitHead": "b7e4cd3253f6d93032419a9a559ea16d2a4f71d8" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
import { | ||
SimpleSmartContractAccount, | ||
type BatchUserOperationCallData, | ||
type SimpleSmartAccountOwner, | ||
} from "@alchemy/aa-core"; | ||
import { toHex } from "viem"; | ||
import { mnemonicToAccount } from "viem/accounts"; | ||
import { polygonMumbai } from "viem/chains"; | ||
import { AlchemyProvider } from "../provider"; | ||
|
||
const ENTRYPOINT_ADDRESS = "0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789"; | ||
const API_KEY = process.env.API_KEY!; | ||
const OWNER_MNEMONIC = process.env.OWNER_MNEMONIC!; | ||
const PAYMASTER_POLICY_ID = process.env.PAYMASTER_POLICY_ID!; | ||
const SIMPLE_ACCOUNT_FACTORY_ADDRESS = | ||
"0x9406Cc6185a346906296840746125a0E44976454"; | ||
|
||
describe("Simple Account Tests", () => { | ||
const ownerAccount = mnemonicToAccount(OWNER_MNEMONIC); | ||
const owner: SimpleSmartAccountOwner = { | ||
signMessage: async (msg) => | ||
ownerAccount.signMessage({ | ||
message: { raw: toHex(msg) }, | ||
}), | ||
getAddress: async () => ownerAccount.address, | ||
}; | ||
const chain = polygonMumbai; | ||
const signer = new AlchemyProvider({ | ||
apiKey: API_KEY, | ||
chain, | ||
entryPointAddress: ENTRYPOINT_ADDRESS, | ||
}).connect( | ||
(provider) => | ||
new SimpleSmartContractAccount({ | ||
entryPointAddress: ENTRYPOINT_ADDRESS, | ||
chain, | ||
owner, | ||
factoryAddress: SIMPLE_ACCOUNT_FACTORY_ADDRESS, | ||
rpcClient: provider, | ||
}) | ||
); | ||
|
||
it("should succesfully get counterfactual address", async () => { | ||
expect(await signer.getAddress()).toMatchInlineSnapshot( | ||
`"0xb856DBD4fA1A79a46D426f537455e7d3E79ab7c4"` | ||
); | ||
}); | ||
|
||
it("should correctly sign the message", async () => { | ||
expect( | ||
// TODO: expose sign message on the provider too | ||
await signer.account.signMessage( | ||
"0xa70d0af2ebb03a44dcd0714a8724f622e3ab876d0aa312f0ee04823285d6fb1b" | ||
) | ||
).toBe( | ||
"0xd16f93b584fbfdc03a5ee85914a1f29aa35c44fea5144c387ee1040a3c1678252bf323b7e9c3e9b4dfd91cca841fc522f4d3160a1e803f2bf14eb5fa037aae4a1b" | ||
); | ||
}); | ||
|
||
it("should execute successfully", async () => { | ||
const result = signer.sendUserOperation({ | ||
target: await signer.getAddress(), | ||
data: "0x", | ||
}); | ||
|
||
await expect(result).resolves.not.toThrowError(); | ||
}); | ||
|
||
it("should fail to execute if account address is not deployed and not correct", async () => { | ||
const accountAddress = "0xc33AbD9621834CA7c6Fc9f9CC3c47b9c17B03f9F"; | ||
const newSigner = new AlchemyProvider({ | ||
apiKey: API_KEY, | ||
chain, | ||
entryPointAddress: ENTRYPOINT_ADDRESS, | ||
}).connect( | ||
(provider) => | ||
new SimpleSmartContractAccount({ | ||
entryPointAddress: ENTRYPOINT_ADDRESS, | ||
chain, | ||
owner, | ||
factoryAddress: SIMPLE_ACCOUNT_FACTORY_ADDRESS, | ||
rpcClient: provider, | ||
accountAddress, | ||
}) | ||
); | ||
|
||
const result = newSigner.sendUserOperation({ | ||
target: await newSigner.getAddress(), | ||
data: "0x", | ||
}); | ||
|
||
await expect(result).rejects.toThrowError(); | ||
}); | ||
|
||
it("should successfully execute with alchemy paymaster info", async () => { | ||
// TODO: this is super hacky right now | ||
// we have to wait for the test above to run and be confirmed so that this one submits successfully using the correct nonce | ||
// one way we could do this is by batching the two UOs together | ||
await new Promise((resolve) => setTimeout(resolve, 7500)); | ||
const newSigner = signer.withAlchemyGasManager({ | ||
provider: signer.rpcClient, | ||
policyId: PAYMASTER_POLICY_ID, | ||
entryPoint: ENTRYPOINT_ADDRESS, | ||
}); | ||
|
||
const result = newSigner.sendUserOperation({ | ||
target: await newSigner.getAddress(), | ||
data: "0x", | ||
}); | ||
|
||
await expect(result).resolves.not.toThrowError(); | ||
}, 10000); | ||
|
||
it("should correctly encode batch transaction data", async () => { | ||
const account = signer.account; | ||
const data = [ | ||
{ | ||
target: "0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef", | ||
data: "0xdeadbeef", | ||
}, | ||
{ | ||
target: "0x8ba1f109551bd432803012645ac136ddd64dba72", | ||
data: "0xcafebabe", | ||
}, | ||
] satisfies BatchUserOperationCallData; | ||
|
||
expect(await account.encodeBatchExecute(data)).toMatchInlineSnapshot( | ||
'"0x18dfb3c7000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000deadbeefdeadbeefdeadbeefdeadbeefdeadbeef0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba720000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004deadbeef000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004cafebabe00000000000000000000000000000000000000000000000000000000"' | ||
); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import type { Chain } from "viem"; | ||
import { | ||
arbitrum, | ||
arbitrumGoerli, | ||
goerli, | ||
mainnet, | ||
optimism, | ||
optimismGoerli, | ||
polygon, | ||
polygonMumbai, | ||
sepolia, | ||
} from "viem/chains"; | ||
import { GasFeeStrategy, type GasFeeMode } from "./middleware/gas-fees"; | ||
|
||
export const SupportedChains = new Map<number, Chain>([ | ||
[polygonMumbai.id, polygonMumbai], | ||
[polygon.id, polygon], | ||
[mainnet.id, mainnet], | ||
[sepolia.id, sepolia], | ||
[goerli.id, goerli], | ||
[arbitrumGoerli.id, arbitrumGoerli], | ||
[arbitrum.id, arbitrum], | ||
[optimism.id, optimism], | ||
[optimismGoerli.id, optimismGoerli], | ||
]); | ||
|
||
const defineChainStrategy = ( | ||
chainId: number, | ||
strategy: GasFeeStrategy, | ||
value: GasFeeMode["value"] | ||
): [number, GasFeeMode] => { | ||
return [chainId, { strategy, value }]; | ||
}; | ||
|
||
export const ChainFeeStrategies: Map<number, GasFeeMode> = new Map< | ||
number, | ||
GasFeeMode | ||
>([ | ||
// testnets | ||
defineChainStrategy(goerli.id, GasFeeStrategy.FIXED, 0n), | ||
defineChainStrategy(sepolia.id, GasFeeStrategy.FIXED, 0n), | ||
defineChainStrategy(polygonMumbai.id, GasFeeStrategy.FIXED, 0n), | ||
defineChainStrategy(optimismGoerli.id, GasFeeStrategy.FIXED, 0n), | ||
defineChainStrategy(arbitrumGoerli.id, GasFeeStrategy.FIXED, 0n), | ||
// mainnets | ||
defineChainStrategy(mainnet.id, GasFeeStrategy.PRIORITY_FEE_PERCENTAGE, 25n), | ||
defineChainStrategy(polygon.id, GasFeeStrategy.PRIORITY_FEE_PERCENTAGE, 25n), | ||
defineChainStrategy(optimism.id, GasFeeStrategy.BASE_FEE_PERCENTAGE, 5n), | ||
defineChainStrategy(arbitrum.id, GasFeeStrategy.BASE_FEE_PERCENTAGE, 5n), | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export { | ||
GasFeeStrategy, | ||
withAlchemyGasFeeEstimator, | ||
} from "./middleware/gas-fees"; | ||
export type { GasFeeMode } from "./middleware/gas-fees"; | ||
|
||
export { withAlchemyGasManager } from "./middleware/gas-manager"; | ||
|
||
export { SupportedChains } from "./chains"; | ||
export { AlchemyProvider } from "./provider"; | ||
export type { AlchemyProviderConfig } from "./provider"; |
Oops, something went wrong.