Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
aowheel committed Oct 3, 2024
2 parents af1f7b7 + 5be8d9c commit 559caf1
Show file tree
Hide file tree
Showing 16 changed files with 1,782 additions and 143 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,19 @@ These solutions were combined with ideas from [Hats Protocol](https://www.hatspr

## Related Contract Addresses

### Sepolia

| ContractAddress | Name | Memo |
| ------------------------------------------ | ----------------------- | ---- |
| 0x5d7a64Cc808294C516076d371685ed4E6aDd6337 | BigBang | |
| 0xb8f7ca7a5b1e457b8735884419e114f90d53e1d5 | FractionToken | |
| 0x8da1c0864962c5e26c99cf839b0dc48e39104568 | SplitsCreatorFactory | |
| 0xda9fbab4436e4124cd6ee6864d4b46d0dd412414 | SplitsCreatorIMPL | |
| 0xd4a66507ea8c8382fa8474ed6cae4163676a434a | HatsTimeFrameModuleIMPL | |
| 0x3bc1A0Ad72417f2d411118085256fC53CBdDd137 | Hats | |
| 0x0a3f85fa597B6a967271286aA0724811acDF5CD9 | HatsModuleFactory | |
| 0x80f1B766817D04870f115fEBbcCADF8DBF75E017 | PullSplitsFactory | |

### Holesky

| ContractAddress | Name | Memo |
Expand Down
228 changes: 228 additions & 0 deletions pkgs/cli/src/abi/bigbang.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,228 @@
export const BIGBANG_ABI = [
{
inputs: [
{
internalType: "address",
name: "_trustedForwarder",
type: "address",
},
{
internalType: "address",
name: "_hatsAddress",
type: "address",
},
{
internalType: "address",
name: "_hatsModuleFactory",
type: "address",
},
{
internalType: "address",
name: "_hatsTimeFrameModule_IMPL",
type: "address",
},
{
internalType: "address",
name: "_splitsCreatorFactory",
type: "address",
},
{
internalType: "address",
name: "_splitFactoryV2",
type: "address",
},
{
internalType: "address",
name: "_fractionToken",
type: "address",
},
],
stateMutability: "nonpayable",
type: "constructor",
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "address",
name: "owner",
type: "address",
},
{
indexed: true,
internalType: "uint256",
name: "topHatId",
type: "uint256",
},
{
indexed: false,
internalType: "address",
name: "hatsTimeFrameModule",
type: "address",
},
{
indexed: false,
internalType: "address",
name: "splitCreator",
type: "address",
},
],
name: "Executed",
type: "event",
},
{
inputs: [],
name: "Hats",
outputs: [
{
internalType: "contract IHats",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "HatsModuleFactory",
outputs: [
{
internalType: "contract IHatsModuleFactory",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "HatsTimeFrameModule_IMPL",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "SplitsCreatorFactory",
outputs: [
{
internalType: "contract ISplitsCreatorFactory",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [
{
internalType: "address",
name: "_owner",
type: "address",
},
{
internalType: "string",
name: "_topHatDetails",
type: "string",
},
{
internalType: "string",
name: "_topHatImageURI",
type: "string",
},
{
internalType: "string",
name: "_hatterHatDetails",
type: "string",
},
{
internalType: "string",
name: "_hatterHatImageURI",
type: "string",
},
{
internalType: "address",
name: "_trustedForwarder",
type: "address",
},
],
name: "bigbang",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "nonpayable",
type: "function",
},
{
inputs: [],
name: "fractionToken",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [
{
internalType: "address",
name: "forwarder",
type: "address",
},
],
name: "isTrustedForwarder",
outputs: [
{
internalType: "bool",
name: "",
type: "bool",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "splitFactoryV2",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "trustedForwarder",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
] as const;
Loading

0 comments on commit 559caf1

Please sign in to comment.