@geoprotocol/geo-sdk 0.19.0 → 0.20.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +98 -45
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/abis/dao-space-factory.d.ts +43 -6
- package/dist/src/abis/dao-space-factory.d.ts.map +1 -1
- package/dist/src/abis/dao-space-factory.js +38 -27
- package/dist/src/abis/dao-space-factory.js.map +1 -1
- package/dist/src/abis/dao-space.d.ts +98 -7
- package/dist/src/abis/dao-space.d.ts.map +1 -1
- package/dist/src/abis/dao-space.js +61 -99
- package/dist/src/abis/dao-space.js.map +1 -1
- package/dist/src/abis/index.d.ts +2 -2
- package/dist/src/abis/index.d.ts.map +1 -1
- package/dist/src/abis/index.js +2 -2
- package/dist/src/abis/index.js.map +1 -1
- package/dist/src/api-surface.e2e.test.d.ts +2 -0
- package/dist/src/api-surface.e2e.test.d.ts.map +1 -0
- package/dist/src/{e2e-api-surface.test.js → api-surface.e2e.test.js} +87 -101
- package/dist/src/api-surface.e2e.test.js.map +1 -0
- package/dist/src/client/dao-spaces.d.ts +65 -33
- package/dist/src/client/dao-spaces.d.ts.map +1 -1
- package/dist/src/client/dao-spaces.js +133 -42
- package/dist/src/client/dao-spaces.js.map +1 -1
- package/dist/src/client/dao-spaces.test.js +277 -79
- package/dist/src/client/dao-spaces.test.js.map +1 -1
- package/dist/src/client/personal-spaces.js +2 -2
- package/dist/src/client/personal-spaces.js.map +1 -1
- package/dist/src/client/spaces.test.js +9 -7
- package/dist/src/client/spaces.test.js.map +1 -1
- package/dist/src/client.d.ts +19 -16
- package/dist/src/client.d.ts.map +1 -1
- package/dist/src/client.js +48 -59
- package/dist/src/client.js.map +1 -1
- package/dist/src/client.test.js +8 -3
- package/dist/src/client.test.js.map +1 -1
- package/dist/src/dao-space/constants.d.ts +10 -0
- package/dist/src/dao-space/constants.d.ts.map +1 -1
- package/dist/src/dao-space/constants.js +10 -0
- package/dist/src/dao-space/constants.js.map +1 -1
- package/dist/src/dao-space/execute-proposal.d.ts +1 -1
- package/dist/src/dao-space/execute-proposal.js +2 -2
- package/dist/src/dao-space/execute-proposal.js.map +1 -1
- package/dist/src/dao-space/index.d.ts +2 -1
- package/dist/src/dao-space/index.d.ts.map +1 -1
- package/dist/src/dao-space/index.js +1 -0
- package/dist/src/dao-space/index.js.map +1 -1
- package/dist/src/dao-space/propose-add-editor.d.ts +1 -20
- package/dist/src/dao-space/propose-add-editor.d.ts.map +1 -1
- package/dist/src/dao-space/propose-add-editor.js +12 -87
- package/dist/src/dao-space/propose-add-editor.js.map +1 -1
- package/dist/src/dao-space/propose-add-editor.test.js +16 -4
- package/dist/src/dao-space/propose-add-editor.test.js.map +1 -1
- package/dist/src/dao-space/propose-add-member.d.ts +1 -20
- package/dist/src/dao-space/propose-add-member.d.ts.map +1 -1
- package/dist/src/dao-space/propose-add-member.js +12 -87
- package/dist/src/dao-space/propose-add-member.js.map +1 -1
- package/dist/src/dao-space/propose-add-member.test.js +13 -0
- package/dist/src/dao-space/propose-add-member.test.js.map +1 -1
- package/dist/src/dao-space/propose-edit.test.js +45 -0
- package/dist/src/dao-space/propose-edit.test.js.map +1 -1
- package/dist/src/dao-space/propose-remove-editor.d.ts +1 -22
- package/dist/src/dao-space/propose-remove-editor.d.ts.map +1 -1
- package/dist/src/dao-space/propose-remove-editor.js +12 -94
- package/dist/src/dao-space/propose-remove-editor.js.map +1 -1
- package/dist/src/dao-space/propose-remove-editor.test.js +22 -4
- package/dist/src/dao-space/propose-remove-editor.test.js.map +1 -1
- package/dist/src/dao-space/propose-remove-member.d.ts +1 -22
- package/dist/src/dao-space/propose-remove-member.d.ts.map +1 -1
- package/dist/src/dao-space/propose-remove-member.js +12 -94
- package/dist/src/dao-space/propose-remove-member.js.map +1 -1
- package/dist/src/dao-space/propose-remove-member.test.js +19 -0
- package/dist/src/dao-space/propose-remove-member.test.js.map +1 -1
- package/dist/src/dao-space/types.d.ts +72 -11
- package/dist/src/dao-space/types.d.ts.map +1 -1
- package/dist/src/dao-space/vote-proposal.d.ts +1 -1
- package/dist/src/dao-space/vote-proposal.js +2 -2
- package/dist/src/dao-space/vote-proposal.js.map +1 -1
- package/dist/src/dao-space/vote-proposal.test.js +54 -0
- package/dist/src/dao-space/vote-proposal.test.js.map +1 -1
- package/dist/src/e2e-test-environment.d.ts +26 -0
- package/dist/src/e2e-test-environment.d.ts.map +1 -0
- package/dist/src/e2e-test-environment.js +150 -0
- package/dist/src/e2e-test-environment.js.map +1 -0
- package/dist/src/encodings/get-create-dao-space-calldata.d.ts +32 -9
- package/dist/src/encodings/get-create-dao-space-calldata.d.ts.map +1 -1
- package/dist/src/encodings/get-create-dao-space-calldata.js +63 -16
- package/dist/src/encodings/get-create-dao-space-calldata.js.map +1 -1
- package/dist/src/encodings/get-create-dao-space-calldata.test.js +90 -23
- package/dist/src/encodings/get-create-dao-space-calldata.test.js.map +1 -1
- package/dist/src/full-flow-test.test.js +5 -2
- package/dist/src/full-flow-test.test.js.map +1 -1
- package/dist/src/legacy-api-surface.e2e.test.d.ts +2 -0
- package/dist/src/legacy-api-surface.e2e.test.d.ts.map +1 -0
- package/dist/src/{e2e-legacy-api-surface.test.js → legacy-api-surface.e2e.test.js} +91 -71
- package/dist/src/legacy-api-surface.e2e.test.js.map +1 -0
- package/dist/src/personal-space/constants.d.ts +1 -1
- package/dist/src/personal-space/constants.d.ts.map +1 -1
- package/dist/src/personal-space/constants.js +1 -1
- package/dist/src/personal-space/constants.js.map +1 -1
- package/dist/src/personal-space/create-space.d.ts +2 -2
- package/dist/src/personal-space/create-space.d.ts.map +1 -1
- package/dist/src/personal-space/create-space.js +4 -3
- package/dist/src/personal-space/create-space.js.map +1 -1
- package/dist/src/personal-space/types.d.ts +4 -1
- package/dist/src/personal-space/types.d.ts.map +1 -1
- package/package.json +3 -2
- package/dist/proto.d.ts +0 -5
- package/dist/proto.d.ts.map +0 -1
- package/dist/proto.js +0 -5
- package/dist/proto.js.map +0 -1
- package/dist/src/client/proposals.d.ts +0 -185
- package/dist/src/client/proposals.d.ts.map +0 -1
- package/dist/src/client/proposals.js +0 -294
- package/dist/src/client/proposals.js.map +0 -1
- package/dist/src/client/proposals.test.d.ts +0 -2
- package/dist/src/client/proposals.test.d.ts.map +0 -1
- package/dist/src/client/proposals.test.js +0 -243
- package/dist/src/client/proposals.test.js.map +0 -1
- package/dist/src/contracts-v2/abis.d.ts +0 -196
- package/dist/src/contracts-v2/abis.d.ts.map +0 -1
- package/dist/src/contracts-v2/abis.js +0 -110
- package/dist/src/contracts-v2/abis.js.map +0 -1
- package/dist/src/contracts-v2/actions.d.ts +0 -56
- package/dist/src/contracts-v2/actions.d.ts.map +0 -1
- package/dist/src/contracts-v2/actions.js +0 -83
- package/dist/src/contracts-v2/actions.js.map +0 -1
- package/dist/src/contracts-v2/encoding.d.ts +0 -80
- package/dist/src/contracts-v2/encoding.d.ts.map +0 -1
- package/dist/src/contracts-v2/encoding.js +0 -193
- package/dist/src/contracts-v2/encoding.js.map +0 -1
- package/dist/src/contracts-v2/encoding.test.d.ts +0 -2
- package/dist/src/contracts-v2/encoding.test.d.ts.map +0 -1
- package/dist/src/contracts-v2/encoding.test.js +0 -93
- package/dist/src/contracts-v2/encoding.test.js.map +0 -1
- package/dist/src/contracts-v2/voting-settings.d.ts +0 -48
- package/dist/src/contracts-v2/voting-settings.d.ts.map +0 -1
- package/dist/src/contracts-v2/voting-settings.js +0 -69
- package/dist/src/contracts-v2/voting-settings.js.map +0 -1
- package/dist/src/e2e/local-geobrowser.d.ts +0 -9
- package/dist/src/e2e/local-geobrowser.d.ts.map +0 -1
- package/dist/src/e2e/local-geobrowser.js +0 -35
- package/dist/src/e2e/local-geobrowser.js.map +0 -1
- package/dist/src/e2e/v2-contracts.test.d.ts +0 -2
- package/dist/src/e2e/v2-contracts.test.d.ts.map +0 -1
- package/dist/src/e2e/v2-contracts.test.js +0 -25
- package/dist/src/e2e/v2-contracts.test.js.map +0 -1
- package/dist/src/e2e-api-surface.test.d.ts +0 -2
- package/dist/src/e2e-api-surface.test.d.ts.map +0 -1
- package/dist/src/e2e-api-surface.test.js.map +0 -1
- package/dist/src/e2e-flows.test.d.ts +0 -2
- package/dist/src/e2e-flows.test.d.ts.map +0 -1
- package/dist/src/e2e-flows.test.js +0 -445
- package/dist/src/e2e-flows.test.js.map +0 -1
- package/dist/src/e2e-legacy-api-surface.test.d.ts +0 -2
- package/dist/src/e2e-legacy-api-surface.test.d.ts.map +0 -1
- package/dist/src/e2e-legacy-api-surface.test.js.map +0 -1
- package/dist/src/graph/create-space.d.ts +0 -37
- package/dist/src/graph/create-space.d.ts.map +0 -1
- package/dist/src/graph/create-space.js +0 -67
- package/dist/src/graph/create-space.js.map +0 -1
- package/dist/src/ops/images.d.ts +0 -37
- package/dist/src/ops/images.d.ts.map +0 -1
- package/dist/src/ops/images.js +0 -69
- package/dist/src/ops/images.js.map +0 -1
- package/dist/src/proto/index.d.ts +0 -7
- package/dist/src/proto/index.d.ts.map +0 -1
- package/dist/src/proto/index.js +0 -7
- package/dist/src/proto/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -136,6 +136,25 @@ const geo = createGeoClient({
|
|
|
136
136
|
});
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
+
### Local Contracts V2 Validation
|
|
140
|
+
|
|
141
|
+
When working against the local-geobrowser contracts checkout, deploy that stack
|
|
142
|
+
first so it writes `.deployments.json`, then point the SDK opt-in test at it:
|
|
143
|
+
|
|
144
|
+
```sh
|
|
145
|
+
cd /path/to/local-geobrowser
|
|
146
|
+
just init-infra
|
|
147
|
+
just init-contract
|
|
148
|
+
|
|
149
|
+
cd /path/to/geo-sdk
|
|
150
|
+
GEO_LOCAL_GEOBROWSER_DEPLOYMENTS=/path/to/local-geobrowser/.deployments.json \
|
|
151
|
+
pnpm exec vitest run src/contracts-v2/local-geobrowser.e2e.test.ts
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
The test builds a custom `defineGeoNetworkConfig(...)` from the deployment file
|
|
155
|
+
and decodes DAO creation, update-voting-settings proposal, and versioned vote
|
|
156
|
+
calldata against the contracts v2 ABIs.
|
|
157
|
+
|
|
139
158
|
## Ops API
|
|
140
159
|
|
|
141
160
|
Ops functions build operation arrays that can be combined before publishing.
|
|
@@ -597,6 +616,23 @@ The `author` field is the author's personal space ID, not a wallet address.
|
|
|
597
616
|
|
|
598
617
|
### `geo.daoSpaces`
|
|
599
618
|
|
|
619
|
+
DAO helpers target the contracts v2 surface. Voting settings use percentages
|
|
620
|
+
and days on the SDK side; the SDK maps them to ratio-base integers and seconds
|
|
621
|
+
for the contract. Use a network config whose DAO contract addresses point at a
|
|
622
|
+
contracts v2 deployment.
|
|
623
|
+
|
|
624
|
+
```ts
|
|
625
|
+
const votingSettings = {
|
|
626
|
+
partialPercentageSupportThreshold: 50,
|
|
627
|
+
universalPercentageSupportThreshold: 90,
|
|
628
|
+
flatSupportThreshold: 1,
|
|
629
|
+
quorum: 1,
|
|
630
|
+
durationInDays: 2,
|
|
631
|
+
disableFastPathAccessForNewMembers: true,
|
|
632
|
+
executionGracePeriodInDays: 14,
|
|
633
|
+
};
|
|
634
|
+
```
|
|
635
|
+
|
|
600
636
|
Create a DAO space:
|
|
601
637
|
|
|
602
638
|
```ts
|
|
@@ -605,12 +641,7 @@ const tx = await geo.daoSpaces.create({
|
|
|
605
641
|
author: authorSpaceId,
|
|
606
642
|
initialEditorSpaceIds: [authorSpaceId],
|
|
607
643
|
initialMemberSpaceIds: [authorSpaceId],
|
|
608
|
-
votingSettings
|
|
609
|
-
slowPathPercentageThreshold: 50,
|
|
610
|
-
fastPathFlatThreshold: 1,
|
|
611
|
-
quorum: 1,
|
|
612
|
-
durationInDays: 3,
|
|
613
|
-
},
|
|
644
|
+
votingSettings,
|
|
614
645
|
});
|
|
615
646
|
|
|
616
647
|
await walletClient.sendTransaction({
|
|
@@ -659,6 +690,27 @@ await walletClient.sendTransaction({
|
|
|
659
690
|
});
|
|
660
691
|
```
|
|
661
692
|
|
|
693
|
+
Create a new version of an existing edit proposal:
|
|
694
|
+
|
|
695
|
+
```ts
|
|
696
|
+
const updatedProposal = await geo.daoSpaces.proposeEdit({
|
|
697
|
+
name: "Update entity name, revision 2",
|
|
698
|
+
ops,
|
|
699
|
+
author: authorSpaceId,
|
|
700
|
+
daoSpaceAddress,
|
|
701
|
+
callerSpaceId: authorSpaceId,
|
|
702
|
+
daoSpaceId,
|
|
703
|
+
proposalId,
|
|
704
|
+
updateProposal: true,
|
|
705
|
+
versionId: 2,
|
|
706
|
+
});
|
|
707
|
+
```
|
|
708
|
+
|
|
709
|
+
If `updateProposal: true` is set and `versionId` is omitted, the SDK reads
|
|
710
|
+
`latestProposalVersion(...)` from the configured network RPC before uploading
|
|
711
|
+
the edit. Pass `versionId` when you already know the next version or when your
|
|
712
|
+
custom network config has no RPC URL.
|
|
713
|
+
|
|
662
714
|
Manage DAO members and editors:
|
|
663
715
|
|
|
664
716
|
```ts
|
|
@@ -694,6 +746,27 @@ const removeEditor = geo.daoSpaces.proposeRemoveEditor({
|
|
|
694
746
|
|
|
695
747
|
Editor changes only support `SLOW` voting. Member changes can use the default or an explicit `votingMode`.
|
|
696
748
|
|
|
749
|
+
Propose voting-settings changes:
|
|
750
|
+
|
|
751
|
+
```ts
|
|
752
|
+
const updateVoting = geo.daoSpaces.proposeUpdateVotingSettings({
|
|
753
|
+
authorSpaceId,
|
|
754
|
+
spaceId: daoSpaceId,
|
|
755
|
+
daoSpaceAddress,
|
|
756
|
+
votingSettings: {
|
|
757
|
+
partialPercentageSupportThreshold: 60,
|
|
758
|
+
universalPercentageSupportThreshold: 95,
|
|
759
|
+
flatSupportThreshold: 2,
|
|
760
|
+
quorum: 2,
|
|
761
|
+
durationInDays: 5,
|
|
762
|
+
disableFastPathAccessForNewMembers: true,
|
|
763
|
+
executionGracePeriodInDays: 14,
|
|
764
|
+
},
|
|
765
|
+
});
|
|
766
|
+
```
|
|
767
|
+
|
|
768
|
+
Updating voting settings only supports `SLOW` voting.
|
|
769
|
+
|
|
697
770
|
Request membership in a DAO space:
|
|
698
771
|
|
|
699
772
|
```ts
|
|
@@ -710,50 +783,14 @@ await walletClient.sendTransaction({
|
|
|
710
783
|
|
|
711
784
|
DAO proposal IDs and DAO space IDs are bytes16 hex strings, usually `0x` plus 32 hex characters.
|
|
712
785
|
|
|
713
|
-
### `geo.daoSpaces.proposals`
|
|
714
|
-
|
|
715
|
-
Use low-level proposal helpers when you want to assemble proposal actions yourself.
|
|
716
|
-
|
|
717
|
-
```ts
|
|
718
|
-
const actions = [
|
|
719
|
-
geo.daoSpaces.proposals.actions.addMember(daoSpaceAddress, memberSpaceId),
|
|
720
|
-
geo.daoSpaces.proposals.actions.updateVotingSettings(daoSpaceAddress, {
|
|
721
|
-
slowPathPercentageThreshold: 60,
|
|
722
|
-
fastPathFlatThreshold: 2,
|
|
723
|
-
quorum: 3,
|
|
724
|
-
durationInDays: 5,
|
|
725
|
-
}),
|
|
726
|
-
];
|
|
727
|
-
|
|
728
|
-
const proposal = geo.daoSpaces.proposals.create({
|
|
729
|
-
fromSpaceId: authorSpaceId,
|
|
730
|
-
daoSpaceId,
|
|
731
|
-
votingMode: "SLOW",
|
|
732
|
-
actions,
|
|
733
|
-
});
|
|
734
|
-
```
|
|
735
|
-
|
|
736
|
-
Available proposal actions:
|
|
737
|
-
|
|
738
|
-
```ts
|
|
739
|
-
geo.daoSpaces.proposals.actions.publishEdit(daoSpaceAddress, cid);
|
|
740
|
-
geo.daoSpaces.proposals.actions.addMember(daoSpaceAddress, memberSpaceId);
|
|
741
|
-
geo.daoSpaces.proposals.actions.removeMember(daoSpaceAddress, memberSpaceId);
|
|
742
|
-
geo.daoSpaces.proposals.actions.addEditor(daoSpaceAddress, editorSpaceId);
|
|
743
|
-
geo.daoSpaces.proposals.actions.removeEditor(daoSpaceAddress, editorSpaceId);
|
|
744
|
-
geo.daoSpaces.proposals.actions.updateVotingSettings(
|
|
745
|
-
daoSpaceAddress,
|
|
746
|
-
votingSettings,
|
|
747
|
-
);
|
|
748
|
-
```
|
|
749
|
-
|
|
750
786
|
Vote on a proposal:
|
|
751
787
|
|
|
752
788
|
```ts
|
|
753
|
-
const vote = geo.daoSpaces.
|
|
789
|
+
const vote = geo.daoSpaces.voteProposal({
|
|
754
790
|
authorSpaceId,
|
|
755
791
|
spaceId: daoSpaceId,
|
|
756
792
|
proposalId,
|
|
793
|
+
versionId: 1,
|
|
757
794
|
vote: "YES",
|
|
758
795
|
});
|
|
759
796
|
|
|
@@ -763,10 +800,13 @@ await walletClient.sendTransaction({
|
|
|
763
800
|
});
|
|
764
801
|
```
|
|
765
802
|
|
|
803
|
+
`versionId` defaults to `1`. Pass it explicitly when voting on a later proposal
|
|
804
|
+
version.
|
|
805
|
+
|
|
766
806
|
Execute a passed proposal:
|
|
767
807
|
|
|
768
808
|
```ts
|
|
769
|
-
const execute = geo.daoSpaces.
|
|
809
|
+
const execute = geo.daoSpaces.executeProposal({
|
|
770
810
|
authorSpaceId,
|
|
771
811
|
spaceId: daoSpaceId,
|
|
772
812
|
proposalId,
|
|
@@ -1181,6 +1221,7 @@ const vote = daoSpace.voteProposal({
|
|
|
1181
1221
|
authorSpaceId,
|
|
1182
1222
|
spaceId: daoSpaceId,
|
|
1183
1223
|
proposalId,
|
|
1224
|
+
versionId: 1,
|
|
1184
1225
|
vote: "YES",
|
|
1185
1226
|
network: "TESTNET",
|
|
1186
1227
|
});
|
|
@@ -1199,6 +1240,7 @@ Legacy DAO membership helpers:
|
|
|
1199
1240
|
daoSpace.proposeAddMember({
|
|
1200
1241
|
authorSpaceId,
|
|
1201
1242
|
spaceId: daoSpaceId,
|
|
1243
|
+
daoSpaceAddress,
|
|
1202
1244
|
newMemberSpaceId,
|
|
1203
1245
|
network: "TESTNET",
|
|
1204
1246
|
});
|
|
@@ -1206,6 +1248,7 @@ daoSpace.proposeAddMember({
|
|
|
1206
1248
|
daoSpace.proposeRemoveMember({
|
|
1207
1249
|
authorSpaceId,
|
|
1208
1250
|
spaceId: daoSpaceId,
|
|
1251
|
+
daoSpaceAddress,
|
|
1209
1252
|
memberToRemoveSpaceId,
|
|
1210
1253
|
network: "TESTNET",
|
|
1211
1254
|
});
|
|
@@ -1213,6 +1256,7 @@ daoSpace.proposeRemoveMember({
|
|
|
1213
1256
|
daoSpace.proposeAddEditor({
|
|
1214
1257
|
authorSpaceId,
|
|
1215
1258
|
spaceId: daoSpaceId,
|
|
1259
|
+
daoSpaceAddress,
|
|
1216
1260
|
newEditorSpaceId,
|
|
1217
1261
|
network: "TESTNET",
|
|
1218
1262
|
});
|
|
@@ -1220,10 +1264,19 @@ daoSpace.proposeAddEditor({
|
|
|
1220
1264
|
daoSpace.proposeRemoveEditor({
|
|
1221
1265
|
authorSpaceId,
|
|
1222
1266
|
spaceId: daoSpaceId,
|
|
1267
|
+
daoSpaceAddress,
|
|
1223
1268
|
editorToRemoveSpaceId,
|
|
1224
1269
|
network: "TESTNET",
|
|
1225
1270
|
});
|
|
1226
1271
|
|
|
1272
|
+
daoSpace.proposeUpdateVotingSettings({
|
|
1273
|
+
authorSpaceId,
|
|
1274
|
+
spaceId: daoSpaceId,
|
|
1275
|
+
daoSpaceAddress,
|
|
1276
|
+
votingSettings,
|
|
1277
|
+
network: "TESTNET",
|
|
1278
|
+
});
|
|
1279
|
+
|
|
1227
1280
|
daoSpace.proposeRequestMembership({
|
|
1228
1281
|
authorSpaceId: requesterSpaceId,
|
|
1229
1282
|
spaceId: daoSpaceId,
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export { getChecksumAddress } from './src/core/get-checksum-address.js';
|
|
|
18
18
|
*/
|
|
19
19
|
export * as daoSpace from './src/dao-space/index.js';
|
|
20
20
|
export * as Encoding from './src/encoding.js';
|
|
21
|
-
export { getAcceptEditorArguments, getAcceptSubspaceArguments, getCalldataForSpaceGovernanceType, getCreateDaoSpaceCalldata, getCreatePersonalSpaceCalldata, getProcessGeoProposalArguments, getRemoveEditorArguments, getRemoveSubspaceArguments, validateIpfsUri, } from './src/encodings/index.js';
|
|
21
|
+
export { DEFAULT_VOTING_SETTINGS, daysToSeconds, getAcceptEditorArguments, getAcceptSubspaceArguments, getCalldataForSpaceGovernanceType, getCreateDaoSpaceCalldata, getCreatePersonalSpaceCalldata, getProcessGeoProposalArguments, getRemoveEditorArguments, getRemoveSubspaceArguments, MINIMUM_EXECUTION_GRACE_PERIOD, MINIMUM_EXECUTION_GRACE_PERIOD_DAYS, MINIMUM_VOTING_DURATION, MINIMUM_VOTING_DURATION_DAYS, percentageToRatio, toContractVotingSettings, validateIpfsUri, validateVotingSettingsInput, } from './src/encodings/index.js';
|
|
22
22
|
/**
|
|
23
23
|
* @deprecated Use `Ops` for pure operation builders and `createGeoClient({ network })`
|
|
24
24
|
* for API, storage, image, comment, entity-delete, and transaction workflows.
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD;;;GAGG;AACH,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE;;GAEG;AACH,OAAO,KAAK,QAAQ,MAAM,0BAA0B,CAAC;AACrD,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EACL,wBAAwB,EACxB,0BAA0B,EAC1B,iCAAiC,EACjC,yBAAyB,EACzB,8BAA8B,EAC9B,8BAA8B,EAC9B,wBAAwB,EACxB,0BAA0B,EAC1B,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD;;;GAGG;AACH,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE;;GAEG;AACH,OAAO,KAAK,QAAQ,MAAM,0BAA0B,CAAC;AACrD,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EACL,uBAAuB,EACvB,aAAa,EACb,wBAAwB,EACxB,0BAA0B,EAC1B,iCAAiC,EACjC,yBAAyB,EACzB,8BAA8B,EAC9B,8BAA8B,EAC9B,wBAAwB,EACxB,0BAA0B,EAC1B,8BAA8B,EAC9B,mCAAmC,EACnC,uBAAuB,EACvB,4BAA4B,EAC5B,iBAAiB,EACjB,wBAAwB,EACxB,eAAe,EACf,2BAA2B,GAC5B,MAAM,0BAA0B,CAAC;AAClC;;;GAGG;AACH,OAAO,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAC9C,OAAO,EAAE,EAAE,EAAE,MAAM,aAAa,CAAC;AACjC;;;GAGG;AACH,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAC7C;;;;;GAKG;AACH,OAAO,KAAK,IAAI,MAAM,eAAe,CAAC;AACtC,OAAO,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,GAAG,MAAM,oBAAoB,CAAC;AAC1C;;;;GAIG;AACH,OAAO,KAAK,aAAa,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C;;;GAGG;AACH,OAAO,KAAK,IAAI,MAAM,sBAAsB,CAAC;AAE7C;;;;GAIG;AACH,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE3C,OAAO,EACL,2BAA2B,EAC3B,eAAe,EACf,eAAe,GAChB,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACxE,cAAc,gBAAgB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export { getChecksumAddress } from './src/core/get-checksum-address.js';
|
|
|
18
18
|
*/
|
|
19
19
|
export * as daoSpace from './src/dao-space/index.js';
|
|
20
20
|
export * as Encoding from './src/encoding.js';
|
|
21
|
-
export { getAcceptEditorArguments, getAcceptSubspaceArguments, getCalldataForSpaceGovernanceType, getCreateDaoSpaceCalldata, getCreatePersonalSpaceCalldata, getProcessGeoProposalArguments, getRemoveEditorArguments, getRemoveSubspaceArguments, validateIpfsUri, } from './src/encodings/index.js';
|
|
21
|
+
export { DEFAULT_VOTING_SETTINGS, daysToSeconds, getAcceptEditorArguments, getAcceptSubspaceArguments, getCalldataForSpaceGovernanceType, getCreateDaoSpaceCalldata, getCreatePersonalSpaceCalldata, getProcessGeoProposalArguments, getRemoveEditorArguments, getRemoveSubspaceArguments, MINIMUM_EXECUTION_GRACE_PERIOD, MINIMUM_EXECUTION_GRACE_PERIOD_DAYS, MINIMUM_VOTING_DURATION, MINIMUM_VOTING_DURATION_DAYS, percentageToRatio, toContractVotingSettings, validateIpfsUri, validateVotingSettingsInput, } from './src/encodings/index.js';
|
|
22
22
|
/**
|
|
23
23
|
* @deprecated Use `Ops` for pure operation builders and `createGeoClient({ network })`
|
|
24
24
|
* for API, storage, image, comment, entity-delete, and transaction workflows.
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD;;;GAGG;AACH,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE;;GAEG;AACH,OAAO,KAAK,QAAQ,MAAM,0BAA0B,CAAC;AACrD,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EACL,wBAAwB,EACxB,0BAA0B,EAC1B,iCAAiC,EACjC,yBAAyB,EACzB,8BAA8B,EAC9B,8BAA8B,EAC9B,wBAAwB,EACxB,0BAA0B,EAC1B,eAAe,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD;;;GAGG;AACH,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE;;GAEG;AACH,OAAO,KAAK,QAAQ,MAAM,0BAA0B,CAAC;AACrD,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EACL,uBAAuB,EACvB,aAAa,EACb,wBAAwB,EACxB,0BAA0B,EAC1B,iCAAiC,EACjC,yBAAyB,EACzB,8BAA8B,EAC9B,8BAA8B,EAC9B,wBAAwB,EACxB,0BAA0B,EAC1B,8BAA8B,EAC9B,mCAAmC,EACnC,uBAAuB,EACvB,4BAA4B,EAC5B,iBAAiB,EACjB,wBAAwB,EACxB,eAAe,EACf,2BAA2B,GAC5B,MAAM,0BAA0B,CAAC;AAClC;;;GAGG;AACH,OAAO,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAC9C,OAAO,EAAE,EAAE,EAAE,MAAM,aAAa,CAAC;AACjC;;;GAGG;AACH,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAC7C;;;;;GAKG;AACH,OAAO,KAAK,IAAI,MAAM,eAAe,CAAC;AACtC,OAAO,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,GAAG,MAAM,oBAAoB,CAAC;AAC1C;;;;GAIG;AACH,OAAO,KAAK,aAAa,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C;;;GAGG;AACH,OAAO,KAAK,IAAI,MAAM,sBAAsB,CAAC;AAE7C;;;;GAIG;AACH,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE3C,OAAO,EACL,2BAA2B,EAC3B,eAAe,EACf,eAAe,GAChB,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACxE,cAAc,gBAAgB,CAAC"}
|
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
export declare const VotingSettingsV2Components: readonly [{
|
|
2
|
+
readonly internalType: "uint256";
|
|
3
|
+
readonly name: "partialPercentageSupportThreshold";
|
|
4
|
+
readonly type: "uint256";
|
|
5
|
+
}, {
|
|
6
|
+
readonly internalType: "uint256";
|
|
7
|
+
readonly name: "universalPercentageSupportThreshold";
|
|
8
|
+
readonly type: "uint256";
|
|
9
|
+
}, {
|
|
10
|
+
readonly internalType: "uint256";
|
|
11
|
+
readonly name: "flatSupportThreshold";
|
|
12
|
+
readonly type: "uint256";
|
|
13
|
+
}, {
|
|
14
|
+
readonly internalType: "uint256";
|
|
15
|
+
readonly name: "quorum";
|
|
16
|
+
readonly type: "uint256";
|
|
17
|
+
}, {
|
|
18
|
+
readonly internalType: "uint256";
|
|
19
|
+
readonly name: "duration";
|
|
20
|
+
readonly type: "uint256";
|
|
21
|
+
}, {
|
|
22
|
+
readonly internalType: "bool";
|
|
23
|
+
readonly name: "disableFastPathAccessForNewMembers";
|
|
24
|
+
readonly type: "bool";
|
|
25
|
+
}, {
|
|
26
|
+
readonly internalType: "uint256";
|
|
27
|
+
readonly name: "executionGracePeriod";
|
|
28
|
+
readonly type: "uint256";
|
|
29
|
+
}];
|
|
1
30
|
export declare const abi: readonly [{
|
|
2
31
|
readonly inputs: readonly [];
|
|
3
32
|
readonly stateMutability: "nonpayable";
|
|
@@ -111,11 +140,15 @@ export declare const abi: readonly [{
|
|
|
111
140
|
readonly inputs: readonly [{
|
|
112
141
|
readonly components: readonly [{
|
|
113
142
|
readonly internalType: "uint256";
|
|
114
|
-
readonly name: "
|
|
143
|
+
readonly name: "partialPercentageSupportThreshold";
|
|
115
144
|
readonly type: "uint256";
|
|
116
145
|
}, {
|
|
117
146
|
readonly internalType: "uint256";
|
|
118
|
-
readonly name: "
|
|
147
|
+
readonly name: "universalPercentageSupportThreshold";
|
|
148
|
+
readonly type: "uint256";
|
|
149
|
+
}, {
|
|
150
|
+
readonly internalType: "uint256";
|
|
151
|
+
readonly name: "flatSupportThreshold";
|
|
119
152
|
readonly type: "uint256";
|
|
120
153
|
}, {
|
|
121
154
|
readonly internalType: "uint256";
|
|
@@ -125,6 +158,14 @@ export declare const abi: readonly [{
|
|
|
125
158
|
readonly internalType: "uint256";
|
|
126
159
|
readonly name: "duration";
|
|
127
160
|
readonly type: "uint256";
|
|
161
|
+
}, {
|
|
162
|
+
readonly internalType: "bool";
|
|
163
|
+
readonly name: "disableFastPathAccessForNewMembers";
|
|
164
|
+
readonly type: "bool";
|
|
165
|
+
}, {
|
|
166
|
+
readonly internalType: "uint256";
|
|
167
|
+
readonly name: "executionGracePeriod";
|
|
168
|
+
readonly type: "uint256";
|
|
128
169
|
}];
|
|
129
170
|
readonly internalType: "struct IDAOSpace.VotingSettings";
|
|
130
171
|
readonly name: "_votingSettings";
|
|
@@ -149,10 +190,6 @@ export declare const abi: readonly [{
|
|
|
149
190
|
readonly internalType: "bytes16";
|
|
150
191
|
readonly name: "_initialTopicId";
|
|
151
192
|
readonly type: "bytes16";
|
|
152
|
-
}, {
|
|
153
|
-
readonly internalType: "bytes";
|
|
154
|
-
readonly name: "_initialTopicData";
|
|
155
|
-
readonly type: "bytes";
|
|
156
193
|
}];
|
|
157
194
|
readonly name: "createDAOSpaceProxy";
|
|
158
195
|
readonly outputs: readonly [{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dao-space-factory.d.ts","sourceRoot":"","sources":["../../../src/abis/dao-space-factory.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,GAAG
|
|
1
|
+
{"version":3,"file":"dao-space-factory.d.ts","sourceRoot":"","sources":["../../../src/abis/dao-space-factory.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoC7B,CAAC;AAEX,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2UN,CAAC"}
|
|
@@ -1,3 +1,40 @@
|
|
|
1
|
+
export const VotingSettingsV2Components = [
|
|
2
|
+
{
|
|
3
|
+
internalType: 'uint256',
|
|
4
|
+
name: 'partialPercentageSupportThreshold',
|
|
5
|
+
type: 'uint256',
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
internalType: 'uint256',
|
|
9
|
+
name: 'universalPercentageSupportThreshold',
|
|
10
|
+
type: 'uint256',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
internalType: 'uint256',
|
|
14
|
+
name: 'flatSupportThreshold',
|
|
15
|
+
type: 'uint256',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
internalType: 'uint256',
|
|
19
|
+
name: 'quorum',
|
|
20
|
+
type: 'uint256',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
internalType: 'uint256',
|
|
24
|
+
name: 'duration',
|
|
25
|
+
type: 'uint256',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
internalType: 'bool',
|
|
29
|
+
name: 'disableFastPathAccessForNewMembers',
|
|
30
|
+
type: 'bool',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
internalType: 'uint256',
|
|
34
|
+
name: 'executionGracePeriod',
|
|
35
|
+
type: 'uint256',
|
|
36
|
+
},
|
|
37
|
+
];
|
|
1
38
|
export const abi = [
|
|
2
39
|
{
|
|
3
40
|
inputs: [],
|
|
@@ -145,28 +182,7 @@ export const abi = [
|
|
|
145
182
|
{
|
|
146
183
|
inputs: [
|
|
147
184
|
{
|
|
148
|
-
components:
|
|
149
|
-
{
|
|
150
|
-
internalType: 'uint256',
|
|
151
|
-
name: 'slowPathPercentageThreshold',
|
|
152
|
-
type: 'uint256',
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
internalType: 'uint256',
|
|
156
|
-
name: 'fastPathFlatThreshold',
|
|
157
|
-
type: 'uint256',
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
internalType: 'uint256',
|
|
161
|
-
name: 'quorum',
|
|
162
|
-
type: 'uint256',
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
internalType: 'uint256',
|
|
166
|
-
name: 'duration',
|
|
167
|
-
type: 'uint256',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
185
|
+
components: VotingSettingsV2Components,
|
|
170
186
|
internalType: 'struct IDAOSpace.VotingSettings',
|
|
171
187
|
name: '_votingSettings',
|
|
172
188
|
type: 'tuple',
|
|
@@ -196,11 +212,6 @@ export const abi = [
|
|
|
196
212
|
name: '_initialTopicId',
|
|
197
213
|
type: 'bytes16',
|
|
198
214
|
},
|
|
199
|
-
{
|
|
200
|
-
internalType: 'bytes',
|
|
201
|
-
name: '_initialTopicData',
|
|
202
|
-
type: 'bytes',
|
|
203
|
-
},
|
|
204
215
|
],
|
|
205
216
|
name: 'createDAOSpaceProxy',
|
|
206
217
|
outputs: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dao-space-factory.js","sourceRoot":"","sources":["../../../src/abis/dao-space-factory.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"dao-space-factory.js","sourceRoot":"","sources":["../../../src/abis/dao-space-factory.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
export declare const ProposalParametersV2Components: readonly [{
|
|
2
|
+
readonly internalType: "enum IDAOSpace.VotingMode";
|
|
3
|
+
readonly name: "votingMode";
|
|
4
|
+
readonly type: "uint8";
|
|
5
|
+
}, {
|
|
6
|
+
readonly internalType: "uint256";
|
|
7
|
+
readonly name: "partialPercentageSupportThreshold";
|
|
8
|
+
readonly type: "uint256";
|
|
9
|
+
}, {
|
|
10
|
+
readonly internalType: "uint256";
|
|
11
|
+
readonly name: "universalPercentageSupportThreshold";
|
|
12
|
+
readonly type: "uint256";
|
|
13
|
+
}, {
|
|
14
|
+
readonly internalType: "uint256";
|
|
15
|
+
readonly name: "flatSupportThreshold";
|
|
16
|
+
readonly type: "uint256";
|
|
17
|
+
}, {
|
|
18
|
+
readonly internalType: "uint256";
|
|
19
|
+
readonly name: "quorum";
|
|
20
|
+
readonly type: "uint256";
|
|
21
|
+
}, {
|
|
22
|
+
readonly internalType: "uint256";
|
|
23
|
+
readonly name: "startDate";
|
|
24
|
+
readonly type: "uint256";
|
|
25
|
+
}, {
|
|
26
|
+
readonly internalType: "uint256";
|
|
27
|
+
readonly name: "lastDate";
|
|
28
|
+
readonly type: "uint256";
|
|
29
|
+
}, {
|
|
30
|
+
readonly internalType: "uint256";
|
|
31
|
+
readonly name: "executeBy";
|
|
32
|
+
readonly type: "uint256";
|
|
33
|
+
}];
|
|
1
34
|
export declare const abi: readonly [{
|
|
2
35
|
readonly inputs: readonly [];
|
|
3
36
|
readonly stateMutability: "nonpayable";
|
|
@@ -108,6 +141,16 @@ export declare const abi: readonly [{
|
|
|
108
141
|
}];
|
|
109
142
|
readonly stateMutability: "view";
|
|
110
143
|
readonly type: "function";
|
|
144
|
+
}, {
|
|
145
|
+
readonly inputs: readonly [];
|
|
146
|
+
readonly name: "MINIMUM_EXECUTION_GRACE_PERIOD";
|
|
147
|
+
readonly outputs: readonly [{
|
|
148
|
+
readonly internalType: "uint256";
|
|
149
|
+
readonly name: "";
|
|
150
|
+
readonly type: "uint256";
|
|
151
|
+
}];
|
|
152
|
+
readonly stateMutability: "view";
|
|
153
|
+
readonly type: "function";
|
|
111
154
|
}, {
|
|
112
155
|
readonly inputs: readonly [];
|
|
113
156
|
readonly name: "MINIMUM_VOTING_DURATION";
|
|
@@ -230,7 +273,15 @@ export declare const abi: readonly [{
|
|
|
230
273
|
readonly type: "uint8";
|
|
231
274
|
}, {
|
|
232
275
|
readonly internalType: "uint256";
|
|
233
|
-
readonly name: "
|
|
276
|
+
readonly name: "partialPercentageSupportThreshold";
|
|
277
|
+
readonly type: "uint256";
|
|
278
|
+
}, {
|
|
279
|
+
readonly internalType: "uint256";
|
|
280
|
+
readonly name: "universalPercentageSupportThreshold";
|
|
281
|
+
readonly type: "uint256";
|
|
282
|
+
}, {
|
|
283
|
+
readonly internalType: "uint256";
|
|
284
|
+
readonly name: "flatSupportThreshold";
|
|
234
285
|
readonly type: "uint256";
|
|
235
286
|
}, {
|
|
236
287
|
readonly internalType: "uint256";
|
|
@@ -244,6 +295,10 @@ export declare const abi: readonly [{
|
|
|
244
295
|
readonly internalType: "uint256";
|
|
245
296
|
readonly name: "lastDate";
|
|
246
297
|
readonly type: "uint256";
|
|
298
|
+
}, {
|
|
299
|
+
readonly internalType: "uint256";
|
|
300
|
+
readonly name: "executeBy";
|
|
301
|
+
readonly type: "uint256";
|
|
247
302
|
}];
|
|
248
303
|
readonly internalType: "struct IDAOSpace.ProposalParameters";
|
|
249
304
|
readonly name: "_parameters";
|
|
@@ -329,7 +384,15 @@ export declare const abi: readonly [{
|
|
|
329
384
|
readonly type: "uint8";
|
|
330
385
|
}, {
|
|
331
386
|
readonly internalType: "uint256";
|
|
332
|
-
readonly name: "
|
|
387
|
+
readonly name: "partialPercentageSupportThreshold";
|
|
388
|
+
readonly type: "uint256";
|
|
389
|
+
}, {
|
|
390
|
+
readonly internalType: "uint256";
|
|
391
|
+
readonly name: "universalPercentageSupportThreshold";
|
|
392
|
+
readonly type: "uint256";
|
|
393
|
+
}, {
|
|
394
|
+
readonly internalType: "uint256";
|
|
395
|
+
readonly name: "flatSupportThreshold";
|
|
333
396
|
readonly type: "uint256";
|
|
334
397
|
}, {
|
|
335
398
|
readonly internalType: "uint256";
|
|
@@ -343,6 +406,10 @@ export declare const abi: readonly [{
|
|
|
343
406
|
readonly internalType: "uint256";
|
|
344
407
|
readonly name: "lastDate";
|
|
345
408
|
readonly type: "uint256";
|
|
409
|
+
}, {
|
|
410
|
+
readonly internalType: "uint256";
|
|
411
|
+
readonly name: "executeBy";
|
|
412
|
+
readonly type: "uint256";
|
|
346
413
|
}];
|
|
347
414
|
readonly internalType: "struct IDAOSpace.ProposalParameters";
|
|
348
415
|
readonly name: "_parameters";
|
|
@@ -391,7 +458,7 @@ export declare const abi: readonly [{
|
|
|
391
458
|
readonly type: "bytes16";
|
|
392
459
|
}, {
|
|
393
460
|
readonly internalType: "uint8";
|
|
394
|
-
readonly name: "
|
|
461
|
+
readonly name: "_proposalVersion";
|
|
395
462
|
readonly type: "uint8";
|
|
396
463
|
}, {
|
|
397
464
|
readonly internalType: "bytes16";
|
|
@@ -586,11 +653,15 @@ export declare const abi: readonly [{
|
|
|
586
653
|
readonly inputs: readonly [{
|
|
587
654
|
readonly components: readonly [{
|
|
588
655
|
readonly internalType: "uint256";
|
|
589
|
-
readonly name: "
|
|
656
|
+
readonly name: "partialPercentageSupportThreshold";
|
|
590
657
|
readonly type: "uint256";
|
|
591
658
|
}, {
|
|
592
659
|
readonly internalType: "uint256";
|
|
593
|
-
readonly name: "
|
|
660
|
+
readonly name: "universalPercentageSupportThreshold";
|
|
661
|
+
readonly type: "uint256";
|
|
662
|
+
}, {
|
|
663
|
+
readonly internalType: "uint256";
|
|
664
|
+
readonly name: "flatSupportThreshold";
|
|
594
665
|
readonly type: "uint256";
|
|
595
666
|
}, {
|
|
596
667
|
readonly internalType: "uint256";
|
|
@@ -600,6 +671,14 @@ export declare const abi: readonly [{
|
|
|
600
671
|
readonly internalType: "uint256";
|
|
601
672
|
readonly name: "duration";
|
|
602
673
|
readonly type: "uint256";
|
|
674
|
+
}, {
|
|
675
|
+
readonly internalType: "bool";
|
|
676
|
+
readonly name: "disableFastPathAccessForNewMembers";
|
|
677
|
+
readonly type: "bool";
|
|
678
|
+
}, {
|
|
679
|
+
readonly internalType: "uint256";
|
|
680
|
+
readonly name: "executionGracePeriod";
|
|
681
|
+
readonly type: "uint256";
|
|
603
682
|
}];
|
|
604
683
|
readonly internalType: "struct IDAOSpace.VotingSettings";
|
|
605
684
|
readonly name: "_votingSettings";
|
|
@@ -651,11 +730,15 @@ export declare const abi: readonly [{
|
|
|
651
730
|
readonly outputs: readonly [{
|
|
652
731
|
readonly components: readonly [{
|
|
653
732
|
readonly internalType: "uint256";
|
|
654
|
-
readonly name: "
|
|
733
|
+
readonly name: "partialPercentageSupportThreshold";
|
|
734
|
+
readonly type: "uint256";
|
|
735
|
+
}, {
|
|
736
|
+
readonly internalType: "uint256";
|
|
737
|
+
readonly name: "universalPercentageSupportThreshold";
|
|
655
738
|
readonly type: "uint256";
|
|
656
739
|
}, {
|
|
657
740
|
readonly internalType: "uint256";
|
|
658
|
-
readonly name: "
|
|
741
|
+
readonly name: "flatSupportThreshold";
|
|
659
742
|
readonly type: "uint256";
|
|
660
743
|
}, {
|
|
661
744
|
readonly internalType: "uint256";
|
|
@@ -665,6 +748,14 @@ export declare const abi: readonly [{
|
|
|
665
748
|
readonly internalType: "uint256";
|
|
666
749
|
readonly name: "duration";
|
|
667
750
|
readonly type: "uint256";
|
|
751
|
+
}, {
|
|
752
|
+
readonly internalType: "bool";
|
|
753
|
+
readonly name: "disableFastPathAccessForNewMembers";
|
|
754
|
+
readonly type: "bool";
|
|
755
|
+
}, {
|
|
756
|
+
readonly internalType: "uint256";
|
|
757
|
+
readonly name: "executionGracePeriod";
|
|
758
|
+
readonly type: "uint256";
|
|
668
759
|
}];
|
|
669
760
|
readonly internalType: "struct IDAOSpace.VotingSettings";
|
|
670
761
|
readonly name: "_votingSettings";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dao-space.d.ts","sourceRoot":"","sources":["../../../src/abis/dao-space.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dao-space.d.ts","sourceRoot":"","sources":["../../../src/abis/dao-space.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyCjC,CAAC;AAEX,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuzBN,CAAC"}
|