Skip to content

Commit 944dd4a

Browse files
committed
chore: update contract and ABI
1 parent 88535ea commit 944dd4a

File tree

4 files changed

+71
-76
lines changed

4 files changed

+71
-76
lines changed

sdk/.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"parserOptions": {
1616
"ecmaVersion": 2020,
1717
"sourceType": "module",
18-
"project": "./tsconfig.eslint.json"
18+
"project": "./sdk/tsconfig.eslint.json"
1919
},
2020
"rules": {
2121
"no-console": "off",

sdk/src/references/abi/RainbowSuperTokenFactory.json

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
"type": "address",
99
"internalType": "address"
1010
},
11+
{
12+
"name": "_overTheRainbow",
13+
"type": "address",
14+
"internalType": "address"
15+
},
1116
{
1217
"name": "_nonfungiblePositionManager",
1318
"type": "address",
@@ -503,6 +508,19 @@
503508
],
504509
"stateMutability": "nonpayable"
505510
},
511+
{
512+
"type": "function",
513+
"name": "overTheRainbowPot",
514+
"inputs": [],
515+
"outputs": [
516+
{
517+
"name": "",
518+
"type": "address",
519+
"internalType": "address"
520+
}
521+
],
522+
"stateMutability": "view"
523+
},
506524
{
507525
"type": "function",
508526
"name": "owner",
@@ -673,6 +691,19 @@
673691
"outputs": [],
674692
"stateMutability": "nonpayable"
675693
},
694+
{
695+
"type": "function",
696+
"name": "setPot",
697+
"inputs": [
698+
{
699+
"name": "newPot",
700+
"type": "address",
701+
"internalType": "address"
702+
}
703+
],
704+
"outputs": [],
705+
"stateMutability": "nonpayable"
706+
},
676707
{
677708
"type": "function",
678709
"name": "swapRouter",
@@ -917,6 +948,44 @@
917948
],
918949
"anonymous": false
919950
},
951+
{
952+
"type": "event",
953+
"name": "NewPot",
954+
"inputs": [
955+
{
956+
"name": "pot",
957+
"type": "address",
958+
"indexed": true,
959+
"internalType": "address"
960+
}
961+
],
962+
"anonymous": false
963+
},
964+
{
965+
"type": "event",
966+
"name": "OverTheRainbowClaimed",
967+
"inputs": [
968+
{
969+
"name": "recipient",
970+
"type": "address",
971+
"indexed": true,
972+
"internalType": "address"
973+
},
974+
{
975+
"name": "token",
976+
"type": "address",
977+
"indexed": true,
978+
"internalType": "address"
979+
},
980+
{
981+
"name": "amount",
982+
"type": "uint256",
983+
"indexed": false,
984+
"internalType": "uint256"
985+
}
986+
],
987+
"anonymous": false
988+
},
920989
{
921990
"type": "event",
922991
"name": "OwnershipTransferred",

sdk/src/utils/deployRainbowSuperTokenFactory.ts

Lines changed: 0 additions & 74 deletions
This file was deleted.

0 commit comments

Comments
 (0)