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

feat(evm): add interfaceName to Cloneable to help with client cloneable differentiation #18

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f59f4ca
test(evm): update latest user stories
sammccord Jun 17, 2024
5fbb7cf
test(evm): update latest user stories
sammccord Jun 17, 2024
f2208c9
fix: start sdk logic
sammccord Jun 17, 2024
43c0ff5
chore(budget): sample deployment implementation
sammccord Jun 17, 2024
70af125
chore: iterate budgets, enforce type imports
sammccord Jun 18, 2024
a13b365
chore: iterate budgets, enforce type imports
sammccord Jun 18, 2024
ce70564
chore(sdk): stabilize deployable api, improve vite build config for m…
sammccord Jun 18, 2024
ddea55d
chore(sdk): add .at(address) static api to deployable
sammccord Jun 18, 2024
abe901a
chore(sdk): flesh out boost payload dependencies
sammccord Jun 19, 2024
2784ac8
chore(sdk): createBoost generator functionality
sammccord Jun 19, 2024
5b65b10
chore: allowlist contract method examples
sammccord Jun 21, 2024
c3f40b5
chore: various api design approaches
sammccord Jun 24, 2024
0e1e3d3
chore: stabilize api
sammccord Jun 24, 2024
d606c3a
chore: use data structures for budget transfers
sammccord Jun 24, 2024
206871c
chore: make payload names friendlier
sammccord Jun 24, 2024
83060ba
chore: boost is not a contract
sammccord Jun 24, 2024
8d74f2b
chore: good sdk test progress
sammccord Jun 26, 2024
11bd82c
chore: get contract deployments working
sammccord Jun 26, 2024
b478220
chore: add account to configuration to make some contract ops easier
sammccord Jun 26, 2024
a1b9444
chore: stabilize create, boost core tests
sammccord Jun 27, 2024
f101259
feat(boost core): add BoostCreated event
Quazia Jun 28, 2024
4725be9
chore: lint
Quazia Jun 28, 2024
a4c3306
chore: createBoost and retrieve payload in tests
sammccord Jun 28, 2024
37a3316
chore: try to genericize result retrieval from write calls
sammccord Jul 1, 2024
12daea3
feat: expose raw/awaited api for all write methods
sammccord Jul 1, 2024
5f26727
feat(evm): add interfaceName to Cloneable to help with client cloneab…
sammccord Jul 2, 2024
d6f3cb2
Merge branch 'sam/boost-3883-protocol-v2-sdk-creation-flow' into art/…
sammccord Jul 2, 2024
4f3ca1d
Merge pull request #11 from rabbitholegg/art/tweak-create-return
sammccord Jul 2, 2024
f6cd67b
Merge branch 'sam/boost-3883-protocol-v2-sdk-creation-flow' into cont…
sammccord Jul 2, 2024
b75554d
chore(evm): add interfaceName tests
sammccord Jul 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ coverage
.cache
tsconfig.tsbuildinfo
.DS_Store

.env*
!.env.sample
cache
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"noNamespace": "error",
"noNonNullAssertion": "warn",
"useAsConstAssertion": "warn",
"useBlockStatements": "off"
"useBlockStatements": "off",
"useImportType": "error"
},
"suspicious": {
"noEmptyBlockStatements": "error",
Expand Down
75 changes: 75 additions & 0 deletions ccashwell.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
ccashwell
ccashwell
3 months ago

// Option 1: build a Boost object manually:
const boost = new Boost();
boost.action = new ERC20Action(...);
boost.incentives.push(new ERC20Incentive(...));
boost.budget = SimpleBudget.at(...);
boost.validator = SignerValidator.DEFAULT;

// Option 2: build it inline:
const boost = new Boost({
action: new ERC20Action(...),
incentives: [new ERC20Incentive(...)],
budget: SimpleBudget.at(...),
validator: SignerValidator.DEFAULT
});

// Option 3: use the BoostBuilder:
const boost = new BoostBuilder()
.withAction(new ERC20Action(...))
.withIncentive(new ERC20Incentive(...))
.withBudget(SimpleBudget.at(...))
.withValidator(SignerValidator.DEFAULT)
.build();

// runs validation, then either throws or deploys
await boostClient.deploy(boost);

import {
AllowListIncentive,
ERC20Incentive,
ERC721MintAction,
SignerValidator,
SimpleAllowList,
SimpleBudget,
chains,
client,
parseEther,
} from "@rabbitholegg/boost-sdk";

import { account, publicClient, walletClient } from "./config";

const boostClient = client({
account,
publicClient,
walletClient,
});

const simpleBudget = await boostClient.deploy(
new SimpleBudget({
amount: parseEther("500"),
asset: chains.arbitrum.tokens.arbToken,
}),
);

const boost = await boostClient.createBoost({
action: new ERC721MintAction({
contract: "0xCcC...",
function: "mint(address,uint256)",
value: parseEther("0.1"),
}),
budget: simpleBudget,
incentives: [
new AllowListIncentive({
allowList: SimpleAllowList.at("0xAbA..."),
}),
new ERC20Incentive({
amount: parseEther("2.5"),
asset: chains.arbitrum.tokens.arbToken,
}),
],
validator: SignerValidator.DEFAULT,
});
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,17 @@
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@vitest/coverage-v8": "^1.6.0",
"@wagmi/connectors": "^5.0.19",
"@wagmi/core": "^2.11.2",
"find-process": "^1.4.7",
"hardhat": "^2.22.5",
"lefthook": "^1.6.15",
"prettier": "^3.2.5",
"turbo": "^2.0.0",
"typescript": "^5.3.3",
"viem": "^2.9.9",
"vite": "^5.2.13",
"vitest": "^1.6.0"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface ERC1155Utils$Type {
"contractName": "ERC1155Utils",
"sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"contractName": "ERC1155Utils",
"sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface Arrays$Type {
"contractName": "Arrays",
"sourceName": "@openzeppelin/contracts/utils/Arrays.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"contractName": "Arrays",
"sourceName": "@openzeppelin/contracts/utils/Arrays.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface Math$Type {
"contractName": "Math",
"sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"contractName": "Math",
"sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export interface LibClone$Type {
"type": "error"
}
],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"type": "error"
}
],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export interface LibString$Type {
"type": "error"
}
],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220d91b6d503cc3e113ad0f1da3205ab19c545773a65b6a734db62a9fecfe23610264736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220d91b6d503cc3e113ad0f1da3205ab19c545773a65b6a734db62a9fecfe23610264736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220a7c4c8c81754008c44f25b6243c939cbe40cffddd47b5aab4976c89559e5014964736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220a7c4c8c81754008c44f25b6243c939cbe40cffddd47b5aab4976c89559e5014964736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Loading
Loading