21 Commits
Author SHA1 Message Date
z b4c21324a5 docs(brand): add hero banner 2026-06-28 20:55:32 -07:00
z f00d59f887 chore(brand): dynamic hero banner 2026-06-28 20:55:31 -07:00
Antje WorringandHanzo Dev e1a6b27ca9 docs: tidy LLM.md indexes; CLAUDE.md -> LLM.md symlink convention
Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-06-17 09:24:38 -07:00
Antje WorringandHanzo Dev 3ff9670438 Add agent project docs (CLAUDE.md, LLM.md)
Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-05-31 21:47:51 -07:00
John ShuttandGitHub c04bddfd55 fix(package): corrects some naming in package.json (#8)
* fix(package): corrects some naming in package.json

* fix(ganache): newer version works on node v14+

* fix(ganache): downgrade ganache to earlier version to avoid false revert errors
2021-04-01 13:15:21 -07:00
nicholaspaiandGitHub 4e7498b94e improve(index.js)update ConfigStore params to recommended values for new Perpetuals (#9)
* update ConfigStoreParams

Signed-off-by: Nick Pai <npai.nyc@gmail.com>

* change tokenScaling

Signed-off-by: Nick Pai <npai.nyc@gmail.com>

* Update index.js
2021-04-01 10:35:42 -04:00
nicholaspaiandGitHub 51dbb1f30a improve(versions): Update to latest @uma/core to use latest PerpetualCreator address (#6)
Signed-off-by: Nick Pai <npai.nyc@gmail.com>
2021-03-23 12:39:01 -04:00
John ShuttandGitHub d21bf64122 fix(script): use 2.0 core release and improve example in readme (#4)
* fix(script): use 2.0 core release and improve example in readme

Signed-off-by: John Shutt <john.d.shutt@gmail.com>

* improve(yarn): run yarn

Signed-off-by: John Shutt <john.d.shutt@gmail.com>
2021-03-05 12:23:55 -08:00
Matt RiceandGitHub e4852563e7 fix: minSponsorTokens should use correct decimal conversion (#3) 2021-03-05 15:10:38 -05:00
John ShuttandGitHub 488ed8ceed Merge pull request #2 from nicholaspai/patch-1
patch(index.js): Update config setting "proposalTimePastLimit"
2021-03-05 10:22:06 -08:00
nicholaspaiandGitHub 4bc3e25351 patch(index.js): Update config setting "proposalTimePastLimit"
The `FundingRateApplier`'s `proposeFundingRate` method has this require constraint:

```
require(
            timestamp > updateTime && timestamp >= currentTime.sub(_getConfig().proposalTimePastLimit),
            “Invalid proposal time”
);
```

In English: the proposal timestamp must be GREATER than the last update time, and also GREATER than the current time minus some buffer period, the "proposalTimePastLimit".

The RHS of the require statement ensures that no proposer can propose prices too far in the past (i.e. we want "live" funding rates).

However, the OptimisticOracle also requires that all timestamps be in the past (can't propose timestamps in the future). Therefore, by setting `proposalTimePastLimit = 0`, you practically make it impossible to propose new rates because no stamps can satisfy the three following constraints:

1. Timestamp > `lastUpdateTime`  (`FundingRateApplier.proposeFundingRate()`)
2. Timestamp > currentTime (`FundingRateApplier.proposeFundingRate()`)
3. Timestamp <= currentTime (`OptimisticOracle.requestPrice()`)
2021-03-05 13:09:49 -05:00
John ShuttandGitHub 8ccba86648 Merge pull request #1 from UMAprotocol/pemulis/init
feat(perpetual-launch): first commit forking launch-emp to launch a perp instead
2021-03-02 14:37:59 -08:00
John Shutt faf839265f improve(launch): pass in many parameters as arguments
Signed-off-by: John Shutt <john.d.shutt@gmail.com>
2021-03-02 14:36:46 -08:00
John Shutt e71f139e9a feat(perpetual-launch): first commit forking launch-emp to launch a perp instead
Signed-off-by: John Shutt <john.d.shutt@gmail.com>
2021-02-12 15:27:23 -08:00
Matt RiceandGitHub fa1ce0306a fix: inconsistent titles/capitalization (#3)
Signed-off-by: GitHub <noreply@github.com>
2021-02-04 16:29:52 -08:00
Sean BrownandGitHub 8e7d94da15 (update): updating default parameters to work for Kovan instead of mainnet (#6)
* updating default parameters to work for Kovan and not mainnet

* adding comment to also list mainnet weth address, and automatically getting store address
2021-01-14 11:25:42 -05:00
Matt RiceandGitHub 9b4849729f fix: fix gas price multipication (#4)
* fix: fix gas price multipication

Signed-off-by: GitHub <noreply@github.com>

* WIP

Signed-off-by: GitHub <noreply@github.com>
2021-01-04 01:26:10 -05:00
Matt RiceandGitHub 08482c5325 fix: fix typo and remove linting bloat (#1) 2020-12-30 14:48:49 -05:00
Matt RiceandGitHub 3011f5ce9e feat: add ganache fork instructions (#2) 2020-12-30 14:42:55 -05:00
Matt RiceandGitHub 737c5950c7 Initial version
Signed-off-by: GitHub <noreply@github.com>
2020-12-30 09:01:39 +00:00
Matt RiceandGitHub 9f135ea561 Initial commit 2020-12-15 16:44:48 -05:00